/* =====================================================
   WAKAANA MARKET — Premium Design System v4.0
   Mobile-First · Alan Sans
   ===================================================== */

/* ---------- VARIABLES ---------- */
:root {
  --navy:       #152D4A;   /* Bleu profond — issu du logo */
  --navy-l:     #1E3F65;
  --primary:    #2B4E7A;   /* Bleu ardoise logo — couleur principale */
  --primary-l:  #3D6B9C;
  --primary-d:  #1E3A5C;
  --gold:       #C9A84C;
  --gold-l:     #DDB96A;
  --gold-d:     #A8852A;
  --cream:      #F4F1EC;
  --cream-d:    #ECE7DE;
  --white:      #FFFFFF;
  --dark:       #152D4A;   /* Même bleu profond pour les textes */
  --grey:       #5A6E85;
  --grey-l:     #8EA3B8;
  --grey-ll:    #C4D0DC;
  --border:     #DDE5EE;
  --red:        #EF4444;
  --green:      #10B981;

  --ff-serif: 'Alan Sans', system-ui, sans-serif;
  --ff-sans:  'Alan Sans', system-ui, sans-serif;

  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --spring:   cubic-bezier(.34, 1.56, .64, 1);

  --r-xs:   6px;
  --r-sm:   10px;
  --r:      16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(21,45,74,.06);
  --shadow:     0 4px 20px rgba(21,45,74,.10);
  --shadow-lg:  0 16px 48px rgba(21,45,74,.16);
  --shadow-xl:  0 32px 80px rgba(21,45,74,.22);

  --header-h:   72px;
  --announce-h: 34px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; overflow-x: hidden; }
body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }
ul { list-style: none; }

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  box-shadow: 0 0 0 2px rgba(255,255,255,.85), 0 0 6px rgba(0,0,0,.25);
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .6;
  transition: width .3s, height .3s, opacity .3s, border-color .2s;
  box-shadow: 0 0 0 1px rgba(255,255,255,.3);
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; background: var(--gold); box-shadow: 0 0 0 2px rgba(255,255,255,.85), 0 0 8px rgba(0,0,0,.2); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 52px; height: 52px; opacity: .25; border-color: var(--gold); }

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--primary-d) 100%);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; padding: 0 32px; }
.loader-logo-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 32px;
  margin: 0 auto 32px;
  width: fit-content;
  animation: loaderPulse 1.4s var(--ease) infinite alternate;
  box-shadow: 0 8px 40px rgba(201,168,76,.2);
}
.loader-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  display: block;
}
@keyframes loaderPulse {
  from { opacity: .8; transform: scale(.97); }
  to   { opacity: 1;  transform: scale(1.02); box-shadow: 0 16px 60px rgba(201,168,76,.3); }
}
.loader-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  margin: 0 auto 14px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  width: 0%;
  transition: width .05s linear;
}
.loader-text {
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--ff-sans);
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement {
  background: linear-gradient(90deg, var(--navy) 0%, var(--primary) 50%, var(--navy) 100%);
  color: rgba(255,255,255,.75);
  height: var(--announce-h);
  overflow: hidden;
  overflow-x: clip;
  display: flex; align-items: center;
  max-width: 100vw;
}
.announcement-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.announcement-track i { color: var(--gold); margin-right: 7px; }
.dot-sep { color: var(--gold); opacity: .6; font-size: .55rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0; z-index: 1000;
  height: var(--header-h);
  transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,.7);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(21,45,74,.07);
}
.header.hero-top {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(21,45,74,.07);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  gap: 16px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-right { justify-content: flex-end; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: .2px;
  transition: color .25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
/* hero-top now matches scrolled — no overrides needed */

/* ── Dropdown Catégories ─────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-link--cats {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  cursor: pointer;
}
.nav-cats-arrow {
  font-size: .65rem;
  transition: transform .25s var(--ease);
}
.nav-dropdown-wrap.open .nav-cats-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(11,20,38,.14);
  min-width: 240px;
  padding: 8px 0;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open  .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--dark);
  font-size: .87rem;
  font-weight: 500;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--cream); color: var(--primary); }
.ndi-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(43,78,122,.07);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
  transition: background .15s;
}
.nav-dropdown-item:hover .ndi-icon { background: var(--primary); color: var(--white); }
.nav-dropdown-footer {
  margin-top: 4px;
  padding: 8px 16px 4px;
  border-top: 1px solid var(--border);
}
.nav-dropdown-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap .2s;
}
.nav-dropdown-all:hover { gap: 12px; }

/* Logo */
.header-logo {
  display: flex; align-items: center; justify-content: center;
  justify-self: center;
}
.header-logo img {
  height: 46px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform .3s var(--spring), opacity .3s;
}
.header-logo:hover img { transform: scale(1.03); }

/* No special treatment needed for logo on new cream hero */

/* Nav icons */
.nav-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .92rem;
  color: var(--dark);
  transition: background .2s, color .2s, transform .2s var(--spring);
  position: relative;
}
.nav-icon:hover { background: var(--cream); color: var(--primary); transform: scale(1.1); }
/* hero-top nav icons inherit default dark color */
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  border-radius: var(--r-full);
  display: none;
  align-items: center; justify-content: center;
  border: 2px solid var(--white);
  padding: 0 3px;
}
.cart-badge.visible { display: flex; }
.menu-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  justify-content: center; align-items: center;
  flex-shrink: 0;
}
.menu-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
  border-radius: 2px;
}
.menu-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-burger.open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* Search Panel */
.search-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 1001;
  padding: 0 40px;
  height: 0; overflow: hidden;
  transition: height .4s var(--ease);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.search-panel.open { height: 160px; }
