/* ============================================================
   DOZIA — boutique premium (charte blanc / violet)
   ------------------------------------------------------------
   Base : starter cinématique (moteur scroll-scrub intact).
   Thème clair : blanc pur + violet DOZIA en accent unique.
   Le hero scrub et les bandes stats / contact / footer restent
   sombres (violet-nuit) pour le contraste cinématique.
   ============================================================ */

:root {
  /* ---- Fonds clairs ---- */
  --bg:          #ffffff;   /* base de page — blanc pur */
  --bg-2:        #f8f7fc;   /* lavande à peine perceptible (bandes alternées) */
  --bg-3:        #f1eef9;   /* +2 crans */
  --ink:         #17102e;   /* violet-nuit (hero, stats, contact, footer) */
  --ink-2:       #120c24;   /* encore plus profond (footer) */

  /* ---- Texte sur fond clair ---- */
  --fg:          #201a38;   /* presque noir, teinté violet */
  --fg-soft:     #4e4669;
  --muted:       #8d87a3;

  /* ---- Texte sur fond sombre ---- */
  --inv:         #f6f5fb;
  --inv-soft:    #c9c4dd;
  --line-inv:    rgba(246, 245, 251, 0.16);

  /* ---- Accent + filets ---- */
  --accent:      #5f4bb6;   /* violet DOZIA — accent unique */
  --accent-soft: #8b7ae0;   /* dérivé clair (hover, lueurs) */
  --accent-pale: #eae5f9;   /* dérivé très pâle (fonds de puce) */
  --line:        rgba(32, 26, 56, 0.12);

  /* ---- Layout ---- */
  --maxw:        1240px;
  --pad:         clamp(22px, 5vw, 80px);

  /* ---- Motion + typo ---- */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --serif:       "Fraunces", Georgia, "Times New Roman", serif;
  --sans:        "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ============================================================
   STRUCTUREL
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* jamais hidden : tuerait le sticky du scrub */
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
em { font-style: italic; }

/* ---- Briques partagées ------------------------------------------ */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.eyebrow--light { color: var(--inv-soft); }
.eyebrow--center { text-align: center; }

.lede   { font-size: clamp(16px, 1.4vw, 19px); color: var(--fg-soft); max-width: 46ch; margin: 26px 0 0; line-height: 1.75; }
.meta   { font-size: 14px; color: var(--muted); letter-spacing: 0.02em; margin: 20px 0 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px;
  border: 0; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
}
/* Sur image / fond sombre */
.btn--light { color: var(--inv); border: 1px solid rgba(246,245,251,0.45); background: transparent; }
.btn--light:hover { background: var(--inv); color: var(--ink); transform: translateY(-2px); }
/* CTA principal violet */
.btn--accent {
  color: #fff; background: var(--accent);
  box-shadow: 0 14px 34px -14px rgba(95, 75, 182, 0.55);
}
.btn--accent:hover {
  background: #4e3ba0; transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(95, 75, 182, 0.6);
}
/* Sur section sombre (contact) */
.btn--solid { color: var(--ink); background: var(--inv); margin-top: 8px; }
.btn--solid:hover { background: var(--accent-soft); color: var(--ink); transform: translateY(-2px); }

/* ---- Barre de progression du scroll ------------------------------ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); z-index: 200; transition: width .1s linear;
}

/* ---- Nav ---------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  color: var(--inv);
  transition: background .5s var(--ease), padding .5s var(--ease),
              color .5s var(--ease), backdrop-filter .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  color: var(--fg);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
/* Nav toujours solide (pages produit) — évite le texte blanc sur fond blanc en haut */
.nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  color: var(--fg);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700;
  font-size: 17px; letter-spacing: 0.4em;
  color: inherit;
}
.nav__mark { width: 36px; height: auto; display: block; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: inherit; opacity: 0.82; position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: inherit; border: 1px solid currentColor;
  padding: 11px 22px; border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }

/* ============================================================
   HERO SCRUB — sombre, halo violet
   height ≈ frames × 4.6vh une fois les vraies frames posées.
   ============================================================ */
.scrub { position: relative; height: 560vh; background: var(--ink); } /* 121 frames × 4.6 ≈ 557vh */
.scrub__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrub__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scrub__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(23,16,46,0.82) 0%, rgba(23,16,46,0.14) 42%, rgba(23,16,46,0) 65%),
    linear-gradient(to bottom, rgba(23,16,46,0.52) 0%, rgba(23,16,46,0) 28%);
}

