@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Oswald:wght@600;700&display=swap');

:root {
  --black: #000000;
  --ink: #111111;
  --white: #ffffff;

  /* accents fonctionnels */
  --red: #e4002b;          /* prix, urgence — rouge Sephora */
  --green-bg: #d4f5dd;     /* badge « Offert » */
  --green-tx: #0a7a32;
  --amber-bg: #fdf3d0;     /* bandeau compte à rebours */
  --trust: #00b67a;        /* étoiles avis vérifiés */

  --grey-700: #3d3d3d;
  --grey-500: #6e6e6e;
  --grey-400: #9a9a9a;
  --grey-300: #c9c9c9;
  --grey-200: #e6e6e6;
  --grey-100: #f2f2f2;
  --grey-50: #f8f8f8;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-logo: 'Oswald', 'Haettenschweiler', 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;

  /* voile iridescent pailleté — partagé par les cases et le compte à rebours */
  --veil-sparkle:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.9) 0 1.1px, transparent 1.6px),
    radial-gradient(circle at 62% 8%,  rgba(255,255,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle at 34% 46%, rgba(255,255,255,.85) 0 1.2px, transparent 1.7px),
    radial-gradient(circle at 84% 62%, rgba(255,255,255,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 22% 78%, rgba(255,255,255,.7) 0 1.1px, transparent 1.6px),
    radial-gradient(circle at 70% 90%, rgba(255,255,255,.85) 0 1px, transparent 1.5px);
  --veil-size: 26px 26px, 34px 34px, 30px 30px, 38px 38px, 28px 28px, 32px 32px, 100% 100%;

  --r-card: 14px;
  --r-pill: 999px;
  --r-sm: 8px;

  --max: 1280px;
  --pad: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.center { text-align: center; }
.bordered { border-top: 1px solid var(--grey-200); }

section { padding: 64px 0; }

/* les ancres s'arrêtent sous le header collant */
section[id], #produit, [id="avis"] { scroll-margin-top: 90px; }

/* --- typographie --- */
h1, h2, h3, h4 { margin: 0; color: var(--black); }

.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-500);
  margin: 0 0 16px;
}

h2.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.01em;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
}

.section-sub {
  color: var(--grey-500);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
}
.section-sub strong { color: var(--ink); font-weight: 600; }

/* --- boutons --- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 44px;
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--black);
  transition: background .22s ease, color .22s ease;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--white); color: var(--black); }
.btn-secondary { background: var(--white); color: var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }

/* ============================================
   Bandeau annonce
   ============================================ */
.announce {
  background: var(--black);
  color: var(--white);
  padding: 9px 0;
  overflow: hidden;
}
.announce-viewport { overflow: hidden; }
.announce-row {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .announce-row { animation: none; } }
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .02em;
  font-weight: 400;
}
.announce-item b { font-weight: 700; }
.announce-item::before {
  content: "\2726";
  margin: 0 24px;
  font-size: 8px;
  color: rgba(255,255,255,.4);
}
.announce .trust-stars { flex: none; height: 1.25em; }

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}
.logo img { height: 56px; width: auto; display: block; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo {
  display: block;
  font-family: var(--font-logo);
  font-size: 30px;
  line-height: 1;
  letter-spacing: .01em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--black);
}

.nav { display: flex; gap: 34px; }
.nav a {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .22s ease;
}
.nav a:hover { border-color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: var(--black);
  transition: opacity .2s ease;
}
.cart-btn:hover { opacity: .55; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--red); color: var(--white);
  border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  padding: 0 5px;
}
.cart-count[hidden] { display: none; }
.burger {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  flex: none;
  margin-left: -10px;
}

/* --- menu mobile : panneau coulissant (slider) --- */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .32s ease;
  z-index: 95;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
body.nav-lock { overflow: hidden; }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 84vw);
  background: var(--white);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 16px var(--pad) 28px;
  overflow-y: auto;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .34s cubic-bezier(.4,0,.2,1), visibility 0s linear .34s;
}
.mobile-nav.open {
  transform: none;
  visibility: visible;
  box-shadow: 0 14px 44px rgba(0,0,0,.2);
  transition: transform .34s cubic-bezier(.4,0,.2,1), visibility 0s;
}
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 6px;
  border-bottom: 1px solid var(--grey-200);
}
.mobile-nav-head .logo img { height: 40px; width: auto; display: block; }
.mobile-nav-close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  margin-right: -8px;
  transition: background .2s ease;
}
.mobile-nav-close:hover { background: var(--grey-100); }
.mobile-nav a {
  display: block;
  padding: 15px 2px;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid var(--grey-200);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================
   Bloc produit
   ============================================ */
.product {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  padding: 16px 0 64px;
  align-items: start;
}

/* --- galerie --- */
.gallery { position: sticky; top: 96px; }
.gallery-main {
  position: relative;
  background: var(--grey-50);
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.gallery-flag {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: var(--white);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  z-index: 3;
}
.gallery-holo {
  position: absolute; bottom: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(90deg, #000 0 14px, #fff 14px 28px);
  z-index: 2;
}
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(255,255,255,.94);
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  z-index: 3;
  transition: background .22s ease, color .22s ease;
}
.gallery-arrow:hover { background: var(--black); color: var(--white); }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }

/* pastilles de navigation photos */
.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.gallery-dots button {
  width: 8px; height: 8px;
  border-radius: var(--r-pill);
  background: var(--grey-300);
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.gallery-dots button:hover { background: var(--grey-400); }
.gallery-dots button.active { background: var(--black); width: 22px; }

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--grey-300) transparent;
}
.thumbs::-webkit-scrollbar { height: 4px; }
.thumbs::-webkit-scrollbar-track { background: var(--grey-100); border-radius: 999px; }
.thumbs::-webkit-scrollbar-thumb { background: var(--grey-300); border-radius: 999px; }
.thumbs::-webkit-scrollbar-thumb:hover { background: var(--grey-400); }
.thumbs button {
  flex: 0 0 calc((100% - 40px) / 5);
  aspect-ratio: 1/1;
  scroll-snap-align: start;
  background: var(--grey-50);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  padding: 0;
  transition: border-color .22s ease;
}
.thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button.active { border-color: var(--black); }

