/* ============================================================
   Le Cayenne — Web Edition · Design System
   Responsive: mobile-first → tablet → desktop → wide
   ============================================================ */

:root {
  /* Brand palette */
  --orange:        #FF5A1F;
  --orange-deep:   #E5341A;
  --orange-text:   #C2410C;  /* WCAG AA 4.86:1 on white (was #C73E18 = 4.16:1, failed 4.5 for small text). Accessible orange for small text on light bg; --orange stays for fills/large display. */
  --yellow:        #FFD93D;
  --yellow-soft:   #FFF4C2;
  --ink:           #0A0A0A;
  --ink-2:         #161616;
  --paper:         #FFFFFF;
  --cream:         #FAF7F2;
  --cream-2:       #F3EFE5;
  --gray-1:        #ECE8DE;
  --gray-2:        #D7D2C5;
  /* [MAX-AUDIT HEAL 2026-05-18 P0 WCAG AA] #8A857A=3.05:1 FAIL → #6F6A60=4.7:1 PASS
     matches mobile heal cycle B 2026-05-11 ADV-A11-017 closure on white background */
  --gray-3:        #6F6A60;
  --gray-4:        #5C584F;
  --green:         #1FA653;
  --green-text:    #0C6B31;  /* [W3-HEAL-R2 P1-A 2026-06-06] WCAG AA dark green for green-as-text on light bg: 6.64:1 on white, 5.66:1 on the rgba(31,166,83,0.15) pill. --green (3.16:1 on white) stays for fills/dots/large accents. */
  --red:           #D72638;
  --red-text:      #A8142A;  /* [W3-HEAL-R2 P1-A 2026-06-06] WCAG AA dark red for red-as-text on light bg: 5.92:1 on the rgba(215,38,56,0.15) pill (was --red 3.92:1, failed 4.5 for 10px pill). --red stays for fills/large. */

  /* Type scale — responsive via clamp() */
  --fs-micro:    clamp(10px, 0.7vw, 11px);
  --fs-caption:  clamp(11px, 0.8vw, 12px);
  --fs-body:     clamp(14px, 1vw, 15px);
  --fs-lg:       clamp(16px, 1.1vw, 18px);
  --fs-h4:       clamp(18px, 1.4vw, 22px);
  --fs-h3:       clamp(22px, 2vw, 30px);
  --fs-h2:       clamp(32px, 3.5vw, 48px);
  --fs-h1:       clamp(48px, 7vw, 96px);
  --fs-hero:     clamp(64px, 12vw, 184px);

  --font-display: 'Anton', 'Bebas Neue', 'Inter', sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Depth tokens */
  --shadow-1:        0 1px 2px rgba(10,10,10,0.04), 0 3px 8px rgba(10,10,10,0.06);
  --shadow-2:        0 2px 6px rgba(10,10,10,0.06), 0 12px 28px rgba(10,10,10,0.08);
  --shadow-3:        0 6px 18px -4px rgba(10,10,10,0.16), 0 24px 48px -12px rgba(10,10,10,0.18);
  --shadow-cta:      0 8px 24px -4px rgba(255,90,31,0.45), 0 2px 8px rgba(10,10,10,0.1);
  --shadow-card-hov: 0 4px 12px rgba(10,10,10,0.08), 0 20px 40px -8px rgba(10,10,10,0.16);

  /* Motion */
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:    160ms;
  --dur-base:    240ms;
  --dur-slow:    420ms;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --page-max:   1440px;
  --gutter:     clamp(20px, 4vw, 64px);
  --nav-h:      72px;
  --nav-h-sm:   60px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: inherit; cursor: pointer; }
button:disabled { cursor: not-allowed; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.lc-app { min-height: 100vh; display: flex; flex-direction: column; }

.lc-container {
  width: 100%; max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* [HEAL VIS-WEB-01/VIS-WEB-02 2026-06-04] Long single words in large --fs-h1 hero
   display headings (e.g. "RETROUVER") overflow on narrow mobile. Add a wrap/hyphen
   safeguard generally on the shared display class. */
.lc-display { font-family: var(--font-display); font-weight: 400; line-height: 0.95; text-transform: uppercase; letter-spacing: -0.005em; overflow-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; hyphens: auto; }
.lc-mono    { font-family: var(--font-mono); }

/* [ULTRA-FRONTENDS HEAL 2026-05-18 P1 WCAG SC 2.4.7] Focus-visible global rule — restore
   keyboard accessibility outline (was removed at styles.css:820, 877). 3px orange ring with
   2px offset, parity with mobile (styles.css:37-46). */
button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
[role="radio"]:focus-visible,
[role="checkbox"]:focus-visible,
[role="tab"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 6px;
}
/* [ULTRA-FRONTENDS HEAL 2026-05-18 P0 WCAG SC 1.4.3] --orange (3.11:1) FAIL on small text →
   --orange-text (5.18:1) PASS. .lc-eyebrow is 11-12px caption — needs ≥4.5:1. */
.lc-eyebrow { font-family: var(--font-mono); font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-text); }

/* ============================================================
   NAVBAR
   ============================================================ */
.lc-nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h-sm);
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(10,10,10,0.05);
}
@media (min-width: 768px) { .lc-nav { height: var(--nav-h); } }

