/* ============================================================
   E-NAFAA MARCHÉ — Design System
   Palette : noir profond / crème / or / émeraude / terracotta
   ============================================================ */

@font-face {
  font-family: 'Fraunces-fallback';
  src: local('Georgia');
  size-adjust: 100%;
}

:root{
  /* Couleurs de marque */
  --black: #0b0b0d;
  --black-soft: #141416;
  --black-elevate: #1c1c1f;
  --cream: #f7f2e7;
  --cream-dim: #ece4d2;
  --off-white: #fbfaf7;
  --gold: #c8a24d;
  --gold-light: #e6cd8d;
  --gold-dim: #8a6f34;
  --emerald: #0e5c46;
  --emerald-light: #1c8a68;
  --terracotta: #b5603c;
  --terracotta-light: #d68a5f;
  --ink: #17171a;
  --line: rgba(200,162,77,.22);
  --line-soft: rgba(255,255,255,.08);

  /* Texte */
  --text-on-dark: #f4efe2;
  --text-on-dark-dim: #b9b3a2;
  --text-on-light: #201d16;
  --text-on-light-dim: #6b6455;

  /* Typo */
  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Rythme */
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px -25px rgba(0,0,0,.5);
  --shadow-gold: 0 10px 30px -10px rgba(200,162,77,.45);
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  --container: 1280px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg{ max-width: 100%; display: block; }
button svg, .btn svg{ width: 1.1em; height: 1.1em; flex-shrink: 0; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; margin: 0; color: inherit; font-size: inherit; }
input, select, textarea{ font-family: inherit; font-size: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .002em;
}
h1{ font-size: clamp(2.4rem, 5vw + 1rem, 4.6rem); }
h2{ font-size: clamp(1.9rem, 3vw + 1rem, 3rem); }
h3{ font-size: clamp(1.3rem, 1.4vw + 1rem, 1.7rem); }
p{ margin: 0 0 1em; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }
.section{ padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }
.section-dark{ background: var(--black); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3{ color: var(--off-white); }

.eyebrow{
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dim); font-weight: 600; margin-bottom: 1.1em;
}
.section-dark .eyebrow{ color: var(--gold-light); }
.eyebrow::before{ content:''; width: 28px; height: 1px; background: currentColor; opacity: .7; }

.lead{ font-size: clamp(1.05rem, .4vw + 1rem, 1.25rem); color: var(--text-on-light-dim); max-width: 640px; }
.section-dark .lead{ color: var(--text-on-dark-dim); }

/* ---------- Boutons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background-color .35s var(--ease-soft), color .35s var(--ease-soft), border-color .35s var(--ease-soft);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn span{ position: relative; z-index: 1; }
.btn-gold{ background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dim)); color: #211803; box-shadow: var(--shadow-gold); }
.btn-gold:hover{ transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(200,162,77,.6); }
.btn-outline{ background: transparent; border-color: rgba(247,242,231,.4); color: inherit; }
.btn-outline:hover{ border-color: var(--gold-light); background: rgba(247,242,231,.06); transform: translateY(-3px); }
.btn-outline-dark{ background: transparent; border-color: rgba(23,23,26,.25); color: var(--text-on-light); }
.btn-outline-dark:hover{ border-color: var(--emerald); color: var(--emerald); transform: translateY(-3px); }
.btn-dark{ background: var(--black); color: var(--cream); }
.btn-dark:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-sm{ padding: .7rem 1.3rem; font-size: .8rem; }
.btn-block{ width: 100%; }
.btn[disabled]{ opacity: .45; pointer-events: none; }

.btn-icon{
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: rgba(255,255,255,.5);
  transition: all .4s var(--ease);
}
.btn-icon:hover{ background: var(--gold); border-color: var(--gold); color: #211803; transform: translateY(-2px) rotate(4deg); }
.btn-icon svg{ width: 19px; height: 19px; }

/* ============================================================
   Préchargeur
   ============================================================ */
#preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.4rem;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
#preloader.hide{ opacity: 0; visibility: hidden; pointer-events: none; }
.preload-mark{ font-family: var(--font-display); font-size: 2.4rem; color: var(--cream); letter-spacing: .04em; display:flex; align-items:center; gap:.5rem; }
.preload-mark .dot{ color: var(--gold); }
.preload-bar{ width: 180px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.preload-bar i{ display:block; height:100%; width:0%; background: linear-gradient(90deg,var(--gold-dim),var(--gold-light)); animation: preload 1.6s var(--ease) forwards; }
@keyframes preload{ to{ width: 100%; } }

/* ============================================================
   Barre de progression de scroll
   ============================================================ */
#scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--emerald-light));
  z-index: 1200; transition: width .12s linear;
}

/* ============================================================
   En-tête / Navigation
   ============================================================ */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.3rem 0;
  background: transparent;
  transition: background-color .5s var(--ease-soft), padding .4s var(--ease-soft), box-shadow .4s var(--ease-soft), border-color .4s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.site-header.solid{
  background: rgba(11,11,13,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: .8rem 0;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}
.nav-wrap{ display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo{ display: flex; align-items: center; gap: .6rem; color: var(--cream); flex-shrink: 0; }
.logo svg{ width: 34px; height: 34px; }
.logo-text{ font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .03em; line-height: 1; }
.logo-text b{ color: var(--gold-light); font-weight: 400; }
.logo-text small{ display: block; font-family: var(--font-body); font-size: .55rem; letter-spacing: .3em; color: var(--text-on-dark-dim); margin-top: .35em; }

.main-nav{ display: flex; align-items: center; gap: 2.1rem; }
.main-nav a{
  color: var(--text-on-dark-dim); font-size: .86rem; letter-spacing: .02em; font-weight: 500;
  position: relative; padding: .3rem 0; transition: color .3s;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px; background: var(--gold-light);
  transition: width .4s var(--ease);
}
.main-nav a:hover, .main-nav a.active{ color: var(--off-white); }
.main-nav a:hover::after, .main-nav a.active::after{ width: 100%; }

.nav-tools{ display: flex; align-items: center; gap: .55rem; }
.nav-tools .divider{ width: 1px; height: 22px; background: var(--line-soft); margin: 0 .4rem; }
.icon-btn{
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-on-dark-dim); position: relative; transition: all .35s var(--ease);
}
.icon-btn:hover{ color: var(--off-white); background: rgba(255,255,255,.08); }
.icon-btn svg{ width: 19px; height: 19px; }
.icon-btn .badge{
  position: absolute; top: -2px; right: -2px; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 50%;
  background: var(--terracotta); color: #fff; font-size: .6rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.select-pill{
  background: transparent; border: 1px solid var(--line-soft); color: var(--text-on-dark-dim);
  border-radius: var(--radius-pill); padding: .45rem .9rem; font-size: .76rem; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b9b3a2' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; padding-right: 1.8rem;
  transition: border-color .3s;
}
.select-pill:hover{ border-color: var(--gold-light); color: var(--off-white); }
.select-pill option{ color: #111; }

.burger{ display: none; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; color: var(--text-on-dark-dim); }
.burger svg{ width: 22px; height: 22px; }

.search-flyout{
  position: absolute; top: 100%; right: 0; margin-top: 1rem; width: min(380px, 92vw);
  background: var(--off-white); border-radius: var(--radius-m); box-shadow: var(--shadow-soft);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all .4s var(--ease);
}
.search-flyout.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.search-flyout input{
  width: 100%; border: none; background: transparent; padding: .8rem 1rem; color: var(--ink); font-size: .95rem; outline: none;
}
.search-flyout .search-hint{ padding: .3rem 1rem .6rem; font-size: .72rem; color: var(--text-on-light-dim); }

/* ============================================================
   Hero cinématique
   ============================================================ */
.hero{
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  background: var(--black); color: var(--off-white);
  display: flex; align-items: flex-end;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-scene{
  position: absolute; inset: -6% -6%; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.12); transition: opacity 1.8s var(--ease-soft);
  animation: kenburns 16s linear infinite;
}
.hero-scene.active{ opacity: 1; z-index: 1; }
.hero-scene-1{ background:
  radial-gradient(circle at 78% 18%, rgba(230,205,141,.55), transparent 42%),
  linear-gradient(200deg, #0a2f3a 0%, #0e5c46 42%, #123c33 70%, #0b0b0d 100%); }
.hero-scene-2{ background:
  radial-gradient(circle at 20% 15%, rgba(214,138,95,.45), transparent 45%),
  linear-gradient(210deg, #241505 0%, #4a2c12 30%, #1c1c1f 70%, #0b0b0d 100%); }
.hero-scene-3{ background:
  radial-gradient(circle at 85% 75%, rgba(28,138,104,.4), transparent 45%),
  linear-gradient(190deg, #05201c 0%, #0b0b0d 65%, #14100a 100%); }
.hero-silhouette{ position: absolute; inset: 0; opacity: .5; }
.hero-silhouette svg{ position: absolute; bottom: 0; width: 100%; height: auto; }
@keyframes kenburns{
  0%{ transform: scale(1.12) translate3d(0,0,0); }
  50%{ transform: scale(1.22) translate3d(-1.4%, -1%,0); }
  100%{ transform: scale(1.12) translate3d(0,0,0); }
}
.hero-scrim{
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.35) 35%, rgba(11,11,13,.75) 78%, rgba(11,11,13,.96) 100%),
    linear-gradient(90deg, rgba(11,11,13,.55), transparent 55%);
}
.hero-grain{ position:absolute; inset:0; z-index:3; opacity:.05; mix-blend-mode: overlay; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content{ position: relative; z-index: 4; padding-bottom: clamp(3.5rem, 8vh, 6rem); width: 100%; }
.hero-content .eyebrow{ color: var(--gold-light); }
.hero-content h1{
  color: var(--off-white); max-width: 15ch; margin-bottom: .32em;
  text-wrap: balance;
}
.hero-content h1 em{ font-style: italic; color: var(--gold-light); }
.hero-sub{ max-width: 46ch; color: var(--text-on-dark-dim); font-size: clamp(1rem, .5vw + 1rem, 1.18rem); margin-bottom: 2.1em; }
.hero-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll{
  position: absolute; right: clamp(1.2rem,4vw,3rem); bottom: 2.4rem; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--text-on-dark-dim); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
}
.hero-scroll .line{ width: 1px; height: 46px; background: linear-gradient(var(--gold-light), transparent); position: relative; overflow: hidden; }
.hero-scroll .line::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--gold-light); animation: scrolldrop 2.2s var(--ease) infinite; }
@keyframes scrolldrop{ to{ top: 100%; } }
.hero-stats{ position:absolute; left: clamp(1.2rem,4vw,3rem); bottom: 2.4rem; z-index:4; display:flex; gap: clamp(1.4rem,3vw,3rem); }
.hero-stat b{ display:block; font-family: var(--font-display); font-size: clamp(1.4rem,2vw,2rem); color: var(--off-white); }
.hero-stat span{ font-size: .72rem; letter-spacing:.08em; text-transform: uppercase; color: var(--text-on-dark-dim); }

/* Bandeau sous le hero (marquee) */
.marquee{ background: var(--gold); color: var(--ink); overflow: hidden; white-space: nowrap; padding: .75rem 0; position: relative; z-index: 5;}
.marquee-track{ display: inline-flex; gap: 3rem; animation: marquee 26s linear infinite; }
.marquee span{ font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; display: inline-flex; gap: .8rem; align-items: center;}
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(46px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-fade{ opacity: 0; transition: opacity 1.2s var(--ease); }
.reveal-fade.in{ opacity: 1; }
.reveal-scale{ opacity:0; transform: scale(.92); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal-scale.in{ opacity:1; transform: scale(1); }
.stagger > *{ transition-delay: calc(var(--i,0) * 90ms); }

/* ============================================================
   Catégories
   ============================================================ */
.section-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.cat-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.cat-card{
  position: relative; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 3/3.6;
  background: var(--black-soft); isolation: isolate;
}
.cat-card:nth-child(4n+1), .cat-card:nth-child(4n+4){ grid-row: span 1; }
.cat-card .cat-art{ position: absolute; inset: 0; transition: transform 1s var(--ease); }
.cat-card .cat-art svg{ width: 42%; height: auto; }
.cat-card:hover .cat-art{ transform: scale(1.09) rotate(-1deg); }
.cat-card::after{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,11,13,0) 30%, rgba(11,11,13,.92) 100%); z-index:1; }
.cat-card .cat-label{ position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; z-index: 2; color: var(--off-white); }
.cat-label .count{ display:block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .4em; }
.cat-label h3{ margin-bottom: .5em; }
.cat-label .cat-link{ display: inline-flex; align-items: center; gap: .4em; font-size: .78rem; font-weight: 600; color: var(--off-white); border-bottom: 1px solid var(--gold-light); padding-bottom: .2em; transition: gap .3s var(--ease); }
.cat-card:hover .cat-link{ gap: .7em; }

/* ============================================================
   Produits
   ============================================================ */
.tabs{ display:flex; gap: .6rem; flex-wrap: wrap; }
.tab-btn{ padding: .55rem 1.15rem; border-radius: var(--radius-pill); border: 1px solid var(--line); font-size: .82rem; color: var(--text-on-light-dim); background: transparent; transition: all .3s; }
.tab-btn.active, .tab-btn:hover{ background: var(--ink); color: var(--cream); border-color: var(--ink); }

.product-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.product-card{
  background: var(--off-white); border-radius: var(--radius-m); overflow: hidden; position: relative;
  border: 1px solid rgba(23,23,26,.06);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.product-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.product-media{ position: relative; aspect-ratio: 1/1; background: linear-gradient(160deg, var(--cream-dim), var(--cream)); overflow: hidden; }
.product-media > a > svg{ width: 68%; height: 68%; margin: 16% auto; transition: transform .8s var(--ease); }
.product-card:hover .product-media > a > svg{ transform: scale(1.08) translateY(-4px); }
.product-photo{ width:100%; height:100%; object-fit:contain; padding:6%; background:#fff; transition:transform .7s var(--ease); }
.product-card:hover .product-photo{ transform:scale(1.035); }
.badge-row{ position: absolute; top: .8rem; left: .8rem; right: .8rem; display: flex; justify-content: space-between; align-items: flex-start; z-index: 2; }
.badge{ font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; padding: .3rem .55rem; border-radius: var(--radius-pill); }
.badge-promo{ background: var(--terracotta); color: #fff; }
.badge-new{ background: var(--emerald); color: #fff; }
.badge-verified{ background: rgba(23,23,26,.85); color: var(--gold-light); display: inline-flex; align-items: center; gap: .3em; }
.badge-verified svg{ width: 13px; height: 13px; flex-shrink: 0; }
.fav-btn{
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all .3s var(--ease); flex-shrink:0;
}
.fav-btn svg{ width: 16px; height: 16px; transition: all .25s; }
.fav-btn:hover{ background: var(--terracotta); color:#fff; transform: scale(1.08); }
.fav-btn.active svg{ fill: var(--terracotta); stroke: var(--terracotta); }
.product-quickactions{
  position: absolute; left: .8rem; right: .8rem; bottom: .8rem; display: flex; gap: .5rem; z-index: 2;
  transform: translateY(calc(100% + 1.8rem)); transition: transform .5s var(--ease);
}
.product-card:hover .product-quickactions, .product-card:focus-within .product-quickactions{ transform: translateY(0); }
@media (hover:none){ .product-quickactions{ transform:translateY(0); } }
.qa-btn{ flex: 1; background: var(--ink); color: var(--cream); border-radius: var(--radius-pill); padding: .6rem .5rem; font-size: .72rem; font-weight: 700; text-align: center; display: flex; align-items:center; justify-content:center; gap:.35em; transition: background .3s; }
.qa-btn svg{ width: 14px; height: 14px; flex-shrink: 0; }
.qa-btn:hover{ background: var(--emerald); }
.product-info{ padding: 1.2rem 1.3rem 1.4rem; }
.product-vendor{ font-size: .7rem; color: var(--text-on-light-dim); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .4em; display:flex; align-items:center; gap:.35em; }
.product-vendor svg{ width: 12px; height: 12px; color: var(--emerald); }
.product-name{ font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .45em; }
.product-rating{ display: flex; align-items: center; gap: .3rem; font-size: .74rem; color: var(--text-on-light-dim); margin-bottom: .6em; }
.stars{ color: var(--gold); letter-spacing: .05em; }
.price-row{ display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.price-now{ font-size: 1.12rem; font-weight: 700; color: var(--ink); }
.price-on-request{ font-size:.98rem; color:var(--emerald); }
.price-old{ font-size: .84rem; color: var(--text-on-light-dim); text-decoration: line-through; }
.price-discount{ font-size: .72rem; color: var(--terracotta); font-weight: 700; }
.delivery-tag{ margin-top: .6em; font-size: .7rem; color: var(--emerald); display: flex; align-items: center; gap: .35em; }
.delivery-tag svg{ width: 12px; height: 12px; }

/* ============================================================
   Bloc promo / compte à rebours
   ============================================================ */
.promo-band{
  background: linear-gradient(120deg, var(--emerald) 0%, #0a4737 60%, var(--black) 130%);
  color: var(--off-white); border-radius: var(--radius-l); position: relative; overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center;
}
.promo-band::before{
  content: ''; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 20% 20%, var(--gold-light) 0, transparent 40%), radial-gradient(circle at 85% 80%, var(--terracotta-light) 0, transparent 45%);
}
.promo-content{ position: relative; z-index: 1; }
.countdown{ display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.6rem 0 2rem; position: relative; z-index:1; }
.promo-content, .promo-products{ min-width: 0; }
.cd-box{ background: rgba(247,242,231,.08); border: 1px solid rgba(247,242,231,.18); border-radius: var(--radius-m); padding: .9rem 1.1rem; text-align: center; min-width: 70px; }
.cd-box b{ display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-light); }
.cd-box span{ font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-on-dark-dim); }
.promo-products{ position: relative; z-index: 1; display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.promo-mini{ background: rgba(247,242,231,.06); border: 1px solid rgba(247,242,231,.14); border-radius: var(--radius-m); padding: 1rem; text-align: center; transition: transform .5s var(--ease); }
.promo-mini:hover{ transform: translateY(-6px); background: rgba(247,242,231,.1); }
.promo-mini svg{ width: 60px; height: 60px; margin: 0 auto .6rem; }
.promo-mini .price-now{ color: var(--off-white); }

/* ============================================================
   Pourquoi nous / avantages
   ============================================================ */
.perks{ display: grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; }
.perk-card{ text-align: left; padding: 2.2rem 1.8rem; border-radius: var(--radius-m); background: var(--off-white); border: 1px solid rgba(23,23,26,.06); transition: all .5s var(--ease); }
.perk-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: transparent; }
.perk-icon{ width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: transform .5s var(--ease); }
.perk-card:nth-child(2) .perk-icon{ background: linear-gradient(135deg, var(--gold-dim), var(--gold-light)); }
.perk-card:nth-child(3) .perk-icon{ background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light)); }
.perk-card:nth-child(4) .perk-icon{ background: linear-gradient(135deg, var(--ink), #3a3a3f); }
.perk-card:hover .perk-icon{ transform: rotate(-8deg) scale(1.08); }
.perk-icon svg{ width: 26px; height: 26px; color: var(--off-white); }
.perk-card h3{ font-size: 1.15rem; }
.perk-card p{ color: var(--text-on-light-dim); font-size: .92rem; margin: 0; }

/* ============================================================
   Vendeurs
   ============================================================ */
.seller-band{ display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.seller-visual{ position: relative; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/4.6; background: linear-gradient(160deg, var(--emerald), #08392c); }
.seller-visual .glow{ position:absolute; width: 60%; height: 60%; background: radial-gradient(circle, rgba(230,205,141,.35), transparent 70%); top:-10%; right:-10%; filter: blur(10px); }
.seller-card-float{
  position: absolute; left: 1.5rem; bottom: 1.5rem; right: 1.5rem; background: rgba(11,11,13,.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(247,242,231,.15); border-radius: var(--radius-m); padding: 1.2rem 1.4rem; color: var(--off-white);
  display: flex; justify-content: space-between; gap: 1rem;
}
.seller-card-float div b{ display:block; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-light); }
.seller-card-float div span{ font-size: .68rem; color: var(--text-on-dark-dim); text-transform: uppercase; letter-spacing: .06em; }
.seller-feature-list{ display: grid; gap: 1rem; margin: 2rem 0; }
.seller-feature{ display: flex; gap: 1rem; align-items: flex-start; }
.seller-feature .num{ font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-dim); flex-shrink: 0; width: 2.2rem; }
.seller-feature h4{ margin: 0 0 .25em; font-size: 1rem; font-weight: 700; }
.seller-feature p{ margin: 0; font-size: .88rem; color: var(--text-on-light-dim); }

/* ============================================================
   Témoignages
   ============================================================ */
.testi-track-wrap{ overflow: hidden; margin: 0 -.6rem; }
.testi-track{ display: flex; gap: 1.4rem; transition: transform .7s var(--ease); padding: .6rem; }
.testi-card{ flex: 0 0 min(360px, 82vw); background: var(--off-white); border-radius: var(--radius-m); padding: 1.8rem; border: 1px solid rgba(23,23,26,.06); }
.testi-stars{ color: var(--gold); margin-bottom: 1rem; letter-spacing: .1em; }
.testi-quote{ font-size: .96rem; color: var(--text-on-light); margin-bottom: 1.4rem; min-height: 4.6em; }
.testi-person{ display: flex; align-items: center; gap: .8rem; }
.testi-avatar{ width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--off-white); flex-shrink:0; }
.testi-person b{ display: block; font-size: .88rem; }
.testi-person span{ font-size: .74rem; color: var(--text-on-light-dim); }
.testi-nav{ display: flex; gap: .6rem; justify-content: center; margin-top: 2.2rem; }
.testi-dot{ width: 8px; height: 8px; border-radius: 50%; background: rgba(23,23,26,.18); transition: all .4s; }
.testi-dot.active{ width: 26px; border-radius: 4px; background: var(--gold); }

/* ============================================================
   Livraison
   ============================================================ */
.delivery-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.map-visual{ position: relative; aspect-ratio: 4/4.2; border-radius: var(--radius-l); background: radial-gradient(ellipse at 40% 30%, #143c30, var(--black) 75%); overflow: hidden; }
.map-dot{ position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 0 rgba(230,205,141,.6); animation: pulse 2.4s infinite; }
.map-dot::after{ content: attr(data-city); position: absolute; left: 16px; top: -3px; font-size: .72rem; color: var(--off-white); white-space: nowrap; letter-spacing: .04em; }
@keyframes pulse{ 0%{ box-shadow: 0 0 0 0 rgba(230,205,141,.55);} 70%{ box-shadow: 0 0 0 16px rgba(230,205,141,0);} 100%{ box-shadow: 0 0 0 0 rgba(230,205,141,0);} }
.map-route{ position: absolute; stroke: var(--gold-light); stroke-width: 1.2; fill: none; stroke-dasharray: 6 6; opacity: .6; animation: dash 3s linear infinite; }
@keyframes dash{ to{ stroke-dashoffset: -60; } }
.delivery-list{ display: grid; gap: 1.1rem; }
.delivery-item{ display: flex; justify-content: space-between; padding: 1rem 1.3rem; border-radius: var(--radius-m); background: var(--off-white); border: 1px solid rgba(23,23,26,.06); }
.delivery-item b{ font-family: var(--font-display); }
.delivery-item span{ color: var(--text-on-light-dim); font-size: .85rem; }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter{ text-align:center; max-width: 620px; margin: 0 auto; }
.newsletter-form{ display: flex; gap: .7rem; margin-top: 2rem; max-width: 460px; margin-inline: auto; }
.newsletter-form input{ flex: 1; padding: 1rem 1.3rem; border-radius: var(--radius-pill); border: 1px solid var(--line-soft); background: rgba(247,242,231,.06); color: var(--off-white); outline: none; }
.newsletter-form input::placeholder{ color: var(--text-on-dark-dim); }
.newsletter-form input:focus{ border-color: var(--gold-light); }
.form-note{ font-size: .74rem; color: var(--text-on-dark-dim); margin-top: 1rem; }

/* ============================================================
   Pied de page
   ============================================================ */
.site-footer{ background: var(--black); color: var(--text-on-dark-dim); padding-top: 5rem; }
.footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-soft); }
.footer-brand p{ font-size: .88rem; max-width: 30ch; }
.footer-col h4{ color: var(--off-white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.3rem; font-family: var(--font-body); font-weight: 700;}
.footer-col ul{ display: grid; gap: .75rem; }
.footer-col a{ font-size: .87rem; transition: color .3s, padding-left .3s; }
.footer-col a:hover{ color: var(--gold-light); padding-left: .3rem; }
.social-row{ display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding: 1.8rem 0; flex-wrap: wrap; gap: 1rem; font-size: .78rem; }
.payment-icons{ display: flex; gap: .6rem; }
.payment-icons span{ padding: .35rem .7rem; border: 1px solid var(--line-soft); border-radius: var(--radius-s); font-size: .68rem; letter-spacing: .04em; }

/* ============================================================
   WhatsApp flottant
   ============================================================ */
.whatsapp-float{
  position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #1f8a5c; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 30px -8px rgba(31,138,92,.65); transition: transform .4s var(--ease);
}
.whatsapp-float:hover{ transform: scale(1.08) translateY(-3px); }
.whatsapp-float svg{ width: 27px; height: 27px; }
.whatsapp-float::before{ content:''; position:absolute; inset:-6px; border-radius:50%; border: 1.5px solid rgba(31,138,92,.5); animation: pulse-ring 2.4s infinite; }
@keyframes pulse-ring{ 0%{ transform: scale(.9); opacity:1;} 100%{ transform: scale(1.35); opacity:0;} }

/* ============================================================
   Panier — tiroir
   ============================================================ */
.cart-overlay{ position: fixed; inset: 0; background: rgba(11,11,13,.55); backdrop-filter: blur(2px); z-index: 1400; opacity: 0; visibility: hidden; transition: all .5s var(--ease); }
.cart-overlay.open{ opacity: 1; visibility: visible; }
.cart-drawer{
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: var(--off-white); z-index: 1401;
  transform: translateX(100%); transition: transform .55s var(--ease); display: flex; flex-direction: column; box-shadow: -30px 0 60px -20px rgba(0,0,0,.35);
}
.cart-drawer.open{ transform: translateX(0); }
.cart-head{ display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 1.6rem 1.2rem; border-bottom: 1px solid rgba(23,23,26,.08); }
.cart-head h3{ margin: 0; font-size: 1.2rem; }
.cart-items{ flex: 1; overflow-y: auto; padding: 1rem 1.6rem; display: grid; gap: 1.2rem; align-content: flex-start; }
.cart-item{ display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; align-items: center; }
.ci-media{ width: 64px; height: 64px; border-radius: var(--radius-s); background: var(--cream-dim); display:flex; align-items:center; justify-content:center; overflow: hidden; flex-shrink: 0; }
.ci-media svg{ width: 70%; height: 70%; }
.ci-name{ font-size: .88rem; font-weight: 600; margin-bottom: .2em; }
.ci-meta{ font-size: .74rem; color: var(--text-on-light-dim); margin-bottom: .4em; }
.ci-qty{ display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); }
.ci-qty button{ width: 24px; height: 24px; background: none; border: none; font-size: .9rem; }
.ci-qty span{ min-width: 20px; text-align: center; font-size: .8rem; }
.ci-remove{ color: var(--text-on-light-dim); font-size: .7rem; text-decoration: underline; margin-top:.4em; display: inline-block;}
.ci-price{ font-size: .9rem; font-weight: 700; text-align: right; white-space: nowrap; }
.cart-empty{ text-align: center; padding: 3rem 1rem; color: var(--text-on-light-dim); }
.cart-empty svg{ width: 80px; height: 80px; margin: 0 auto 1.4rem; color: var(--line); }
.cart-foot{ padding: 1.4rem 1.6rem 1.8rem; border-top: 1px solid rgba(23,23,26,.08); }
.cart-subtotal{ display: flex; justify-content: space-between; margin-bottom: 1.1rem; font-size: 1rem; }
.cart-subtotal b{ font-family: var(--font-display); font-size: 1.2rem; }

/* ============================================================
   Toast
   ============================================================ */
.toast{
  position: fixed; left: 50%; bottom: 2rem; transform: translate(-50%, 20px); background: var(--ink); color: var(--cream);
  padding: .9rem 1.5rem; border-radius: var(--radius-pill); font-size: .85rem; z-index: 1500; opacity: 0; transition: all .4s var(--ease);
  display: flex; align-items: center; gap: .6rem; box-shadow: var(--shadow-soft); pointer-events: none;
}
.toast.show{ opacity: 1; transform: translate(-50%, 0); }
.toast svg{ width: 16px; height: 16px; color: var(--gold-light); }

/* ============================================================
   Pages intérieures — bannière de page
   ============================================================ */
.page-banner{
  background: var(--black); color: var(--off-white); padding: clamp(8rem,16vw,10rem) 0 clamp(3rem,6vw,4rem);
  position: relative; overflow: hidden;
}
.page-banner::before{ content:''; position:absolute; inset:0; opacity:.18; background: radial-gradient(circle at 15% 20%, var(--emerald-light), transparent 45%), radial-gradient(circle at 90% 10%, var(--gold-light), transparent 40%); }
.breadcrumb{ position: relative; z-index:1; font-size: .78rem; color: var(--text-on-dark-dim); display:flex; gap:.5rem; align-items:center; margin-bottom: 1.2rem; }
.breadcrumb a:hover{ color: var(--gold-light); }
.page-banner h1{ position: relative; z-index:1; color: var(--off-white); margin-bottom:.3em; }
.page-banner p{ position: relative; z-index:1; color: var(--text-on-dark-dim); max-width: 56ch; }

/* Filtres boutique */
.shop-layout{ display: grid; grid-template-columns: 260px 1fr; gap: 2.6rem; align-items: flex-start; }
.filters{ position: sticky; top: 7.5rem; background: var(--off-white); border: 1px solid rgba(23,23,26,.07); border-radius: var(--radius-m); padding: 1.6rem; display: grid; gap: 1.6rem; }
.filter-group summary, .filter-group .fg-title{ font-weight: 700; font-size: .88rem; margin-bottom: .8rem; display: flex; justify-content: space-between; cursor: pointer; }
.filter-opt{ display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text-on-light-dim); padding: .3rem 0; }
.filter-opt input{ accent-color: var(--emerald); }
.price-range{ width: 100%; accent-color: var(--gold-dim); }
.toolbar{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; flex-wrap: wrap; gap: 1rem; }
.results-count{ font-size: .85rem; color: var(--text-on-light-dim); }
.sort-select{ border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .55rem 1rem; font-size: .82rem; background: #fff; }
.pagination{ display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.page-btn{ width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; border: 1px solid var(--line); }
.page-btn.active{ background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Fiche produit */
.pdp-grid{ display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.4rem; }
.pdp-gallery-main{ aspect-ratio: 1/1; background: linear-gradient(160deg, var(--cream-dim), var(--cream)); border-radius: var(--radius-l); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; cursor: zoom-in; }
.pdp-gallery-main svg{ width: 58%; transition: transform .6s var(--ease); }
.pdp-gallery-main:hover svg{ transform: scale(1.12); }
.pdp-gallery-main .pdp-product-photo{ width:100%; height:100%; object-fit:contain; padding:5%; background:#fff; transition:transform .6s var(--ease); }
.pdp-gallery-main:hover .pdp-product-photo{ transform:scale(1.035); }
.pdp-thumbs{ display: flex; gap: .8rem; margin-top: 1rem; }
.pdp-thumb{ width: 74px; height: 74px; border-radius: var(--radius-s); background: var(--cream-dim); border: 2px solid transparent; display: flex; align-items: center; justify-content: center; }
.pdp-thumb.active{ border-color: var(--gold); }
.pdp-thumb svg{ width: 60%; }
.pdp-thumb img{ width:100%; height:100%; object-fit:contain; padding:5px; background:#fff; border-radius:inherit; }
.pdp-info .badge-verified{ margin-bottom: 1rem; }
.pdp-price-row{ display: flex; align-items: baseline; gap: .8rem; margin: 1rem 0 1.6rem; }
.pdp-price-row .price-now{ font-size: 1.9rem; }
.pdp-variants{ display: grid; gap: 1.2rem; margin-bottom: 1.8rem; }
.variant-group span.vg-label{ display: block; font-size: .82rem; font-weight: 700; margin-bottom: .6rem; }
.swatches{ display: flex; gap: .6rem; flex-wrap: wrap; }
.swatch{ padding: .55rem 1.1rem; border-radius: var(--radius-pill); border: 1px solid var(--line); font-size: .82rem; }
.swatch.active{ background: var(--ink); color: var(--cream); border-color: var(--ink); }
.qty-stepper{ display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); }
.qty-stepper button{ width: 42px; height: 42px; background: none; border: none; font-size: 1.1rem; }
.qty-stepper span{ min-width: 30px; text-align: center; }
.pdp-actions{ display: flex; gap: .8rem; margin: 1.6rem 0; flex-wrap: wrap; }
.pdp-actions .btn{ flex: 1; }
.pdp-meta-list{ display: grid; gap: .9rem; margin-top: 1.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(23,23,26,.08); }
.pdp-meta-item{ display: flex; gap: .8rem; font-size: .85rem; align-items: flex-start; }
.pdp-meta-item svg{ width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; margin-top: .1em; }
.pdp-tabs{ display: flex; gap: 2rem; border-bottom: 1px solid rgba(23,23,26,.1); margin: 4rem 0 2rem; }
.pdp-tab{ background: none; border: none; padding: 0 0 1rem; font-weight: 700; font-size: .95rem; font-family: inherit; color: var(--text-on-light-dim); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.pdp-tab.active{ color: var(--ink); border-color: var(--gold); }

/* Comptes / formulaires */
.auth-wrap{ max-width: 460px; margin: 0 auto; background: var(--off-white); border-radius: var(--radius-l); padding: clamp(2rem,5vw,3.2rem); box-shadow: var(--shadow-soft); }
.auth-tabs{ display: flex; background: var(--cream-dim); border-radius: var(--radius-pill); padding: .3rem; margin-bottom: 2rem; }
.auth-tab{ flex: 1; text-align: center; padding: .7rem; border-radius: var(--radius-pill); font-size: .85rem; font-weight: 700; }
.auth-tab.active{ background: var(--ink); color: var(--cream); }
.field{ margin-bottom: 1.2rem; }
.field label{ display: block; font-size: .8rem; font-weight: 700; margin-bottom: .5rem; }
.field input, .field select, .field textarea{ width: 100%; padding: .9rem 1.1rem; border-radius: var(--radius-s); border: 1px solid var(--line); background: #fff; outline: none; transition: border-color .3s; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-links{ display: flex; justify-content: space-between; font-size: .82rem; margin-top: 1rem; }
.form-links a{ color: var(--emerald); font-weight: 600; }

/* Panier / checkout pages */
.cart-page-grid{ display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: flex-start; }
.cart-table{ width: 100%; border-collapse: collapse; }
.cart-table th{ text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-on-light-dim); padding-bottom: 1rem; border-bottom: 1px solid rgba(23,23,26,.08); }
.cart-table td{ padding: 1.4rem 0; border-bottom: 1px solid rgba(23,23,26,.06); vertical-align: middle; }
.summary-card{ background: var(--off-white); border-radius: var(--radius-m); padding: 1.8rem; position: sticky; top: 7.5rem; }
.summary-row{ display: flex; justify-content: space-between; font-size: .9rem; padding: .6rem 0; color: var(--text-on-light-dim); }
.summary-row.total{ color: var(--ink); font-weight: 700; font-size: 1.1rem; border-top: 1px solid rgba(23,23,26,.1); margin-top: .6rem; padding-top: 1.1rem; }
.promo-input{ display: flex; gap: .6rem; margin: 1.2rem 0; }
.promo-input input{ flex: 1; padding: .8rem 1rem; border-radius: var(--radius-s); border: 1px solid var(--line); }

.checkout-steps{ display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; }
.cstep{ display: flex; align-items: center; gap: .7rem; font-size: .84rem; color: var(--text-on-light-dim); }
.cstep .num{ width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.cstep.active{ color: var(--ink); font-weight: 700; }
.cstep.active .num, .cstep.done .num{ background: var(--emerald); border-color: var(--emerald); color: #fff; }
.cstep-sep{ width: 60px; height: 1px; background: var(--line); margin: 0 1rem; }
.payment-methods{ display: grid; gap: 1rem; }
.pay-method{ display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-m); cursor: pointer; transition: all .3s; }
.pay-method.active{ border-color: var(--gold); background: rgba(200,162,77,.06); }
.pay-method input{ accent-color: var(--emerald); }
.pay-method .pm-icon{ width: 40px; height: 40px; border-radius: var(--radius-s); background: var(--cream-dim); display: flex; align-items: center; justify-content: center; }
.pay-method .pm-icon svg{ width: 20px; height: 20px; }
.pm-name{ font-weight: 700; font-size: .9rem; }
.pm-desc{ font-size: .78rem; color: var(--text-on-light-dim); }

/* Confirmation */
.confirm-box{ max-width: 620px; margin: 0 auto; text-align: center; }
.confirm-icon{ width: 92px; height: 92px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.confirm-icon svg{ width: 42px; height: 42px; color: #fff; }
.order-summary-card{ text-align: left; background: var(--off-white); border-radius: var(--radius-m); padding: 1.8rem; margin: 2.5rem 0; }
.order-row{ display: flex; justify-content: space-between; padding: .6rem 0; font-size: .88rem; border-bottom: 1px dashed rgba(23,23,26,.1); }
.order-row:last-child{ border: none; }

/* Suivi */
.tracker{ display: flex; justify-content: space-between; position: relative; margin: 3rem 0; }
.tracker::before{ content:''; position:absolute; top: 19px; left: 5%; right: 5%; height: 2px; background: rgba(23,23,26,.1); }
.tracker-line{ position: absolute; top: 19px; left: 5%; height: 2px; background: var(--emerald); transition: width 1.2s var(--ease); }
.tstep{ position: relative; z-index: 1; text-align: center; flex: 1; }
.tstep .tdot{ width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid rgba(23,23,26,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto .8rem; }
.tstep.done .tdot{ background: var(--emerald); border-color: var(--emerald); color: #fff; }
.tstep.active .tdot{ background: var(--gold); border-color: var(--gold); color: #211803; }
.tstep .tdot svg{ width: 18px; height: 18px; }
.tstep b{ display: block; font-size: .82rem; }
.tstep span{ font-size: .72rem; color: var(--text-on-light-dim); }

/* Vendeur / Dashboard */
.stat-cards{ display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; margin-bottom: 2.4rem; }
.stat-card{ background: var(--off-white); border-radius: var(--radius-m); padding: 1.6rem; border: 1px solid rgba(23,23,26,.06); }
.stat-card .stat-top{ display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.stat-card .stat-icon{ width: 38px; height: 38px; border-radius: var(--radius-s); background: var(--cream-dim); display: flex; align-items: center; justify-content: center; }
.stat-card .stat-icon svg{ width: 18px; height: 18px; color: var(--emerald); }
.stat-card .stat-value{ font-family: var(--font-display); font-size: 1.9rem; }
.stat-card .stat-delta{ font-size: .76rem; color: var(--emerald); font-weight: 700; }
.stat-card .stat-delta.down{ color: var(--terracotta); }
.dash-layout{ display: grid; grid-template-columns: 240px 1fr; gap: 2.4rem; }
.dash-nav{ display: grid; gap: .3rem; background: var(--off-white); border-radius: var(--radius-m); padding: 1rem; border: 1px solid rgba(23,23,26,.06); align-content: flex-start; position: sticky; top: 7.5rem; }
.dash-nav a{ display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; border-radius: var(--radius-s); font-size: .87rem; font-weight: 600; color: var(--text-on-light-dim); }
.dash-nav a svg{ width: 18px; height: 18px; }
.dash-nav a.active, .dash-nav a:hover{ background: var(--ink); color: var(--cream); }
.dash-panel{ background: var(--off-white); border-radius: var(--radius-m); padding: 1.8rem; border: 1px solid rgba(23,23,26,.06); }
.data-table{ width: 100%; border-collapse: collapse; }
.data-table th{ text-align: left; font-size: .72rem; text-transform: uppercase; color: var(--text-on-light-dim); padding: .8rem; border-bottom: 1px solid rgba(23,23,26,.08); }
.data-table td{ padding: 1rem .8rem; font-size: .86rem; border-bottom: 1px solid rgba(23,23,26,.05); }
.status-pill{ padding: .3rem .7rem; border-radius: var(--radius-pill); font-size: .7rem; font-weight: 700; }
.status-pill.ok{ background: rgba(14,92,70,.1); color: var(--emerald); }
.status-pill.pending{ background: rgba(200,162,77,.15); color: var(--gold-dim); }
.status-pill.late{ background: rgba(181,96,60,.12); color: var(--terracotta); }
.mini-chart{ display: flex; align-items: flex-end; gap: .5rem; height: 160px; }
.mini-chart .bar{ flex-shrink: 0; background: linear-gradient(180deg, var(--gold-light), var(--gold-dim)); border-radius: 6px 6px 0 0; }

/* FAQ */
.accordion{ display: grid; gap: 1rem; max-width: 820px; margin: 0 auto; }
.acc-item{ background: var(--off-white); border-radius: var(--radius-m); border: 1px solid rgba(23,23,26,.07); overflow: hidden; }
.acc-head{ display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.6rem; font-weight: 700; }
.acc-head .plus{ width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .4s var(--ease); }
.acc-head .plus svg{ width: 12px; height: 12px; }
.acc-item.open .acc-head .plus{ transform: rotate(135deg); background: var(--gold); border-color: var(--gold); }
.acc-body{ max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-body p{ padding: 0 1.6rem 1.4rem; color: var(--text-on-light-dim); font-size: .92rem; margin: 0; }

/* Contenu légal simple */
.legal-content{ max-width: 780px; margin: 0 auto; }
.legal-content h2{ margin-top: 2.4rem; font-size: 1.4rem; }
.legal-content p, .legal-content li{ color: var(--text-on-light-dim); font-size: .95rem; }
.legal-content li{ margin-bottom: .5em; }
.legal-content ul{ padding-left: 1.3rem; list-style: disc; }
.legal-updated{ font-size: .8rem; color: var(--text-on-light-dim); margin-bottom: 2rem; }

/* Empty states */
.empty-state{ text-align: center; padding: 5rem 1rem; }
.empty-state svg{ width: 90px; height: 90px; color: var(--line); margin: 0 auto 1.6rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px){
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .perks{ grid-template-columns: repeat(2,1fr); }
  .promo-band, .seller-band, .delivery-grid{ grid-template-columns: 1fr; }
  .shop-layout{ grid-template-columns: 1fr; }
  .filters{ position: static; }
  .pdp-grid{ grid-template-columns: 1fr; }
  .cart-page-grid{ grid-template-columns: 1fr; }
  .dash-layout{ grid-template-columns: 1fr; }
  .dash-nav{ position: static; grid-auto-flow: column; overflow-x: auto; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .main-nav, .nav-tools .select-pill, .nav-tools .divider, .nav-tool-account, .nav-tool-wishlist{ display: none; }
  .burger{ display: flex; }
  .nav-tools{ gap: .3rem; }
  .cat-grid, .product-grid, .perks, .stat-cards{ grid-template-columns: 1fr 1fr; }
  .hero-stats{ display: none; }
  .footer-top{ grid-template-columns: 1fr; gap: 2.2rem; }
  .field-row{ grid-template-columns: 1fr; }
  h1{ max-width: none !important; }
}
@media (max-width: 480px){
  .cat-grid, .product-grid, .perks, .stat-cards{ grid-template-columns: 1fr; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .newsletter-form{ flex-direction: column; }
}

/* Menu mobile */
.mobile-nav{
  position: fixed; inset: 0; background: var(--black); z-index: 1300; padding: 6rem 2rem 2rem;
  transform: translateY(-100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; gap: 1rem;
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{ font-family: var(--font-display); font-size: 1.6rem; color: var(--off-white); }
.mobile-nav .mn-close{ position: absolute; top: 1.6rem; right: 1.6rem; }
.mobile-nav .mn-tools{ margin-top: auto; display: flex; gap: 1rem; }
.mobile-nav .mn-selects{ display: flex; gap: .8rem; margin-top: 1.6rem; }
.mobile-nav .mn-selects .select-pill{ flex: 1; padding: .8rem 1rem; font-size: .82rem; }