/* Loader */
.loader {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: var(--ink); transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__brand { font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.5em; padding-left: 0.5em; color: var(--inv); }
.loader__track { width: 180px; height: 1px; background: var(--line-inv); overflow: hidden; }
.loader__bar { display: block; height: 100%; width: 0; background: var(--accent-soft); transition: width .25s var(--ease); }
.loader__pct { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--inv-soft); }

/* Beats */
.scrub__beat {
  position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(48px, 9vh, 110px); z-index: 10;
  max-width: 640px; opacity: 0; will-change: opacity, transform;
}
.scrub__eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-soft); margin: 0 0 18px;
}
.scrub__title {
  font-size: clamp(38px, 6.2vw, 84px); line-height: 0.98; color: var(--inv);
  text-shadow: 0 2px 50px rgba(10, 5, 30, 0.5);
}
.scrub__title em, .scrub__beat-title em { color: var(--accent-soft); }
.scrub__tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.9vw, 24px);
  color: var(--inv-soft); margin: 18px 0 0; max-width: 40ch;
}
.scrub__trust {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--inv-soft); margin: 26px 0 0;
}
.scrub__stars { color: var(--accent-soft); letter-spacing: 0.18em; margin-right: 10px; }
.scrub__beat-title {
  font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em;
  font-size: clamp(40px, 6.4vw, 92px); color: var(--inv); text-shadow: 0 2px 50px rgba(10,5,30,0.5);
}
.scrub__beat-copy {
  font-size: clamp(16px, 1.45vw, 20px); color: var(--inv-soft);
  margin: 22px 0 0; max-width: 42ch; line-height: 1.7; text-shadow: 0 1px 20px rgba(10,5,30,0.45);
}
.scrub__beat .btn { margin-top: 30px; }

.scrub__cue {
  position: absolute; right: var(--pad); bottom: clamp(48px, 10vh, 96px); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--inv-soft);
}
.scrub__cue-line { width: 1px; height: 54px; background: linear-gradient(var(--inv-soft), transparent); animation: cuePulse 2.4s var(--ease) infinite; }
@keyframes cuePulse { 0%,100% { opacity: .35; transform: scaleY(.7); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   BARRE DE CONFIANCE
   ============================================================ */
.trustbar { background: var(--bg); border-bottom: 1px solid var(--line); padding: 26px var(--pad); }
.trustbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 48px);
}
.trust { display: flex; align-items: center; gap: 14px; }
.trust svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--accent); }
.trust span { font-size: 13px; color: var(--muted); line-height: 1.45; display: flex; flex-direction: column; }
.trust strong { font-weight: 600; color: var(--fg); font-size: 13.5px; letter-spacing: 0.02em; }

/* ============================================================
   LE PROBLÈME
   ============================================================ */
.pain { padding: clamp(90px, 13vh, 180px) var(--pad); background: linear-gradient(180deg, #ffffff 0%, #f6f4fc 100%); }
.pain__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start;
}
.pain__head { position: sticky; top: 120px; }
.pain__title { font-size: clamp(38px, 5vw, 72px); }
.pain__title em { color: var(--accent); }
.pain__list { list-style: none; margin: 0; padding: 0; }
.pain__item {
  position: relative; padding: 26px 0 26px 44px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1.35vw, 19px); color: var(--fg-soft); line-height: 1.55;
}
.pain__item::before {
  content: "✕"; position: absolute; left: 0; top: 26px;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--accent); background: var(--accent-pale);
}

/* ============================================================
   STATS — bande sombre
   ============================================================ */
.stats { background: var(--ink); padding: clamp(70px, 11vh, 130px) var(--pad); }
.stats__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 60px);
}
.stat { text-align: left; border-left: 1px solid var(--line-inv); padding-left: 26px; }
.stat__num { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(46px, 5.5vw, 76px); line-height: 1; color: var(--inv); }
.stat__unit { font-size: 0.42em; color: var(--accent-soft); letter-spacing: 0.02em; }
.stat__label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--inv-soft); opacity: .75; margin-top: 16px; }

/* ============================================================
   ÉDITORIAL (image + texte)
   ============================================================ */
.editorial { padding: clamp(90px, 13vh, 180px) var(--pad); background: var(--bg); }
.editorial--reverse { background: var(--bg-2); }
.editorial__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 90px); align-items: center;
}
.editorial--reverse .editorial__media { order: 2; }
.editorial--reverse .editorial__text { order: 1; }
.editorial__text { max-width: 480px; }
.editorial__title { font-size: clamp(38px, 5.2vw, 76px); }
.editorial__title em { color: var(--accent); }

