/* ============================================================
   SENA / Demo one-page premium e-commerce
   Build / E.T.D Projects
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
img, video, svg { display: block; max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

:root {
  --noir-profond: #0A0A0B;
  --noir-rich: #07070A;
  --anthracite: #1A1A1F;
  --anthracite-2: #15151A;
  --blanc-pur: #FFFFFF;
  --blanc-casse: #F8F7F4;
  --dore: #D4AF37;
  --dore-clair: #E8C76E;
  --dore-fonce: #A8881D;
  --dore-glow: rgba(212, 175, 55, 0.4);
  --vert-lime: #7DC242;
  --rouge-low: #E74C3C;
  --gris-muted: rgba(255, 255, 255, 0.45);
  --gris-line: rgba(255, 255, 255, 0.08);

  --font-display: 'Archivo Black', 'Impact', sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1440px;
  --container-padding: clamp(20px, 4vw, 64px);
  --section-py: clamp(72px, 7vw, 110px);
  --section-py-shop: clamp(72px, 7vw, 110px);
  --section-header-mb: clamp(40px, 5vw, 64px);
  --header-h: 72px;

  --shadow-gold: 0 1px 2px rgba(212,175,55,0.05), 0 8px 24px rgba(212,175,55,0.18), 0 24px 60px rgba(0,0,0,0.4);
  --shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.12), 0 32px 80px rgba(0,0,0,0.18);
  --shadow-card-hover: 0 4px 12px rgba(212,175,55,0.18), 0 24px 60px rgba(0,0,0,0.2), 0 48px 120px rgba(0,0,0,0.25);

  --grain: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html, body { background: var(--noir-profond); color: var(--blanc-casse); overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--dore); color: var(--noir-profond); }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Utils */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-padding); position: relative; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--dore);
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow .num { color: var(--vert-lime); margin-right: 4px; }
.h1, .h2, .h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.025em; line-height: 0.92; }
.h1 { font-size: clamp(48px, 9vw, 144px); }
.h2 { font-size: clamp(48px, 7vw, 112px); }
.h3 { font-size: clamp(32px, 5vw, 72px); }
.text-cream { color: var(--blanc-casse) !important; }
.section-sub {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  margin-top: 16px;
  font-weight: 500;
}
.section-sub--dark { color: var(--gris-muted); }

/* CTA */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--dore);
  color: var(--blanc-casse);
  background: transparent;
  transition: all 320ms var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  cursor: pointer;
  justify-content: center;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dore);
  transform: translateY(101%);
  transition: transform 420ms var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--noir-profond); border-color: var(--dore-clair); box-shadow: var(--shadow-gold); }
.btn:hover::before { transform: translateY(0); }
.btn--solid { background: var(--dore); color: var(--noir-profond); }
.btn--solid::before { background: var(--dore-clair); }
.btn--solid:hover { color: var(--noir-profond); }
.btn--ghost { border-color: rgba(255,255,255,0.2); color: var(--blanc-casse); }
.btn--ghost::before { background: var(--blanc-casse); }
.btn--ghost:hover { color: var(--noir-profond); border-color: var(--blanc-casse); }
.btn--lg { padding: 20px 36px; font-size: 14px; }
.btn--sm { padding: 10px 18px; font-size: 11px; gap: 6px; }
.btn--full { width: 100%; }
.btn .arrow { transition: transform 320ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(6px); }
.btn__price {
  margin-left: auto;
  padding-left: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  border-left: 1px solid rgba(0,0,0,0.15);
  font-weight: 700;
}
.btn.is-added { background: var(--vert-lime) !important; color: var(--noir-profond) !important; border-color: var(--vert-lime) !important; }
.btn.is-added::before { display: none; }

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--dore); align-items: center; }
.stars svg { width: 14px; height: 14px; }
.stars--sm svg { width: 12px; height: 12px; }
.stars--sm span { margin-left: 6px; font-family: var(--font-mono); font-size: 11px; color: rgba(0,0,0,0.5); }