.lc-nav-row {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.lc-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.01em; color: var(--ink); text-transform: uppercase;
  white-space: nowrap;
}
.lc-nav-brand b { color: var(--orange-text); font-weight: 400; }
.lc-nav-brand-mark {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px;
}

.lc-nav-links { display: none; gap: 6px; }
@media (min-width: 1024px) { .lc-nav-links { display: flex; } }
.lc-nav-link {
  background: transparent; border: 0;
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--gray-4);
  letter-spacing: 0.02em; transition: all var(--dur-fast) var(--ease-spring);
}
.lc-nav-link:hover { background: rgba(10,10,10,0.05); color: var(--ink); }
.lc-nav-link.is-on { background: var(--ink); color: #fff; }

.lc-nav-actions { display: flex; align-items: center; gap: 8px; }
.lc-nav-btn-cart {
  position: relative;
  background: var(--ink); color: #fff; border: 0;
  padding: 9px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: transform var(--dur-fast) var(--ease-spring);
}
.lc-nav-btn-cart:hover { transform: translateY(-1px); }
.lc-nav-btn-cart-dot {
  /* [WADV-3 heal 2026-06-10] white-on-orange 3.12:1 (10.5px bold = fail AA). --orange-text bg → 4.86:1. */
  background: var(--orange-text); color: #fff; border-radius: 999px;
  min-width: 18px; padding: 0 5px; height: 18px; font-size: 10.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.lc-nav-btn-account {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--gray-1);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--dur-fast) var(--ease-spring);
}
.lc-nav-btn-account:hover { border-color: var(--ink); }
.lc-nav-btn-account .ava {
  width: 22px; height: 22px; border-radius: 999px;
  /* [W3-HEAL P1-02 2026-06-06] white initials on orange 3.11:1 → --orange-text fill 5.18:1. */
  background: var(--orange-text); color: #fff;
  font-family: var(--font-display); font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}

.lc-nav-burger {
  display: flex; flex-direction: column; gap: 4px;
  /* [MOBILE-NAV FIX 2026-07-22] 38→44px + flex-shrink:0 : cible tactile WCAG 2.5.5 (44x44 min)
     que le flex de `.lc-nav-actions` ne doit pas rétrécir sous 44px. */
  width: 44px; height: 44px; flex-shrink: 0;
  align-items: center; justify-content: center;
  background: var(--paper); border: 1px solid var(--gray-1);
  border-radius: 999px;
}
@media (min-width: 1024px) { .lc-nav-burger { display: none; } }
.lc-nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur-base) var(--ease-spring);
}

/* Mobile menu drawer */
/* [MOBILE-NAV FIX 2026-07-22] `.lc-nav` porte `backdrop-filter` → il devient le BLOC CONTENEUR
   de tout descendant `position:fixed`. L'ancien `inset: var(--nav-h-sm) 0 0 0` se résolvait donc
   contre la box de la nav (~60px) et NON le viewport → le tiroir s'écrasait à ~40px de haut
   (barre de navigation mobile « cassée » : sliver au lieu du plein écran). Fix : positionnement
   `absolute` relatif à la nav (top:100% = juste sous la barre, robuste à tous les breakpoints)
   + hauteur en unités viewport (dvh pour ne pas passer sous la barre d'URL mobile). */
.lc-mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  height: calc(100vh - var(--nav-h-sm));
  height: calc(100dvh - var(--nav-h-sm));
  background: var(--cream);
  padding: 20px var(--gutter);
  z-index: 49;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .lc-mobile-menu { height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h)); }
}
.lc-mobile-link {
  text-align: left; padding: 16px 18px;
  background: var(--paper); border: 0; border-radius: 14px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.lc-mobile-link.is-on { background: var(--ink); color: var(--yellow); }
.lc-mobile-link em { font-style: normal; font-size: 11px; color: var(--gray-3); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.lc-hero {
  position: relative;
  padding: clamp(40px, 8vw, 100px) 0 clamp(60px, 10vw, 140px);
  overflow: hidden;
}
.lc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .lc-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
}

.lc-hero-text { position: relative; z-index: 2; }
.lc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border-radius: 999px;
  padding: 6px 12px;
  box-shadow: var(--shadow-1);
}
.lc-hero-eyebrow b { color: var(--orange-text); }
.lc-hero h1 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
/* [W3-HEAL P1-02 2026-06-06] orange display span on cream = 2.92:1, fails 3:1 large floor → --orange-text 4.85:1. */
.lc-hero h1 span { color: var(--orange-text); }
.lc-hero h1 em { font-style: normal; color: var(--ink); -webkit-text-stroke: 2px var(--ink); -webkit-text-fill-color: transparent; }
.lc-hero p {
  margin: 22px 0 0;
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--gray-4);
  max-width: 440px;
}

