/* ═══════════════════════════════════════════════════════════════
   Solar Eclipse — Charte graphique
   Inspiration Aesop : crème / charbon, sérif élégant, minimalisme,
   beaucoup d'espace. Accent or discret repris du logo Solar Eclipse.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Fonds */
  --cream: #f4efe6;
  --cream-deep: #ece4d6;
  --cream-card: #faf6ef;
  --night: #1c1a17;

  /* Encre / texte */
  --ink: #2b2622;
  --ink-soft: #6f675d;
  --ink-faint: #9a9086;

  /* Or / accent */
  --gold: #a98244;
  --gold-deep: #8a6d3b;
  --gold-soft: #d8b878;

  /* Lignes */
  --line: #d9cfbf;
  --line-soft: #e4dccd;

  /* Typo */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --radius: 3px;
}

/* ── Reset léger ──────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
}

/* ── Boutons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, opacity 0.2s;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn--solid { background: var(--ink); color: var(--cream); }
.btn--solid:hover { background: var(--night); border-color: var(--night); }
.btn--gold { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn--gold:hover { background: var(--gold); border-color: var(--gold); }
.btn--ghost { border-color: var(--line); color: var(--ink-soft); }
.btn--ghost:hover { background: var(--cream-deep); color: var(--ink); border-color: var(--line); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn--block { width: 100%; }

/* ── En-tête ──────────────────────────────────────────────────── */
.announce {
  background: var(--night);
  color: var(--cream);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}
.announce strong { color: var(--gold-soft); font-weight: 500; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(244, 239, 230, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__logo img { height: 38px; }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.nav a:hover { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: 1.25rem; }
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-toggle__count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold-deep);
  color: #fff;
  font-size: 0.68rem;
  display: grid;
  place-items: center;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: min(88vh, 760px);
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
}
.hero__text h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
  margin: 1.2rem 0 1.4rem;
}
.hero__text h1 em { font-style: italic; color: var(--gold-deep); }
.hero__lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__media {
  position: relative;
  background: var(--cream-deep) url("/assets/img/hero-1.jpg") center/cover no-repeat;
}