/* Cursor */
.cursor {
  display: none !important;
}
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--dore);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 240ms ease, height 240ms ease, opacity 240ms ease;
}
.cursor__ring {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--dore);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1), width 320ms ease, height 320ms ease, border-color 320ms ease;
  opacity: 0.7;
}
.cursor.is-hover .cursor__ring { width: 56px; height: 56px; border-color: var(--dore-clair); }
.cursor.is-hover .cursor__dot { width: 4px; height: 4px; }
.cursor.is-grab .cursor__ring { width: 48px; height: 48px; border-style: dashed; }

/* curseur classique conservé partout */

/* Loader (court) */
.loader {
  position: fixed;
  inset: 0;
  background: var(--noir-rich);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease, visibility 400ms;
}
.loader::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.4;
  pointer-events: none;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; position: relative; z-index: 2; }
.loader__logo {
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 20px var(--dore-glow));
  animation: pulse 0.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 360ms ease, backdrop-filter 360ms ease, border-color 360ms ease, padding 360ms ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(212, 175, 55, 0.18);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__brand-logo { width: 36px; height: 36px; filter: drop-shadow(0 0 8px var(--dore-glow)); transition: transform 480ms var(--ease-out); }
.header__brand:hover .header__brand-logo { transform: rotate(8deg) scale(1.08); }
.header__brand-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--blanc-casse);
}
.header__nav { display: flex; gap: 4px; }
.header__nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blanc-casse);
  position: relative;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}
.header__nav a span { position: relative; }
.header__nav a:hover { color: var(--dore); }
.header__nav a::before {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--dore);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease-out);
}
.header__nav a:hover::before { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blanc-casse);
  transition: color 240ms, background 240ms;
  position: relative;
}
.icon-btn:hover { color: var(--dore); background: rgba(212, 175, 55, 0.08); }
.icon-btn svg { width: 20px; height: 20px; }

.header__cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.06);
  color: var(--blanc-casse);
  position: relative;
  transition: all 320ms var(--ease-out);
}
.header__cart:hover { background: rgba(212, 175, 55, 0.14); border-color: var(--dore); }
.header__cart > svg { width: 18px; height: 18px; color: var(--dore); }
.header__cart-amount {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--dore);
  letter-spacing: 0.02em;
}
.header__cart .cart-badge {
  position: static;
  margin-left: 4px;
}
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--dore);
  color: var(--noir-profond);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge.is-bounce { animation: badge-bounce 600ms cubic-bezier(0.2, 0.8, 0.2, 1.4); }
.header__cart.is-flash::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  border: 2px solid var(--dore);
  animation: flash-ring 700ms var(--ease-out);
  pointer-events: none;
}
@keyframes badge-bounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.6); }
  100% { transform: scale(1); }
}
@keyframes flash-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.burger { display: none; width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--blanc-casse); transition: transform 360ms, opacity 280ms; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==================== HERO COMPACT ==================== */
.hero {
  min-height: 440px;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 8px) 0 28px;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 50%, #18181d 0%, var(--noir-rich) 60%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero__bg-text {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 24vw, 420px);
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.022);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: grab;
}
.hero__visual.is-grabbing { cursor: grabbing; }
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(circle, var(--dore-glow), transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}

.hero__ring {
  position: absolute;
  inset: 4%;
  border: 1px dashed rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: ring-rotate 60s linear infinite;
}
.hero__ring::before, .hero__ring::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--dore);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--dore);
}
.hero__ring::before { top: -4px; left: 50%; transform: translateX(-50%); }
.hero__ring::after { bottom: -4px; left: 50%; transform: translateX(-50%); }
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__hoodie {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  padding: 12px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  will-change: opacity;
}
.hero__frame.is-active { opacity: 1; }

.hero__counter {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gris-muted);
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  z-index: 4;
}
.hero__counter-current { color: var(--dore); font-weight: 700; }