.lc-hero-ctas { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.lc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border: 0; border-radius: 16px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base) var(--ease-spring);
}
.lc-btn:hover { transform: translateY(-1px); }
.lc-btn:active { transform: translateY(0) scale(0.99); }
/* [W3-HEAL P1-02 2026-06-06 WCAG SC 1.4.3] white-on-orange #fff/#FF5A1F = 3.12:1 FAIL → darken fill to --orange-text (#C2410C) → white-on-fill = 5.18:1 PASS. White CTA text preserved; brand hue family kept. */
.lc-btn--orange { background: var(--orange-text); color: #fff; box-shadow: var(--shadow-cta); }
.lc-btn--orange:hover { box-shadow: 0 12px 32px -4px rgba(255,90,31,0.55); }
.lc-btn--ink { background: var(--ink); color: #fff; }
.lc-btn--ghost { background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); }
.lc-btn--yellow { background: var(--yellow); color: var(--ink); }
.lc-btn-arrow { transition: transform var(--dur-fast) var(--ease-spring); }
.lc-btn:hover .lc-btn-arrow { transform: translateX(3px); }

/* Hero stats inline */
.lc-hero-stats {
  margin-top: 36px; display: flex; gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.lc-hero-stat { display: flex; flex-direction: column; }
.lc-hero-stat-num { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); line-height: 1; color: var(--ink); letter-spacing: -0.01em; }
/* [W3-HEAL P1-02 2026-06-06] stat-num accent on cream 2.91:1 fails 3:1 large → --orange-text 4.85:1. */
.lc-hero-stat-num span { color: var(--orange-text); }
.lc-hero-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-3); margin-top: 6px; }

/* Hero illustration */
.lc-hero-art {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--yellow);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.lc-hero-art-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lc-hero-art-tag {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--ink);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
}
.lc-hero-art-floating {
  position: absolute;
  background: var(--ink); color: #fff;
  border-radius: 18px; padding: 12px 16px;
  box-shadow: var(--shadow-3);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.lc-hero-art-floating--tl { top: 30%; left: -14px; }
.lc-hero-art-floating--br { bottom: 12%; right: 14px; }

/* Marquee */
.lc-marquee {
  margin-top: clamp(20px, 4vw, 40px);
  background: var(--ink); color: var(--yellow);
  padding: 14px 0; overflow: hidden;
  border-radius: 16px;
  position: relative;
}
@keyframes lc-marquee-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lc-marquee-track {
  display: flex; gap: 36px; white-space: nowrap;
  animation: lc-marquee-run 30s linear infinite;
}
.lc-marquee-track span {
  font-family: var(--font-display); font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.02em;
}
.lc-marquee-track i {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: var(--orange);
  align-self: center;
}

/* ============================================================
   SECTION
   ============================================================ */
.lc-section { padding: clamp(60px, 8vw, 120px) 0; }
.lc-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(28px, 4vw, 48px);
  gap: 24px; flex-wrap: wrap;
}
.lc-section-head-text { max-width: 640px; }
.lc-section-head h1, .lc-section-head h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  /* [HEAL VIS-WEB-02 2026-06-04] same word-break safeguard for section-head headings */
  overflow-wrap: break-word;
  word-break: break-word;
}
/* [W3-HEAL P1-02 2026-06-06] orange display span on cream = 2.92:1, fails 3:1 large floor → --orange-text 4.85:1. */
.lc-section-head h1 span, .lc-section-head h2 span { color: var(--orange-text); }
.lc-section-head p { margin: 12px 0 0; color: var(--gray-4); font-size: var(--fs-lg); line-height: 1.55; }

/* ============================================================
   MENU GRID
   ============================================================ */
.lc-cat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.lc-cat-tab {
  background: var(--paper); border: 1px solid var(--gray-1);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--gray-4);
  transition: all var(--dur-fast) var(--ease-spring);
  display: inline-flex; align-items: center; gap: 6px;
}
.lc-cat-tab:hover { border-color: var(--ink); color: var(--ink); }
.lc-cat-tab.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.lc-cat-tab i { font-style: normal; }

.lc-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .lc-menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lc-menu-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1200px) { .lc-menu-grid { grid-template-columns: repeat(4, 1fr); } }