.frame {
  margin: 0; overflow: hidden; border-radius: 6px;
  box-shadow: 0 40px 90px -40px rgba(32, 26, 56, 0.35);
  position: relative; aspect-ratio: 16 / 12; background: var(--bg-3);
  background-image: repeating-linear-gradient(45deg, rgba(95,75,182,0.03) 0 14px, transparent 14px 28px);
}
.frame::after {
  content: "Image à venir"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); opacity: 0.5; pointer-events: none;
}
.frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.editorial__media:hover .frame img { transform: scale(1.04); }

/* ============================================================
   FULL-BLEED
   ============================================================ */
.bleed { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.bleed--tall { min-height: 100vh; }
.bleed__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bleed__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(23,16,46,0.88) 0%, rgba(23,16,46,0.34) 38%, rgba(23,16,46,0) 60%),
    linear-gradient(to right, rgba(23,16,46,0.55) 0%, rgba(23,16,46,0.12) 50%, rgba(23,16,46,0) 80%);
}
.bleed__content { position: relative; z-index: 2; max-width: 640px; padding: 0 var(--pad); }
.bleed__content--low { align-self: flex-end; padding-bottom: clamp(60px, 12vh, 120px); }
.bleed__title { font-size: clamp(40px, 6vw, 92px); color: var(--inv); text-shadow: 0 2px 40px rgba(10,5,30,0.5); }
.bleed__title em { color: var(--accent-soft); }
.bleed__copy { font-size: clamp(16px, 1.4vw, 19px); color: var(--inv); max-width: 46ch; margin: 24px 0 36px; line-height: 1.75; text-shadow: 0 1px 24px rgba(10,5,30,0.85), 0 1px 4px rgba(10,5,30,0.6); }
.bleed__specs { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.bleed__specs li { display: flex; flex-direction: column; gap: 6px; padding-top: 18px; border-top: 1px solid rgba(246,245,251,0.25); min-width: 150px; }
.bleed__spec-k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-soft); }
.bleed__spec-v { font-family: var(--serif); font-size: clamp(18px, 1.7vw, 22px); color: var(--inv); }

/* ============================================================
   BÉNÉFICES (liste numérotée)
   ============================================================ */
.amenities { background: var(--bg-2); padding: clamp(90px, 14vh, 180px) var(--pad); }
.amenities__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start;
}
.amenities__head { position: sticky; top: 120px; }
.amenities__title { font-size: clamp(34px, 4.4vw, 64px); }
.amenities__title em { color: var(--accent); }
.amenities__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px);
}
.amenity {
  display: flex; gap: 20px; align-items: baseline;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.amenity__index { font-family: var(--serif); font-size: 15px; color: var(--accent); letter-spacing: 0.04em; flex: 0 0 auto; min-width: 26px; }
.amenity__text { font-size: clamp(15px, 1.15vw, 17px); color: var(--fg-soft); line-height: 1.5; }

/* ============================================================
   COMPARATIF
   ============================================================ */
.compare { background: var(--bg); padding: clamp(90px, 13vh, 180px) var(--pad); }
.compare__inner { max-width: var(--maxw); margin: 0 auto; }
.compare__head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 70px); }
.compare__title { font-size: clamp(36px, 4.8vw, 70px); }
.compare__title em { color: var(--accent); }
.compare__table { border-top: 1px solid var(--line); }
.compare__row {
  display: grid; grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: clamp(14px, 3vw, 40px); align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(14px, 1.15vw, 16.5px); color: var(--fg-soft);
}
.compare__row--header {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); padding: 16px 0;
}
.compare__row--header .compare__dozia { color: var(--accent); }
.compare__row > span:first-child { font-weight: 600; color: var(--fg); }
.compare__dozia { position: relative; color: var(--fg); font-weight: 500; padding-left: 26px; }
.compare__row:not(.compare__row--header) .compare__dozia::before {
  content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; background: var(--accent);
}

/* ============================================================
   AVIS CLIENTS
   ============================================================ */
.reviews { background: linear-gradient(180deg, #f6f4fc 0%, #ffffff 100%); padding: clamp(90px, 13vh, 180px) var(--pad); }
.reviews__inner { max-width: var(--maxw); margin: 0 auto; }
.reviews__head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 70px); }
.reviews__title { font-size: clamp(36px, 4.8vw, 70px); }
.reviews__title em { color: var(--accent); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px);
}
.review {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 24px 50px -36px rgba(32, 26, 56, 0.25);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: 0 34px 64px -36px rgba(32, 26, 56, 0.32); }
.review__stars { color: var(--accent); letter-spacing: 0.2em; font-size: 14px; }
.review__star-off { opacity: 0.25; }