.hero__live {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(125, 194, 66, 0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blanc-casse);
  z-index: 4;
}
.hero__live .dot {
  width: 7px; height: 7px;
  background: var(--vert-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--vert-lime);
  animation: live-pulse 1.6s ease-in-out infinite;
}
.hero__live strong { color: var(--vert-lime); font-weight: 700; }
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(125, 194, 66, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(125, 194, 66, 0); }
}

/* HERO TEXT — INFO PRODUIT */
.hero__text { position: relative; max-width: 520px; }

.hero__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hero__badge {
  background: var(--dore);
  color: var(--noir-profond);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 10px;
}
.hero__stock-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--rouge-low);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__stock-tag strong { font-weight: 700; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--blanc-casse);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-muted);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blanc-casse);
}
.hero__rating-count { color: var(--gris-muted); }

.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}
.hero__price {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--dore);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1;
}
.hero__price-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__price-strike {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gris-muted);
  text-decoration: line-through;
}
.hero__price-save {
  background: var(--rouge-low);
  color: var(--blanc-casse);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  letter-spacing: 0.1em;
}

.hero__sizes {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.hero__sizes li {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  color: var(--blanc-casse);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 240ms ease;
}
.hero__sizes li:hover { border-color: var(--dore); }
.hero__sizes li.active { background: var(--dore); color: var(--noir-profond); border-color: var(--dore); }

.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.hero__cta-row .btn--lg { padding: 16px 28px; font-size: 13px; }
.hero__secondary-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--blanc-casse);
  padding: 4px 0;
  border-bottom: 1px solid var(--gris-line);
  transition: color 240ms, border-color 240ms;
}
.hero__secondary-link:hover { color: var(--dore); border-color: var(--dore); }

.hero__guarantees {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gris-muted);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.hero__guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__guarantees svg { color: var(--dore); }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
  z-index: 4;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 320ms var(--ease-out);
  animation: scroll-hint 2.4s ease-in-out infinite;
}
.hero__scroll-hint:hover { background: var(--dore); color: var(--noir-profond); animation: none; }
.hero__scroll-hint svg { animation: bounce-down 1.6s ease-in-out infinite; }
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ==================== SLOGAN BAND ==================== */
.slogan-band {
  background: var(--noir-rich);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.slogan-band__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.slogan-band__track .dot { color: var(--dore); font-size: 0.5em; }

/* Marquee */
.marquee {
  background: var(--noir-rich);
  border-bottom: 1px solid var(--gris-line);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--noir-rich), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--noir-rich), transparent); }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanc-casse);
  white-space: nowrap;
}
.marquee__item { padding: 0 32px; display: flex; align-items: center; gap: 32px; }
.marquee__item .sep { color: var(--dore); }
.marquee__item .hl { color: var(--dore); font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
section { position: relative; }
.section-header { text-align: center; margin-bottom: var(--section-header-mb); }
.section-header .eyebrow { display: block; margin-bottom: 14px; }

.section--light { background: var(--blanc-pur); color: var(--noir-profond); padding: var(--section-py) 0; }
.section--cream { background: var(--blanc-casse); color: var(--noir-profond); padding: var(--section-py) 0; }
.section--dark { background: var(--noir-rich); color: var(--blanc-casse); padding: var(--section-py) 0; }
.section--shop { padding: var(--section-py-shop) 0; }

.section--dark::after, .section--cream::after, .section--light::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.3;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}
.section--light .container, .section--cream .container, .section--dark .container { z-index: 1; }

/* PRODUCT GRID — CARDS COMPACTES + CTA TOUJOURS VISIBLE */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  position: relative;
  background: var(--blanc-pur);
  cursor: pointer;
  transition: transform 540ms var(--ease-out), box-shadow 540ms;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.product-card__media {
  aspect-ratio: 1 / 1.05;
  position: relative;
  overflow: hidden;
  background: var(--blanc-casse);
}
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 540ms ease, transform 1000ms var(--ease-out);
}
.product-card__img--hover { opacity: 0; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card:hover .product-card__img--main { opacity: 0; }
.product-card:hover .product-card__img--hover { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--dore);
  color: var(--noir-profond);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  z-index: 2;
}
.product-card__badge--limited { background: var(--noir-profond); color: var(--dore); }