.search-panel-inner {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-panel-inner label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--dark);
  gap: 12px;
  padding-bottom: 10px;
}
.search-input-wrap input {
  flex: 1;
  font-size: 1.25rem;
  font-family: var(--ff-serif);
  border: none;
  background: none;
  color: var(--dark);
}
.search-input-wrap input::placeholder { color: var(--grey-ll); }
#searchSubmit {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--spring), background .2s;
}
#searchSubmit:hover { background: var(--navy); transform: scale(1.1); }
.search-close {
  font-size: .75rem;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
  align-self: flex-start;
}
.search-close:hover { color: var(--primary); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: linear-gradient(170deg, var(--navy) 0%, var(--primary-d) 100%);
  z-index: 1100;
  transform: translateX(110%);
  transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column;
  overflow: hidden;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-inner {
  padding: 56px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow-y: auto;
}
.mobile-logo-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 10px 16px;
  width: fit-content;
}
.mobile-logo {
  height: 40px;
  width: auto;
  max-width: 220px;
  display: block;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
  letter-spacing: -.3px;
}
.mobile-nav-link:hover { color: var(--gold-l); padding-left: 6px; }
.mobile-menu-cta { margin-top: auto; }
.mobile-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 600;
  transition: transform .2s var(--spring), box-shadow .2s;
}
.mobile-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.mobile-wa-btn i { font-size: 1.2rem; }
.mobile-menu-footer { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }
.mobile-menu-footer p { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Hero bannière carrousel ─────────────────────── */
.hero-banner {
  width: 100%;
  display: block;
  background: var(--cream);
}
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}
/* Zone de fondu : slides empilés */
.hero-fade {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s var(--ease);
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
}
/* Ken Burns : zoom/pan lent sur la slide active (sens alterné) */
.hero-slide.active .hero-slide-img {
  animation: kenburns 7s ease-out both;
}
.hero-slide.active:nth-child(even) .hero-slide-img {
  animation-name: kenburns-alt;
}
@keyframes kenburns {
  from { transform: scale(1.01) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1.2%, -0.8%); }
}
@keyframes kenburns-alt {
  from { transform: scale(1.01) translate(0, 0); }
  to   { transform: scale(1.06) translate(1.2%, -0.8%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active .hero-slide-img { animation: none; }
  .hero-slide { transition: opacity .4s ease; }
}

/* Flèches */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  cursor: pointer;
  border: none;
  z-index: 3;
  opacity: 0;
  transition: opacity .25s, background .2s, transform .2s var(--spring);
}
.hero-carousel:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: var(--primary); color: #fff; }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-prev:hover { transform: translateY(-50%) scale(1.08); }
.hero-next:hover { transform: translateY(-50%) scale(1.08); }

/* Points */
.hero-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  cursor: pointer;
  transition: width .3s var(--ease), background .3s;
}
.hero-dot.active {
  width: 24px;
  background: var(--white);
}

