/** Shopify CDN: Minification failed

Line 948:65 Unexpected ")"

**/
/* ============================================================
   Lovely Colors — Boutique stylesheet (Phase 1: foundation)
   Ported from the design source hi-fi prototype `styles.css`
   (project 019e28c0-526c-7056-9d72-a84a91ab9858).
   Phase 1 chunks: reset, type, layout, topbar, nav, audience-toggle,
   cart-pill, footer, buttons. Hero/shop/sim/spaces/etc land in
   subsequent CSS files via the Phase 2/3 sections.
   ============================================================ */

/* --- reset (scoped: don't break customer pages that rely on Shopify
       defaults — apply only inside .lc-boutique-scope or to global
       elements we're sure about) --- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
}
body {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font: inherit; color: inherit; }

/* --- typography utilities --- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow.small { font-size: 10px; letter-spacing: 0.2em; }
.display {
  font-family: var(--font);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.serif-feel { /* still Montserrat, italic light */
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* --- layout helpers --- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.row { display: flex; align-items: center; }
.between { display: flex; align-items: center; justify-content: space-between; }
.col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.gap-6 { gap: 24px; } .gap-8 { gap: 32px; } .gap-12 { gap: 48px; }

/* ============================================================
   Topbar ticker
   ============================================================ */
.lc-topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 0;
  overflow: hidden;
}
.lc-topbar-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: lc-ticker-slide var(--lc-ticker-speed, 40s) linear infinite;
  will-change: transform;
}
@keyframes lc-ticker-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lc-topbar:hover .lc-topbar-track,
.lc-topbar[data-paused='true'] .lc-topbar-track {
  animation-play-state: paused;
}
.lc-topbar-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.lc-topbar-track .dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
@media (prefers-reduced-motion: reduce) {
  .lc-topbar-track { animation: none; transform: none; gap: 32px; flex-wrap: wrap; white-space: normal; }
}

/* ============================================================
   Header / nav
   ============================================================ */
header.lc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}
.lc-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}
.lc-nav-left, .lc-nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lc-nav-right { justify-content: flex-end; }
.lc-nav-link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.lc-nav-link:hover, .lc-nav-link:focus-visible { color: var(--ink); }
.lc-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
}

/* Brand wordmark — lovely® COLORS + 3 dots palette */
.lc-brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--ink);
}
.lc-brand-wordmark .lc-brand-mark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.lc-brand-wordmark .lc-brand-mark sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 600;
}
.lc-brand-wordmark .lc-brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}
.lc-brand-wordmark .lc-brand-dots {
  display: inline-flex;
  gap: 4px;
  margin-top: 5px;
}
.lc-brand-wordmark .lc-brand-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}

/* Audience toggle */
.lc-audience-toggle {
  display: inline-flex;
  border: 1px solid var(--ink);
  padding: 2px;
}
.lc-audience-toggle button {
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}
.lc-audience-toggle button.on,
.lc-audience-toggle button[aria-pressed='true'] {
  background: var(--ink);
  color: var(--paper);
}

/* Cart pill */
.lc-cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}
.lc-cart-pill:hover { background: var(--ink); color: var(--paper); }
.lc-cart-pill .count {
  background: var(--accent);
  color: var(--ink);
  padding: 2px 6px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Mobile collapse */
@media (max-width: 720px) {
  .lc-nav-inner { grid-template-columns: 1fr auto; }
  .lc-nav-left { display: none; }
  .lc-nav-mobile-toggle { display: inline-flex; }
}
.lc-nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--hair-2);
  font-size: 18px;
}

/* Skip link */
.lc-skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  z-index: 200;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lc-skip-link:focus { left: 1rem; }

/* ============================================================
   Buttons (used by hero, spaces, sim, footer)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-arrow::after { content: '→'; font-size: 14px; letter-spacing: 0; }

/* ============================================================
   Footer
   ============================================================ */