/* ── Compte à rebours ─────────────────────────────────────────── */
.countdown {
  background: var(--night);
  color: var(--cream);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.countdown__label {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
}
.countdown__grid {
  display: inline-flex;
  gap: clamp(1rem, 4vw, 3rem);
}
.countdown__unit { min-width: 68px; }
.countdown__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.countdown__cap {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.countdown__note { margin-top: 1.8rem; font-size: 0.9rem; color: var(--cream); opacity: 0.8; }

/* ── Sections génériques ──────────────────────────────────────── */
.section { padding: clamp(3.5rem, 9vw, 7rem) 0; }
.section--tint { background: var(--cream-deep); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin: 0.9rem 0 1rem; }
.section__head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ── Grille produits ──────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.card {
  position: relative;
  background: var(--cream-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -30px rgba(43, 38, 34, 0.5);
  border-color: var(--line);
}
.card--featured { border-color: var(--gold-soft); }
.card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--night);
  color: var(--gold-soft);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}
.card__media {
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card__pairs {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}
.card__pairs span {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 0.4rem;
  font-weight: 300;
}
.card__tag { color: var(--ink-soft); font-size: 0.92rem; margin: 0.7rem 0 1.2rem; flex: 1; }
.card__price-row { display: flex; align-items: baseline; gap: 0.7rem; }
.card__price { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.card__save {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}
.card__unit { font-size: 0.8rem; color: var(--ink-faint); margin: 0.35rem 0 1.3rem; }
.card__add { width: 100%; }
.card__link { color: inherit; display: inline-block; }
.card__link:hover .card__pairs { color: var(--gold-deep); }
.card__detail { display: block; text-align: center; margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.card__detail:hover { color: var(--ink); }
.card__added { background: var(--gold-deep) !important; border-color: var(--gold-deep) !important; color: #fff !important; }

/* ── Réassurance / badges ─────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.trust__item { text-align: center; padding: 0 0.5rem; }
.trust__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  color: var(--gold-deep);
}
.trust__item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.trust__item p { color: var(--ink-soft); font-size: 0.92rem; }

/* ── Norme / bandeau certification ────────────────────────────── */
.cert {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.cert__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--cream-deep) center/cover no-repeat;
}
.cert__list { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.cert__list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
}
.cert__list li::before { content: "✦"; color: var(--gold-deep); }
.cert__list b { font-weight: 500; }

/* ── Étapes / comment observer ────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.step h3 { font-size: 1.25rem; margin: 0.7rem 0 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ── Section PRO ──────────────────────────────────────────────── */
.pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.pro__intro h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 0.8rem 0 1.1rem; }
.pro__intro p { color: var(--ink-soft); margin-bottom: 1rem; }
.pro__perks { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.pro__perks li { padding: 0.5rem 0; display: flex; gap: 0.7rem; color: var(--ink-soft); }
.pro__perks li::before { content: "—"; color: var(--gold-deep); }

.form {
  background: var(--cream-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--gold-deep); }
.field textarea { resize: vertical; min-height: 96px; }
.form__note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.8rem; }
.form__ok {
  display: none;
  background: var(--night);
  color: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-top: 1rem;
}

/* ── Bandeau livraison ────────────────────────────────────────── */
.ship-band {
  background: var(--night);
  color: var(--cream);
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
}
.ship-band strong { color: var(--gold-soft); }

/* ── Pied de page ─────────────────────────────────────────────── */
.footer {
  background: var(--night);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer__brand p { color: rgba(244, 239, 230, 0.6); font-size: 0.9rem; max-width: 34ch; margin-top: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { color: rgba(244, 239, 230, 0.7); font-size: 0.9rem; transition: color 0.25s; }
.footer ul a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.5);
}

/* ── Tiroir panier ────────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
  z-index: 90;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -30px rgba(0, 0, 0, 0.5);
}
.drawer.open { transform: translateX(0); }
.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__head h3 { font-size: 1.4rem; }
.drawer__close { background: none; border: none; font-size: 1.4rem; color: var(--ink-soft); line-height: 1; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.drawer__empty { text-align: center; color: var(--ink-faint); margin-top: 3rem; line-height: 1.9; }
.cart-line { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
.cart-line__info h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; }
.cart-line__info p { font-size: 0.8rem; color: var(--ink-faint); margin: 0.2rem 0 0.6rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty button { width: 30px; height: 30px; background: none; border: none; font-size: 1rem; color: var(--ink-soft); }
.qty span { width: 34px; text-align: center; font-size: 0.9rem; }
.cart-line__remove { display: block; background: none; border: none; padding: 0; margin-top: 0.5rem; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); text-decoration: underline; }
.cart-line__price { font-family: var(--serif); font-size: 1.15rem; }
.drawer__foot { padding: 1.5rem; border-top: 1px solid var(--line-soft); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.drawer__total span:first-child { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.drawer__total span:last-child { font-family: var(--serif); font-size: 1.7rem; }
.drawer__pay { margin-top: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 0.7rem; }
.pay-badge { height: 22px; opacity: 0.75; }
.drawer__reassure { text-align: center; font-size: 0.74rem; color: var(--ink-faint); margin-top: 0.9rem; }

/* ── Toast ────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  background: var(--night);
  color: var(--cream);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
}
.toast.show { transform: translate(-50%, 0); }

/* ── Pages légales ────────────────────────────────────────────── */
.legal { max-width: 800px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem); }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.legal .updated { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.5rem; margin: 2.5rem 0 0.8rem; }
.legal h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 500; margin: 1.5rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.8rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--gold-deep); text-decoration: underline; }
.legal__back { display: inline-block; margin-bottom: 2rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

/* ── Fiche produit ────────────────────────────────────────────── */
.pdp { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 6rem); }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2rem; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }
.pdp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.pdp__media { position: sticky; top: 92px; }
.pdp__img { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: #fff; aspect-ratio: 1/1; }
.pdp__img img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.pdp__thumb { flex: 1; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: #fff; aspect-ratio: 1/1; cursor: pointer; opacity: 0.65; transition: opacity 0.25s, border-color 0.25s; }
.pdp__thumb.active, .pdp__thumb:hover { opacity: 1; border-color: var(--gold-soft); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.6rem 0 0.8rem; }
.pdp__rating { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-soft); }
.pdp__stars { color: var(--gold); letter-spacing: 0.1em; }
.pdp__lede { color: var(--ink-soft); font-size: 1.05rem; margin: 1rem 0 1.5rem; }
.pdp__price-row { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 0.2rem; }
.pdp__price { font-family: var(--serif); font-size: 2.4rem; color: var(--ink); }
.pdp__save { font-size: 0.78rem; color: var(--gold-deep); border: 1px solid var(--gold-soft); border-radius: 999px; padding: 0.2rem 0.6rem; }
.pdp__unit { font-size: 0.9rem; color: var(--ink-faint); margin-bottom: 1.6rem; }
.pdp__stock { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #2f6b39; margin-bottom: 1.6rem; }
.pdp__stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #3f9150; }

.pdp__label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.7rem; }
.pdp__packs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.pack-pill { border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream-card); padding: 0.7rem 1rem; text-align: center; cursor: pointer; min-width: 78px; transition: border-color 0.25s, background 0.25s; }
.pack-pill.active { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.pack-pill b { display: block; font-family: var(--serif); font-size: 1.1rem; }
.pack-pill span { font-size: 0.7rem; letter-spacing: 0.04em; opacity: 0.75; }

.pdp__buy { display: flex; align-items: stretch; gap: 0.8rem; margin-bottom: 1rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty-stepper button { width: 44px; background: none; border: none; font-size: 1.2rem; color: var(--ink-soft); }
.qty-stepper span { width: 40px; text-align: center; }
.pdp__reassure-mini { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.pdp__reassure-mini div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-soft); }
.pdp__reassure-mini svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }
.pdp__freeship { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.pdp__freeship b { color: var(--gold-deep); }

/* Specs */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; vertical-align: top; }
.spec-table td:first-child { color: var(--ink-faint); width: 44%; }
.spec-table td:last-child { color: var(--ink); }

/* Comparatif */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.compare__col { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.6rem; background: var(--cream-card); }
.compare__col--good { border-color: var(--gold-soft); }
.compare__col h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.compare__col ul { list-style: none; padding: 0; margin: 0; }
.compare__col li { padding: 0.5rem 0; font-size: 0.92rem; display: flex; gap: 0.6rem; color: var(--ink-soft); }
.compare__col--good li::before { content: "✓"; color: #3f9150; font-weight: 600; }
.compare__col--bad li::before { content: "✕"; color: #b25547; }

/* FAQ */
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 0; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q::after { content: "+"; font-family: var(--sans); color: var(--gold-deep); font-size: 1.4rem; flex-shrink: 0; }
.faq__item.open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__item.open .faq__a { max-height: 600px; }
.faq__a p { color: var(--ink-soft); padding-bottom: 1.3rem; font-size: 0.98rem; }

@media (max-width: 860px) {
  .pdp__grid { grid-template-columns: 1fr; }
  .pdp__media { position: static; }
  .compare { grid-template-columns: 1fr; }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { min-height: 320px; order: -1; }
  .cert, .pro { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .countdown__grid { gap: 1rem; }
}