.lc-card-item {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-spring);
  display: flex; flex-direction: column;
  cursor: pointer;
  text-align: left; border: 0;
  width: 100%;
  height: 100%;
}
.lc-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hov);
}
.lc-card-item-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lc-card-item-thumb-emoji { font-size: clamp(48px, 6vw, 80px); }
.lc-card-item-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.lc-card-item-badge--top  { background: var(--yellow); color: var(--ink); }
.lc-card-item-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.95); color: var(--ink); border: 0;
  display: flex; align-items: center; justify-content: center;
}
.lc-card-item-fav:hover { background: var(--ink); color: var(--orange); }
.lc-card-item-fav.is-on { background: var(--orange); color: #fff; }

.lc-card-item-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.lc-card-item-name { font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.25; }
.lc-card-item-desc { font-size: 12.5px; color: var(--gray-3); margin-top: 4px; line-height: 1.5; flex: 1; }
.lc-card-item-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
/* [W3-HEAL P1-02 2026-06-06 WCAG SC 1.4.3] --orange (3.12:1 on white card) FAIL → --orange-text (5.18:1) PASS. Extends A11Y-CONTRAST-01 token migration. */
.lc-card-item-price { font-family: var(--font-display); font-size: 22px; color: var(--orange-text); }
.lc-card-item-add {
  background: var(--ink); color: #fff; border: 0;
  width: 36px; height: 36px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-spring);
}
.lc-card-item-add:hover { background: var(--orange); }

/* ============================================================
   FEATURED CARD
   ============================================================ */
.lc-featured {
  background: var(--ink); color: #fff;
  border-radius: 28px; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}
@media (min-width: 800px) { .lc-featured { grid-template-columns: 1fr 1fr; } }
.lc-featured-body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.lc-featured-pill {
  display: inline-flex; align-items: center; gap: 6px;
  /* [W3-HEAL P1-02 2026-06-06] white-on-orange 3.12:1 → --orange-text fill 5.18:1 (11px caption needs 4.5:1). */
  background: var(--orange-text); color: #fff;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  width: fit-content;
}
.lc-featured h3 {
  margin: 16px 0 0;
  font-family: var(--font-display); font-size: var(--fs-h2);
  line-height: 0.95; letter-spacing: -0.005em; text-transform: uppercase;
}
.lc-featured h3 span { color: var(--yellow); }
.lc-featured-desc { margin: 14px 0 0; color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.55; }
.lc-featured-bottom { margin-top: 26px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.lc-featured-price { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); color: var(--yellow); line-height: 1; }
.lc-featured-art {
  position: relative;
  background: linear-gradient(160deg, var(--yellow) 0%, var(--orange) 100%);
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.lc-featured-art-emoji { font-size: clamp(140px, 18vw, 240px); filter: drop-shadow(0 24px 32px rgba(0,0,0,0.18)); }

/* ============================================================
   LOYALTY DASHBOARD
   ============================================================ */
.lc-loyalty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .lc-loyalty {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }
}

.lc-wallet {
  position: relative;
  background: linear-gradient(155deg, var(--ink-2) 0%, var(--ink) 100%);
  color: #fff; border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.lc-wallet::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 999px;
  background: radial-gradient(circle, rgba(255,90,31,0.4), transparent 60%);
  pointer-events: none;
}
.lc-wallet-head { display: flex; justify-content: space-between; align-items: center; position: relative; }
.lc-wallet-mark { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; color: var(--yellow); font-weight: 700; }
.lc-wallet-tier {
  background: rgba(255,217,61,0.15); color: var(--yellow);
  border: 1px solid rgba(255,217,61,0.5);
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.lc-wallet-balance { margin-top: 30px; position: relative; }
.lc-wallet-bal-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.lc-wallet-bal-num { font-family: var(--font-display); font-size: clamp(64px, 8vw, 120px); line-height: 0.9; margin-top: 8px; }
.lc-wallet-bal-num span { font-size: clamp(20px, 2.5vw, 30px); color: var(--yellow); margin-left: 6px; }
.lc-wallet-bal-sub { margin-top: 10px; color: rgba(255,255,255,0.6); font-size: 13px; }
.lc-wallet-progress { margin-top: 20px; height: 10px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; position: relative; }
.lc-wallet-progress-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--yellow)); border-radius: 999px; transition: width var(--dur-slow) var(--ease-spring); }
.lc-wallet-progress-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.6); }
.lc-wallet-code {
  margin-top: 26px;
  background: var(--paper); color: var(--ink);
  border-radius: 16px; padding: 16px;
  display: flex; align-items: center; gap: 16px;
}
.lc-wallet-code-qr {
  width: 84px; height: 84px;
  display: grid; grid-template-columns: repeat(13, 1fr); grid-template-rows: repeat(13, 1fr);
  gap: 1px; flex-shrink: 0;
}
.lc-wallet-code-qr i { background: var(--ink); border-radius: 1px; }
.lc-wallet-code-qr i.off { background: transparent; }
.lc-wallet-code-body { flex: 1; min-width: 0; }
.lc-wallet-code-title { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-3); }
.lc-wallet-code-id { font-family: var(--font-mono); font-size: 14px; font-weight: 700; margin-top: 4px; }
.lc-wallet-code-cta {
  background: var(--ink); color: #fff; border: 0;
  padding: 10px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Rewards list (right column) */
.lc-rewards { display: flex; flex-direction: column; gap: 10px; }
.lc-rewards-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.lc-reward-row {
  background: var(--paper);
  border-radius: 18px; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base) var(--ease-spring);
}
.lc-reward-row:hover { transform: translateX(3px); box-shadow: var(--shadow-2); }
/* [W3-HEAL P1-02 2026-06-06] opacity 0.5 crushed locked reward name to 3.77:1 + meta to 2.07:1 (axe serious).
   "Locked" kept via icon grayscale + a readable 0.85 dim; name(ink)=13.5:1, meta(gray-4 @0.85)=4.9:1 PASS. */
