/**
 * LimeLine — White-Label Studio styles.
 *
 * Three-pane editor layout: tools left, canvas center, inspector right.
 * Brand-matched to the LimeLine palette (lime/emerald/amber/purple).
 * Self-contained — does not depend on Hello Elementor or Elementor styles.
 */

/* Studio fills the viewport from the trust strip down to the footer. The
   parent page-template should NOT add max-width or padding around it. */
.ll-studio {
	position: relative;
	width: 100%;
	min-height: calc(100vh - 220px);
	background: #FAFAFA;
	color: #0A0A0A;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
}

/* ── Top bar ─────────────────────────────────────────────────────────── */
.ll-studio__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 16px;
	background: #FFFFFF;
	border-bottom: 1px solid #E5E5E5;
	position: sticky; top: 0; z-index: 10;
}
.ll-studio__topbar-left,
.ll-studio__topbar-right { display: flex; align-items: center; gap: 12px; }
.ll-studio__brand {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: 'Fredoka', 'Inter', sans-serif;
	font-weight: 700; font-size: 15px;
	letter-spacing: -0.01em;
	color: #0A0A0A;
}
.ll-studio__brand svg { color: #277A00; }
.ll-studio__title {
	border: 1px solid transparent;
	background: transparent;
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #0A0A0A;
	width: 220px;
}
.ll-studio__title:hover  { border-color: #E5E5E5; }
.ll-studio__title:focus  { border-color: #7CEA00; outline: none; background: #FFF; }

.ll-studio__btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid #D4D4D4;
	background: #FFFFFF;
	color: #0A0A0A;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.1s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.ll-studio__btn:hover { border-color: #7CEA00; }
.ll-studio__btn:active { transform: translateY(1px); }
.ll-studio__btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ll-studio__btn--ghost  { border-color: transparent; background: transparent; }
.ll-studio__btn--ghost:hover { background: #F5F5F5; border-color: transparent; }
.ll-studio__btn--lime {
	background: linear-gradient(180deg, #B8FF1F, #7CEA00 60%, #4FBE00);
	border-color: #277A00;
	color: #0A0A0A;
	box-shadow: 0 2px 6px rgba(124, 234, 0, 0.25);
}
.ll-studio__btn--lime:hover { transform: translateY(-1px); }
.ll-studio__btn--full   { width: 100%; padding: 10px 14px; }

/* ── Body grid ───────────────────────────────────────────────────────── */
.ll-studio__body {
	display: grid;
	grid-template-columns: 320px 1fr 340px;
	min-height: 700px;
	flex: 1;
	background: #FAFAFA;
}
@media (max-width: 1200px) {
	.ll-studio__body { grid-template-columns: 280px 1fr 300px; }
}
@media (max-width: 980px) {
	.ll-studio__body {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto;
	}
	.ll-studio__tools, .ll-studio__inspector {
		max-height: 320px;
		overflow-y: auto;
	}
}

/* ── Tools sidebar (left) ────────────────────────────────────────────── */
.ll-studio__tools {
	background: #FFFFFF;
	border-right: 1px solid #E5E5E5;
	display: flex;
	flex-direction: column;
}
.ll-studio__tabs {
	display: flex;
	border-bottom: 1px solid #E5E5E5;
	background: #FAFAFA;
}
.ll-studio__tab {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 12px 6px;
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	color: #737373;
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__tab:first-child { font-size: 14px; }
.ll-studio__tab span { font-size: 9px; }
.ll-studio__tab:hover { color: #0A0A0A; background: #F5F5F5; }
.ll-studio__tab[data-active="true"] { color: #277A00; border-bottom-color: #7CEA00; background: #FFF; }
.ll-studio__tools-pane {
	padding: 20px;
	overflow-y: auto;
}
.ll-studio__tools-pane h4 {
	font-family: 'Fredoka', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0 0 8px;
	color: #0A0A0A;
}
.ll-studio__tools-pane label {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #737373;
	margin: 14px 0 4px;
}
.ll-studio__hint {
	font-size: 12px;
	color: #737373;
	margin: 0 0 12px;
	line-height: 1.5;
}
.ll-studio__input,
.ll-studio__select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #D4D4D4;
	border-radius: 6px;
	background: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #0A0A0A;
	box-sizing: border-box;
}
.ll-studio__input:focus,
.ll-studio__select:focus { outline: none; border-color: #7CEA00; box-shadow: 0 0 0 3px rgba(124, 234, 0, 0.15); }
.ll-studio__input--ta { font-family: 'Inter', sans-serif; min-height: 80px; resize: vertical; }

/* Format grid */
.ll-studio__format-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-top: 8px;
}
.ll-studio__format {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	background: #FFF;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__format:hover { border-color: #7CEA00; transform: translateY(-1px); }
.ll-studio__format[data-active="true"] {
	border-color: #277A00;
	background: linear-gradient(180deg, #F0FDD0, #FFFFFF);
	box-shadow: inset 0 0 0 1px #7CEA00;
}
.ll-studio__format-shape {
	width: 36px; height: 48px;
	background: linear-gradient(180deg, #E5E5E5, #D4D4D4);
	border-radius: 4px;
}
.ll-studio__format-shape--cylinder       { border-radius: 18px / 6px; }
.ll-studio__format-shape--short_cylinder { border-radius: 18px / 6px; height: 30px; }
.ll-studio__format-shape--tube           { width: 16px; height: 56px; border-radius: 8px / 2px; }
.ll-studio__format-shape--box            { border-radius: 4px; }
.ll-studio__format-shape--tincture       { width: 22px; height: 56px; border-radius: 6px 6px 4px 4px; position: relative; }
.ll-studio__format-shape--tincture::before { content: ''; display: block; position: absolute; top: -8px; left: 4px; width: 14px; height: 8px; background: #A3A3A3; border-radius: 2px; }
.ll-studio__format-shape--pouch          { border-radius: 8px 8px 4px 4px; height: 56px; }
.ll-studio__format-shape--can            { width: 22px; height: 50px; border-radius: 4px / 8px; }
.ll-studio__format-label {
	font-size: 11px;
	font-weight: 600;
	color: #0A0A0A;
	text-align: center;
	line-height: 1.3;
}
.ll-studio__format-dim {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	color: #737373;
}

/* Size variants (under format picker) */
.ll-studio__sizes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__size {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding: 10px 12px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-studio__size:hover { border-color: #7CEA00; transform: translateY(-1px); }
.ll-studio__size[data-active="true"] {
	border-color: #277A00;
	background: linear-gradient(180deg, #F0FDD0, #FFF);
	box-shadow: inset 0 0 0 1px #7CEA00;
}
.ll-studio__size-label {
	font-family: 'Fredoka', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #0A0A0A;
}
.ll-studio__size-dim {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	color: #737373;
	letter-spacing: 0.04em;
}

/* Concierge size variants */
.ll-concierge__sizes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 8px;
	margin-bottom: 24px;
	margin-top: 8px;
}
.ll-concierge__size {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-concierge__size:hover { border-color: #7CEA00; transform: translateY(-1px); }
.ll-concierge__size[data-active="true"] {
	border-color: #277A00;
	background: linear-gradient(180deg, #F0FDD0, #FFF);
	box-shadow: inset 0 0 0 1px #7CEA00;
}
.ll-concierge__size-label {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #0A0A0A;
}
.ll-concierge__size-dim {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #737373;
}

/* Palette */
.ll-studio__palette-current {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__color {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 8px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	cursor: pointer;
}
.ll-studio__color input[type="color"] {
	width: 40px; height: 40px;
	border: 0; border-radius: 6px; padding: 0;
	cursor: pointer;
	background: transparent;
}
.ll-studio__color-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ll-studio__color-role {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #737373;
}
.ll-studio__color-hex {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	color: #0A0A0A;
}
.ll-studio__starter-palettes {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__starter-palette {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-studio__starter-palette:hover { border-color: #7CEA00; }
.ll-studio__starter-swatches { display: flex; gap: 2px; }
.ll-studio__starter-swatches span {
	width: 22px; height: 22px;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.08);
}
.ll-studio__starter-name {
	font-family: 'Fredoka', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0A0A0A;
}

/* Fonts */
.ll-studio__fonts {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__font {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-studio__font:hover { border-color: #7CEA00; }
.ll-studio__font[data-active="true"] { border-color: #277A00; background: #F0FDD0; }
.ll-studio__font-display { font-size: 28px; font-weight: 700; color: #0A0A0A; line-height: 1; }
.ll-studio__font-meta { display: flex; flex-direction: column; gap: 2px; }
.ll-studio__font-meta strong { font-size: 13px; }
.ll-studio__font-meta span   { font-size: 11px; color: #737373; }

/* Elements list */
.ll-studio__el-list {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ll-studio__el-list li {
	display: flex;
	align-items: stretch;
	gap: 4px;
}
.ll-studio__el {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border: 1px solid #E5E5E5;
	border-radius: 6px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
}
.ll-studio__el:hover { border-color: #7CEA00; }
.ll-studio__el[data-active="true"] { border-color: #277A00; background: #F0FDD0; }
.ll-studio__el-icon { font-family: 'Fredoka', sans-serif; font-weight: 700; color: #277A00; min-width: 22px; }
.ll-studio__el-name { flex: 1; font-size: 12px; font-weight: 600; }
.ll-studio__el-type { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #737373; }
.ll-studio__el-lock { font-size: 10px; }

/* Layer action buttons (up / down / dup / lock / del) */
.ll-studio__el-actions {
	display: flex;
	flex-direction: column;
	gap: 1px;
	flex-shrink: 0;
}
.ll-studio__el-actions button {
	width: 22px;
	height: 14px;
	padding: 0;
	border: 1px solid #E5E5E5;
	background: #FFF;
	color: #737373;
	font-size: 9px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.1s ease;
}
.ll-studio__el-actions button:hover {
	border-color: #7CEA00;
	color: #277A00;
	background: #F0FDD0;
}
.ll-studio__el-actions button[data-act="del"]:hover {
	border-color: #DC2626;
	color: #DC2626;
	background: #FEE2E2;
}
.ll-studio__el-actions button[data-on="true"] {
	border-color: #277A00;
	background: #F0FDD0;
	color: #277A00;
}

/* Background pattern grid */
.ll-studio__bg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__bg {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__bg:hover { border-color: #7CEA00; transform: translateY(-1px); }
.ll-studio__bg[data-active="true"] {
	border-color: #277A00;
	background: linear-gradient(180deg, #F0FDD0, #FFFFFF);
	box-shadow: inset 0 0 0 1px #7CEA00;
}
.ll-studio__bg-preview {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	background: #FAFAFA;
	border: 1px solid #E5E5E5;
}
.ll-studio__bg-preview--solid    { background: #FAFAFA; }
.ll-studio__bg-preview--paper {
	background:
		radial-gradient(circle at 20% 30%, rgba(0,0,0,0.06) 0.4px, transparent 0.5px),
		radial-gradient(circle at 70% 80%, rgba(0,0,0,0.06) 0.4px, transparent 0.5px),
		radial-gradient(circle at 40% 60%, rgba(0,0,0,0.04) 0.4px, transparent 0.5px),
		#FAFAFA;
	background-size: 40px 40px, 40px 40px, 40px 40px, auto;
}
.ll-studio__bg-preview--kraft {
	background:
		repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 4px),
		#C9A879;
}
.ll-studio__bg-preview--dotted {
	background:
		radial-gradient(circle, rgba(0,0,0,0.18) 0.8px, transparent 0.9px) 0 0 / 12px 12px,
		#FAFAFA;
}
.ll-studio__bg-preview--lined {
	background:
		repeating-linear-gradient(0deg, transparent 0 21px, rgba(0,0,0,0.18) 21px 21.5px),
		#FAFAFA;
}
.ll-studio__bg-preview--gradient {
	background: linear-gradient(135deg, rgba(124,234,0,0.4), #FAFAFA 60%, rgba(245,158,11,0.4));
}
.ll-studio__bg-label {
	font-size: 10px;
	font-weight: 600;
	color: #404040;
}

/* Custom background — upload + AI generate */
.ll-studio__bg-custom {
	margin-top: 8px;
	border-top: 1px dashed #E5E5E5;
	padding-top: 12px;
}
.ll-studio__bg-current {
	background: #FAFAFA;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	padding: 10px;
	margin: 8px 0;
}
.ll-studio__bg-current img {
	width: 100%;
	max-height: 100px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}
.ll-studio__bg-current-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #277A00;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 700;
}
.ll-studio__btn--sm { padding: 4px 10px; font-size: 11px; }
.ll-studio__bg-opacity-label {
	display: block;
	margin: 10px 0 4px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	color: #737373;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
}

.ll-studio__bg-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin: 10px 0;
}
.ll-studio__bg-upload,
.ll-studio__bg-ai {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px;
	border: 1px solid #D4D4D4;
	border-radius: 8px;
	background: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #0A0A0A;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__bg-upload:hover { border-color: #277A00; background: #F0FDD0; color: #277A00; }
.ll-studio__bg-ai:hover     { border-color: #B45309; background: #FEF3C7; color: #B45309; }
.ll-studio__bg-upload-icon  { color: #277A00; font-weight: 800; }
.ll-studio__bg-ai-icon      { color: #B45309; font-weight: 800; }

.ll-studio__bg-ai-panel {
	background: linear-gradient(135deg, #FEF3C7 0%, #FFFFFF 60%, #F0FDD0 100%);
	border: 1px solid #FCD34D;
	border-radius: 10px;
	padding: 14px;
	margin-top: 8px;
}
.ll-studio__bg-ai-panel label {
	display: block;
	margin: 0 0 6px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #B45309;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 700;
}
.ll-studio__bg-ai-suggest {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 8px 0 12px;
}
.ll-studio__bg-ai-suggest button {
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid #FCD34D;
	background: #FFFBEB;
	font-size: 11px;
	color: #B45309;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__bg-ai-suggest button:hover { background: #FEF3C7; border-color: #B45309; }
.ll-studio__bg-ai-status {
	margin-top: 10px;
	padding: 8px 12px;
	border-radius: 6px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	line-height: 1.4;
}
.ll-studio__bg-ai-status[data-kind="busy"]  { background: #FEF3C7; color: #B45309; }
.ll-studio__bg-ai-status[data-kind="error"] { background: #FEE2E2; color: #991B1B; }
.ll-studio__bg-ai-status[data-kind="ok"]    { background: #D1FAE5; color: #047857; }

/* AI pane */
.ll-studio__ai-loading,
.ll-studio__ai-error {
	padding: 16px;
	border-radius: 8px;
	font-size: 13px;
}
.ll-studio__ai-loading { background: #F5F5F5; color: #737373; }
.ll-studio__ai-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.ll-studio__ai-section { margin-bottom: 18px; }
.ll-studio__ai-section-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #737373;
	margin-bottom: 6px;
}
.ll-studio__ai-note {
	font-size: 12px;
	color: #404040;
	font-style: italic;
	margin-top: 4px;
}
.ll-studio__ai-palette { display: flex; flex-direction: column; gap: 6px; }
.ll-studio__ai-swatch {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px;
	border-radius: 6px;
	background: #F5F5F5;
}
.ll-studio__ai-swatch > span:first-child {
	width: 28px; height: 28px;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.08);
}
.ll-studio__ai-swatch > span:last-child {
	display: flex; flex-direction: column; gap: 2px;
	font-size: 12px;
}
.ll-studio__ai-swatch strong {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #737373;
}
.ll-studio__ai-pick {
	display: block;
	width: 100%;
	padding: 8px 10px;
	margin-bottom: 4px;
	border: 1px solid #E5E5E5;
	border-radius: 6px;
	background: #FFF;
	font-family: 'Fredoka', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0A0A0A;
	text-align: left;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__ai-pick:hover { border-color: #7CEA00; background: #F0FDD0; }
.ll-studio__ai-direction {
	padding: 14px;
	margin-bottom: 12px;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	background: #FFF;
}
.ll-studio__ai-tags {
	display: flex; flex-wrap: wrap; gap: 4px;
	margin: 6px 0 8px;
}
.ll-studio__ai-tags span {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	background: #F0FDD0;
	color: #277A00;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 600;
}
.ll-studio__ai-refs {
	margin-top: 8px;
	font-size: 11px;
	color: #737373;
}

/* ── Canvas (center) ─────────────────────────────────────────────────── */
.ll-studio__canvas-wrap {
	display: flex;
	flex-direction: column;
	background: #F5F5F5;
	background-image:
		linear-gradient(45deg, #ECECEC 25%, transparent 25%),
		linear-gradient(-45deg, #ECECEC 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, #ECECEC 75%),
		linear-gradient(-45deg, transparent 75%, #ECECEC 75%);
	background-size: 16px 16px;
	background-position: 0 0, 0 8px, 8px -8px, -8px 0;
}
.ll-studio__canvas-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid #E5E5E5;
}
.ll-studio__canvas-modes,
.ll-studio__zoom { display: flex; align-items: center; gap: 4px; }
.ll-studio__mode {
	padding: 6px 12px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #404040;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-studio__mode:hover { border-color: #7CEA00; }
.ll-studio__mode[data-active="true"] {
	background: #0A0A0A;
	color: #FFF;
	border-color: #0A0A0A;
}
.ll-studio__zoom-btn {
	padding: 4px 10px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
}
.ll-studio__zoom-btn:hover { border-color: #7CEA00; }
.ll-studio__zoom-val {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: #737373;
	min-width: 44px;
	text-align: center;
}
.ll-studio__stage {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	overflow: auto;
}
.ll-studio__paper {
	background: #FFF;
	box-shadow: 0 12px 40px rgba(0,0,0,0.15);
	border-radius: 4px;
	overflow: hidden;
}
.ll-studio__svg {
	display: block;
	user-select: none;
}
.ll-studio__rulers {
	padding: 8px 16px;
	background: #FFF;
	border-top: 1px solid #E5E5E5;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #737373;
	letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════════════════
   3D PRODUCT MOCKUPS — per-format realistic renders
   ════════════════════════════════════════════════════════════════════
   Architecture:
   - Each mockup is a `.ll-mockup__scene` with perspective + lighting layers
   - Inside: a `.ll-product` with format-specific lid/body/contents/label
   - Below: a `.ll-mockup__shadow-floor` ground shadow + optional reflection
   - The label SVG is mapped onto the product face; per-format cylindrical
     curvature is faked with linear gradient overlays + a subtle rotation
*/
.ll-studio__mockup {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 24px;
	padding: 32px;
	background:
		radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.6), transparent 50%),
		radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.1), transparent 60%),
		linear-gradient(180deg, #ECECEC 0%, #D4D4D4 60%, #B5B5B5 100%);
	overflow: auto;
}
@media (max-width: 980px) {
	.ll-studio__mockup { grid-template-columns: 1fr; padding: 16px; }
}

.ll-mockup__scene {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	perspective: 1500px;
	perspective-origin: 50% 35%;
}
.ll-mockup__lighting {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 30% at 35% 20%, rgba(255, 255, 255, 0.4), transparent),
		radial-gradient(ellipse 60% 40% at 70% 90%, rgba(0, 0, 0, 0.08), transparent);
	pointer-events: none;
}
.ll-mockup__stage-3d {
	transform-style: preserve-3d;
	transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ll-mockup__scene[data-angle="front"] .ll-mockup__stage-3d { transform: rotateY(0deg); }
.ll-mockup__scene[data-angle="34"]    .ll-mockup__stage-3d { transform: rotateY(-22deg) rotateX(5deg); }
.ll-mockup__scene[data-angle="side"]  .ll-mockup__stage-3d { transform: rotateY(-65deg); }
.ll-mockup__scene:hover .ll-mockup__stage-3d {
	transform: rotateY(-30deg) rotateX(8deg);
}
.ll-mockup__scene[data-spinning="1"] .ll-mockup__stage-3d {
	animation: ll-mockup-rotate 12s linear infinite;
	transition: none;
}
@keyframes ll-mockup-rotate {
	from { transform: rotateY(-25deg) rotateX(5deg); }
	50%  { transform: rotateY(-200deg) rotateX(5deg); }
	to   { transform: rotateY(-385deg) rotateX(5deg); }
}

.ll-mockup__shadow-floor {
	position: absolute;
	bottom: 8%;
	width: 70%;
	height: 30px;
	background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45), transparent 70%);
	filter: blur(12px);
	pointer-events: none;
}
.ll-mockup__reflection {
	position: absolute;
	bottom: 0;
	transform: scaleY(-1);
	opacity: 0.18;
	mask-image: linear-gradient(180deg, #000 0%, transparent 50%);
	-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 50%);
	pointer-events: none;
}
.ll-mockup__reflection .ll-product { transform: none !important; }

/* ── Product container baseline ─────────────────────────────────────── */
.ll-product {
	position: relative;
	transform-style: preserve-3d;
}
.ll-product__body {
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	box-shadow:
		inset 0 0 40px rgba(0, 0, 0, 0.12),
		0 20px 50px rgba(0, 0, 0, 0.20);
}
.ll-product__highlight {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0)   0%,
		rgba(255, 255, 255, 0.25) 22%,
		rgba(255, 255, 255, 0.05) 35%,
		rgba(0, 0, 0, 0.15)       70%,
		rgba(0, 0, 0, 0.30)      100%
	);
	pointer-events: none;
	mix-blend-mode: overlay;
}
.ll-product__label,
.ll-mockup__label {
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}

/* ── JAR (3.5g flower) — amber glass with cannabis visible inside ─── */
.ll-product--jar {
	width: 260px;
}
.ll-product--jar .ll-product__lid {
	position: relative;
	height: 48px;
	margin: 0 4px;
}
.ll-product--jar .ll-product__lid-top {
	position: absolute;
	top: 0;
	left: 0; right: 0;
	height: 14px;
	background: linear-gradient(180deg, #2a2a2a, #1a1a1a 60%, #0a0a0a);
	border-radius: 50% / 100% 100% 0 0;
	box-shadow: inset 0 -2px 4px rgba(255, 255, 255, 0.1);
}
.ll-product--jar .ll-product__lid-side {
	position: absolute;
	top: 12px;
	left: 0; right: 0;
	height: 36px;
	background:
		linear-gradient(90deg, #1a1a1a 0%, #3a3a3a 22%, #4a4a4a 50%, #3a3a3a 78%, #1a1a1a 100%),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px);
	border-radius: 6px 6px 2px 2px;
}
.ll-product--jar .ll-product__body {
	height: 280px;
	border-radius: 14px 14px 18px 18px;
	background:
		linear-gradient(90deg,
			rgba(245, 200, 100, 0.9) 0%,
			rgba(255, 220, 130, 0.95) 22%,
			rgba(255, 230, 150, 1) 50%,
			rgba(255, 220, 130, 0.95) 78%,
			rgba(245, 200, 100, 0.9) 100%);
}
.ll-product--jar .ll-product__contents--flower {
	position: absolute;
	inset: 8px;
	border-radius: 12px;
	background:
		radial-gradient(circle at 30% 40%, #4a6b2e 6px, transparent 8px),
		radial-gradient(circle at 60% 50%, #3f5a26 7px, transparent 9px),
		radial-gradient(circle at 45% 65%, #5a7a32 8px, transparent 10px),
		radial-gradient(circle at 70% 70%, #4a6b2e 6px, transparent 8px),
		radial-gradient(circle at 25% 75%, #3f5a26 7px, transparent 9px),
		radial-gradient(circle at 55% 30%, #5a7a32 6px, transparent 8px),
		linear-gradient(180deg, #2a3d1a 0%, #1a2a0e 100%);
	background-size: 100% 100%;
	opacity: 0.55;
	mix-blend-mode: multiply;
}
.ll-product--jar .ll-product__glass {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(255, 255, 255, 0.35) 0%,
			rgba(255, 255, 255, 0.05) 25%,
			transparent 40%,
			rgba(0, 0, 0, 0.1) 70%,
			rgba(0, 0, 0, 0.25) 100%);
	border-radius: inherit;
	pointer-events: none;
}
.ll-product--jar .ll-product__label {
	top: 18%;
	left: 6%; right: 6%;
	bottom: 14%;
	background-color: rgba(250, 250, 250, 0.96);
	border-radius: 4px;
	transform: translateZ(2px);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 0 12px rgba(0, 0, 0, 0.06);
}
.ll-product--jar .ll-product__base {
	height: 16px;
	margin: -8px 12px 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15));
	border-radius: 50% / 100%;
}

/* ── SHORT JAR (rosin / topical) ──────────────────────────────────── */
.ll-product--jar-short {
	width: 220px;
}
.ll-product--jar-short .ll-product__lid {
	position: relative;
	height: 26px;
	margin: 0 6px;
}
.ll-product--jar-short .ll-product__lid-top {
	position: absolute;
	top: 0; left: 0; right: 0; height: 8px;
	background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
	border-radius: 50% / 100% 100% 0 0;
}
.ll-product--jar-short .ll-product__lid-side {
	position: absolute;
	top: 6px; left: 0; right: 0; height: 20px;
	background: linear-gradient(90deg, #1a1a1a 0%, #4a4a4a 50%, #1a1a1a 100%);
	border-radius: 4px;
}
.ll-product--jar-short .ll-product__body {
	height: 160px;
	border-radius: 10px 10px 14px 14px;
	background:
		linear-gradient(90deg,
			rgba(245, 200, 100, 0.85) 0%,
			rgba(255, 230, 150, 0.95) 50%,
			rgba(245, 200, 100, 0.85) 100%);
}
.ll-product--jar-short .ll-product__contents--rosin {
	position: absolute;
	inset: 6px;
	background: radial-gradient(circle at 50% 60%, #d4a040 0%, #b07820 60%, #8a5810 100%);
	border-radius: inherit;
	opacity: 0.7;
	mix-blend-mode: multiply;
}
.ll-product--jar-short .ll-product__glass {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, transparent 30%, rgba(0,0,0,0.2) 100%);
	border-radius: inherit;
}
.ll-product--jar-short .ll-product__label {
	top: 22%; left: 6%; right: 6%; bottom: 18%;
	background-color: rgba(250,250,250,0.96);
	border-radius: 3px;
	transform: translateZ(2px);
}
.ll-product--jar-short .ll-product__base {
	height: 10px;
	margin: -5px 14px 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15));
	border-radius: 50% / 100%;
}

/* ── PRE-ROLL TUBE ────────────────────────────────────────────────── */
.ll-product--tube {
	width: 110px;
}
.ll-product--tube .ll-product__cap {
	position: relative;
	height: 36px;
	margin: 0 8px;
}
.ll-product--tube .ll-product__cap-top {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #2a2a2a, #1a1a1a 70%, #0a0a0a);
	border-radius: 50% / 80% 80% 0 0;
}
.ll-product--tube .ll-product__cap::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 4px;
	background: rgba(0, 0, 0, 0.3);
}
.ll-product--tube .ll-product__body {
	height: 320px;
	border-radius: 16px 16px 8px 8px;
	background:
		linear-gradient(90deg,
			#dadada 0%,
			#f0f0f0 22%,
			#ffffff 50%,
			#f0f0f0 78%,
			#dadada 100%);
}
.ll-product--tube .ll-product__label {
	top: 8%; left: 4%; right: 4%; bottom: 6%;
	background-color: rgba(250, 250, 250, 0.98);
	border-radius: 2px;
	transform: translateZ(2px);
}

/* ── BOX (vape / edible carton) — true 3D with 3 visible faces ───── */
.ll-product--box {
	width: 180px;
	height: 320px;
	transform-style: preserve-3d;
}
.ll-product--box .ll-product__face {
	position: absolute;
	transform-style: preserve-3d;
}
.ll-product--box .ll-product__face--front {
	width: 180px;
	height: 320px;
	background: #fafafa;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.ll-product--box .ll-product__face--right {
	width: 60px;
	height: 320px;
	right: -60px;
	top: 0;
	transform-origin: left center;
	transform: rotateY(90deg);
}
.ll-product--box .ll-product__face--top {
	width: 180px;
	height: 60px;
	top: -60px;
	left: 0;
	transform-origin: bottom center;
	transform: rotateX(90deg);
}
.ll-product--box .ll-product__label {
	inset: 5%;
	background-color: transparent;
}

/* ── TINCTURE — amber dropper bottle ──────────────────────────────── */
.ll-product--tincture {
	width: 130px;
}
.ll-product--tincture .ll-product__dropper {
	position: relative;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ll-product--tincture .ll-product__dropper-bulb {
	width: 56px; height: 22px;
	background: linear-gradient(180deg, #d8a55c 0%, #a87530 60%, #845510);
	border-radius: 50% / 100% 100% 0 0;
}
.ll-product--tincture .ll-product__dropper-collar {
	width: 50px; height: 8px;
	background: linear-gradient(180deg, #bababa, #6a6a6a);
	border-radius: 2px;
}
.ll-product--tincture .ll-product__dropper-cap {
	width: 48px; height: 30px;
	background: linear-gradient(90deg, #1a1a1a 0%, #3a3a3a 50%, #1a1a1a 100%);
	border-radius: 4px 4px 0 0;
}
.ll-product--tincture .ll-product__body {
	height: 280px;
	border-radius: 10px 10px 14px 14px;
	background: linear-gradient(90deg,
		rgba(120, 60, 20, 0.85) 0%,
		rgba(160, 90, 30, 0.95) 22%,
		rgba(180, 110, 40, 1) 50%,
		rgba(160, 90, 30, 0.95) 78%,
		rgba(120, 60, 20, 0.85) 100%);
}
.ll-product--tincture .ll-product__contents--liquid {
	position: absolute;
	inset: 6px;
	background: linear-gradient(180deg, transparent 5%, rgba(220, 150, 60, 0.5) 8%, rgba(180, 110, 40, 0.7) 100%);
	border-radius: inherit;
}
.ll-product--tincture .ll-product__label {
	top: 18%; left: 6%; right: 6%; bottom: 14%;
	background-color: rgba(250, 250, 250, 0.96);
	border-radius: 3px;
	transform: translateZ(2px);
}
.ll-product--tincture .ll-product__base {
	height: 10px;
	margin: -5px 14px 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15));
	border-radius: 50% / 100%;
}

/* ── POUCH — stand-up bag with crinkle seal ──────────────────────── */
.ll-product--pouch {
	width: 280px;
}
.ll-product--pouch .ll-product__seal {
	position: relative;
	height: 18px;
	background: linear-gradient(180deg, #cacaca, #9a9a9a);
	border-radius: 4px 4px 0 0;
}
.ll-product--pouch .ll-product__seal-tooth {
	position: absolute;
	bottom: -4px;
	width: 8px;
	height: 8px;
	background: #cacaca;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.ll-product--pouch .ll-product__body {
	height: 340px;
	border-radius: 0 0 12px 12px;
	background: linear-gradient(90deg,
		rgba(80, 80, 80, 0.4) 0%,
		rgba(220, 220, 220, 0.2) 22%,
		rgba(255, 255, 255, 0.05) 50%,
		rgba(220, 220, 220, 0.2) 78%,
		rgba(80, 80, 80, 0.4) 100%),
		#FAFAFA;
}
.ll-product--pouch .ll-product__label {
	top: 6%; left: 6%; right: 6%; bottom: 6%;
	background-color: transparent;
}

/* ── CAN — beverage with pull-tab ─────────────────────────────────── */
.ll-product--can {
	width: 170px;
}
.ll-product--can .ll-product__cap-rim {
	height: 14px;
	background:
		linear-gradient(180deg, #4a4a4a 0%, #8a8a8a 30%, #ababab 50%, #8a8a8a 70%, #2a2a2a 100%);
	border-radius: 50% / 100% 100% 30% 30%;
	position: relative;
}
.ll-product--can .ll-product__pulltab {
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 24px; height: 8px;
	background: linear-gradient(180deg, #cacaca, #6a6a6a);
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.ll-product--can .ll-product__body {
	height: 320px;
	border-radius: 4px;
	background: linear-gradient(90deg,
		rgba(140, 140, 140, 0.6) 0%,
		rgba(220, 220, 220, 0.1) 22%,
		rgba(255, 255, 255, 0) 50%,
		rgba(220, 220, 220, 0.1) 78%,
		rgba(140, 140, 140, 0.6) 100%),
		#FAFAFA;
}
.ll-product--can .ll-product__label {
	inset: 6%;
	background-color: transparent;
}
.ll-product--can .ll-product__base-rim {
	height: 10px;
	background: linear-gradient(180deg, #4a4a4a, #2a2a2a);
	border-radius: 50% / 100% 100% 0 0;
	margin-top: -4px;
}

/* ── Mockup sidebar (controls + caption) ──────────────────────────── */
.ll-mockup__sidebar {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: fit-content;
}
.ll-mockup__caption {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ll-mockup__caption-name {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #0A0A0A;
}
.ll-mockup__caption-dim {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #737373;
	letter-spacing: 0.06em;
}
.ll-mockup__angle-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
}
.ll-mockup__angle {
	padding: 6px 8px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	border-radius: 6px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-mockup__angle:hover { border-color: #7CEA00; color: #277A00; }
.ll-mockup__angle[data-on="1"] {
	background: #0A0A0A;
	color: #7CEA00;
	border-color: #0A0A0A;
}
.ll-mockup__hint {
	font-size: 11px;
	color: #737373;
	line-height: 1.5;
	font-style: italic;
}

/* ── Multi-angle gallery view ─────────────────────────────────────── */
.ll-mockup__gallery {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 980px) {
	.ll-mockup__gallery { grid-template-columns: 1fr; }
}
.ll-mockup__gallery-item {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ll-mockup__scene--gallery {
	min-height: 280px;
	transform: scale(0.7);
	transform-origin: center;
}
.ll-mockup__angle-cap {
	margin-top: 12px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #404040;
}
.ll-mockup__sidebar--gallery { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 24px; }
.ll-mockup__ctrl--full { width: 100%; }
/* Mockup controls strip. */
.ll-mockup__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.ll-mockup__ctrl {
	flex: 1;
	min-width: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 6px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	color: #0A0A0A;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-mockup__ctrl:hover {
	background: #0A0A0A;
	color: #7CEA00;
	border-color: #0A0A0A;
}

/* ── Inspector (right) ───────────────────────────────────────────────── */
.ll-studio__inspector {
	background: #FFFFFF;
	border-left: 1px solid #E5E5E5;
	overflow-y: auto;
}
.ll-studio__panel {
	border-bottom: 1px solid #E5E5E5;
	padding: 16px 20px;
}
.ll-studio__panel header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.ll-studio__panel h3 {
	font-family: 'Fredoka', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0;
	color: #0A0A0A;
}
.ll-studio__score {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 999px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	background: #F5F5F5;
	color: #737373;
}
.ll-studio__score[data-score="pass"]    { background: #D1FAE5; color: #047857; }
.ll-studio__score[data-score="partial"] { background: #FEF3C7; color: #B45309; }
.ll-studio__score[data-score="fail"]    { background: #FEE2E2; color: #991B1B; }

.ll-studio__rules {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ll-studio__rule {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 6px;
	font-size: 12px;
	line-height: 1.4;
}
.ll-studio__rule[data-status="ok"]   { background: #ECFDF5; color: #065F46; }
.ll-studio__rule[data-status="warn"] { background: #FFFBEB; color: #92400E; }
.ll-studio__rule[data-status="fail"] { background: #FEF2F2; color: #991B1B; }
.ll-studio__rule-icon {
	font-weight: 800;
	min-width: 14px;
	text-align: center;
}
.ll-studio__compliance-cite {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed #E5E5E5;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #A3A3A3;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

/* Properties panel */
.ll-studio__prop-head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	background: #F5F5F5;
	border-radius: 6px;
	margin-bottom: 12px;
}
.ll-studio__prop-icon {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	color: #277A00;
}
.ll-studio__prop-name {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: #404040;
}

/* ── Element library (left pane) ─────────────────────────────────────── */
.ll-studio__library {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__lib-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 12px 6px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: #404040;
	transition: all 0.15s ease;
}
.ll-studio__lib-btn:hover {
	border-color: #7CEA00;
	transform: translateY(-1px);
}
.ll-studio__lib-icon {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #277A00;
	line-height: 1;
}
.ll-studio__lib-label {
	font-weight: 600;
	font-size: 11px;
}

/* ── Image upload zone ───────────────────────────────────────────────── */
.ll-studio__upload {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 20px;
	border: 2px dashed #D4D4D4;
	border-radius: 10px;
	background: #FAFAFA;
	cursor: pointer;
	transition: all 0.15s ease;
	margin-top: 8px;
}
.ll-studio__upload:hover,
.ll-studio__upload--over {
	border-color: #7CEA00;
	background: #F0FDD0;
}
.ll-studio__upload-icon {
	font-size: 22px;
	font-weight: 700;
	color: #277A00;
}
.ll-studio__upload-text {
	font-size: 12px;
	color: #737373;
	text-align: center;
}

/* Drag affordance — selected element + cursor on hover */
.ll-studio__svg [data-element-id]:hover {
	filter: drop-shadow(0 0 1px #7CEA00) drop-shadow(0 0 4px rgba(124, 234, 0, 0.3));
}

/* ── My designs library (brand-partner library page) ─────────────────── */
.ll-my-designs {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 32px;
}
.ll-my-designs__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.ll-my-designs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}
.ll-design-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #FFF;
	border: 1px solid #E5E5E5;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.ll-design-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	border-color: #7CEA00;
}
.ll-design-card__preview {
	aspect-ratio: 4 / 5;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 14px;
	color: #FFF;
}
.ll-design-card__format {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.6);
	padding: 4px 10px;
	border-radius: 4px;
}
.ll-design-card__body {
	padding: 14px 16px 16px;
}
.ll-design-card__title {
	font-family: 'Fredoka', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #0A0A0A;
	margin-bottom: 4px;
}
.ll-design-card__meta {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.04em;
	color: #737373;
}
.ll-design-card__del {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.15s ease, background 0.15s ease;
}
.ll-design-card:hover .ll-design-card__del { opacity: 1; }
.ll-design-card__del:hover { background: #B91C1C; }
.ll-my-designs__empty {
	text-align: center;
	padding: 64px 20px;
	color: #737373;
}
.ll-my-designs__empty .ll-btn {
	display: inline-block;
	margin-top: 16px;
	padding: 12px 22px;
	border-radius: 8px;
	background: linear-gradient(180deg, #B8FF1F, #7CEA00 60%, #4FBE00);
	border: 1px solid #277A00;
	color: #0A0A0A;
	font-weight: 700;
	text-decoration: none;
}

/* ── Layout templates ────────────────────────────────────────────────── */
.ll-studio__templates {
	display: grid;
	gap: 6px;
	margin-top: 8px;
}
.ll-studio__template {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	padding: 10px 12px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-studio__template:hover {
	border-color: #7CEA00;
	transform: translateY(-1px);
}
.ll-studio__template-name {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: #0A0A0A;
}
.ll-studio__template-desc {
	font-size: 11px;
	color: #737373;
	line-height: 1.4;
}

/* ── Compliance presets ──────────────────────────────────────────────── */
.ll-studio__presets {
	display: grid;
	gap: 4px;
	margin-top: 8px;
}
.ll-studio__preset {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 8px 12px;
	border: 1px solid #E5E5E5;
	border-radius: 6px;
	background: #FAFAFA;
	cursor: pointer;
	text-align: left;
	border-left: 3px solid #FCD34D;
	transition: all 0.15s ease;
}
.ll-studio__preset:hover {
	border-color: #7CEA00;
	border-left-color: #7CEA00;
	background: #F0FDD0;
}
.ll-studio__preset-name {
	font-weight: 600;
	font-size: 12px;
	color: #0A0A0A;
}
.ll-studio__preset-hint {
	font-size: 10px;
	color: #737373;
	font-family: 'JetBrains Mono', monospace;
}

/* ── Range slider readouts + color inputs in Properties ─────────────── */
.ll-studio__input--range {
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	height: 24px;
	accent-color: #7CEA00;
}
.ll-studio__range-val {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: #404040;
	text-align: right;
	margin-top: -4px;
	margin-bottom: 4px;
}
.ll-studio__input--color {
	width: 60px;
	height: 32px;
	padding: 0;
	border: 1px solid #D4D4D4;
	border-radius: 6px;
	cursor: pointer;
	background: transparent;
}
.ll-studio__sep {
	border: 0;
	border-top: 1px solid #E5E5E5;
	margin: 16px 0 12px;
}

/* ── Help overlay ────────────────────────────────────────────────────── */
.ll-studio__help {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(10, 10, 10, 0.65);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.ll-studio__help-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 32px;
	max-width: 640px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.ll-studio__help-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.ll-studio__help-head h3 {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 22px;
	margin: 0;
	color: #0A0A0A;
}
.ll-studio__help-close {
	width: 32px;
	height: 32px;
	border: 0;
	background: #F5F5F5;
	border-radius: 50%;
	font-size: 22px;
	color: #404040;
	cursor: pointer;
}
.ll-studio__help-close:hover { background: #E5E5E5; color: #0A0A0A; }
.ll-studio__help-grid {
	display: grid;
	grid-template-columns: minmax(160px, auto) 1fr;
	gap: 10px 18px;
	font-size: 13px;
	color: #404040;
}
.ll-studio__help-grid kbd {
	display: inline-block;
	padding: 2px 8px;
	background: #F5F5F5;
	border: 1px solid #D4D4D4;
	border-bottom-width: 2px;
	border-radius: 4px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: #0A0A0A;
}
.ll-studio__help-foot {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #E5E5E5;
	font-size: 12px;
	color: #737373;
	font-style: italic;
}

/* ── Conversational Concierge modal ─────────────────────────────────── */
.ll-concierge {
	position: fixed; inset: 0; z-index: 1000;
	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(8px);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	animation: ll-concierge-fade 0.25s ease both;
}
@keyframes ll-concierge-fade { from { opacity: 0; } to { opacity: 1; } }
.ll-concierge__card {
	background: #FFFFFF;
	border-radius: 18px;
	width: 100%;
	max-width: 720px;
	max-height: 88vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
	animation: ll-concierge-rise 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes ll-concierge-rise { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ll-concierge__head {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 24px 28px 18px;
	background: linear-gradient(135deg, #0A0A0A 0%, #1a3320 60%, #064E3B 100%);
	color: #FFFFFF;
}
.ll-concierge__brand {
	display: flex; align-items: center; gap: 14px;
}
.ll-concierge__icon {
	display: flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: linear-gradient(180deg, #B8FF1F, #7CEA00 60%, #4FBE00);
	color: #0A0A0A;
	font-weight: 800;
	font-size: 18px;
}
.ll-concierge__title {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #FFFFFF;
}
.ll-concierge__sub {
	font-size: 13px;
	color: #D1FAE5;
	margin-top: 2px;
}
.ll-concierge__close {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #D1FAE5;
	padding: 8px 14px;
	border-radius: 999px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-concierge__close:hover { background: rgba(255, 255, 255, 0.2); color: #FFF; }
.ll-concierge__progress {
	display: flex; gap: 6px; padding: 12px 28px;
	background: #FAFAFA;
	border-bottom: 1px solid #E5E5E5;
}
.ll-concierge__dot {
	flex: 1;
	height: 4px;
	border-radius: 2px;
	background: #E5E5E5;
	transition: background 0.2s ease;
}
.ll-concierge__dot[data-state="done"]    { background: #277A00; }
.ll-concierge__dot[data-state="current"] { background: #7CEA00; }
.ll-concierge__body {
	padding: 32px 32px 28px;
	overflow-y: auto;
	flex: 1;
}
.ll-concierge__step { animation: ll-concierge-step-in 0.3s ease both; }
@keyframes ll-concierge-step-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.ll-concierge__h2 {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: clamp(22px, 3vw, 32px);
	letter-spacing: -0.01em;
	margin: 0 0 8px;
	color: #0A0A0A;
}
.ll-concierge__p {
	font-size: 14px;
	color: #404040;
	margin: 0 0 24px;
	line-height: 1.55;
}
.ll-concierge__form { display: grid; gap: 12px; margin-bottom: 24px; }
.ll-concierge__form label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #737373;
	margin: 4px 0 -4px;
}
.ll-concierge__input,
.ll-concierge__form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #D4D4D4;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	background: #FFF;
	box-sizing: border-box;
}
.ll-concierge__input:focus { outline: none; border-color: #7CEA00; box-shadow: 0 0 0 3px rgba(124, 234, 0, 0.18); }
.ll-concierge__input--ta { min-height: 110px; resize: vertical; line-height: 1.5; }

.ll-concierge__upload {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
	padding: 36px;
	border: 2px dashed #D4D4D4;
	border-radius: 12px;
	background: #FAFAFA;
	cursor: pointer;
	margin-bottom: 24px;
	transition: all 0.15s ease;
}
.ll-concierge__upload:hover { border-color: #7CEA00; background: #F0FDD0; }
.ll-concierge__upload-icon { font-size: 28px; color: #277A00; font-weight: 700; }
.ll-concierge__upload-text { font-size: 13px; color: #737373; }
.ll-concierge__logo-preview { max-width: 200px; max-height: 100px; }
.ll-concierge__upload-status {
	margin: -12px 0 16px;
	padding: 10px 14px;
	border-radius: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	line-height: 1.5;
	white-space: pre-wrap;
}
.ll-concierge__upload-status[data-kind="busy"]  { background: #FEF3C7; color: #B45309; }
.ll-concierge__upload-status[data-kind="error"] { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.ll-concierge__upload-status[data-kind="ok"]    { background: #D1FAE5; color: #047857; }

.ll-concierge__formats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px;
	margin-bottom: 24px;
}
.ll-concierge__format {
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	padding: 14px 10px;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	background: #FFF;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-concierge__format:hover { border-color: #7CEA00; transform: translateY(-1px); }
.ll-concierge__format[data-active="true"] {
	border-color: #277A00;
	background: linear-gradient(180deg, #F0FDD0, #FFF);
	box-shadow: inset 0 0 0 1px #7CEA00;
}
.ll-concierge__format-shape {
	width: 32px; height: 44px;
	background: linear-gradient(180deg, #E5E5E5, #D4D4D4);
	border-radius: 4px;
}
.ll-concierge__format-label { font-size: 11px; font-weight: 600; text-align: center; color: #0A0A0A; line-height: 1.3; }
.ll-concierge__format-dim   { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #737373; }

.ll-concierge__choice-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
@media (max-width: 600px) { .ll-concierge__choice-grid { grid-template-columns: 1fr; } }
.ll-concierge__choice {
	padding: 18px;
	border: 1px solid #E5E5E5;
	border-radius: 12px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-concierge__choice:hover { border-color: #7CEA00; transform: translateY(-1px); }
.ll-concierge__choice[data-active="true"] {
	border-color: #277A00;
	background: linear-gradient(180deg, #F0FDD0, #FFF);
	box-shadow: 0 4px 12px rgba(124, 234, 0, 0.18);
}
.ll-concierge__choice-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; gap: 8px; }
.ll-concierge__choice-name { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 16px; color: #0A0A0A; }
.ll-concierge__choice-price { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #277A00; font-weight: 600; }
.ll-concierge__choice p { font-size: 12px; color: #737373; margin: 0; line-height: 1.5; }

.ll-concierge__starters {
	display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.ll-concierge__starter {
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid #E5E5E5;
	background: #F5F5F5;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: #404040;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-concierge__starter:hover { border-color: #7CEA00; background: #F0FDD0; color: #0A0A0A; }

.ll-concierge__loader { padding: 16px 0; }
.ll-concierge__loader-bar {
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, #7CEA00, transparent);
	background-size: 200% 100%;
	animation: ll-concierge-loader 1.4s linear infinite;
	margin-bottom: 24px;
}
@keyframes ll-concierge-loader { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.ll-concierge__loader-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ll-concierge__loader-steps li {
	padding: 10px 14px;
	border-radius: 8px;
	background: #FAFAFA;
	font-size: 13px;
	color: #737373;
	display: flex; align-items: center; gap: 10px;
}
.ll-concierge__loader-steps li::before {
	content: '○';
	font-size: 16px;
	color: #D4D4D4;
}
.ll-concierge__loader-steps li[data-state="busy"] { background: #FEF3C7; color: #B45309; }
.ll-concierge__loader-steps li[data-state="busy"]::before { content: '◐'; color: #F59E0B; animation: ll-concierge-spin 0.9s linear infinite; }
.ll-concierge__loader-steps li[data-state="done"] { background: #D1FAE5; color: #047857; }
.ll-concierge__loader-steps li[data-state="done"]::before { content: '●'; color: #047857; }
@keyframes ll-concierge-spin { to { transform: rotate(360deg); } }

.ll-concierge__nav {
	display: flex; gap: 8px; justify-content: flex-end;
	padding-top: 16px;
	border-top: 1px solid #E5E5E5;
	margin-top: 24px;
}
.ll-concierge__btn {
	padding: 10px 20px;
	border-radius: 10px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.15s ease;
}
.ll-concierge__btn--ghost {
	background: transparent;
	color: #404040;
	border-color: #D4D4D4;
}
.ll-concierge__btn--ghost:hover { border-color: #7CEA00; color: #277A00; }
.ll-concierge__btn--lime {
	background: linear-gradient(180deg, #B8FF1F, #7CEA00 60%, #4FBE00);
	color: #0A0A0A;
	border-color: #277A00;
	box-shadow: 0 2px 6px rgba(124, 234, 0, 0.3);
	font-weight: 700;
}
.ll-concierge__btn--lime:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(124, 234, 0, 0.45); }

/* ── Concierge: pricing estimator ───────────────────────────────────── */
.ll-concierge__pricing {
	background: linear-gradient(135deg, #F0FDD0 0%, #FFFFFF 60%, #FEF3C7 100%);
	border: 1px solid #B8FF1F;
	border-radius: 12px;
	padding: 18px 20px;
	margin-bottom: 24px;
}
.ll-concierge__pricing-head {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #277A00;
	margin-bottom: 10px;
}
.ll-concierge__pricing-head span { color: #0A0A0A; font-weight: 800; }
.ll-concierge__pricing-slider { width: 100%; accent-color: #7CEA00; margin-bottom: 14px; }
.ll-concierge__pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 16px;
}
.ll-concierge__pricing-grid > div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 4px 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.ll-concierge__pricing-grid .lbl {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #404040;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.ll-concierge__pricing-grid .val {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #0A0A0A;
}

/* ── Concierge: variants grid ───────────────────────────────────────── */
.ll-concierge__variants {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 24px;
}
.ll-concierge__variant {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
	border: 1px solid #E5E5E5;
	border-radius: 12px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s ease;
}
.ll-concierge__variant:hover {
	border-color: #7CEA00;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}
.ll-concierge__variant-swatches {
	display: flex;
	gap: 4px;
}
.ll-concierge__variant-swatches span {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.ll-concierge__variant-name {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #0A0A0A;
}
.ll-concierge__variant-tagline {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: #277A00;
	font-weight: 600;
	letter-spacing: 0.06em;
}
.ll-concierge__variant-reasoning {
	font-size: 12px;
	color: #404040;
	line-height: 1.5;
}

/* ── Concierge: in-modal tweak chat ─────────────────────────────────── */
.ll-concierge__tweak {
	background: #FAFAFA;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 20px;
}
.ll-concierge__tweak label {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #277A00;
	margin-bottom: 8px;
}
.ll-concierge__tweak-row { display: flex; gap: 6px; margin-bottom: 10px; }
.ll-concierge__tweak-row input { flex: 1; }
.ll-concierge__tweak-suggest { display: flex; flex-wrap: wrap; gap: 4px; }
.ll-concierge__tweak-suggest button {
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	font-size: 11px;
	color: #404040;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-concierge__tweak-suggest button:hover { border-color: #7CEA00; color: #277A00; background: #F0FDD0; }

/* ── Topbar tweak overlay ───────────────────────────────────────────── */
.ll-tweak-overlay {
	position: fixed; inset: 0; z-index: 998;
	background: rgba(10, 10, 10, 0.55);
	backdrop-filter: blur(6px);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	animation: ll-concierge-fade 0.2s ease both;
}
.ll-tweak-overlay__card {
	background: #FFF;
	border-radius: 14px;
	width: 100%;
	max-width: 540px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	overflow: hidden;
	animation: ll-concierge-rise 0.25s ease both;
}
.ll-tweak-overlay__head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 24px;
	background: linear-gradient(135deg, #064E3B 0%, #0A0A0A 100%);
	color: #FFF;
}
.ll-tweak-overlay__icon {
	display: flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: linear-gradient(180deg, #B8FF1F, #7CEA00);
	color: #0A0A0A; font-weight: 800;
}
.ll-tweak-overlay__head strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 16px; }
.ll-tweak-overlay__head span   { display: block; font-size: 12px; color: #D1FAE5; margin-top: 2px; }
.ll-tweak-overlay__close {
	margin-left: auto;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #FFF;
	width: 28px; height: 28px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
}
.ll-tweak-overlay__close:hover { background: rgba(255, 255, 255, 0.2); }
.ll-tweak-overlay__body { padding: 20px 24px 24px; }
.ll-tweak-overlay__nav { display: flex; justify-content: flex-end; margin-top: 14px; }

/* ── Mockup mode buttons (CSS 3D vs True 3D) ────────────────────────── */
.ll-mockup__mode-row { display: flex; gap: 4px; }
.ll-mockup__mode-btn {
	flex: 1;
	padding: 8px 10px;
	border-radius: 6px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ll-mockup__mode-btn:hover:not([disabled]) { border-color: #7CEA00; color: #277A00; }
.ll-mockup__mode-btn[data-on="1"] { background: #0A0A0A; color: #7CEA00; border-color: #0A0A0A; }
.ll-mockup__mode-btn[disabled]    { opacity: 0.4; cursor: not-allowed; }

/* ── Three.js stage ─────────────────────────────────────────────────── */
.ll-mockup__three {
	width: 100%;
	min-height: 500px;
	background:
		radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.6), transparent 50%),
		linear-gradient(180deg, #ECECEC 0%, #C0C0C0 100%);
	border-radius: 12px;
	overflow: hidden;
	cursor: grab;
	position: relative;
}
.ll-mockup__three:active { cursor: grabbing; }
.ll-mockup__three canvas { display: block; }
.ll-mockup__three-loading,
.ll-mockup__three-error {
	display: flex; align-items: center; justify-content: center;
	min-height: 500px;
	color: #737373;
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.06em;
}
.ll-mockup__three-error { color: #B91C1C; }

/* ── Version history list ───────────────────────────────────────────── */
.ll-versions-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 60vh;
	overflow-y: auto;
}
.ll-versions-list li {
	margin-bottom: 4px;
}
.ll-versions-item {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 12px 16px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s ease;
}
.ll-versions-item:hover {
	border-color: #7CEA00;
	background: #F0FDD0;
}
.ll-versions-item__time {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: #737373;
}
.ll-versions-item__label {
	font-size: 12px;
	color: #404040;
}
.ll-versions-item__cta {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	color: #277A00;
}

/* ── Brand kit panels ───────────────────────────────────────────────── */
.ll-brandkit { display: flex; flex-direction: column; gap: 28px; }
.ll-brandkit h4 {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 10px;
	color: #0A0A0A;
}
.ll-brandkit__list { display: grid; gap: 8px; margin-bottom: 8px; }
.ll-brandkit__item {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FAFAFA;
}
.ll-brandkit__swatches { display: flex; gap: 2px; }
.ll-brandkit__swatches span {
	width: 24px; height: 24px;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.08);
}
.ll-brandkit__name {
	font-family: 'Fredoka', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0A0A0A;
}
.ll-brandkit__actions { display: flex; gap: 4px; }
.ll-brandkit__actions button {
	padding: 4px 10px;
	border-radius: 4px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	font-size: 11px;
	cursor: pointer;
}
.ll-brandkit__actions button:hover { border-color: #7CEA00; color: #277A00; }
.ll-brandkit__logos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
	margin-bottom: 8px;
}
.ll-brandkit__logo-item {
	display: flex; flex-direction: column; align-items: center;
	gap: 6px;
	padding: 10px;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #FAFAFA;
}
.ll-brandkit__logo-item img {
	max-width: 100px;
	max-height: 60px;
	object-fit: contain;
}

/* ── Status bar ──────────────────────────────────────────────────────── */
.ll-studio__statusbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 16px;
	background: #0A0A0A;
	color: #A3A3A3;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.06em;
}
#ll-studio-status[data-status="ok"]    { color: #7CEA00; }
#ll-studio-status[data-status="busy"]  { color: #FCD34D; }
#ll-studio-status[data-status="error"] { color: #FCA5A5; }
.ll-studio__statusbar a { color: inherit; text-decoration: underline; }

/* ── Chat-first intake overlay ───────────────────────────────────────── */

.ll-studio-chat {
	position: absolute;
	inset: 0;
	z-index: 50;
	background: linear-gradient(180deg, rgba(10,10,10,0.96) 0%, rgba(20,30,18,0.97) 100%);
	display: flex;
	align-items: stretch;
	justify-content: center;
	overflow: hidden;
}
.ll-studio-chat__inner {
	width: min(720px, 100%);
	display: flex;
	flex-direction: column;
	padding: 24px;
	color: var(--ll-white, #fff);
}
.ll-studio-chat__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.10);
}
.ll-studio-chat__title {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--ll-font-mono, monospace);
	font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
}
.ll-studio-chat__bail { display: flex; gap: 8px; }
.ll-studio-chat__btn {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 13px; font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}
.ll-studio-chat__btn--ghost {
	background: transparent;
	color: rgba(255,255,255,0.85);
	border: 1px solid rgba(255,255,255,0.18);
}
.ll-studio-chat__btn--ghost:hover { background: rgba(255,255,255,0.06); }
.ll-studio-chat__btn--lime {
	background: linear-gradient(180deg, #B8FF1F, #7CEA00 60%, #4FBE00);
	color: #0A0A0A;
	border: 1px solid #277A00;
}

.ll-studio-chat__transcript {
	flex: 1;
	overflow-y: auto;
	padding: 24px 4px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ll-studio-chat__msg { display: flex; }
.ll-studio-chat__msg--user   { justify-content: flex-end; }
.ll-studio-chat__msg--assistant { justify-content: flex-start; }
.ll-studio-chat__bubble {
	max-width: 80%;
	padding: 12px 16px;
	border-radius: 14px;
	font-size: 15px;
	line-height: 1.55;
	white-space: pre-wrap;
	word-wrap: break-word;
}
.ll-studio-chat__msg--user .ll-studio-chat__bubble {
	background: var(--ll-lime-500, #7CEA00); color: #0A0A0A;
	border-bottom-right-radius: 4px;
}
.ll-studio-chat__msg--assistant .ll-studio-chat__bubble {
	background: rgba(255,255,255,0.08); color: #fff;
	border-bottom-left-radius: 4px;
}
.ll-studio-chat__ack {
	align-self: center;
	font-family: var(--ll-font-mono, monospace);
	font-size: 11px;
	color: rgba(184,255,31,0.75);
	padding: 4px 8px;
	background: rgba(124,234,0,0.08);
	border-radius: 6px;
}
.ll-studio-chat__variants {
	display: flex; flex-wrap: wrap; gap: 8px;
	padding: 8px 0;
}
.ll-studio-chat__variant-btn {
	padding: 10px 16px;
	background: rgba(124,234,0,0.12);
	border: 1px solid rgba(124,234,0,0.4);
	color: #B8FF1F;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
}

.ll-studio-chat__chips {
	display: flex; flex-wrap: wrap; gap: 6px;
	padding: 8px 0 0;
}
.ll-studio-chat__chip {
	padding: 6px 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.85);
	border-radius: 999px;
	font-size: 13px;
	cursor: pointer;
}
.ll-studio-chat__chip:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }

.ll-studio-chat__compose {
	display: flex; gap: 8px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.10);
}
.ll-studio-chat__input {
	flex: 1;
	padding: 12px 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	font-family: inherit;
}
.ll-studio-chat__input:focus { outline: 2px solid #7CEA00; }
.ll-studio-chat__status {
	margin-top: 8px;
	font-family: var(--ll-font-mono, monospace);
	font-size: 12px;
	color: rgba(255,255,255,0.55);
}
.ll-studio-chat__status[data-kind="error"] { color: #FF7A7A; }

/* ── Font picker (Google Fonts) ───────────────────────────────────────── */

.ll-fontpicker__loading,
.ll-fontpicker__empty { padding: 12px; color: var(--ll-grey-500); font-size: 13px; }
.ll-fontpicker__search {
	width: 100%; padding: 8px 12px;
	border: 1px solid var(--ll-grey-200, #ddd);
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 8px;
}
.ll-fontpicker__list {
	max-height: 360px;
	overflow-y: auto;
	border: 1px solid var(--ll-grey-200, #ddd);
	border-radius: 8px;
	background: #fff;
}
.ll-fontpicker__row {
	display: block;
	width: 100%;
	padding: 10px 12px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--ll-grey-100, #eee);
	text-align: left;
	font-size: 16px;
	cursor: pointer;
}
.ll-fontpicker__row:hover { background: var(--ll-grey-50, #f9f9f9); }

/* ── Studio chat: value-prop, prominent bail, email-capture ──────────── */
/* CRO #45 — value-prop above the chat. */
.ll-studio-chat__valueprop {
	padding: 14px 18px;
	margin-bottom: 16px;
	background: rgba(124,234,0,0.06);
	border: 1px solid rgba(124,234,0,0.18);
	border-left: 3px solid #7CEA00;
	border-radius: 8px;
	font-size: 14px;
	color: #fff;
	line-height: 1.55;
}
.ll-studio-chat__valueprop strong { color: #B8FF1F; display: block; margin-bottom: 4px; font-size: 15px; }
/* CRO #46 — promote "Skip chat · Use a form". */
.ll-studio-chat__btn--prominent {
	background: rgba(255,255,255,0.10) !important;
	border-color: rgba(255,255,255,0.30) !important;
	color: #fff !important;
	font-weight: 700 !important;
}
.ll-studio-chat__btn--prominent:hover {
	background: rgba(255,255,255,0.18) !important;
	border-color: rgba(184,255,31,0.7) !important;
}
/* CRO #47 — email-capture after generation. */
.ll-studio-chat__email-capture {
	margin-top: 12px;
	padding: 16px;
	background: linear-gradient(180deg, rgba(124,234,0,0.10), rgba(124,234,0,0.04));
	border: 1px solid rgba(124,234,0,0.30);
	border-radius: 12px;
}
.ll-studio-chat__email-capture-head { margin-bottom: 10px; }
.ll-studio-chat__email-capture-head strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.ll-studio-chat__email-capture-head span  { font-size: 12px; color: rgba(255,255,255,0.7); }
.ll-studio-chat__email-form { display: flex; gap: 8px; }
.ll-studio-chat__email-form input { flex: 1; }
.ll-studio-chat__email-status {
	margin-top: 8px;
	font-size: 12px;
	font-family: var(--ll-font-mono, monospace);
	color: rgba(255,255,255,0.7);
}
.ll-studio-chat__email-status[data-kind="ok"]    { color: #B8FF1F; }
.ll-studio-chat__email-status[data-kind="error"] { color: #FF7A7A; }