footer.lc-foot {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 32px;
  border: none;
}
.lc-foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.lc-foot-grid h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.7;
}
.lc-foot-grid ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  opacity: 0.85;
}
.lc-foot-grid ul a { transition: color 0.18s ease; }
.lc-foot-grid ul a:hover { color: var(--accent); }
.lc-foot-mark {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.lc-foot-mark .dot {
  color: var(--accent);
}
.lc-foot-grid p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
  margin-top: 16px;
  max-width: 320px;
}
.lc-foot-news {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  max-width: 320px;
}
.lc-foot-news input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 14px;
  color: var(--paper);
  flex: 1;
  font-size: 12px;
}
.lc-foot-news input::placeholder { color: rgba(255, 255, 255, 0.5); }
.lc-foot-news button {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.lc-foot-news button:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.lc-foot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}
.lc-foot-bot a:hover { opacity: 1; }
.lc-foot-socials {
  display: inline-flex;
  gap: 14px;
}

@media (max-width: 1100px) {
  .lc-foot-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .lc-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lc-foot-bot { flex-direction: column; gap: 12px; }
}

/* ============================================================
   Phase 2 — boutique sections (hero / shop-grid / spaces / simulator)
   ============================================================ */

/* Generic section + heading */
.lc-section { padding: 96px 0; border-top: 1px solid var(--hair); }
.lc-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.lc-sec-head h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.lc-sec-head .right { max-width: 360px; color: var(--ink-3); font-size: 14px; line-height: 1.55; }

/* Tags / stickers */
.tag {
  display: inline-flex;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--ink);
  color: var(--paper);
}
.tag.new { background: var(--accent); color: var(--ink); }
.sticker {
  position: absolute;
  pointer-events: none;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 3;
}
.sticker.tl { top: 4%; left: 0; }
.sticker.br { bottom: 24%; right: 0; background: var(--accent); color: var(--ink); }

/* ============================================================
   Hero (split-grid + video-led)
   ============================================================ */
.lc-hero-boutique {
  padding: 48px 0 60px;
  border-top: none;
}
.lc-hero-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}
.lc-hero-h1 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-size: clamp(56px, 8vw, 132px);
  text-wrap: balance;
}
.lc-hero-h1 .ital { font-weight: 300; font-style: italic; letter-spacing: -0.045em; }
.lc-hero-h1 .lc-underline {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 14px;
  padding-right: 8px;
}
.lc-hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lc-hero-meta { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 12px; }
.lc-hero-meta-item { display: flex; flex-direction: column; gap: 4px; max-width: 220px; }
.lc-hero-meta-item .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}
.lc-hero-meta-item .v { font-size: 14px; line-height: 1.4; color: var(--ink-2); }
.lc-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.lc-hero-frame {
  position: relative;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--hair);
  background: var(--ink);
  overflow: hidden;
}
.lc-hero-frame video, .lc-hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lc-hero-frame .lc-hero-badges {
  position: absolute;
  top: 18px; left: 18px;
  display: flex; gap: 8px;
  z-index: 6;
}
.lc-hero-frame .lc-hero-badges .sticker { position: static; }
.lc-hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(26, 24, 20, 0.7), transparent);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  z-index: 6;
  pointer-events: none;
}
.lc-hero-pick { pointer-events: auto; }
.lc-hero-pick .eyebrow { color: rgba(245, 241, 234, 0.7); }
.lc-hero-pick-swatches { display: flex; flex-wrap: wrap; gap: 8px; max-width: 320px; margin-top: 8px; }
.lc-hero-swatch {
  width: 22px; height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.18s ease;
}
.lc-hero-swatch:hover { transform: scale(1.15); }
.lc-hero-swatch.on { outline: 1px solid var(--paper); outline-offset: 3px; }
.lc-hero-corner {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 241, 234, 0.65);
  align-self: end;
}

@media (max-width: 900px) {
  .lc-hero-head { grid-template-columns: 1fr; }
  .lc-hero-frame { aspect-ratio: 4 / 3; }
}

/* ============================================================
   Shop grid (boutique core)
   ============================================================ */