/* ============================================================
   COMPOSANT NOTE — étoiles avec demi-valeurs (--r de 0 à 5)
   ============================================================ */
.rating {
  --r: 5; --star-empty: #d5cfe8; --star-on: var(--accent);
  position: relative; display: inline-block; vertical-align: middle;
  font-size: 15px; line-height: 1; white-space: nowrap;
}
.rating::before { content: "★★★★★"; color: var(--star-empty); }
.rating__on {
  position: absolute; top: 0; left: 0; height: 100%; overflow: hidden;
  width: calc(var(--r) / 5 * 100%); color: var(--star-on);
}
.rating__on::before { content: "★★★★★"; }
/* Contexte sombre (hero) */
.scrub__trust .rating { --star-empty: rgba(246, 245, 251, 0.32); --star-on: var(--accent-soft); }
.review__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--fg-soft); flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; color: var(--muted); }
.review__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--accent); background: var(--accent-pale);
}

/* ============================================================
   OFFRES / PRODUITS
   ============================================================ */
.offers { background: var(--bg); padding: clamp(90px, 13vh, 180px) var(--pad); }
.offers__inner { max-width: var(--maxw); margin: 0 auto; }
.offers__head { max-width: 640px; margin-bottom: clamp(44px, 6vh, 76px); }
.offers__title { font-size: clamp(38px, 5.2vw, 76px); }
.offers__title em { color: var(--accent); }
.offers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }

.product {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  box-shadow: 0 30px 70px -44px rgba(32, 26, 56, 0.35);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: 0 44px 90px -44px rgba(32, 26, 56, 0.42); }
.product__flag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 8px 14px; border-radius: 999px;
}
.product__flag--deal { background: var(--ink); }
.product__media { margin: 0; aspect-ratio: 1 / 1; background: var(--bg-3); overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__body { display: flex; flex-direction: column; gap: 14px; padding: 30px clamp(22px, 2.6vw, 36px) 34px; }
.product__name { font-size: clamp(26px, 2.4vw, 34px); }
.product__desc { margin: 0; font-size: 15px; color: var(--fg-soft); }
.product__price { display: flex; align-items: baseline; gap: 14px; margin: 4px 0 0; }
.product__was { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.product__now { font-family: var(--serif); font-size: clamp(30px, 2.8vw, 40px); font-weight: 500; color: var(--fg); }
.product__save {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--accent); background: var(--accent-pale);
  padding: 5px 10px; border-radius: 999px;
}
.product__packs { display: flex; flex-direction: column; gap: 8px; }
.product__packs-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.product__packs select {
  width: 100%; padding: 14px 42px 14px 16px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--fg);
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235f4bb6' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 16px center;
  border: 1px solid var(--line); border-radius: 8px;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.product__packs select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-pale); }
.product__cta { width: 100%; margin-top: 6px; }
.product__reassure { margin: 4px 0 0; font-size: 12.5px; color: var(--muted); text-align: center; }
.product__more { margin: 2px 0 0; text-align: center; }
.product__more a { font-size: 13px; font-weight: 600; color: var(--accent); transition: opacity .3s var(--ease); }
.product__more a:hover { opacity: .75; }
.product__name a { transition: color .3s var(--ease); }
.product__name a:hover { color: var(--accent); }
.offers__urgency {
  margin: clamp(30px, 4vh, 46px) 0 0; font-size: 14px; color: var(--fg-soft);
  padding-left: 18px; border-left: 2px solid var(--accent); max-width: 62ch;
}

/* ============================================================
   CADEAU
   ============================================================ */
.gift { background: var(--bg-2); padding: clamp(90px, 12vh, 160px) var(--pad); }
.gift__inner {
  max-width: 760px; margin: 0 auto; text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, #f1eef9 100%);
  border: 1px solid var(--line); border-radius: 12px;
  padding: clamp(36px, 5vw, 64px);
  box-shadow: 0 34px 80px -50px rgba(32, 26, 56, 0.4);
}
.gift__title { font-size: clamp(30px, 3.8vw, 52px); }
.gift__title em { color: var(--accent); }
.gift__copy { margin: 20px 0 30px; color: var(--fg-soft); max-width: 52ch; line-height: 1.75; }

/* ============================================================
   GARANTIES
   ============================================================ */