.product-card__live {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blanc-casse);
  z-index: 2;
}
.product-card__live .dot {
  width: 6px; height: 6px;
  background: var(--vert-lime);
  border-radius: 50%;
  animation: live-pulse 1.6s ease-in-out infinite;
}

.product-card__wish {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--noir-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  transition: all 240ms;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.product-card__wish svg { width: 16px; height: 16px; }
.product-card__wish:hover { background: var(--dore); color: var(--noir-profond); }
.product-card__wish.is-active { color: var(--rouge-low); }
.product-card__wish.is-active svg path { fill: currentColor; }

.product-card__body {
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.product-card__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--noir-profond);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--noir-profond);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.product-card__stock {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vert-lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card__stock--low { color: var(--rouge-low); }

.product-card__add {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
}

/* ACCESSOIRES — CARDS COMPACTES AVEC CTA */
.accessoires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.acc-card {
  background: var(--anthracite);
  position: relative;
  border: 1px solid var(--gris-line);
  transition: transform 480ms var(--ease-out), border-color 480ms;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.acc-card:hover { border-color: var(--dore); transform: translateY(-4px); }
.acc-card__media {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--noir-profond), var(--anthracite));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.acc-card__media--logo { padding: 32px; }
.acc-card__media--logo img {
  width: auto; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 20px var(--dore-glow));
}
.acc-card__media--watch {
  padding: 28px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 55, 0.18), transparent 70%),
    linear-gradient(135deg, var(--noir-profond), var(--anthracite));
}
.acc-card__media--watch svg {
  width: 70%; height: 70%;
  filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 16px var(--dore-glow));
  transition: transform 600ms var(--ease-out);
}
.acc-card:hover .acc-card__media--watch svg { transform: scale(1.08) rotate(-3deg); }
.acc-card:hover .acc-card__media img { transform: scale(1.06); }
.acc-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.acc-card__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blanc-casse);
}
.acc-card__price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--dore);
  font-weight: 700;
  white-space: nowrap;
}

/* Acc cards on cream background */
.section--cream .acc-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}
.section--cream .acc-card:hover { border-color: var(--dore); }
.section--cream .acc-card__media {
  background: linear-gradient(135deg, #f1efe9, #e8e6df);
}
.section--cream .acc-card__name { color: var(--noir-profond); }

/* COLLECTION (vêtements pliés) — 3 par ligne, images compactes */
.folded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.folded-card {
  background: var(--blanc-casse);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 480ms var(--ease-out), box-shadow 480ms;
  cursor: pointer;
}
.folded-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 175, 55, 0.4);
}
.folded-card__media {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f3ee, #e8e4d8);
}
.folded-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.0s var(--ease-out);
}
.folded-card:hover .folded-card__media img { transform: scale(1.06); }
.folded-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.folded-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.folded-card__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--noir-profond);
  line-height: 1.2;
}
.folded-card__price {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--noir-profond);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .folded-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .folded-grid { grid-template-columns: 1fr; }
}

/* VIDEO IMMERSIVE */
.video-immersive {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--noir-rich);
}
.video-immersive--small {
  height: 50vh;
  min-height: 320px;
  max-height: 420px;
}
/* Vidéo intégrée entre 2 lignes du vestiaire */
.collection__video {
  margin: var(--section-header-mb) 0;
}
.collection__video .video-immersive--small {
  position: relative;
  z-index: 1;
}
.video-immersive--small .video-immersive__title {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 16px;
}
.video-immersive--small .video-immersive__sub { margin-bottom: 20px; }
.video-immersive--small .video-eyebrow { margin-bottom: 16px; }
.video-immersive video, .video-immersive img.video-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-immersive::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 2;
}
.video-immersive__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--container-padding);
  max-width: var(--container);
  margin: 0 auto;
}
.video-immersive__inner { max-width: 720px; }
.video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dore);
  margin-bottom: 24px;
}
.video-eyebrow span {
  width: 32px; height: 1px;
  background: var(--dore);
}
.video-immersive__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.video-immersive__title .line-1 { display: block; color: var(--blanc-casse); }
.video-immersive__title .line-2 { display: block; color: var(--dore); }
.video-immersive__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--blanc-casse);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.video-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--dore);
  border-style: solid;
  border-width: 0;
  z-index: 4;
  margin: 24px;
}
.video-corner--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.video-corner--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.video-corner--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.video-corner--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