@media (max-width: 768px) {
  .hero-arrow { display: none; }
  .hero-dots { bottom: 10px; }
  .hero-dot { width: 7px; height: 7px; }
  .hero-dot.active { width: 20px; }
}

/* Split layout */
.hero-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 34px);
}

/* Left — cream bg */
.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 6vw, 80px);
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow-dot {
  display: block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Title */
.hero-title {
  font-family: var(--ff-sans);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
  font-weight: 800;
}

/* Sub */
.hero-sub {
  font-size: .97rem;
  color: var(--grey);
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 400;
}
.desktop-br { display: inline; }

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .3px;
  transition: background .25s, transform .25s var(--spring), box-shadow .25s;
}
.btn-hero-primary:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(43,78,122,.35);
}
.btn-hero-primary i { transition: transform .25s var(--spring); }
.btn-hero-primary:hover i { transform: translateX(4px); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1.5px solid var(--grey-ll);
  color: var(--dark);
  border-radius: var(--r-full);
  font-weight: 500;
  font-size: .88rem;
  transition: background .25s, border-color .25s, transform .25s var(--spring);
}
.btn-hero-ghost:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Garanties row (remplace les fausses stats) */
.hero-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--grey);
  font-weight: 500;
}
.hero-guarantee i {
  width: 28px; height: 28px;
  background: rgba(43,78,122,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: .75rem;
  flex-shrink: 0;
}

/* Right — brand blue */
.hero-right {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle circle decor in background */
.hero-right::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  top: -80px; right: -120px;
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  bottom: -40px; left: -60px;
  pointer-events: none;
}

/* Carte produit hero */
.hero-product-card {
  position: relative;
  width: min(360px, 88%);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  flex-shrink: 0;
}
.hero-product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(201,168,76,.35);
}
.hero-product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  display: block;
  padding: 16px;
  background: #fff;
}

/* Legacy hero trust — kept for compatibility */

/* Scroll hint */
.hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  margin: 0 auto 16px;
  color: var(--grey-l);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: .75rem;
  transition: color .2s, border-color .2s, transform .2s;
}
.hero-scroll i { animation: bounceDown 1.6s ease-in-out infinite; }
.hero-scroll:hover { color: var(--primary); border-color: var(--primary); transform: scale(1.1); }
@keyframes bounceDown { 0%,100% { transform:translateY(0); } 50% { transform:translateY(5px); } }

/* ---------- MARQUEE BAND ---------- */
.marquee-band {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.marquee-dot { color: var(--gold-l); font-size: .55rem; }

/* ---------- SECTIONS GLOBALS ---------- */
.section { padding: 96px 0; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 32px; }
/* Serif éditorial premium sur l'accueil (scopé) */
.home-page { --ff-serif: 'Fraunces', Georgia, 'Times New Roman', serif; }

.section-header { margin-bottom: 52px; }
.section-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.home-page .section-eyebrow { color: var(--gold-d); }
.section-title {
  font-family: var(--ff-serif);
  font-optical-sizing: auto;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.home-page .section-title { font-weight: 600; letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--primary); font-weight: 600; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-up.delay-1 { transition-delay: .1s; }
.reveal-up.delay-2 { transition-delay: .2s; }
.reveal-up.delay-3 { transition-delay: .3s; }
.reveal-up.delay-4 { transition-delay: .45s; }
.reveal-fade {
  opacity: 0;
  transition: opacity .9s var(--ease-out);
}
.reveal-fade.delay-2 { transition-delay: .2s; }
.reveal-up.visible, .reveal-fade.visible { opacity: 1; transform: translateY(0); }

/* ---------- CATEGORIES ---------- */
.categories-section { background: var(--cream); }
.categories-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 300px;
  gap: 14px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
}
.cat-card:nth-child(1) { grid-column: span 5; }
.cat-card:nth-child(2) { grid-column: span 4; }
.cat-card:nth-child(3) { grid-column: span 3; }
.cat-card:nth-child(4) { grid-column: span 7; }
.cat-card:nth-child(5) { grid-column: span 5; }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,45,74,.82) 0%, rgba(21,45,74,.05) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .35s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(43,78,122,.85) 0%, rgba(21,45,74,.1) 60%);
}
.cat-card-label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 5px;
}
.cat-card-name {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  letter-spacing: .5px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .3s var(--spring), opacity .3s;
}
.cat-card:hover .cat-card-cta { transform: translateY(0); opacity: 1; }
.cat-skeleton {
  border-radius: var(--r-lg);
  background: linear-gradient(90deg, #ede9e0 25%, #e0dbd1 50%, #ede9e0 75%);
  background-size: 200% 100%;
  animation: skelPulse 1.5s infinite;
}
.cat-skeleton.cat-large  { grid-column: span 5; }
.cat-skeleton.cat-small  { grid-column: span 4; }
.cat-skeleton.cat-wide   { grid-column: span 7; }
@keyframes skelPulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- PRODUCTS ---------- */
.products-section { background: var(--white); }
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.filter-pill {
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 500;
  color: var(--grey);
  border: 1.5px solid var(--border);
  transition: all .2s var(--ease);
  background: var(--white);
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(43,78,122,.25);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
/* ── Cartes produits — design premium ──────────────── */
.product-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11,20,38,.07);
  border: 1px solid rgba(11,20,38,.06);
  transition: box-shadow .3s var(--ease), transform .3s var(--spring);
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(11,20,38,.14);
  transform: translateY(-5px);
}
.product-card:hover .product-img img { transform: scale(1.05); }