.assure { background: var(--bg); padding: clamp(80px, 11vh, 150px) var(--pad); border-top: 1px solid var(--line); }
.assure__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 56px);
}
.assure__item { border-left: 1px solid var(--line); padding-left: 24px; }
.assure__num { display: block; font-family: var(--serif); font-size: clamp(34px, 3.4vw, 50px); color: var(--accent); line-height: 1; }
.assure__t { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg); margin: 14px 0 10px; }
.assure__p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); padding: clamp(90px, 13vh, 180px) var(--pad); }
.faq__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start;
}
.faq__head { position: sticky; top: 120px; }
.faq__title { font-size: clamp(34px, 4.4vw, 64px); }
.faq__title em { color: var(--accent); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-size: clamp(15.5px, 1.2vw, 17.5px); font-weight: 600; color: var(--fg);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 500; color: var(--accent); background: var(--accent-pale);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.faq__item[open] summary { color: var(--accent); }
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq__item p { margin: 0 0 24px; font-size: 15px; color: var(--fg-soft); line-height: 1.7; max-width: 60ch; }

/* ============================================================
   MANIFESTE
   ============================================================ */
.manifesto { background: var(--bg); padding: clamp(110px, 18vh, 220px) var(--pad); }
.manifesto__inner { max-width: 940px; margin: 0 auto; text-align: center; }
.manifesto__title { font-size: clamp(36px, 5.6vw, 92px); }
.manifesto__title em { color: var(--accent); }
.manifesto__copy { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.2vw, 30px); color: var(--fg-soft); margin: 34px auto 0; max-width: 56ch; line-height: 1.5; }

/* ============================================================
   CONTACT — bande sombre
   ============================================================ */
.contact { background: var(--ink); padding: clamp(90px, 14vh, 180px) var(--pad); }
.contact__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center;
}
.contact__title { font-size: clamp(34px, 4.6vw, 64px); color: var(--inv); margin-top: 8px; }
.contact__copy { color: var(--inv-soft); max-width: 42ch; margin: 26px 0 0; }
.contact__details { display: flex; flex-direction: column; gap: 4px; }
.contact__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--line-inv);
  transition: padding-left .35s var(--ease);
}
.contact__row:not(.contact__row--static):hover { padding-left: 10px; }
.contact__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--inv-soft); opacity: .7; }
.contact__value { font-family: var(--serif); font-size: clamp(17px, 1.7vw, 23px); color: var(--inv); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); padding: clamp(60px, 9vh, 110px) var(--pad) 40px; color: var(--inv-soft); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; padding-bottom: 44px; }
.footer__mark { width: 62px; height: auto; margin: 0 auto 14px; display: block; }
.footer__brand { display: block; font-family: var(--sans); font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: 0.42em; padding-left: 0.42em; color: var(--inv); }
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--inv-soft); margin: 14px 0 0; }

.footer__nav {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 0;
  border-top: 1px solid var(--line-inv); border-bottom: 1px solid var(--line-inv);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(26px, 4vw, 60px);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__col-title { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--inv); margin: 0 0 6px; }
.footer__col a, .footer__col button {
  background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  font-size: 14px; color: var(--inv-soft); transition: color .3s var(--ease);
}
.footer__col a:hover, .footer__col button:hover { color: var(--accent-soft); }
.footer__payments { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--inv); border: 1px solid var(--line-inv); border-radius: 6px;
  padding: 6px 12px;
}
.footer__ssl { font-size: 12px; color: var(--inv-soft); opacity: .7; margin: 10px 0 0; }