/* --- bandeau note --- */
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.avatars { display: flex; align-items: center; flex: none; }
.avatars img { height: 26px; width: auto; }
.rating-txt { font-size: 14px; color: var(--grey-700); }
.rating-txt b { color: var(--black); font-weight: 700; }
a.rating-row { cursor: pointer; }
a.rating-row:hover .rating-txt { text-decoration: underline; }

/* --- titre & prix --- */
.brand-line {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey-500); margin: 0 0 10px; font-weight: 600;
}
.product h1 {
  font-size: clamp(23px, 2.7vw, 31px);
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 700;
  margin-bottom: 12px;
}
.subtitle { color: var(--grey-500); font-size: 15px; margin: 0 0 22px; }
.subtitle b { color: var(--ink); font-weight: 600; }

.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.price { font-size: 32px; font-weight: 700; color: var(--red); letter-spacing: -.01em; line-height: 1; }
.price-old { font-size: 20px; color: var(--grey-400); text-decoration: line-through; font-weight: 500; }
.price-save {
  background: var(--black); color: var(--white);
  border-radius: var(--r-pill);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; font-weight: 700;
}
.price-note { font-size: 13px; color: var(--grey-500); margin: 0 0 22px; }
.price-note strong { color: var(--ink); font-weight: 700; }

/* --- cadeau offert --- */
.gift {
  display: flex; align-items: center; gap: 16px;
  border: 2px dashed var(--grey-300);
  border-radius: var(--r-card);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.gift img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.gift-txt { flex: 1; }
.gift-txt strong { display: block; font-size: 15px; font-weight: 700; line-height: 1.35; }
.gift-txt span { font-size: 13.5px; color: var(--grey-500); }
.gift-txt span b { color: var(--ink); font-weight: 700; }
.gift-price { text-align: right; flex: none; }
.gift-price del { display: block; font-size: 13px; color: var(--grey-400); font-weight: 500; margin-bottom: 4px; }
.gift-price em {
  font-style: normal; display: inline-block;
  background: var(--green-bg); color: var(--green-tx);
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 700;
  padding: 3px 13px;
}

/* --- bénéfices --- */
.benefits { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 17px; }
.benefits li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; line-height: 1.5; color: var(--grey-700);
}
.benefits .tick {
  flex: none; margin-top: 2px;
  width: 22px; height: 22px; border-radius: var(--r-pill);
  background: var(--black); color: var(--white);
  display: grid; place-items: center;
}
.benefits b { font-weight: 700; color: var(--black); }

/* --- compte à rebours --- */
.timer {
  position: relative;
  border-radius: var(--r-card);
  padding: 16px;
  text-align: center;
  font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 20px;
  overflow: hidden;
  background:
    var(--veil-sparkle),
    linear-gradient(100deg,
      #f6e2f0 0%, #e4e8f7 18%, #eef0f8 34%,
      #f7ecf6 50%, #e9def4 68%, #e3cff0 84%, #ddc4ec 100%);
  background-size: var(--veil-size);
}
.timer > span { position: relative; z-index: 2; }
.timer strong { font-weight: 700; font-variant-numeric: tabular-nums; }

/* --- offres --- */
.offers { display: grid; gap: 16px; margin-bottom: 22px; }
.offer {
  position: relative;
  display: block;
  border: 2px solid var(--grey-200);
  border-radius: var(--r-card);
  cursor: pointer;
  overflow: visible;
  transition: border-color .22s ease;
}
.offer:hover { border-color: var(--grey-400); }
.offer.active { border-color: var(--black); }
.offer input { position: absolute; opacity: 0; pointer-events: none; }

.offer-tagline {
  position: absolute; top: -14px; right: 16px;
  background: var(--black); color: var(--white);
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 700;
  padding: 4px 14px;
  z-index: 2;
}
.offer-body { display: block; padding: 22px 22px 20px; }
.offer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.offer-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.radio {
  width: 24px; height: 24px; border-radius: var(--r-pill);
  border: 2px solid var(--grey-300);
  flex: none;
  display: grid; place-items: center;
  transition: border-color .2s ease;
}
.radio::after {
  content: ''; width: 12px; height: 12px; border-radius: var(--r-pill);
  background: transparent; transition: background .2s ease;
}
.offer.active .radio { border-color: var(--black); }
.offer.active .radio::after { background: var(--black); }

.offer-title { font-size: 22px; font-weight: 700; letter-spacing: .01em; }
.offer-chip {
  background: var(--grey-100); color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600;
  padding: 4px 13px;
}
.offer-chip b { font-weight: 700; }
.offer-prices { text-align: right; white-space: nowrap; }
.offer-prices strong { display: block; font-size: 22px; font-weight: 700; color: var(--red); line-height: 1.2; }
.offer-prices del { font-size: 14px; color: var(--grey-400); font-weight: 500; }

.offer-freebie {
  display: flex; align-items: center; gap: 11px;
  background: var(--grey-100); color: var(--grey-500);
  padding: 11px 18px;
  border-radius: 0 0 11px 11px;
  font-size: 13.5px; font-weight: 600;
  line-height: 1.35;
  transition: background .22s ease, color .22s ease;
}
.offer.active .offer-freebie { background: var(--black); color: var(--white); }
.offer-freebie img { width: 28px; height: 28px; object-fit: cover; border-radius: 5px; flex: none; }
.offer-freebie span { flex: 1; }
.offer-freebie b { font-weight: 700; }
.offer.active .offer-freebie b { color: var(--white); }
.offer-freebie del { font-weight: 500; opacity: .7; flex: none; }

/* --- achat --- */
.buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 16px; }
.qty {
  display: flex; align-items: center;
  border: 2px solid var(--grey-200);
  border-radius: var(--r-pill);
  flex: 0 0 136px;
  padding: 4px;
  transition: border-color .22s ease;
}
.qty:hover { border-color: var(--grey-400); }
.qty button {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  font-size: 18px; font-weight: 500;
  display: grid; place-items: center;
  transition: background .18s ease, color .18s ease;
}
.qty button:hover { background: var(--black); color: var(--white); }
.qty button:disabled { opacity: .3; cursor: not-allowed; }
.qty button:disabled:hover { background: none; color: inherit; }
.qty span { flex: 1; text-align: center; font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }

.btn-add {
  flex: 1;
  background: var(--black); color: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-pill);
  font-size: 15px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding: 19px 20px;
  transition: background .22s ease, color .22s ease;
}
.btn-add:hover { background: var(--white); color: var(--black); }

.reassure-mini {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--grey-500);
  margin-bottom: 22px;
}
.reassure-mini span { display: flex; align-items: center; gap: 7px; }
.reassure-mini b { color: var(--ink); font-weight: 600; }
.reassure-mini svg { color: var(--black); }

/* --- paiements --- */
.payments { text-align: center; margin-bottom: 30px; }
.payments p { font-size: 13px; color: var(--grey-700); font-weight: 600; margin: 0 0 12px; }
.payments .cards {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.payments .cards::-webkit-scrollbar { display: none; }
.pay { flex: 0 0 auto; width: 38px; height: 24px; }

/* --- accordéons --- */
.acc { border-top: 1px solid var(--grey-200); }
.acc-item { border-bottom: 1px solid var(--grey-200); }
.acc-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0;
  font-size: 17px; font-weight: 700;
  text-align: left;
}
.acc-head i { font-style: normal; font-size: 22px; font-weight: 400; transition: transform .28s ease; }
.acc-item.open .acc-head i { transform: rotate(45deg); }
.acc-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  font-size: 14.5px; color: var(--grey-700); line-height: 1.75;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s ease, padding-bottom .38s ease;
}
.acc-item.open .acc-body { max-height: 640px; opacity: 1; padding-bottom: 24px; }
.acc-body p { margin: 0 0 12px; }
.acc-body p:last-child { margin-bottom: 0; }
.acc-body ul { margin: 0; padding-left: 20px; }
.acc-body li { margin-bottom: 8px; }
.acc-body strong { color: var(--black); font-weight: 700; }

/* ============================================
   Bandeau rayures — signature Sephora
   ============================================ */
.stripe-band {
  height: 16px;
  background: repeating-linear-gradient(90deg, #000 0 16px, #fff 16px 32px);
}

/* ============================================
   Features alternées
   ============================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 64px; }
.feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: var(--grey-50);
  border-radius: var(--r-card);
}
.feature-media::before {
  content: ''; position: absolute; left: -20px; top: 30px; bottom: 30px; width: 12px;
  border-radius: 6px;
  background: repeating-linear-gradient(180deg, #000 0 22px, #fff 22px 44px);
}
.feature.reverse .feature-media::before { left: auto; right: -20px; }
.feature h3 {
  font-size: clamp(26px, 3.2vw, 38px);
  text-transform: uppercase; letter-spacing: .04em;
  font-weight: 700; margin-bottom: 20px; line-height: 1.15;
}
.feature p { color: var(--grey-700); font-size: 15px; line-height: 1.8; margin: 0 0 16px; }
.feature p b { color: var(--black); font-weight: 700; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--grey-700); align-items: flex-start; }
.feature-list .tick {
  flex: none; margin-top: 2px;
  width: 20px; height: 20px; border-radius: var(--r-pill);
  background: var(--black); color: var(--white);
  display: grid; place-items: center;
}
.feature-list b { color: var(--black); font-weight: 700; }

/* ============================================
   Aperçu de la sélection — cartes à dévoiler
   ============================================ */
.lineup { overflow: hidden; }
.lineup-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  margin-bottom: 34px;
}
.lineup-head .section-title { margin-bottom: 6px; }
.lineup-sub { margin: 0; font-size: 15px; color: var(--grey-500); }
.lineup-sub b { color: var(--black); font-weight: 700; }
.lineup-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lineup-actions .btn-secondary { padding: 12px 26px; font-size: 11.5px; }

.lineup-stage { position: relative; }
.lineup-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -4px;
  padding: 4px;
}
.lineup-viewport::-webkit-scrollbar { display: none; }
.lineup-track { display: flex; gap: 18px; align-items: stretch; }

.lineup-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  display: grid; place-items: center;
  z-index: 4;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.lineup-nav:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.lineup-nav.prev { left: -14px; }
.lineup-nav.next { right: -14px; }

.lineup-bar {
  position: relative;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--grey-200);
  margin-top: 28px;
  overflow: hidden;
}
.lineup-bar span {
  position: absolute; top: 0; bottom: 0;
  background: var(--black);
  border-radius: var(--r-pill);
  transition: left .18s ease;
}