.lc-shop-filters {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hair);
}
.lc-shop-filter {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.lc-shop-filter:hover { color: var(--ink); }
.lc-shop-filter.on { color: var(--ink); border-bottom-color: var(--ink); }
.lc-shop-count {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.lc-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid var(--hair);
  border-top: 1px solid var(--hair);
}
.lc-shop-card {
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 22px 18px 18px;
  position: relative;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
}
.lc-shop-card:hover { background: var(--paper-2); }
.lc-shop-card .ref {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}
.lc-shop-card .swatch {
  height: 140px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.lc-shop-card .swatch::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.55));
  mix-blend-mode: overlay;
}
.lc-shop-card .name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lc-shop-card .name .hex {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.lc-shop-card .row-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.lc-shop-card .price {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.lc-shop-card .price s {
  color: var(--ink-4);
  font-weight: 400;
  margin-right: 6px;
}
.lc-shop-card .add {
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.lc-shop-card .add:hover { background: var(--ink); color: var(--paper); }
.lc-shop-card.in-cart .add { background: var(--accent); border-color: var(--accent); }

/* Pro price (hidden by default, shown when body[data-audience=pro]) */
.lc-shop-card .price-pro,
.lc-shop-card .price-strike { display: none; }
body[data-audience='pro'] .lc-shop-card .price-pro,
body[data-audience='pro'] .lc-shop-card .price-strike { display: inline; }
body[data-audience='pro'] .lc-shop-card .price-retail { display: none; }

/* Coffrets row */
.lc-coffrets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.lc-coffret {
  border: 1px solid var(--hair);
  padding: 24px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.18s ease;
}
.lc-coffret:nth-child(2) {
  background: var(--ink);
  color: var(--paper);
}
.lc-coffret:hover { background: var(--paper-2); }
.lc-coffret:nth-child(2):hover { background: #000; }
.lc-coffret .sub {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; opacity: 0.6;
}
.lc-coffret .title {
  font-size: 24px; font-weight: 800; letter-spacing: -0.03em;
}
.lc-coffret .preview {
  display: grid;
  gap: 3px;
  margin: 4px 0 4px;
}
.lc-coffret .preview span {
  aspect-ratio: 1;
  background: var(--swatch-color, var(--paper-3));
}
.lc-coffret .foot-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.lc-coffret .price {
  font-weight: 700; font-size: 18px;
  font-variant-numeric: tabular-nums;
}
.lc-coffret .price s {
  font-weight: 400; margin-right: 6px; opacity: 0.5; font-size: 13px;
}

@media (max-width: 1100px) {
  .lc-shop-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .lc-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .lc-coffrets { grid-template-columns: 1fr; }
}

/* ============================================================
   Spaces (Particulier / Pro split)
   ============================================================ */
.lc-spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hair);
}
.lc-space-card {
  padding: 56px;
  position: relative;
  min-height: 520px;
  display: flex; flex-direction: column;
}
.lc-space-card.particulier { background: var(--paper); border-right: 1px solid var(--hair); }
.lc-space-card.pro { background: var(--ink); color: var(--paper); }
.lc-space-card .label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; opacity: 0.6; margin-bottom: 22px;
}
.lc-space-card h3 {
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.035em; margin-bottom: 24px;
}
.lc-space-card h3 .serif-feel { font-weight: 300; font-style: italic; letter-spacing: -0.01em; }
.lc-space-card .lede {
  font-size: 14px; line-height: 1.6;
  max-width: 380px; margin-bottom: 36px; opacity: 0.86;
}
.lc-space-card ul {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 14px; margin-bottom: auto;
}
.lc-space-card li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  font-size: 13px; line-height: 1.45;
}
.lc-space-card li .num {
  font-variant-numeric: tabular-nums;
  font-size: 11px; letter-spacing: 0.14em;
  opacity: 0.5; padding-top: 3px;
}
.lc-space-card .ctas {
  display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap;
}
.lc-space-card.pro .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.lc-space-card.pro .btn:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.lc-space-card.pro .btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.lc-space-card.pro .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.lc-space-card .pro-stat {
  position: absolute; top: 56px; right: 56px;
  text-align: right;
}
.lc-space-card .pro-stat .v {
  font-size: 56px; font-weight: 300;
  letter-spacing: -0.04em; line-height: 1;
}
.lc-space-card .pro-stat .k {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6; margin-top: 6px;
}

@media (max-width: 1100px) {
  .lc-spaces-grid { grid-template-columns: 1fr; }
  .lc-space-card.particulier { border-right: 0; border-bottom: 1px solid var(--hair); }
}
@media (max-width: 720px) {
  .lc-space-card { padding: 36px 28px; min-height: 0; }
  .lc-space-card .pro-stat { top: 28px; right: 28px; }
  .lc-space-card .pro-stat .v { font-size: 36px; }
}