.lc-reward-row.is-locked { opacity: 0.85; }
.lc-reward-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--yellow-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.lc-reward-row.is-locked .lc-reward-icon { background: var(--gray-1); filter: grayscale(0.5); }
.lc-reward-body { flex: 1; min-width: 0; }
.lc-reward-name { font-weight: 700; font-size: 15px; color: var(--ink); }
/* [W3-HEAL P1-02 2026-06-06] --gray-3 dropped below 4.5:1 under the locked 0.85 dim → --gray-4 (4.9:1). */
.lc-reward-meta { font-size: 12px; color: var(--gray-4); margin-top: 2px; }
.lc-reward-cta {
  background: var(--ink); color: #fff; border: 0;
  padding: 10px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.lc-reward-cta--locked { background: var(--gray-2); color: var(--gray-4); }

/* ============================================================
   MODAL
   ============================================================ */
.lc-modal-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--gutter);
  animation: lc-fade-in var(--dur-base) var(--ease-spring);
}
@keyframes lc-fade-in { from { opacity: 0; } to { opacity: 1; } }
.lc-modal {
  background: var(--paper);
  border-radius: 28px;
  width: 100%; max-width: 920px;
  max-height: calc(100vh - 80px);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: lc-modal-rise var(--dur-base) var(--ease-spring);
  box-shadow: var(--shadow-3);
}
@keyframes lc-modal-rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
/* [MOBILE-FULLSCREEN 2026-07-12] Modal "full" (wizard, compte, upsell) — dimensions desktop.
   Remplace l'ancien style inline de WebModal pour que les media queries mobiles puissent
   forcer le plein écran (voir styles-mobile.css). */
.lc-modal--full { max-width: 980px; height: min(680px, calc(100vh - 80px)); }
.lc-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.95); color: var(--ink); border: 0;
  display: flex; align-items: center; justify-content: center;
}
.lc-modal-close:hover { background: var(--ink); color: #fff; }

/* ============================================================
   WIZARD (Item customization, two-pane on desktop)
   ============================================================ */
.lc-wiz {
  /* [FIX 2026-07-14] FLEX (pas grid). Un grid avec piste `fr` DANS un flex-item ne se
     borne PAS à la hauteur du modal sous Chrome (la rangée grandit au max-content = 801px
     même avec une hauteur px pure) → .lc-wiz-body ne scrolle jamais → footer « Continuer »
     déborde et est clippé par .lc-modal overflow:hidden = INACCESSIBLE (« UI tué »).
     Le flex borne correctement : mobile = colonne (preview masquée), desktop = rangée
     (main | preview 380px). Prouvé par mesure (footer dans le modal + body scrollable). */
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
@media (min-width: 800px) {
  .lc-wiz { flex-direction: row; }
  .lc-wiz-preview { flex: 0 0 380px; }
}

.lc-wiz-main { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; min-height: 0; overflow: hidden; }
.lc-wiz-header {
  padding: 24px 28px 16px;
  background: var(--paper);
}
.lc-wiz-progress { display: flex; gap: 4px; margin-top: 12px; }
.lc-wiz-progress span {
  flex: 1; height: 3px; border-radius: 999px;
  background: var(--gray-2);
  transition: background var(--dur-base) var(--ease-spring);
}
.lc-wiz-progress span.done    { background: var(--ink); }
.lc-wiz-progress span.current { background: var(--orange); }

.lc-wiz-eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-3); }
.lc-wiz-eyebrow b { color: var(--orange-text); }
.lc-wiz-title { margin: 6px 0 0; font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 32px); line-height: 1; text-transform: uppercase; letter-spacing: -0.005em; }
.lc-wiz-sub { margin: 4px 0 0; font-size: 13px; color: var(--gray-3); }