/* --- la carte --- */
.peek {
  position: relative;
  flex: 0 0 clamp(240px, 25%, 300px);
  display: flex;
  scroll-snap-align: start;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-card);
  background: var(--white);
  padding: 0;
  overflow: hidden;
  text-align: left;
  transition: border-color .25s ease;
}
.peek:hover { border-color: var(--grey-400); }
.peek.open { border-color: var(--black); }

/* voile iridescent pailleté */
.peek-cover {
  position: absolute; inset: 0;
  z-index: 3;
  display: grid; place-items: center;
  background:
    var(--veil-sparkle),
    linear-gradient(168deg,
      #f6e2f0 0%, #e4e8f7 18%, #eef0f8 34%,
      #f7ecf6 50%, #e9def4 68%, #e3cff0 84%, #ddc4ec 100%);
  background-size: var(--veil-size);
  transition: opacity .5s ease, transform .5s ease;
}
.peek.open .peek-cover { opacity: 0; transform: scale(1.04); pointer-events: none; }

.peek-cover-txt {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}
.peek-cover-txt em { display: block; font-style: italic; }
.peek-cover-num {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--font-logo);
  font-size: 26px; font-weight: 700;
  color: rgba(0,0,0,.28);
  line-height: 1;
}

/* contenu révélé */
.peek-inner {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 20px 18px;
  gap: 7px;
  min-width: 0;
}
.peek-media {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--grey-50);
  margin-bottom: 10px;
  flex: none;
}
.peek-media img { width: 100%; height: 100%; object-fit: cover; }
.peek-cat {
  align-self: flex-start;
  background: var(--grey-100);
  border-radius: var(--r-pill);
  padding: 4px 11px;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-500); font-weight: 700;
  margin-bottom: 4px;
}
.peek-brand {
  font-size: 16px; font-weight: 700; line-height: 1.25;
  text-transform: uppercase; letter-spacing: .01em;
  overflow-wrap: anywhere;
}
.peek-title { font-size: 13px; color: var(--grey-700); line-height: 1.4; font-weight: 500; overflow-wrap: anywhere; }