.footer__base { max-width: var(--maxw); margin: 32px auto 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__legal { font-size: 12px; letter-spacing: 0.04em; color: var(--inv-soft); opacity: .65; }

/* ============================================================
   BARRE STICKY
   ============================================================ */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  display: flex; align-items: center; justify-content: center; gap: clamp(14px, 3vw, 30px);
  padding: 12px var(--pad);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__txt { font-size: 13.5px; color: var(--fg-soft); }
.stickybar__txt strong { color: var(--fg); letter-spacing: 0.14em; }
.stickybar__btn { padding: 12px 24px; font-size: 11px; }

/* ============================================================
   BANNIÈRE COOKIES (RGPD)
   ============================================================ */
.cookiebar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  background: var(--ink); padding: 18px var(--pad);
  box-shadow: 0 -20px 50px -24px rgba(10, 5, 30, 0.5);
}
.cookiebar.is-visible { display: block; }
.cookiebar__box {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 3vw, 32px); flex-wrap: wrap;
}
.cookiebar__txt { font-size: 13.5px; line-height: 1.6; color: var(--inv-soft); margin: 0; flex: 1 1 320px; }
.cookiebar__link {
  background: none; border: 0; padding: 0; margin-left: 4px; font: inherit; font-weight: 600;
  color: var(--inv); text-decoration: underline; cursor: pointer;
}
.cookiebar__actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cookiebar__btn { padding: 11px 22px; font-size: 12.5px; white-space: nowrap; }
body.cookiebar-on .stickybar.is-visible { transform: translateY(-84px); }
body.cookiebar-on .chat { bottom: 100px; }
body.cookiebar-on.stickybar-on .chat { bottom: 176px; }
@media (max-width: 560px) {
  .cookiebar__box { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookiebar__txt { flex-basis: auto; }
  .cookiebar__actions { width: 100%; }
  .cookiebar__btn { flex: 1 1 0; }
  body.cookiebar-on .stickybar.is-visible { transform: translateY(-190px); }
  body.cookiebar-on .chat { bottom: 176px; }
  body.cookiebar-on.stickybar-on .chat { bottom: 270px; }
}

/* ============================================================
   CHATBOT
   ============================================================ */
.chat { position: fixed; right: clamp(16px, 3vw, 30px); bottom: clamp(16px, 3vh, 28px); z-index: 180; transition: bottom .5s var(--ease); }
body.stickybar-on .chat { bottom: 96px; }
.chat__fab {
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(145deg, var(--accent-soft), var(--accent));
  box-shadow: 0 16px 40px -12px rgba(95, 75, 182, 0.65);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.chat__fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 48px -12px rgba(95,75,182,0.7); }
.chat__fab svg { width: 26px; height: 26px; }
.chat__panel {
  position: absolute; right: 0; bottom: 74px;
  width: min(370px, calc(100vw - 40px));
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 40px 90px -30px rgba(32, 26, 56, 0.45);
  overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(0.98);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.chat__panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.chat__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #4a3897 100%);
}
.chat__head strong { display: block; font-size: 14.5px; letter-spacing: 0.02em; }
.chat__head small { display: block; font-size: 11.5px; opacity: .8; }
.chat__dot { width: 9px; height: 9px; border-radius: 50%; background: #7ee2a8; flex: 0 0 auto; box-shadow: 0 0 0 3px rgba(126,226,168,0.25); }
.chat__close {
  margin-left: auto; background: none; border: 0; cursor: pointer;
  color: #fff; font-size: 22px; line-height: 1; opacity: .8; padding: 2px 6px;
}
.chat__close:hover { opacity: 1; }
.chat__log {
  height: 300px; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-2);
}
.chat__msg { max-width: 85%; padding: 11px 14px; border-radius: 12px; font-size: 14px; line-height: 1.55; }
.chat__msg--bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--fg-soft); border-bottom-left-radius: 4px; }
.chat__msg--user { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.chat__msg a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.chat__msg--user a { color: #fff; }
.chat__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 14px; background: var(--bg-2); border-top: 1px solid var(--line); }
.chat__chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 7px 13px; font-size: 12.5px; font-weight: 500; color: var(--accent); cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chat__chip:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.chat__form { display: flex; border-top: 1px solid var(--line); }
.chat__input { flex: 1; border: 0; padding: 14px 16px; font-family: var(--sans); font-size: 14px; color: var(--fg); }
.chat__input:focus { outline: none; }
.chat__send {
  border: 0; background: none; cursor: pointer; padding: 0 18px;
  color: var(--accent); font-size: 16px;
  transition: transform .3s var(--ease);
}
.chat__send:hover { transform: translateX(2px); }

/* ============================================================
   MODALES
   ============================================================ */
.modal { border: 0; padding: 0; background: transparent; max-width: min(560px, calc(100vw - 32px)); width: 100%; }
.modal::backdrop { background: rgba(23, 16, 46, 0.55); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; background: #fff; border-radius: 14px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 50px 120px -30px rgba(23, 16, 46, 0.5);
}
.modal__box--doc { max-height: min(72vh, 640px); overflow-y: auto; }
.modal__box--doc p { font-size: 14.5px; color: var(--fg-soft); line-height: 1.7; }
.modal__box--doc strong { color: var(--fg); }
.modal__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--muted); padding: 4px 8px;
  transition: color .3s var(--ease);
}
.modal__close:hover { color: var(--fg); }
.modal__title { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.modal__line { font-size: 16px; font-weight: 600; color: var(--fg); margin: 0 0 18px; }
.modal__assure { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.modal__assure li { font-size: 14px; color: var(--fg-soft); padding-left: 26px; position: relative; }
.modal__assure li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff; background: var(--accent);
}
.modal__cta { width: 100%; }
.modal__cta.is-loading { opacity: .6; pointer-events: none; }
.modal__note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   MOTION LAYER (micro-interactions premium)
   ============================================================ */
.ml-reveal .ml-line { overflow: hidden; padding-bottom: 0.04em; margin-bottom: -0.04em; }
.ml-reveal .ml-line__inner {
  display: block; transform: translateY(110%);
  transition: transform 0.9s var(--ease); transition-delay: var(--ml-delay, 0s);
  will-change: transform;
}
.ml-reveal.is-shown .ml-line__inner { transform: translateY(0); }

.ml-eyebrow { clip-path: inset(0 0 100% 0); opacity: 0; transition: clip-path 0.7s var(--ease), opacity 0.7s var(--ease); }
.ml-eyebrow.is-shown { clip-path: inset(0 0 0 0); opacity: 1; }

.stat__num.is-counting { font-variant-numeric: tabular-nums; }

.bleed__img { will-change: transform; transform: translate3d(0, var(--py, 0px), 0) scale(1.12); }

.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }
.nav__cta:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }
.btn--light:active { transform: scale(0.98); }