/* Zone image */
.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #F7F6F3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

/* Badge % réduction */
.product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .3px;
}
.badge-sale {
  background: var(--dark);
  color: var(--white);
}
.badge-pop  { background: var(--gold); color: var(--white); }
.badge-new  { background: #16a34a; color: var(--white); }

/* Bouton "Voir" overlay desktop */
.product-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 1px;
  transform: translateY(100%);
  transition: transform .28s var(--ease-out);
}
.product-card:hover .product-actions { transform: translateY(0); }
.action-btn {
  flex: 1;
  padding: 12px 8px;
  background: var(--primary);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .3px;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.action-btn:hover { background: var(--navy); }
.action-btn.wish-btn {
  flex: 0 0 48px;
  background: rgba(255,255,255,.96);
  color: var(--grey);
}
.action-btn.wish-btn:hover { color: var(--red); background: var(--white); }
.action-btn.wish-btn.active { color: var(--red); }

/* Infos produit */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
  flex: 1;
}
.product-cat-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* réserve toujours 2 lignes → prix alignés d'une carte à l'autre */
  min-height: calc(1.35em * 2);
}
.product-pricing {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  /* colle le prix en bas → alignement parfait même si contenu au-dessus varie */
  margin-top: auto;
  padding-top: 4px;
}
.price-now {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.price-was {
  font-size: .78rem;
  color: var(--grey-l);
  text-decoration: line-through;
}
.price-off {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--white);
  background: var(--dark);
  padding: 3px 8px;
  border-radius: var(--r-full);
}

/* Bouton commander — toujours visible */
.product-add {
  margin-top: 10px;
}
.btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: var(--primary);
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .2px;
  transition: background .2s, transform .2s var(--spring), box-shadow .2s;
}
.btn-add:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(43,78,122,.3);
}
.btn-add i { font-size: .75rem; transition: transform .2s var(--spring); }
.btn-add:hover i { transform: translateX(3px); }