.peek-meta { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 4px; }
.peek-size {
  border: 1.5px solid var(--black);
  border-radius: var(--r-pill);
  padding: 3px 11px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  flex: none;
}
.peek-rating {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.peek-rating i { font-style: normal; color: var(--black); letter-spacing: -1px; font-size: 11px; }
.peek-rating em { font-style: normal; color: var(--grey-400); font-weight: 500; font-size: 11.5px; }
.peek-desc {
  font-size: 12px; color: var(--grey-500); line-height: 1.5;
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px solid var(--grey-200);
}

/* ============================================
   Contenu / marques
   ============================================ */
.content-visual { margin-top: 44px; border-radius: var(--r-card); overflow: hidden; background: var(--grey-50); }
.content-visual img { width: 100%; }

.value-table {
  margin-top: 40px;
  border: 2px solid var(--black);
  border-radius: var(--r-card);
  overflow: hidden;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.vt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px;
}
.vt-row + .vt-row { border-top: 1px solid var(--grey-200); }
.vt-label { font-size: 15px; color: var(--grey-700); }
.vt-label b { color: var(--black); font-weight: 700; }
.vt-val {
  font-size: 24px; font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.vt-val.hot { color: var(--red); }

.vt-total {
  background: var(--black);
  color: var(--white);
  border-top: 2px solid var(--black) !important;
}
.vt-total .vt-label { color: var(--white); font-weight: 700; font-size: 16px; }
.vt-total .vt-val { display: flex; align-items: center; gap: 12px; }
.vt-total .vt-val em {
  font-style: normal;
  background: var(--red);
  border-radius: var(--r-pill);
  padding: 4px 13px;
  font-size: 14px; font-weight: 700;
}

/* ============================================
   Avis
   ============================================ */
.reviews-top { text-align: center; margin-bottom: 40px; }
.reviews-top .section-title { margin-bottom: 18px; }
.tp-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 9px;
}
.tp-badge .trust-stars { gap: 5px; }
.tp-badge .trust-stars i { width: 30px; height: 30px; border-radius: 4px; }
.tp-line { margin: 0; font-size: 14.5px; color: var(--grey-700); }
.tp-line b { color: var(--ink); font-weight: 700; }
.tp-logo {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  letter-spacing: .01em;
}
.tp-logo svg { display: block; }
.trust-line { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.trust-line span { font-size: 14px; font-weight: 600; }
/* étoiles Trustpilot officielles (SVG fourni) */
.trust-stars {
  display: inline-block;
  height: 18px;
  aspect-ratio: 512 / 96;
  background: url("assets/img/stars-trustpilot.svg") left center / contain no-repeat;
}
.trust-stars i { display: none; }

/* ===== Avis — widget Trustpilot + carrousel ===== */
.reviews-head { text-align: center; margin-bottom: 32px; }
.reviews-head .eyebrow { margin-bottom: 12px; }
.reviews-head .section-title { margin-bottom: 14px; }
.reviews-head .section-sub { margin-bottom: 0; }

/* encadré récapitulatif */
.tp-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 26px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 40px;
  background: #f0faf5;
  border: 1px solid #d3ecdf;
  border-radius: var(--r-card);
  padding: 16px 30px;
}
.tp-box .tp-stars-img { height: 28px; width: auto; display: block; }
.tp-box-rating { display: inline-flex; align-items: baseline; gap: 10px 14px; flex-wrap: wrap; }
.tp-box-rating .tp-score { font-size: 24px; }
.tp-box-score { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.tp-logo { display: inline-flex; align-items: center; gap: 6px; font-size: 18px; font-weight: 700; color: var(--ink); }
.tp-logo svg { width: 20px; height: 20px; flex: none; }
.tp-box-score .tp-stars-img { height: 30px; width: auto; display: block; }
.tp-score { font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; }
.tp-score span { color: var(--grey-500); font-weight: 600; font-size: 17px; }
.tp-based { font-size: 13px; color: var(--grey-500); }
.tp-based b { color: var(--ink); font-weight: 700; }

.tp-box-bars {
  display: grid; gap: 7px;
  padding: 0 26px;
  border-left: 1px solid #d3ecdf; border-right: 1px solid #d3ecdf;
}
.tp-bar { display: grid; grid-template-columns: 56px 1fr 34px; align-items: center; gap: 10px; font-size: 12px; color: var(--grey-700); }
.tp-bar-track { height: 8px; border-radius: var(--r-pill); background: #d3ecdf; overflow: hidden; }
.tp-bar-track > span { display: block; height: 100%; background: var(--trust); border-radius: var(--r-pill); }
.tp-bar-p { text-align: right; font-weight: 700; color: var(--ink); }
.tp-box-quote { display: flex; flex-direction: column; gap: 10px; }
.tp-box-quote p { margin: 0; font-size: 14px; font-style: italic; color: var(--grey-700); line-height: 1.55; }

.reviews-sub { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.reviews-sub h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.reviews-more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--grey-700); }
.reviews-more-link svg { width: 15px; height: 15px; }

/* carrousel */
.reviews-viewport { overflow: hidden; }
.reviews-track { display: flex; gap: 18px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.review {
  flex: 0 0 calc((100% - 36px) / 3);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-card);
  padding: 24px;
  background: var(--white);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.review:hover { border-color: var(--grey-300); box-shadow: 0 14px 32px rgba(0,0,0,.07); transform: translateY(-3px); }
.review-head { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  flex: none;
  width: 48px; height: 48px; border-radius: 50%;
  background-image: url("assets/img/avatars.png");
  background-repeat: no-repeat;
  background-size: 500% auto;
  background-position: center;
  box-shadow: inset 0 0 0 2px var(--white), 0 0 0 1px var(--grey-200);
}
.reviews-track .review:nth-child(1) .rev-avatar { background-position: 0% center; }
.reviews-track .review:nth-child(2) .rev-avatar { background-position: 25% center; }
.reviews-track .review:nth-child(3) .rev-avatar { background-position: 50% center; }
.reviews-track .review:nth-child(4) .rev-avatar { background-position: 75% center; }
.reviews-track .review:nth-child(5) .rev-avatar { background-position: 100% center; }
.reviews-track .review:nth-child(6) .rev-avatar { background-position: 25% center; }
.review-who { display: flex; flex-direction: column; gap: 2px; }
.review-who b { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.review-ago { font-size: 12px; color: var(--grey-500); }
.review-stars { align-self: flex-start; display: block; height: 18px; width: auto; }
.review-title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0; letter-spacing: -.005em; }
.review p { margin: 0; font-size: 13.5px; color: var(--grey-700); line-height: 1.65; flex: 1; }
.review-nl { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: #eaf7f0; color: #0a7a32;
  border-radius: var(--r-pill);
  padding: 3px 9px 3px 4px;
  font-size: 11px; font-weight: 700;
  white-space: nowrap;
}
.verified svg { width: 14px; height: 14px; display: block; flex: none; }

.reviews-nav { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 30px; }
.reviews-nav > button { width: 44px; height: 44px; border-radius: var(--r-pill); background: var(--grey-100); display: grid; place-items: center; transition: background .22s ease, color .22s ease, opacity .22s ease; }
.reviews-nav > button:hover { background: var(--black); color: var(--white); }
.reviews-nav > button:disabled { opacity: .3; cursor: not-allowed; }
.reviews-nav > button:disabled:hover { background: var(--grey-100); color: inherit; }
.reviews-dots { display: flex; align-items: center; gap: 8px; }
.reviews-dots button { width: 8px; height: 8px; border-radius: var(--r-pill); background: var(--grey-300); padding: 0; transition: background .25s ease, width .25s ease; }
.reviews-dots button.active { background: var(--black); width: 22px; }

@media (max-width: 860px) {
  .tp-box { grid-template-columns: 1fr; gap: 20px; text-align: center; padding: 24px 20px; }
  .tp-box-score { align-items: center; }
  .tp-box-bars { border: none; border-top: 1px solid #d3ecdf; border-bottom: 1px solid #d3ecdf; padding: 16px 0; }
  .tp-bar { grid-template-columns: 62px 1fr 34px; }
  .tp-box-quote { align-items: center; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 700px; margin: 32px auto 0; }
.inline-link { color: var(--red); font-weight: 700; }

/* ===== Pages légales / informations ===== */
.legal-page { padding: 44px 0 76px; }
.legal { max-width: 820px; }
.legal .eyebrow { margin-bottom: 12px; }
.legal-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -.015em; margin: 0 0 10px; }
.legal-updated { font-size: 13px; color: var(--grey-500); margin: 0 0 30px; }
.legal-updated b { color: var(--ink); font-weight: 700; }
.legal-body h2 { font-size: 19px; font-weight: 700; letter-spacing: -.005em; margin: 30px 0 10px; }
.legal-body p { margin: 0 0 12px; font-size: 14.5px; color: var(--grey-700); line-height: 1.75; }
.legal-body ul { margin: 0 0 14px; padding-left: 20px; }
.legal-body li { margin-bottom: 6px; font-size: 14.5px; color: var(--grey-700); line-height: 1.7; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-ph { background: #fff4d1; color: #7a5c00; font-weight: 600; padding: 1px 6px; border-radius: 4px; }
.legal-form { display: grid; gap: 14px; max-width: 380px; margin: 8px 0 18px; }
.legal-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); }
.legal-form input { border: 1.5px solid var(--grey-200); border-radius: var(--r-sm); padding: 12px 14px; font: inherit; }
.legal-form input:focus { outline: none; border-color: var(--black); }
.legal-form .btn-primary { justify-self: start; }
.legal-note-min { font-size: 12.5px; color: var(--grey-500); }

/* FAQ — questions en cartes */
.faq-wrap .acc { border-top: none; display: grid; gap: 9px; }
.faq-wrap .acc-item {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-sm);
  padding: 0 18px;
  transition: border-color .2s ease, background .2s ease;
}
.faq-wrap .acc-item:hover { border-color: var(--grey-400); }
.faq-wrap .acc-item.open { border-color: var(--black); background: var(--grey-50); }
.faq-wrap .acc-head { gap: 14px; padding: 15px 0; font-size: 14.5px; }
.faq-wrap .acc-head i {
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--grey-100);
  font-size: 16px; line-height: 1;
}
.faq-wrap .acc-item.open .acc-head i { background: var(--black); color: var(--white); }
.faq-wrap .acc-body { font-size: 13.5px; }
.faq-wrap .acc-item.open .acc-body { padding-bottom: 16px; }

/* ============================================
   CTA final
   ============================================ */
.final-cta { background: var(--black); color: var(--white); text-align: center; }
.final-cta h2 { color: var(--white); }
.final-cta h2 em { font-style: normal; color: var(--red); }
.final-cta p { color: var(--grey-400); font-size: 15px; max-width: 580px; margin: 16px auto 32px; }
.final-cta p b { color: var(--white); font-weight: 700; }
.final-cta .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.final-cta .btn-primary:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ============================================
   Services — bandeau à icônes
   ============================================ */
.services { border-top: 1px solid var(--grey-200); }

.icon-box { position: relative; }

.icon-box-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.icon-box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
  padding: 0 12px;
}

.icon-box-icon {
  display: block;
  line-height: 1;
  color: var(--black);
}
.icon-box-icon svg { width: 32px; height: 32px; }

.icon-box-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.icon-box-item p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.65;
  max-width: 340px;
}