body.intro-ready .nav { opacity: 0; transform: translateY(-12px); }
body.intro-ready.is-loaded .nav {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .editorial__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .editorial--reverse .editorial__media { order: 1; }
  .editorial--reverse .editorial__text { order: 2; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .amenities__inner, .faq__inner, .pain__inner { grid-template-columns: 1fr; gap: 44px; }
  .amenities__head, .faq__head, .pain__head { position: static; }
  .amenities__list { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .offers__grid { grid-template-columns: 1fr; }
  .assure__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .compare__row { font-size: 13.5px; }
}
/* 820px = breakpoint JS isSmall : scrub statique → hero ramené à 100vh */
@media (max-width: 820px) {
  .scrub { height: 100vh; }
  /* Les .bleed (photos plein format 16:9) recadraient sévèrement en cover
     sur un écran portrait très haut : on montre l'image entière (contain,
     letterbox sur --ink) dans un cadre moins étiré verticalement. */
  .bleed, .bleed--tall { min-height: 62vh; }
  .bleed__img { transform: none; object-fit: contain; }
}
@media (max-width: 560px) {
  .stats__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; text-align: center; align-items: center; }
  .nav__cta { display: none; }
  .scrub { height: 100vh; }
  .bleed__specs { gap: 22px; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .assure__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .compare__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .compare__row--header { display: none; }
  .compare__row > span:first-child { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
  .stickybar__txt { display: none; }
  .stickybar { justify-content: stretch; }
  .stickybar__btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ml-reveal .ml-line { overflow: visible; padding-bottom: 0; margin-bottom: 0; }
  .ml-reveal .ml-line__inner { transform: none !important; transition: none !important; }
  .ml-eyebrow { clip-path: none !important; opacity: 1 !important; transition: none !important; }
  .bleed__img { transform: none !important; will-change: auto; }
  .btn:active, .nav__cta:active, .btn--light:active { transform: none !important; }
  body.intro-ready .nav { opacity: 1 !important; transform: none !important; transition: none !important; }
  .chat__panel { transition: none; }
  .stickybar { transition: none; }
  .review, .product { transition: none; }
}

/* ============================================================
   GALERIES PRODUIT (cartes index + pages produit)
   ============================================================ */
.product__thumbs, .gallery__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.gallery__thumbs--six, .product__thumbs--six { grid-template-columns: repeat(3, 1fr); }
.product__thumbs { padding: 14px clamp(22px, 2.6vw, 36px) 0; }
.thumb {
  margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg-3); cursor: pointer; overflow: hidden; aspect-ratio: 1 / 1;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* contain, pas cover : certaines vignettes sont des infographies portrait avec
   du texte proche des bords — cover les rognerait (titres/légendes coupés). */
.thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.thumb:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -14px rgba(32,26,56,0.35); }
.thumb.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-pale); }

/* ============================================================
   PAGE PRODUIT (PDP)
   ============================================================ */
.crumbs {
  max-width: var(--maxw); margin: 0 auto; padding: 110px var(--pad) 0;
  font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted);
}
.crumbs a { color: var(--muted); transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-current] { color: var(--fg); font-weight: 600; }