/* ── Stock badge ── */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  border-radius: var(--r-full);
  padding: 4px 10px;
  margin: 6px 0 2px;
  letter-spacing: .2px;
}
.stock-out      { background: rgba(239,68,68,.1);  color: #EF4444; }
.stock-critical { background: rgba(239,68,68,.1);  color: #EF4444; animation: stockPulse 1.8s ease-in-out infinite; }
.stock-low      { background: rgba(245,158,11,.1); color: #D97706; }
@keyframes stockPulse { 0%,100% { opacity:1; } 50% { opacity:.55; } }

/* ── Stars on cards ── */
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 2px 0 6px;
}
.card-stars { color: var(--gold); font-size: .9rem; letter-spacing: 1px; line-height: 1; }
.card-rating-count { font-size: .72rem; color: var(--grey-l); font-weight: 400; }

/* Product Skeleton */
.product-skeleton {
  border-radius: var(--r-lg);
  height: 360px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: skelPulse 1.5s infinite;
}
.load-more-wrap { text-align: center; margin-top: 52px; }
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: .86rem;
  font-weight: 600;
  color: var(--dark);
  transition: all .25s var(--ease);
}
.btn-load-more:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---------- PAYMENT STRIP ---------- */
.payment-strip {
  background: var(--navy);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.payment-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pay-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .3px;
}
.pay-chip i { color: var(--gold); font-size: .95rem; }

/* ---------- PROMO CINEMA ---------- */
.promo-cinema {
  position: relative;
  height: 68vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-cinema-bg { position: absolute; inset: 0; }
.promo-cinema-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 9s ease-out;
}
.promo-cinema:hover .promo-cinema-bg img { transform: scale(1.04); }
.promo-cinema-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(21,45,74,.90) 0%, rgba(43,78,122,.65) 100%);
}
.promo-cinema-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 580px;
  padding: 0 32px;
}
.promo-label {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-l);
  padding: 4px 16px;
  border-radius: var(--r-full);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.promo-cinema-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
}
.promo-cinema-content h2 em { font-style: italic; color: var(--gold-l); }
.promo-cinema-content p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.75;
}
.promo-cinema-content strong { color: var(--gold-l); }
.promo-badge-float {
  position: absolute;
  right: 8%; bottom: 12%;
  z-index: 2;
  animation: heroFloat 3.5s ease-in-out infinite;
}
.promo-badge-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 36px rgba(201,168,76,.45);
  color: var(--white);
  text-align: center;
}
.promo-badge-circle strong { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.promo-badge-circle small { font-size: .66rem; font-weight: 600; }

/* ---------- WHY SECTION ---------- */
.why-section {
  padding: 80px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.why-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform .3s var(--spring), box-shadow .3s, background .3s;
  border: 1px solid var(--border);
}
.why-item:hover {
  background: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.why-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(43,78,122,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.why-item:hover .why-icon-wrap { background: rgba(201,168,76,.2); color: var(--gold-l); }
.why-text { flex: 1; }
.why-num {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey-l);
  margin-bottom: 6px;
  transition: color .3s;
}
.why-item:hover .why-num { color: rgba(255,255,255,.25); }
.why-text h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color .3s;
}
.why-item:hover .why-text h3 { color: var(--white); }
.why-text p {
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.65;
  transition: color .3s;
}
.why-item:hover .why-text p { color: rgba(255,255,255,.55); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--white); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform .3s var(--spring), box-shadow .3s;
  border: 1px solid var(--border);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-featured {
  background: var(--primary);
  transform: translateY(-14px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.testi-featured:hover { transform: translateY(-20px); }
.testi-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-featured .testi-stars { color: var(--gold-l); }
.testi-card blockquote {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.72;
  margin-bottom: 22px;
}
.testi-featured blockquote { color: rgba(255,255,255,.9); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-featured .testi-avatar { background: rgba(255,255,255,.2); }
.testi-author strong { display: block; font-size: .86rem; color: var(--dark); font-weight: 600; }
.testi-author span { font-size: .74rem; color: var(--grey-l); }
.testi-featured .testi-author strong { color: var(--white); }
.testi-featured .testi-author span { color: rgba(255,255,255,.5); }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,78,122,.3) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
/* Badge offre */
.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.newsletter-inner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.newsletter-inner h2 em { font-style: normal; color: var(--gold-l); }
.newsletter-inner > p { color: rgba(255,255,255,.55); margin-bottom: 28px; font-size: .92rem; font-weight: 300; }

/* Fields wrapper */
.nl-fields {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.11);
  border-radius: var(--r-full);
  padding: 0 16px;
  transition: border-color .2s, background .2s;
}
.nl-field:focus-within { border-color: var(--gold); background: rgba(255,255,255,.1); }
.nl-field i { color: rgba(255,255,255,.4); font-size: .9rem; flex-shrink: 0; }
.nl-field i.fa-whatsapp { color: #25D366; }
.nl-field input {
  flex: 1;
  padding: 13px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: .9rem;
  font-family: var(--ff-sans);
}
.nl-field input::placeholder { color: rgba(255,255,255,.3); }
.nl-sep {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  font-weight: 500;
  flex-shrink: 0;
}

.newsletter-form button {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .2s var(--spring), box-shadow .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.35); }
.newsletter-form button:disabled { opacity: .6; }

.nl-trust {
  font-size: .75rem !important;
  color: rgba(255,255,255,.3) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---------- CONTACT ---------- */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item > i {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--primary);
  color: var(--white);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .72rem; font-weight: 600; color: var(--grey); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 3px; }
.contact-item a, .contact-item span { font-size: .92rem; color: var(--dark); font-weight: 500; }
.contact-item a:hover { color: var(--primary); }
.socials { display: flex; gap: 8px; margin-top: 6px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  transition: all .2s var(--spring);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px) scale(1.1); }
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .76rem; font-weight: 600; color: var(--dark); letter-spacing: .3px; }
.field input, .field select, .field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,78,122,.08);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s, transform .25s var(--spring), box-shadow .25s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(43,78,122,.3); }