.icon-box-dots { display: none; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--black); color: var(--grey-400); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 46px; padding-bottom: 50px; }
.footer .logo { color: var(--white); margin-bottom: 18px; }
.footer .logo img { height: 58px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; }
.footer-about { font-size: 14px; line-height: 1.8; max-width: 330px; }
.footer h5 { color: var(--white); margin: 0 0 18px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14px; transition: color .22s ease; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #262626;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-bottom .cards { display: flex; gap: 8px; }
.legal-note { font-size: 11.5px; color: #565656; padding-bottom: 26px; line-height: 1.7; }

/* ============================================
   Panier
   ============================================ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .32s ease;
  z-index: 90;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  /* on laisse toujours voir la page derrière, même sur mobile */
  width: min(430px, calc(100% - 56px));
  background: var(--white);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--grey-200);
}
.drawer-head h3 { font-size: 14px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.drawer-body { flex: 1; overflow-y: auto; padding: 26px; }
.drawer-empty { text-align: center; color: var(--grey-500); font-size: 14px; padding: 70px 0; }
.cart-line {
  display: flex; flex-wrap: wrap; gap: 15px;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--grey-200);
}
.cart-line img { width: 76px; height: 76px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.cart-line-info { flex: 1 1 0; min-width: 0; }
.cart-line-info strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.4; }
.cart-line-info small { display: block; font-size: 12.5px; color: var(--grey-500); margin: 4px 0 8px; }
.cart-line-price { font-size: 16px; font-weight: 700; color: var(--red); }
.cart-line-remove { font-size: 12px; color: var(--grey-500); text-decoration: underline; height: fit-content; }
.cart-line-remove:hover { color: var(--black); }
.drawer-foot { border-top: 1px solid var(--grey-200); padding: 22px 26px; }
.drawer-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.drawer-total strong { font-weight: 700; color: var(--red); }
.drawer-foot small { display: block; color: var(--grey-500); font-size: 12.5px; margin-bottom: 18px; }
.drawer-foot .btn-add { width: 100%; }
.drawer-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.drawer-cards::-webkit-scrollbar { display: none; }
.drawer-cards .pay { width: 38px; height: 24px; }

/* barre d'achat mobile */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 11px 16px;
  display: none;
  align-items: center; gap: 14px;
  z-index: 70;
  transform: translateY(calc(100% + 12px));
  transition: transform .3s ease;
}
.sticky-buy.show { transform: none; }
.sticky-buy .sp { flex: none; }
.sticky-buy .sp strong { display: block; font-size: 19px; font-weight: 700; color: var(--red); line-height: 1.2; }
.sticky-buy .sp del { font-size: 12px; color: var(--grey-400); font-weight: 500; }
.sticky-buy .btn-add { padding: 15px; font-size: 13px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1180px) {
  .review { flex: 0 0 calc((100% - 36px) / 3); }
}