.lc-wiz-body { flex: 1; overflow-y: auto; padding: 16px 28px 24px; }
.lc-wiz-body::-webkit-scrollbar { width: 8px; }
.lc-wiz-body::-webkit-scrollbar-thumb { background: var(--gray-2); border-radius: 999px; }
.lc-wiz-options { display: grid; gap: 10px; }
@media (min-width: 600px) { .lc-wiz-options { grid-template-columns: 1fr 1fr; } }

.lc-wiz-choice {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--gray-1); border-radius: 18px;
  text-align: left; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-spring);
  color: var(--ink); font: inherit;
}
.lc-wiz-choice:hover { border-color: var(--gray-3); transform: translateY(-1px); }
.lc-wiz-choice.is-on {
  border-color: var(--orange); background: #FFFEFB;
  box-shadow: 0 0 0 4px rgba(255,90,31,0.1);
}
.lc-wiz-choice-thumb {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-spring);
}
.lc-wiz-choice.is-on .lc-wiz-choice-thumb { background: var(--yellow-soft); }
.lc-wiz-choice-body { flex: 1; min-width: 0; }
.lc-wiz-choice-name { font-weight: 700; font-size: 14px; }
.lc-wiz-choice-desc { font-size: 12px; color: var(--gray-3); margin-top: 2px; }
.lc-wiz-choice-price {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  color: var(--orange-text); background: var(--yellow-soft);
  padding: 4px 8px; border-radius: 8px; margin-right: 6px;
}
.lc-wiz-choice-mark {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-spring);
}
.lc-wiz-choice.is-on .lc-wiz-choice-mark { background: var(--orange); }
.lc-wiz-choice-mark i {
  width: 8px; height: 8px; border-radius: 999px; background: #fff;
  transform: scale(0); transition: transform var(--dur-base) var(--ease-spring);
}
.lc-wiz-choice.is-on .lc-wiz-choice-mark i { transform: scale(1); }
/* checkbox variant */
.lc-wiz-choice-check { border-radius: 7px; }
.lc-wiz-choice-check i { width: 14px; height: 14px; background: transparent; transform: none; color: #fff; display: flex; align-items: center; justify-content: center; }
.lc-wiz-choice-check svg { display: none; }
.lc-wiz-choice.is-on .lc-wiz-choice-check svg { display: block; }

.lc-wiz-footer {
  border-top: 1px solid var(--gray-1);
  background: var(--paper);
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.lc-wiz-footer-left { display: flex; align-items: center; gap: 14px; }
.lc-wiz-foot-back {
  background: var(--cream); border: 0;
  padding: 12px 16px; border-radius: 12px;
  font-size: 13px; font-weight: 700;
}
.lc-wiz-foot-next {
  background: var(--ink); color: #fff; border: 0;
  padding: 14px 22px; border-radius: 14px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 12px;
}
.lc-wiz-foot-next:disabled { opacity: 0.4; }
.lc-wiz-foot-next-total {
  background: rgba(255,255,255,0.14); padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
}

/* Right pane on desktop — live preview */
.lc-wiz-preview {
  background: var(--cream);
  display: none;
  flex-direction: column;
  border-left: 1px solid var(--gray-1);
}
@media (min-width: 800px) { .lc-wiz-preview { display: flex; } }
.lc-wiz-preview-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--yellow), var(--orange));
  display: flex; align-items: center; justify-content: center;
}
.lc-wiz-preview-thumb span { font-size: 100px; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.15)); }
.lc-wiz-preview-body { padding: 20px 24px; flex: 1; overflow-y: auto; }
.lc-wiz-preview-name { font-family: var(--font-display); font-size: 24px; line-height: 1; text-transform: uppercase; letter-spacing: -0.005em; }
.lc-wiz-preview-line {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--gray-1);
  font-size: 13px;
}
.lc-wiz-preview-line:last-child { border-bottom: 0; }
.lc-wiz-preview-line-lbl { color: var(--gray-3); }
.lc-wiz-preview-line-val { font-weight: 700; text-align: right; max-width: 200px; }
.lc-wiz-preview-total {
  margin-top: 16px; padding: 16px;
  background: var(--ink); color: #fff; border-radius: 16px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.lc-wiz-preview-total-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.lc-wiz-preview-total-num { font-family: var(--font-display); font-size: 32px; color: var(--yellow); }

/* ============================================================
   ACCOUNT (signup + OTP)
   ============================================================ */
.lc-acc {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  height: 100%;
}
@media (min-width: 800px) { .lc-acc { grid-template-columns: 1fr 1fr; } }
.lc-acc-art {
  background: var(--yellow);
  position: relative; overflow: hidden;
  display: none;
}
@media (min-width: 800px) { .lc-acc-art { display: block; } }
.lc-acc-art-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(0,0,0,0.12) 0 2px, transparent 2px),
    radial-gradient(circle at 78% 65%, rgba(0,0,0,0.12) 0 2px, transparent 2px),
    radial-gradient(circle at 42% 88%, rgba(0,0,0,0.12) 0 2px, transparent 2px);
  background-size: 80px 80px;
}
.lc-acc-art-wordmark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.lc-acc-art-wordmark .le {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); letter-spacing: 0.04em; color: var(--ink);
}
.lc-acc-art-wordmark .cay {
  font-family: var(--font-display); font-size: clamp(56px, 7vw, 88px);
  text-transform: uppercase; color: var(--orange);
  line-height: 0.88; margin-top: 4px;
  text-shadow: 4px 4px 0 var(--ink);
}
.lc-acc-art-tag {
  margin-top: 22px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.32em; color: var(--ink);
}
.lc-acc-art-stamp {
  position: absolute; top: 28px; right: 28px;
  width: 80px; height: 80px; border-radius: 999px;
  background: var(--ink); color: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); transform: rotate(8deg);
}
.lc-acc-art-stamp b { font-size: 14px; }
.lc-acc-art-stamp i { font-size: 22px; font-style: normal; }