/* ============================================================
   Simulator (color-on-SVG application)
   ============================================================ */
.lc-sim-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: var(--paper-2);
  padding: 48px;
  border: 1px solid var(--hair);
}
.lc-sim-canvas {
  background: white;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.lc-sim-canvas svg.sim-svg {
  width: 100%; height: 100%;
  display: block;
}
.lc-sim-side h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 6px;
}
.lc-sim-side .desc {
  font-size: 13px; color: var(--ink-3);
  line-height: 1.5; max-width: 380px;
  margin-bottom: 22px;
}
.lc-sim-section-title {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.lc-sim-section-title::after { content: ''; flex: 1; height: 1px; background: var(--hair); }
.lc-sim-templates {
  display: flex; gap: 8px; margin-bottom: 26px;
}
.lc-sim-templates .tpl-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--hair-2);
  background: white;
  cursor: pointer;
}
.lc-sim-templates .tpl-btn.on { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.lc-sim-templates .tpl-btn svg { width: 32px; height: 32px; color: var(--ink); }
.lc-sim-palette {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.lc-sim-palette .palette-btn {
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.lc-sim-palette .palette-btn.on {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}
.sim-region { cursor: pointer; transition: fill 0.25s ease; }
.sim-region:hover { opacity: 0.85; }
.lc-sim-actions {
  display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap;
}
.lc-sim-actions .btn { flex: 1; justify-content: center; padding: 12px 16px; min-width: 140px; }

@media (max-width: 1100px) {
  .lc-sim-shell { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lc-sim-shell { padding: 24px; gap: 24px; }
  .lc-sim-palette { grid-template-columns: repeat(8, 1fr); }
}

/* ============================================================
   Phase 4 — interactions polish (reveal, ripple, spotlight, 3D marker)
   ============================================================ */

/* Scroll-reveal — content is visible by default; only hidden-then-revealed when JS is active.
   If interactions.js fails to load/run, `html.lc-js` is never set, so nothing is ever stuck invisible. */
.lc-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.lc-js .lc-reveal {
  opacity: 0;
  transform: translateY(28px);
}
html.lc-js .lc-reveal.lc-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .lc-reveal,
  html.lc-js .lc-reveal { opacity: 1; transform: none; transition: none; }
}

/* Click ripple — paint blob from click point */
.lc-click-ripple {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0.55;
  animation: lc-ripple 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  mix-blend-mode: multiply;
}
@keyframes lc-ripple {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(16);  opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lc-click-ripple { display: none; }
}

/* Spotlight overlay on cards */
.lc-shop-card, .lb-card, .lc-coffret {
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-a: 0;
  position: relative;
}
.lc-shop-card::before, .lb-card::before, .lc-coffret::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: var(--spot-a, 0);
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 1;
}
.lc-shop-card > * { position: relative; z-index: 2; }
.lb-card > * { position: relative; z-index: 2; }

/* ── 3D marker (port from styles.css /* — 3D MARKER — */) ── */
.scene.lc-marker-3d {
  width: 360px;
  height: 540px;
  perspective: 1400px;
  position: relative;
}
.scene.lc-marker-3d .marker {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: lc-floatUp 5s ease-in-out infinite alternate, lc-spinY 14s linear infinite;
}
@keyframes lc-spinY { to { transform: rotateY(-360deg); } }
@keyframes lc-floatUp {
  0%   { transform: translateY(-8px) rotateZ(-3deg); }
  100% { transform: translateY(8px)  rotateZ(3deg); }
}
.scene.lc-marker-3d .marker-tilt {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateZ(-14deg);
}
.scene.lc-marker-3d .cyl {
  position: absolute; left: 50%; top: 50%;
  transform-style: preserve-3d;
}
.scene.lc-marker-3d .cyl > .face {
  position: absolute; left: 50%; top: 50%;
  transform-origin: center;
}
.scene.lc-marker-3d .gloss {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 30%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.0) 70%,
    transparent 100%);
  mix-blend-mode: screen;
}
@media (prefers-reduced-motion: reduce) {
  .scene.lc-marker-3d .marker { animation: none; }
}

/* Hero stage uses --tilt-y / --tilt-x set by interactions.js */
.lc-hero-frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --mouse-x: 0;
  --mouse-y: 0;
}