@media (max-width: 1024px) {
  section { padding: 54px 0; }
  .product { grid-template-columns: 1fr; gap: 40px; }
  .gallery { position: static; }
  .feature { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review { flex: 0 0 calc((100% - 18px) / 2); }
}

@media (max-width: 860px) {
  section { padding: 46px 0; }
  .nav { display: none; }
  .burger { display: grid; }

  /* logo parfaitement centré entre le menu et le panier */
  .header-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 8px;
    height: 74px;
  }
  .header-inner .logo { text-align: center; justify-self: center; }
  .header-inner .logo img { height: 52px; }
  .header-actions { justify-self: end; }
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 26px; }
  .feature.reverse .feature-media { order: 0; }
  .feature-media::before, .feature.reverse .feature-media::before { display: none; }
  .feature + .feature { margin-top: 56px; }
  .icon-box-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .icon-box-track::-webkit-scrollbar { display: none; }
  .icon-box-item { flex: 0 0 100%; scroll-snap-align: center; padding: 0 8px; }

  .icon-box-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
  }
  .icon-box-dots button {
    width: 8px; height: 8px;
    border-radius: var(--r-pill);
    background: var(--grey-300);
    padding: 0;
    transition: background .25s ease, width .25s ease;
  }
  .icon-box-dots button.active { background: var(--black); width: 22px; }
  .sticky-buy { display: flex; }
}

@media (max-width: 860px) {
  .thumbs button { flex: 0 0 calc((100% - 30px) / 4); }
}

@media (max-width: 560px) {
  :root { --pad: 16px; }
  .logo { font-size: 25px; letter-spacing: .01em; }
  .footer .logo { font-size: 27px; }

  /* vignettes : défilement horizontal, 3,4 visibles pour signaler le scroll */
  .thumbs { gap: 8px; }
  .thumbs button { flex: 0 0 28%; }

  /* bloc produit resserré */
  .product { padding: 10px 0 48px; }
  .rating-row { gap: 9px; }
  .rating-txt { font-size: 13px; line-height: 1.4; }
  .avatars img { height: 24px; }

  /* bundle */
  .offer-body { padding: 18px 16px 16px; }
  .offer-head { align-items: center; }
  .offer-left { gap: 11px; row-gap: 0; }
  .offer-left::after { content: ''; order: 2; flex-basis: 100%; height: 0; }
  .offer-chip { order: 3; flex: 0 0 auto; margin-top: 8px; font-size: 12px; padding: 4px 11px; }
  .offer-tagline { font-size: 11px; padding: 3px 11px; right: 12px; top: -12px; }
  .offer-freebie { padding: 10px 14px; font-size: 12.5px; gap: 9px; }
  .value-table { margin-top: 28px; }
  .vt-row { padding: 16px 18px; gap: 14px; }
  .vt-label { font-size: 13.5px; line-height: 1.4; }
  .vt-val { font-size: 20px; }
  .vt-total .vt-label { font-size: 14px; }
  .vt-total .vt-val { flex-direction: column; align-items: flex-end; gap: 5px; }
  .vt-total .vt-val em { font-size: 12px; padding: 3px 10px; }
  .offer-freebie img { width: 26px; height: 26px; }
  .offer-freebie del { font-size: 12px; }
  .radio { width: 22px; height: 22px; }

  /* quantité + CTA : le sélecteur reste compact, le bouton passe dessous */
  /* panier : on récupère de la place pour le titre et on garde des cibles tactiles confortables */
  .drawer-head { padding: 18px 18px; }
  .drawer-body { padding: 18px; }
  .drawer-foot { padding: 18px; }
  .cart-line { gap: 13px; padding-bottom: 16px; margin-bottom: 16px; }
  .cart-line img { width: 62px; height: 62px; }
  .cart-line-info strong { font-size: 13.5px; }
  /* base large imposée au bloc texte : « Retirer » bascule sur sa propre ligne */
  .cart-line-info { flex: 1 1 62%; }
  .cart-line-remove { order: 3; margin-left: auto; margin-top: 2px; }
  .drawer-cards { gap: 7px; margin-top: 14px; }
  .drawer-cards .pay { width: 36px; height: 23px; }
  .drawer-foot .btn-add { padding: 17px 16px; font-size: 13px; letter-spacing: .1em; }
  .drawer-total { font-size: 15px; }

  .buy-row { flex-wrap: wrap; gap: 10px; }
  .qty { flex: 0 0 130px; }
  .btn-add { flex-basis: 100%; padding: 18px; font-size: 13.5px; letter-spacing: .12em; }
  .reassure-mini { gap: 8px 16px; font-size: 12px; }
  .timer { font-size: 14px; padding: 14px 12px; }
  .peek { flex: 0 0 min(78%, 260px); }
  .peek-inner { padding: 16px 15px; gap: 5px; }
  .peek-media { aspect-ratio: 4/3; margin-bottom: 9px; }
  .peek-media img { object-fit: contain; }
  .peek-brand { font-size: 16px; }
  .peek-title { font-size: 12.5px; }
  .peek-meta { gap: 8px; margin-top: 3px; }
  .peek-size { font-size: 9.5px; padding: 3px 9px; }
  .peek-rating { font-size: 11.5px; }
  .peek-desc { font-size: 11.5px; padding-top: 10px; }
  .peek-cover-num { font-size: 22px; top: 12px; left: 13px; }
  .peek-cover-txt { font-size: 20px; }
  .lineup-nav { display: none; }
  .lineup-head { margin-bottom: 26px; }
  .lineup-actions { width: 100%; }
  .lineup-actions .btn-secondary { flex: 1; padding: 12px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .review { flex: 0 0 100%; }
  .price { font-size: 28px; }
  .offer-title { font-size: 19px; }
  .offer-prices strong { font-size: 19px; }
  .gift { flex-wrap: wrap; }
  .gift-price { text-align: left; }
}

/* ============================================
   PAGE D'ACCUEIL
   ============================================ */

/* apparition au défilement */
/* masqué uniquement si le script a confirmé qu'il gère la révélation :
   sans JS, ou si le mécanisme échoue, le contenu reste visible */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-reveal [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* --- hero --- */
.hero { padding: 64px 0 72px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: var(--grey-500); margin: 0 0 20px;
}
.hero-title {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-weight: 700;
  margin: 0 0 22px;
}
.hero-title em {
  font-style: normal;
  font-family: var(--font-logo);
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-lead {
  font-size: 16px;
  color: var(--grey-700);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 30px;
}
.hero-lead b { color: var(--black); font-weight: 700; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--grey-50);
}
/* --- chiffres --- */
.figures { background: var(--black); color: var(--white); padding: 58px 0; }
.figures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.figure b {
  display: block;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700; line-height: 1.1;
}
.figure b.hot { color: var(--red); }
.figure b em { font-style: normal; color: var(--red); }
.figure span {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-400); font-weight: 600;
}

/* --- produit vedette --- */
.featured-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
  margin-top: 52px;
  border: 2px solid var(--grey-200);
  border-radius: var(--r-card);
  padding: 34px;
  transition: border-color .25s ease;
}
.featured-card:hover { border-color: var(--black); }
.featured-media { position: relative; display: block; border-radius: var(--r-sm); overflow: hidden; }
.featured-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--grey-50); }
.featured-flag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: var(--white);
  border-radius: var(--r-pill);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: 6px 14px;
}
.featured-body h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -.01em;
  font-weight: 700; line-height: 1.2; margin: 0 0 12px;
}
.featured-sub { color: var(--grey-500); font-size: 15px; margin: 0 0 20px; }
.featured-card .price-row { margin-bottom: 24px; }
.featured-card .benefits { margin-bottom: 28px; }
.featured-btn { width: 100%; }
.featured-note {
  text-align: center; font-size: 12.5px; color: var(--grey-500); margin: 14px 0 0;
}