.lc-acc-form {
  padding: clamp(28px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.lc-acc-form-back {
  background: var(--cream); border: 0;
  width: 38px; height: 38px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
/* [W3-HEAL-R2 P1-A 2026-06-06] 11px caption orange on white form panel = 3.11:1 FAIL → --orange-text 5.18:1. Class only renders on the white auth panel (login/signup/otp). */
.lc-acc-eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-text); }
.lc-acc-title { margin: 14px 0 0; font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; }
.lc-acc-title span { color: var(--orange); }
.lc-acc-sub { margin: 14px 0 28px; color: var(--gray-4); font-size: 15px; line-height: 1.5; max-width: 420px; }

.lc-acc-fields { display: flex; flex-direction: column; gap: 14px; }
.lc-acc-field { display: flex; flex-direction: column; gap: 6px; }
.lc-acc-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-3); }
.lc-acc-input {
  padding: 16px 18px;
  background: var(--cream); border: 1.5px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  transition: all var(--dur-fast) var(--ease-spring);
  outline: 0;
}
.lc-acc-input:focus { border-color: var(--orange); background: #fff; }

.lc-acc-phone {
  display: flex; gap: 8px;
}
.lc-acc-phone-cc {
  padding: 16px 14px;
  background: var(--ink); color: var(--yellow);
  border-radius: 14px;
  font-weight: 700; font-size: 15px; font-family: var(--font-mono);
  display: flex; align-items: center; gap: 6px;
  box-shadow: 4px 4px 0 var(--orange);
}
.lc-acc-phone-input { flex: 1; }

.lc-acc-trust {
  margin-top: 24px;
  background: var(--cream); border-radius: 16px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.lc-acc-trust-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--gray-4); }
.lc-acc-trust-row b { color: var(--ink); }
.lc-acc-trust-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lc-acc-foot { margin-top: 28px; }
.lc-acc-cta {
  background: var(--ink); color: #fff; border: 0;
  padding: 18px 24px; border-radius: 16px; width: 100%;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-cta);
}
.lc-acc-cta:hover { transform: translateY(-1px); }
.lc-acc-cta-arrow { transition: transform var(--dur-fast) var(--ease-spring); }
.lc-acc-cta:hover .lc-acc-cta-arrow { transform: translateX(3px); }
.lc-acc-cgu { text-align: center; font-size: 11px; color: var(--gray-3); margin-top: 14px; }
.lc-acc-cgu u { cursor: pointer; }