/* ATTITUDE / LOOKBOOK */
.attitude__intro {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.attitude__intro p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.75);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lookbook-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
}
.lookbook-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 600ms;
}
.lookbook-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  opacity: 0.6;
  transition: opacity 600ms;
}
.lookbook-item:hover img { transform: scale(1.06); filter: saturate(1.15) brightness(1.05); }
.lookbook-item:hover::after { opacity: 0.85; }
.lookbook-item__caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--blanc-casse);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 2;
}
.lookbook-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--dore);
  letter-spacing: 0.2em;
}

/* PUSH FINAL */
.push-final {
  position: relative;
  padding: clamp(56px, 6vw, 88px) 0;
  overflow: hidden;
  background: var(--noir-rich);
  color: var(--blanc-casse);
  text-align: center;
}
.push-final__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
  opacity: 1;
  will-change: transform;
}
.push-final::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.35) 0%, rgba(10,10,11,0.05) 50%, rgba(10,10,11,0.45) 100%);
  z-index: 1;
}
.push-final__inner { position: relative; z-index: 2; }
.push-final__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--blanc-casse);
  margin: 16px 0 28px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85), 0 0 6px rgba(0, 0, 0, 0.6);
}
.push-final__title .line { display: block; }
.push-final__title .line--gold { color: var(--dore); }

.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  margin-bottom: 28px;
}
.countdown__cell {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 18px;
  min-width: 78px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.countdown__num {
  display: block;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--dore);
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px var(--dore-glow);
}
.countdown__label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gris-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.countdown__sep {
  font-size: 26px;
  color: var(--dore);
  opacity: 0.5;
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: var(--noir-rich);
  color: var(--blanc-casse);
  padding: 80px 0 24px;
  border-top: 1px solid var(--gris-line);
  position: relative;
}

.footer__newsletter {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 48px 56px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.footer__newsletter::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--dore-glow), transparent 70%);
  filter: blur(40px);
  top: -100px; right: -100px;
  z-index: 0;
}
.footer__newsletter-text { position: relative; z-index: 1; }
.footer__newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
  color: var(--blanc-casse);
}
.footer__newsletter-text p {
  color: var(--gris-muted);
  font-size: 14px;
}
.footer__newsletter-form {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.footer__newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(10, 10, 11, 0.5);
  border: 1px solid var(--gris-line);
  color: var(--blanc-casse);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 320ms ease, background 320ms ease;
}
.footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--dore);
  background: rgba(10, 10, 11, 0.8);
}
.footer__newsletter-form button {
  padding: 16px 28px;
  background: var(--dore);
  color: var(--noir-profond);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 320ms ease, transform 320ms var(--ease-out);
}
.footer__newsletter-form button:hover { background: var(--dore-clair); transform: translateY(-2px); }
.footer__newsletter-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-lime);
  color: var(--noir-profond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0;
  visibility: hidden;
  transition: all 320ms ease;
}
.footer__newsletter-form.is-success .footer__newsletter-success {
  opacity: 1;
  visibility: visible;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand-logo {
  width: 80px; height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px var(--dore-glow));
}
.footer__brand-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gris-muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer__brand-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--dore);
  text-transform: uppercase;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 20px;
}
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--blanc-casse);
  transition: color 240ms, padding 320ms var(--ease-out);
  display: inline-block;
}
.footer__col a:hover { color: var(--dore); padding-left: 8px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gris-line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gris-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--dore); }