/* ---------- FOOTER ---------- */
/* ── Footer unifié compact ───────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 52px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Logo */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  padding: 6px 10px;
  object-fit: contain;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand p {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
  max-width: 280px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Colonnes */
.footer-col h4 {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  transition: color .2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }

/* Contact list */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .83rem;
  color: rgba(255,255,255,.42);
  font-weight: 300;
}
.footer-contact-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-list a {
  color: rgba(255,255,255,.42);
  transition: color .2s;
}
.footer-contact-list a:hover { color: var(--gold); }

/* Barre du bas */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: .77rem;
  color: rgba(255,255,255,.25);
  font-weight: 300;
}
.footer-pay-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-pay-chips span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-full);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  letter-spacing: .2px;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  z-index: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
  transition: transform .3s var(--spring), box-shadow .3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,.5);
}
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.9); opacity: 0;  }
}

/* ---------- CART ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-head h3 span { font-family: var(--ff-sans); font-size: .8rem; color: var(--grey); font-weight: 400; }
#cartClose {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: all .2s;
}
#cartClose:hover { background: #FEE2E2; color: var(--red); }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 26px; }
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 14px; text-align: center;
  padding: 60px 20px;
}
.cart-empty i { font-size: 3rem; color: var(--border); }
.cart-empty p { color: var(--grey); font-size: .92rem; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--r-sm); object-fit: contain; padding: 4px; flex-shrink: 0; background: #fff; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .86rem; color: var(--primary); font-weight: 700; margin-bottom: 9px; }
.cart-item-row { display: flex; align-items: center; gap: 10px; }
.qty-ctrl {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 12px;
}
.qty-ctrl button { font-size: .72rem; color: var(--dark); transition: color .2s; }
.qty-ctrl button:hover { color: var(--primary); }
.qty-ctrl span { font-size: .82rem; font-weight: 600; min-width: 16px; text-align: center; }
.cart-item-del { color: var(--grey-l); font-size: .8rem; margin-left: auto; transition: color .2s; }
.cart-item-del:hover { color: var(--red); }
.cart-foot {
  padding: 18px 26px 26px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.cart-total-row { display: flex; justify-content: space-between; font-size: .86rem; }
.cart-total-row span { color: var(--grey); }
.cart-total-row strong { color: var(--dark); font-weight: 600; }
.cart-total-row.grand {
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: .98rem;
}
.cart-total-row.grand strong { color: var(--primary); font-size: 1.12rem; font-weight: 700; }
.btn-checkout {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .92rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .25s var(--spring), box-shadow .25s;
}
.btn-checkout:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- PRODUCT MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  z-index: 1199;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.96);
  width: min(820px, 96vw);
  max-height: 88vh;
  background: var(--white);
  border-radius: var(--r-xl);
  z-index: 1200;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: transform .4s var(--spring), opacity .4s;
  box-shadow: var(--shadow-xl);
}
.product-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: all; }
.modal-x {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: all .2s;
  font-size: .88rem;
}
.modal-x:hover { background: #FEE2E2; color: var(--red); }
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.modal-img { background: #fff; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.modal-img img { width: 100%; height: 100%; object-fit: contain; min-height: 440px; padding: 16px; }
.modal-details { padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; max-height: 88vh; }
.modal-cat { font-size: .68rem; color: var(--primary); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
.modal-title { font-family: var(--ff-serif); font-size: 1.85rem; font-weight: 700; color: var(--dark); line-height: 1.15; }
.modal-desc { font-size: .88rem; color: var(--grey); line-height: 1.78; font-weight: 300; }
.modal-price-row { display: flex; align-items: center; gap: 12px; }
.modal-price-row .price-now { font-size: 1.55rem; font-weight: 800; color: var(--primary); }
.modal-stock { font-size: .78rem; font-weight: 600; }
.modal-stock.in { color: var(--green); }
.modal-stock.out { color: var(--red); }
.modal-qty-row { display: flex; align-items: center; gap: 14px; }
.modal-qty-row label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.modal-qty-ctrl {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 16px;
}
.modal-qty-ctrl button { font-size: .85rem; color: var(--dark); transition: color .2s; }
.modal-qty-ctrl button:hover { color: var(--primary); }
.modal-qty-ctrl span { font-weight: 700; min-width: 20px; text-align: center; }
.modal-cta { margin-top: 4px; }
.modal-cta .btn-hero-primary { width: 100%; justify-content: center; }

/* ---------- CHECKOUT ---------- */
.checkout-wrap {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.checkout-wrap.open { opacity: 1; pointer-events: all; }
.checkout-box {
  background: var(--white);
  border-radius: var(--r-xl);
  width: min(540px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform .4s var(--spring);
}
.checkout-wrap.open .checkout-box { transform: translateY(0); }
.checkout-box h2 {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 26px;
}
.checkout-box h2 i { color: var(--primary); margin-right: 8px; }
.payment-opts { display: flex; flex-direction: column; gap: 8px; }
.pay-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s;
  font-size: .86rem;
}
.pay-opt:hover { border-color: var(--primary); background: rgba(43,78,122,.04); }
.pay-opt input { accent-color: var(--primary); }
.pay-opt i { color: var(--primary); width: 18px; }
.order-recap {
  background: var(--cream);
  border-radius: var(--r);
  padding: 18px;
  border: 1px solid var(--border);
  margin-top: 4px;
}
.order-recap h4 { font-size: .8rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.recap-item { display: flex; justify-content: space-between; font-size: .8rem; color: var(--grey); margin-bottom: 5px; }
.recap-total { display: flex; justify-content: space-between; padding-top: 9px; border-top: 1px solid var(--border); margin-top: 5px; font-size: .88rem; }
.recap-total strong { color: var(--primary); font-size: .98rem; font-weight: 700; }

/* ---------- TOAST ---------- */
.toasts {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: min(340px, 92vw);
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 13px 18px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  font-size: .84rem;
  font-weight: 500;
  width: 100%;
  border-left: 3px solid var(--primary);
  animation: toastIn .35s var(--spring) forwards;
}
.toast.success { border-color: var(--green); }
.toast.error   { border-color: var(--red); }
.toast.warning { border-color: #F59E0B; }
.toast i { font-size: .95rem; }
.toast.success i { color: var(--green); }
.toast.error i   { color: var(--red); }
.toast.warning i { color: #F59E0B; }
@keyframes toastIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* ---------- BACK TO TOP ---------- */
.top-btn {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 500;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all .3s var(--spring);
  border: 1px solid rgba(255,255,255,.08);
}
.top-btn.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.top-btn:hover { background: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1100px) {
  .categories-editorial { grid-template-rows: 260px 240px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --announce-h: 30px;
  }

  /* Kill cursor on touch */
  body { cursor: auto; }
  button { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  /* --- Header mobile : burger gauche | logo centré | icônes droite --- */
  .header-inner {
    grid-template-columns: 48px 1fr auto;
    padding: 0 14px;
    gap: 8px;
  }
  .header-left { justify-content: flex-start; }
  .nav-left { display: none; }
  .menu-burger { display: flex; }
  .header-logo { justify-self: center; }
  .header-logo img {
    height: 44px;
    width: auto;
    max-width: 230px;
  }
  /* hero-top on mobile: same as scrolled */
  /* Cacher icône user sur mobile */
  .nav-user { display: none; }

  /* --- Hero --- */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    /* Sur mobile : image EN PREMIER, texte en dessous */
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-left {
    padding: 32px 24px 40px;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 12px;
  }
  .hero-sub { font-size: .9rem; margin-bottom: 22px; }
  .desktop-br { display: none; }
  .hero-actions { justify-content: center; margin-bottom: 24px; }
  .btn-hero-primary { padding: 13px 28px; font-size: .9rem; }
  .hero-guarantees { align-items: center; gap: 8px; }
  .hero-guarantee { font-size: .8rem; }

  /* Right side: compact sur mobile */
  .hero-right {
    padding: calc(var(--announce-h) + var(--header-h) + 24px) 24px 24px;
    min-height: auto;
  }
  .hero-product-card { width: min(260px, 80%); }
  .hero-scroll { margin-bottom: 12px; }

  /* --- Marquee --- */
  .marquee-track { font-size: .72rem; gap: 24px; }

  /* --- Sections --- */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; max-width: 100%; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 2.2rem; }

  /* --- Categories --- */
  .categories-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
    gap: 10px;
  }
  .cat-card:nth-child(1) { grid-column: span 2; }
  .cat-card:nth-child(2) { grid-column: span 1; }
  .cat-card:nth-child(3) { grid-column: span 1; }
  .cat-card:nth-child(4) { grid-column: span 1; }
  .cat-card:nth-child(5) { grid-column: span 1; }
  .cat-skeleton.cat-large, .cat-skeleton.cat-wide { grid-column: span 2; }
  .cat-skeleton.cat-small { grid-column: span 1; }
  .cat-card-name { font-size: 1.2rem; }
  .cat-card-cta { display: none; }

  /* --- Products --- */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-skeleton { height: 300px; }

  /* On mobile: always show add button, hide hover overlay */
  .product-actions { display: none; }
  .product-name { font-size: 1rem; }
  .btn-add {
    background: var(--primary);
    color: var(--white);
    font-size: .78rem;
    padding: 10px 12px;
  }
  .btn-add:hover { background: var(--navy); }
  .product-meta { padding: 12px; }

  /* --- Payment strip --- */
  .payment-strip-inner { gap: 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .payment-strip-inner::-webkit-scrollbar { display: none; }
  .pay-chip { flex-shrink: 0; }

  /* --- Promo cinema --- */
  .promo-cinema { height: 55vh; min-height: 380px; }
  .promo-cinema-content h2 { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .promo-cinema-content p { font-size: .9rem; }
  .promo-badge-float { display: none; }

  /* --- Why section --- */
  .why-section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-item { padding: 22px 20px; gap: 16px; border-radius: var(--r); }
  .why-icon-wrap { width: 42px; height: 42px; font-size: 1.1rem; }

  /* --- Testimonials --- */
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testi-featured { transform: none; }
  .testi-featured:hover { transform: translateY(-6px); }
  .testi-card { padding: 24px; border-radius: var(--r-lg); }

  /* --- Newsletter --- */
  .newsletter-section { padding: 64px 0; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form button { justify-content: center; }

  /* --- Contact --- */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 28px 20px; border-radius: var(--r-lg); }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  /* --- Footer --- */
  .footer-top { padding: 48px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* --- Cart sidebar --- */
  .cart-sidebar { width: 100%; }

  /* --- Modal --- */
  .modal-body { grid-template-columns: 1fr; }
  .modal-img img { min-height: 240px; height: 240px; }
  .modal-details { padding: 24px 20px; }

  /* --- Checkout --- */
  .checkout-box { padding: 24px 18px; }

  /* --- WhatsApp float position on mobile (up to avoid overlap) --- */
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
  .top-btn { bottom: 20px; left: 20px; width: 40px; height: 40px; }

  /* --- Search panel --- */
  .search-panel { padding: 0 20px; }
  .search-panel.open { height: 150px; }
  .search-panel-inner { padding-top: 28px; }
  .search-input-wrap input { font-size: 1.1rem; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 2.5rem; }
  .products-grid { gap: 10px; }
  .section-title { font-size: 2rem; }
  .hero-stat strong { font-size: 1.3rem; }
}