/* OTP cells */
.lc-otp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 360px; margin-top: 8px;
}
.lc-otp-cell {
  /* [F-OTP-MINWIDTH 2026-07-15 / P1] Sans min-width:0, les pistes grid 1fr gardent
     leur min-content (police 36px) → les 4 cases débordent le modal (overflow:hidden)
     sur mobile étroit → cases clippées, connexion impossible. min-width:0 + width:100%
     laissent les cases rétrécir pour tenir dans la largeur disponible. */
  min-width: 0;
  width: 100%;
  aspect-ratio: 1;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 14px;
  text-align: center;
  font-family: var(--font-display); font-size: 36px;
  outline: 0;
  box-shadow: 5px 5px 0 var(--ink);
  transition: all var(--dur-base) var(--ease-spring);
}
@media (max-width: 380px) {
  .lc-otp-grid { gap: 8px; }
  .lc-otp-cell { font-size: 28px; box-shadow: 3px 3px 0 var(--ink); }
}
.lc-otp-cell:focus { border-color: var(--orange); box-shadow: 5px 5px 0 var(--orange); }
.lc-otp-cell.is-filled { background: var(--ink); color: var(--yellow); box-shadow: 5px 5px 0 var(--orange); }
.lc-otp-resend { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-size: 12px; color: var(--gray-3); }
.lc-otp-resend b { color: var(--orange); font-family: var(--font-mono); }
.lc-otp-resend button { background: var(--ink); color: var(--yellow); border: 0; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.lc-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(420px, 100vw);
  background: var(--paper);
  box-shadow: var(--shadow-3);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-spring);
}
.lc-cart-drawer.is-open { transform: translateX(0); }
.lc-cart-head {
  padding: 24px 24px 12px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--gray-1);
}
.lc-cart-title { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: -0.005em; }
.lc-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.lc-cart-row {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--gray-1);
}
.lc-cart-row-thumb {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  flex-shrink: 0;
}
.lc-cart-row-body { flex: 1; min-width: 0; }
.lc-cart-row-name { font-weight: 700; font-size: 14px; }
.lc-cart-row-meta { font-size: 11.5px; color: var(--gray-3); margin-top: 2px; }
.lc-cart-stepper { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }
.lc-cart-stepper button { position: relative; width: 28px; height: 28px; border-radius: 999px; background: var(--cream); border: 0; font-size: 14px; font-weight: 700; }
.lc-cart-stepper button:hover { background: var(--ink); color: #fff; }
/* [TERRAIN-HEAL 2026-07-16 · WEB-CART-TAP44] cercle visuel 28px conservé, mais zone tactile
   étendue à 44×44 (WCAG 2.5.5 / doigt) via pseudo transparent centré — aucun déplacement visuel. */
.lc-cart-stepper button::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; }
.lc-cart-stepper b { min-width: 24px; text-align: center; font-family: var(--font-mono); font-weight: 700; }
.lc-cart-row-price { font-family: var(--font-mono); font-weight: 700; color: var(--orange-text); font-size: 14px; }
.lc-cart-foot {
  border-top: 1px solid var(--gray-1);
  padding: 20px 24px;
}
.lc-cart-totals { margin-bottom: 14px; }
.lc-cart-totals-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; color: var(--gray-4); }
.lc-cart-totals-row.is-total { padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--gray-1); font-size: 15px; font-weight: 700; color: var(--ink); }
.lc-cart-totals-row.is-total b { font-family: var(--font-display); font-size: 24px; color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.lc-footer {
  margin-top: 80px;
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: clamp(60px, 6vw, 100px) 0 40px;
}
.lc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 50px;
}
@media (min-width: 700px) { .lc-footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr; } }
/* [W.7.1 LCEN heal 2026-05-18] 4-col variant: brand + nav + contact + legal */
@media (min-width: 700px) { .lc-footer-grid--4col { grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr; } }
.lc-footer-brand h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px); margin: 0;
  text-transform: uppercase; line-height: 0.95;
  letter-spacing: -0.005em;
  color: #fff;
}
.lc-footer-brand h3 span { color: var(--orange); }
.lc-footer-brand p { color: rgba(255,255,255,0.55); margin: 16px 0 0; font-size: 14px; line-height: 1.55; max-width: 320px; }
.lc-footer-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); margin: 0 0 14px; }
.lc-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lc-footer-col li button { background: transparent; border: 0; color: rgba(255,255,255,0.7); font-size: 14px; padding: 0; text-align: left; }
.lc-footer-col li button:hover { color: #fff; }
/* [W.7.1 LCEN heal 2026-05-18] anchor-as-button styling for legal page links in footer */
.lc-footer-col li a { color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; display: inline-block; padding: 0; text-align: left; }
.lc-footer-col li a:hover { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.lc-footer-end a { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,0.25); }
.lc-footer-end a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.lc-footer-end {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  /* [W3-HEAL P1-02 2026-06-06] legal-line text is white-on-ink (dark footer), not orange-on-cream.
     0.4 opacity = 3.77:1 FAIL → 0.6 = 7.30:1 PASS (matches sibling .lc-footer-col 0.7). */
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.lc-footer-end span { font-family: var(--font-mono); letter-spacing: 0.12em; }
.lc-footer-stores { display: flex; gap: 8px; }
.lc-footer-store {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.lc-footer-store:hover { background: var(--orange); border-color: var(--orange); }
/* [WEB-RT-06 heal 2026-06-04] Démo V1 toast affordance for dead store buttons */
.lc-footer-toast {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 200; max-width: calc(100vw - 32px);
  background: var(--orange); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  animation: lc-fade-in 0.18s ease;
}

/* ============================================================
   UTIL
   ============================================================ */
.lc-hide-mobile { display: none; }
@media (min-width: 800px) { .lc-hide-mobile { display: block; } }
.lc-show-mobile { display: block; }
@media (min-width: 800px) { .lc-show-mobile { display: none; } }