.pdp { padding: 34px var(--pad) clamp(70px, 9vh, 120px); background: var(--bg); }
.pdp__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 4.5vw, 70px); align-items: start;
}

.gallery { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 12px; }
.gallery__main {
  margin: 0; border-radius: 12px; overflow: hidden; cursor: zoom-in;
  aspect-ratio: 1 / 1; background: var(--bg-3); border: 1px solid var(--line);
  box-shadow: 0 34px 80px -50px rgba(32, 26, 56, 0.4);
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; transition: transform .9s var(--ease); }
.gallery__main:hover img { transform: scale(1.04); }
.gallery__hint { font-size: 12px; color: var(--muted); text-align: center; margin: 0; }

.buy { display: flex; flex-direction: column; gap: 16px; align-self: start; padding: clamp(24px, 3vw, 40px); border-radius: 14px; }
.buy.product:hover { transform: none; box-shadow: 0 30px 70px -44px rgba(32, 26, 56, 0.35); }
.buy__stars { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--fg-soft); }
.buy__stars .stars { color: var(--accent); letter-spacing: 0.18em; }
.buy__title { font-size: clamp(34px, 3.8vw, 54px); }
.buy__desc { margin: 0; font-size: 16.5px; color: var(--fg-soft); line-height: 1.7; max-width: 52ch; }
.buy__bullets { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.buy__bullets li { position: relative; padding-left: 28px; font-size: 15px; color: var(--fg-soft); }
.buy__bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; background: var(--accent);
}
.buy__delivery {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--fg-soft);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px;
  background: var(--bg-2);
}
.buy__delivery strong { color: var(--fg); }
.buy__stock { font-size: 13px; font-weight: 600; color: #1d8a4e; margin: 0; }
.buy .product__price { margin: 0; }
.buy .product__cta { margin-top: 4px; }

/* Bande icônes bénéfices */
.perks { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(36px, 5vh, 60px) var(--pad); }
.perks__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 44px); }
.perk { display: flex; align-items: center; gap: 14px; }
.perk svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--accent); }
.perk span { font-size: 13.5px; color: var(--fg-soft); line-height: 1.4; }
.perk strong { display: block; color: var(--fg); font-size: 13.5px; }

/* Description + caractéristiques */
.pdetail { padding: clamp(70px, 10vh, 140px) var(--pad); background: var(--bg); }
.pdetail__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 90px); align-items: start;
}
.pdetail__title { font-size: clamp(30px, 3.6vw, 52px); }
.pdetail__title em { color: var(--accent); }
.pdetail__copy { color: var(--fg-soft); line-height: 1.8; margin: 22px 0 0; max-width: 58ch; }
.specs { border-top: 1px solid var(--line); }
.specs__row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px;
  padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.specs__row dt { margin: 0; color: var(--muted); font-weight: 500; }
.specs__row dd { margin: 0; color: var(--fg); font-weight: 500; }

/* Cross-sell */
.cross { padding: clamp(70px, 10vh, 140px) var(--pad); background: var(--bg-2); }
.cross__inner {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(26px, 4vw, 56px); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: 0 34px 80px -50px rgba(32, 26, 56, 0.4);
}
.cross__media { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; }
.cross__media img { width: 100%; height: 100%; object-fit: cover; }
.cross__body { padding: clamp(22px, 3vw, 44px); padding-left: 0; }
.cross__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.cross__title { font-size: clamp(24px, 2.6vw, 34px); }
.cross__copy { color: var(--fg-soft); font-size: 15px; margin: 12px 0 20px; max-width: 40ch; }
.cross__price { font-family: var(--serif); font-size: 24px; color: var(--fg); margin: 0 0 18px; }
.cross__price s { color: var(--muted); font-size: 16px; margin-right: 10px; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, calc(100vw - 32px)); width: 100%; }
.lightbox::backdrop { background: rgba(23, 16, 46, 0.82); backdrop-filter: blur(8px); }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; height: auto; margin: 0 auto; border-radius: 10px; display: block; cursor: zoom-out; }

/* PDP responsive */
@media (max-width: 980px) {
  .pdp__inner, .pdetail__inner { grid-template-columns: 1fr; gap: 36px; }
  .gallery { position: static; }
  .perks__inner { grid-template-columns: repeat(2, 1fr); }
  .cross__inner { grid-template-columns: 1fr; }
  .cross__body { padding: clamp(22px, 4vw, 34px); }
}
@media (max-width: 560px) {
  .perks__inner { grid-template-columns: 1fr; }
  .crumbs { padding-top: 96px; }
}