/* --- étapes --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.step {
  border: 2px solid var(--grey-200);
  border-radius: var(--r-card);
  padding: 32px 28px;
  transition: border-color .25s ease;
}
.step:hover { border-color: var(--black); }
.step-num {
  display: block;
  font-family: var(--font-logo);
  font-size: 34px; font-weight: 700;
  color: var(--grey-300);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 18px; font-weight: 700; margin: 0 0 10px;
  letter-spacing: -.005em;
}
.step p { margin: 0; font-size: 14px; color: var(--grey-500); line-height: 1.7; }

/* --- bandeau de marques --- */
.brands-marquee {
  margin-top: 48px;
  overflow: hidden;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.brands-row {
  display: flex;
  gap: clamp(30px, 5vw, 64px);
  width: max-content;
  animation: marquee 34s linear infinite;
}
.brands-row span {
  font-size: clamp(15px, 2vw, 21px);
  letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--grey-300);
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* bandeau de marques (fiche produit) — fond noir, compact */
.brand-strip { padding: 32px 0; background: var(--black); }
.brand-strip-label {
  text-align: center;
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: #8f8f8f; margin: 0 0 14px;
}
.brand-strip .brands-marquee {
  margin-top: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-strip .brands-row { gap: clamp(30px, 4.5vw, 54px); }
.brand-strip .brands-row span {
  font-size: clamp(13px, 1.5vw, 16px);
  color: #e2e2e2;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1;
}
/* wordmarks — rendu typographique distinct par marque */
.brand-strip .brands-row span:nth-child(7n+1) { font-family: Georgia,'Times New Roman',serif; font-weight: 400; letter-spacing: .01em; }
.brand-strip .brands-row span:nth-child(7n+2) { font-family: var(--font-logo); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.brand-strip .brands-row span:nth-child(7n+3) { font-weight: 300; text-transform: uppercase; letter-spacing: .32em; }
.brand-strip .brands-row span:nth-child(7n+4) { font-family: Georgia,serif; font-style: italic; font-weight: 400; }
.brand-strip .brands-row span:nth-child(7n+5) { font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.brand-strip .brands-row span:nth-child(7n+6) { font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; }
.brand-strip .brands-row span:nth-child(7n)   { font-family: Georgia,serif; font-style: italic; font-weight: 400; letter-spacing: .03em; }
@media (prefers-reduced-motion: reduce) {
  .brands-row { animation: none; }
  .brands-marquee { overflow-x: auto; }
}

.brands-visual {
  margin-top: 44px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--grey-50);
}
.brands-visual img { width: 100%; }

.brands-cta { display: none; text-align: center; margin: 26px 0 0; }

/* --- parti pris --- */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.promise-txt p { color: var(--grey-700); font-size: 15px; line-height: 1.85; margin: 0 0 16px; }
.promise-txt p b { color: var(--black); font-weight: 700; }
.promise-txt .section-title { text-align: left; margin-bottom: 20px; }
.promise-media img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-card); background: var(--grey-50);
}

/* --- lien sous la FAQ --- */
.faq-more { text-align: center; margin: 30px 0 0; font-size: 14px; color: var(--grey-500); }

/* --- responsive accueil --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 4/3; }
  .hero-lead { max-width: none; }
  .featured-card { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
  .promise-grid { grid-template-columns: 1fr; gap: 36px; }
  .promise-media { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 860px) {
  .hero { padding: 40px 0 52px; }
  .figures-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .figures { padding: 46px 0; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(32px, 11vw, 44px); }
  .hero-lead { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; }
  .step { padding: 24px 20px; }
  .step-num { font-size: 28px; margin-bottom: 12px; }
  /* la planche des marques devient illisible sous 560px :
     on la remplace par un accès direct au carrousel produits */
  .brands-visual { display: none; }
  .brands-cta { display: block; margin-top: 30px; }
  .brands-cta .btn-secondary { width: 100%; }
}