.footer__signature {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  transition: color 320ms ease;
}
.footer__signature img { width: 24px; height: 24px; opacity: 0.4; transition: opacity 320ms ease; }
.footer__signature:hover { color: var(--dore); }
.footer__signature:hover img { opacity: 1; }

/* STICKY CTA MOBILE */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 540ms var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__name {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--blanc-casse);
}
.sticky-cta__price {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dore);
}

/* CART TOAST */
.cart-toast {
  position: fixed;
  top: 88px;
  right: 24px;
  background: var(--noir-rich);
  border: 1px solid var(--dore);
  padding: 14px 20px;
  z-index: 200;
  transform: translateX(120%);
  transition: transform 480ms var(--ease-out);
  box-shadow: var(--shadow-gold);
}
.cart-toast.is-visible { transform: translateX(0); }
.cart-toast__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blanc-casse);
}
.cart-toast__check {
  width: 28px; height: 28px;
  background: var(--vert-lime);
  color: var(--noir-profond);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.cart-toast div { display: flex; flex-direction: column; line-height: 1.3; }
.cart-toast strong { font-weight: 700; font-size: 13px; }
.cart-toast span { font-family: var(--font-mono); font-size: 11px; color: var(--gris-muted); letter-spacing: 0.05em; }

/* CART DRAWER */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 360ms ease;
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--noir-rich);
  border-left: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 480ms var(--ease-out);
  box-shadow: -32px 0 80px rgba(0, 0, 0, 0.5);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gris-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer__header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--blanc-casse);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.cart-drawer__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dore);
  font-weight: 700;
  background: rgba(212, 175, 55, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc-casse);
  border-radius: 50%;
  transition: background 240ms ease;
}
.cart-drawer__close:hover { background: rgba(255, 255, 255, 0.06); color: var(--dore); }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-drawer__empty {
  text-align: center;
  color: var(--gris-muted);
  padding: 48px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-drawer__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gris-line);
}
.cart-drawer__item-img {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--anthracite), var(--noir-profond));
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dore);
  font-family: var(--font-display);
  font-size: 18px;
  overflow: hidden;
  border: 1px solid var(--gris-line);
}
.cart-drawer__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-drawer__item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--blanc-casse);
}
.cart-drawer__item-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gris-muted);
  letter-spacing: 0.05em;
}
.cart-drawer__item-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--dore);
}
.cart-drawer__item-remove {
  align-self: flex-start;
  color: var(--gris-muted);
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: color 240ms;
}
.cart-drawer__item-remove:hover { color: var(--rouge-low); }
.cart-drawer__footer {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--gris-line);
  background: rgba(10, 10, 11, 0.5);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-drawer__total span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris-muted);
}
.cart-drawer__total strong {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--dore);
  font-weight: 700;
}
.cart-drawer__meta {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-muted);
  text-align: center;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero { min-height: 70vh; }
  .hero__inner { gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .accessoires-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__newsletter { grid-template-columns: 1fr; gap: 24px; }
  .header__cart-amount { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 2.6rem; --section-py-shop: 2.6rem; --section-header-mb: 1.8rem; --container-padding: 18px; }

  .header__inner { gap: 12px; }
  .header__nav { display: none; }
  .header__actions { gap: 6px; }
  .header__actions .icon-btn:not(:last-child) { display: none; }
  .header__cart { padding: 8px 12px; min-height: 44px; }
  .header__cart-amount { display: none; }
  .burger { display: flex; min-width: 44px; min-height: 44px; }

  .hero { padding-top: calc(var(--header-h) + 12px); padding-bottom: 28px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 14px; }
  .hero__visual { aspect-ratio: 1; width: min(260px, 70vw); height: min(260px, 70vw); max-width: 260px; max-height: 260px; margin: 0 auto; }
  .hero__bg-text { font-size: clamp(140px, 40vw, 240px); }
  .hero__title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 6px; }
  .hero__sub { font-size: 12px; margin-bottom: 10px; }
  .hero__rating { margin-bottom: 10px; }
  .hero__price-row { flex-wrap: wrap; margin-bottom: 10px; }
  .hero__sizes { margin-bottom: 12px; }
  .hero__sizes li { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .hero__cta-row { margin-bottom: 8px; }
  .hero__guarantees { gap: 12px; font-size: 10px; }
  .hero__scroll-hint { display: none; }

  /* Multi-card sections : slider horizontal scroll-snap */
  .products-grid,
  .folded-grid,
  .accessoires-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    padding: 4px 18px 12px;
    margin: 0 -18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar,
  .folded-grid::-webkit-scrollbar,
  .accessoires-grid::-webkit-scrollbar { display: none; }
  .products-grid > *,
  .folded-grid > *,
  .accessoires-grid > * {
    flex: 0 0 78vw;
    max-width: 18rem;
    scroll-snap-align: start;
  }

  .product-card__media { aspect-ratio: 1; }
  .product-card__add,
  .folded-card__add,
  .acc-card__add { min-height: 46px; }

  .lookbook-grid { grid-template-columns: 1fr; }

  /* Forms : 1 col, full width, large tap targets */
  .footer__newsletter { padding: 28px 22px; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .footer__newsletter-form { flex-direction: column; gap: 10px; }
  .footer__newsletter-form input { width: 100%; min-height: 48px; padding: 14px 16px; }
  .footer__newsletter-form button { width: 100%; min-height: 48px; justify-content: center; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer { padding: 56px 0 92px; }

  .video-immersive__inner { max-width: 100%; }
  .video-immersive--small { height: 44vh; min-height: 280px; max-height: 360px; }
  .collection__video { margin: 28px 0; }

  .push-final { padding: 48px 0; }
  .push-final__bg { object-position: center 30%; }

  .countdown { gap: 8px; }
  .countdown__cell { min-width: 64px; padding: 14px 8px; }
  .countdown__sep { font-size: 24px; }

  /* CTAs : large tap targets */
  .btn { min-height: 46px; }
  .btn--lg { min-height: 52px; }

  .sticky-cta { display: flex; padding-bottom: max(14px, env(safe-area-inset-bottom)); }
  .cursor { display: none !important; }
  body, button, a { cursor: auto !important; }
  .cart-toast { top: auto; bottom: 88px; right: 12px; left: 12px; }
  .cart-drawer__panel { width: 100vw; max-width: 100vw; }

  .marquee__item { padding: 0 18px; gap: 18px; }

  .section-header { margin-bottom: var(--section-header-mb); }
}

@media (max-width: 480px) {
  :root { --section-py: 2.4rem; --section-py-shop: 2.4rem; --header-h: 64px; --container-padding: 16px; }

  .header__brand-name { font-size: 16px; }
  .header__brand-logo { width: 30px; height: 30px; }
  .header__cart { padding: 6px 10px; }

  .hero { padding-top: calc(var(--header-h) + 8px); padding-bottom: 24px; }
  .hero__visual { width: min(220px, 64vw); height: min(220px, 64vw); }
  .hero__bg-text { font-size: clamp(120px, 38vw, 200px); }

  .products-grid,
  .folded-grid,
  .accessoires-grid {
    gap: 12px;
    scroll-padding-left: 16px;
    padding: 4px 16px 12px;
    margin: 0 -16px;
  }
  .products-grid > *,
  .folded-grid > *,
  .accessoires-grid > * {
    flex: 0 0 82vw;
    max-width: 17rem;
  }

  .footer__newsletter { padding: 24px 18px; }
  .footer__newsletter-title { font-size: 26px; }

  .push-final__title { font-size: clamp(34px, 9vw, 52px); margin: 12px 0 22px; }
  .video-immersive--small { height: 40vh; min-height: 260px; max-height: 320px; }
  .video-immersive__title { font-size: clamp(30px, 9vw, 48px); }

  .countdown { gap: 6px; }
  .countdown__cell { min-width: 56px; padding: 12px 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track, .slogan-band__track, .hero__ring { animation: none; }
}
