/* ==========================================================================
   LUUBO · SerenTag — Socle : reset, typographie, composants transverses
   ========================================================================== */

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

/* Toute classe qui pose `display` écraserait l'attribut hidden (très
   utilisé par catalog.js et cart.js) : on le rend prioritaire. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.6;
  font-feature-settings: "cv05" 1, "ss03" 1;
  -webkit-font-smoothing: antialiased;
  /* `clip` et NON `hidden` : overflow-x:hidden force overflow-y à `auto`,
     ce qui transforme le body en conteneur de défilement et casse TOUT
     `position: sticky` descendant (le visuel du bloc .follow, la galerie
     d'achat, l'en-tête). `clip` protège du débordement sans créer ce
     conteneur. Ne repassez jamais cette ligne à `hidden`. */
  overflow-x: clip;
}

img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);   /* formes rondes du logo LUUBO */
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.03em;
  text-wrap: balance;
}
/* Interlignage serré : les titres du site de référence sont des blocs de
   texte compacts, pas des lignes espacées. C'est ce qui les rend graphiques. */
h1 { font-size: var(--t-display); line-height: .96; letter-spacing: -.038em; }
h2 { font-size: var(--t-h2); line-height: 1; letter-spacing: -.032em; }
h3 { font-size: var(--t-h3); line-height: 1.22; letter-spacing: -.014em; }
p  { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 999; background: var(--ink); color: var(--on-night);
  padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none; font-weight: 600;
}
.skip:focus { top: 0; }

/* --- Structure -------------------------------------------------------
   La page est une pile de blocs de couleur pleine largeur qui se touchent.
   .wrap borne le texte, .wrap--wide les compositions visuelles, .bleed va
   jusqu'au bord de l'écran. Ne JAMAIS remettre une marge extérieure sur un
   bloc de couleur : c'est ce qui redonne l'aspect « carte qui flotte ».
   -------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: var(--max-wide); }
.wrap--narrow { max-width: var(--max-narrow); }
.bleed { width: 100%; max-width: none; margin-inline: 0; padding-inline: 0; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.2rem, 1.4rem + 3vw, 4rem); }
/* Les ancres ne doivent pas se cacher derrière l'en-tête collant. */
:target, section[id], .hero { scroll-margin-top: calc(var(--nav-h) + 16px); }
.section--tint { background: var(--ground-deep); }
.section--paper { background: var(--surface); }
.section--night { background: var(--night); color: var(--on-night); }
.section--night h2, .section--night h3 { color: var(--on-night); }
.section--accent { background: var(--accent); color: var(--night); }
.section--accent h2, .section--accent h3 { color: var(--night); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--blue-bright); border-radius: 2px;
}
.section--night .eyebrow { color: var(--blue-bright); }
.section--night .eyebrow::before { background: var(--blue-bright); }

.lead { font-size: var(--t-lead); color: var(--ink-soft); line-height: 1.55; max-width: 58ch; }
.section--night .lead { color: var(--on-night-soft); }
.section--accent .lead { color: var(--night); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head--center { max-width: 54rem; margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
/* Titre seul, sans surtitre ni chapô : la respiration vient de la taille du
   texte, pas d'une marge supplémentaire. */
.section-head--plain { margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.8rem); }

/* --- Boutons --------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.6rem;
  min-height: 54px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); border-radius: var(--r-pill);
  font-weight: 650; font-size: var(--t-sm); letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: transform var(--fast) var(--ease), box-shadow var(--mid) var(--ease),
              background var(--fast) var(--ease), border-color var(--fast) var(--ease);
  box-shadow: var(--sh-1);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--blue); --btn-bd: var(--blue); }
.btn--primary:hover { --btn-bg: var(--blue-hover); --btn-bd: var(--blue-hover); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-strong); box-shadow: none; }
.btn--ghost:hover { --btn-bd: var(--ink); box-shadow: none; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--lg { padding: 1.15rem 2rem; min-height: 60px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn__note { font-weight: 500; opacity: .78; }
.btn[aria-busy="true"] { pointer-events: none; opacity: .72; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Bouton « push » : ombre décalée nette qui s'enfonce au clic. Sans librairie,
   uniquement transform + box-shadow, neutralisé en mouvement réduit. */
.btn--push { box-shadow: 0 4px 0 var(--blue-hover); }
.btn--push:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--blue-hover); }
.btn--push:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--blue-hover); }
.btn--light.btn--push, .btn--ghost.btn--push { box-shadow: 0 4px 0 rgba(11, 18, 64, .22); }
.btn--light.btn--push:hover, .btn--ghost.btn--push:hover { box-shadow: 0 6px 0 rgba(11, 18, 64, .22); }
.btn--light.btn--push:active, .btn--ghost.btn--push:active { box-shadow: 0 1px 0 rgba(11, 18, 64, .22); }

/* --- Pastilles ------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .8rem; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: var(--t-xs); font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.pill--brand { background: var(--blue-tint); border-color: var(--blue-line); color: #122A8C; }
.pill--amber { background: var(--blue-tint); border-color: var(--blue-line); color: var(--blue); }
.pill--night { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: var(--on-night); }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); flex: none; }

/* --- Icônes ---------------------------------------------------------- */
.ico { width: 20px; height: 20px; flex: none; stroke-width: 1.9; }
.ico--sm { width: 16px; height: 16px; }
.ico--lg { width: 26px; height: 26px; }
.icon-badge {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue);
}
.icon-badge--ink { background: var(--ink); color: #fff; }
.icon-badge--nfc { background: rgba(27,63,224,.12); color: var(--blue-bright); }

/* --- Emplacements média (à remplacer par vos visuels) ---------------- */
.media-slot {
  position: relative;
  display: grid; place-items: center; gap: .35rem;
  padding: 1.5rem;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, #fff 0 12px, var(--surface-muted) 12px 24px);
  border: 2px dashed var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--ink-faint);
  overflow: hidden;
}
.media-slot__label {
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.media-slot__hint { font-size: var(--t-xs); max-width: 34ch; line-height: 1.45; }
.media-slot > .ico--lg { color: var(--line-strong); }
.media-slot--ratio-45 { aspect-ratio: 4 / 5; }
.media-slot--ratio-11 { aspect-ratio: 1 / 1; }
.media-slot--ratio-169 { aspect-ratio: 16 / 9; }
.media-slot--round { border-radius: 50%; }
.media-slot--night {
  background: repeating-linear-gradient(135deg, var(--night-soft) 0 12px, #22262E 12px 24px);
  border-color: rgba(255,255,255,.22); color: var(--on-night-soft);
}
.media-slot--night .media-slot__label { color: var(--on-night); }

/* --- Barre promo ----------------------------------------------------- */
.promo {
  background: var(--ink); color: var(--on-night);
  font-size: var(--t-xs); font-weight: 600;
  text-align: center; padding: .6rem var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.promo b { color: #fff; }
.promo__sep { color: var(--ink-faint); }
@media (max-width: 560px) { .promo__sep, .promo__opt { display: none; } }

/* --- Navigation ------------------------------------------------------
   Logo centré, actions à gauche et à droite : c'est la signature du site de
   référence. Fond PLEIN (pas de flou translucide) pour que les blocs de
   couleur passent nettement dessous.
   -------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--ground);
  border-bottom: 1px solid transparent;
  transition: border-color var(--mid) var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  min-height: var(--nav-h);
}
.nav__left { display: flex; align-items: center; gap: 1.4rem; min-width: 0; }
/* Bouton « Boutique » compact, collé à gauche comme sur la référence. */
.nav__left .btn { min-height: 42px; padding: .5rem 1.25rem; font-size: var(--t-sm); box-shadow: none; }
.nav__left .btn:hover { transform: none; box-shadow: none; }
.brand {
  display: inline-flex; align-items: baseline; gap: .42rem;
  text-decoration: none; justify-self: center; line-height: 1; color: var(--ink);
}
/* Logo officiel LUUBO ; tant que le fichier manque, ui.js révèle le mot-symbole. */
.brand__logo { display: block; height: 32px; width: auto; }
.brand__word {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  letter-spacing: .1em; color: var(--blue); line-height: 1;
}
.brand--onnight .brand__word { color: #fff; }
.brand__logo--lg { height: 44px; }
.brand__word--lg { font-size: 2.1rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a {
  font-size: var(--t-sm); font-weight: 550; color: var(--ink-soft);
  text-decoration: none; position: relative; padding-block: .3rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--ink); transition: right var(--mid) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: .3rem; justify-self: end; }
/* Icônes nues (compte, panier), sans pastille ronde : la référence ne pose
   aucun bouton visible dans l'en-tête, seulement des pictogrammes. */
.cart-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent; border: 0; color: var(--ink); cursor: pointer;
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.cart-btn:hover { opacity: .62; transform: translateY(-1px); }
.cart-btn .ico { width: 23px; height: 23px; }
.cart-btn__count {
  position: absolute; top: -3px; right: -3px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--r-pill); background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 800; line-height: 20px; text-align: center;
  border: 2px solid var(--ground);
}
.cart-btn__count[hidden] { display: none !important; }
/* Sur mobile on garde le bouton « Boutique » (c'est le raccourci d'achat) et
   on ne masque que les liens de navigation. */
@media (max-width: 900px) { .nav__links { display: none; } }
@media (max-width: 480px) { .nav__left .btn { padding-inline: .9rem; } }

/* --- Pied de page ---------------------------------------------------- */
.footer { background: var(--night); color: var(--on-night-soft); padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem) 2rem; }
.footer a { color: var(--on-night-soft); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid; gap: 2.4rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
.footer__brand { color: #fff; }
.footer__brand .brand { color: #fff; margin-bottom: .9rem; }
.footer__brand .brand { margin-right: 0; }
.footer__brand p { font-size: var(--t-sm); color: var(--on-night-soft); max-width: 34ch; }
.footer h4 {
  font-size: var(--t-label); letter-spacing: .13em; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: var(--t-sm); }
.footer__bottom {
  margin-top: 2.8rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; align-items: center;
  font-size: var(--t-xs);
}
.footer__pay { display: flex; gap: .4rem; margin-left: auto; flex-wrap: wrap; }
.footer__pay span {
  padding: .25rem .55rem; border-radius: 5px;
  background: rgba(255,255,255,.09); font-size: 11px; font-weight: 700; letter-spacing: .02em;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* --- Barre d'achat mobile -------------------------------------------- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; gap: .8rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--mid) var(--ease-out);
}
.buybar.is-on { transform: translateY(0); }
.buybar__price { display: grid; line-height: 1.2; min-width: 0; }
.buybar__price b { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; }
.buybar__price span {
  font-size: var(--t-xs); color: var(--ink-faint);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* Le libellé du bouton doit tenir sur une ligne : une barre d'achat à deux
   lignes mange l'écran et fait douter au moment de cliquer. */
.buybar .btn {
  margin-left: auto; flex: 0 1 auto;
  white-space: nowrap; padding-inline: 1.15rem; min-height: 50px;
}
@media (max-width: 860px) { .buybar { display: flex; } body { padding-bottom: 0; } }

/* --- Tiroir panier ---------------------------------------------------- */
.drawer-veil {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(15, 17, 21, .48);
  opacity: 0; pointer-events: none; transition: opacity var(--mid) var(--ease);
}
.drawer-veil.is-on { opacity: 1; pointer-events: auto; }
.drawer-layer {
  /* Calque fixe du tiroir panier.
     · height: 100dvh = hauteur réellement visible sur mobile : le pied du
       tiroir (total + bouton de paiement) reste au-dessus des barres du
       navigateur au lieu de passer dessous.
     · overflow: hidden rogne le tiroir quand il est garé hors écran (garde-fou). */
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 100vh; height: 100dvh;
  overflow: hidden;
  pointer-events: none;
}
.drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  pointer-events: auto;
  width: min(420px, 100%);
  display: flex; flex-direction: column;
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(20,20,15,.2);
  transform: translateX(101%);
  /* Fermé, le tiroir reste hors écran : `visibility` le retire de la
     navigation clavier (son débordement est rogné par .drawer-layer). */
  visibility: hidden;
  transition: transform var(--mid) var(--ease-out), visibility 0s linear var(--mid);
}
.drawer.is-on {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--mid) var(--ease-out), visibility 0s;
}
.drawer__head {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.25rem 1.4rem; border-bottom: 1px solid var(--line);
}
.drawer__head h3 { margin-right: auto; font-size: 1.1rem; }
.drawer__close {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface-muted); border: 1px solid var(--line); cursor: pointer;
}
.drawer__body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; display: grid; gap: 1rem; align-content: start; }
.drawer__empty { text-align: center; color: var(--ink-faint); padding: 3rem 1rem; font-size: var(--t-sm); }
.drawer__foot { padding: 1.2rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--surface-muted); }
.drawer__total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .9rem; }
.drawer__total b { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }

/* --- Code promo du tiroir (.pcode : « .promo » est la barre d'annonce) ---- */
.pcode { display: flex; gap: .5rem; margin-bottom: .6rem; }
.pcode__input {
  flex: 1; min-width: 0; padding: .7rem .9rem; font: inherit; font-size: var(--t-sm);
  color: var(--ink); background: var(--ground); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); text-transform: uppercase;
}
.pcode__input::placeholder { text-transform: none; color: var(--ink-faint); }
.pcode__input:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.pcode__btn { padding: .7rem 1rem; min-height: 0; font-size: var(--t-sm); white-space: nowrap; }
.pcode__msg { margin: -.2rem 0 .7rem; font-size: var(--t-xs); color: var(--ink-faint); }
.pcode__msg--error { color: var(--danger); }
.pcode__msg--ok { color: var(--blue); font-weight: 600; }
.pcode__msg--info { color: var(--blue); }
.drawer__discount {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: .5rem; font-size: var(--t-sm); color: var(--ink-faint);
}
.drawer__discount b { color: var(--blue); font-weight: 700; }
.drawer__discount .linkish { margin-left: .35rem; }

/* --- Logos de paiement sous le bouton du tiroir --------------------------- */
.pay-methods--drawer { margin-top: .8rem; }
.pay-methods--drawer .pay-methods__logo { width: 40px; height: 25px; }
.drawer__fine { margin-top: .8rem; font-size: var(--t-xs); color: var(--ink-faint); text-align: center; }
.drawer__fine--error { color: var(--danger); }
.drawer__fine--info { color: var(--blue); }
.line-item { display: grid; grid-template-columns: 58px 1fr auto; gap: .85rem; align-items: start; }
.line-item__thumb {
  width: 58px; height: 58px; border-radius: var(--r-sm);
  background: var(--surface-muted); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
}
.line-item__name { font-weight: 650; font-size: var(--t-sm); line-height: 1.3; }
.line-item__meta { font-size: var(--t-xs); color: var(--ink-faint); margin-top: .15rem; }
.line-item__price { font-weight: 700; font-size: var(--t-sm); white-space: nowrap; }
.line-item__rm {
  background: none; border: 0; padding: 0; margin-top: .35rem;
  font-size: var(--t-xs); color: var(--ink-faint); text-decoration: underline; cursor: pointer;
}
.line-item__rm:hover { color: var(--danger); }

/* --- Apparition au défilement ---------------------------------------- */
/* Sans JS, aucun contenu ne doit rester invisible : le masquage est
   conditionné à la classe .js posée par le script inline du <head>. */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity var(--slow) var(--ease-out), transform var(--slow) var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* ==========================================================================
   LUUBO — Tunnel : livraison offerte, add-ons, upsell, abonnement
   ========================================================================== */

/* --- Lien discret (achat unique, passer en achat unique…) ---------------- */
.linkish {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; font-size: var(--t-xs); color: var(--ink-faint);
  text-decoration: underline; cursor: pointer;
}
.linkish:hover { color: var(--blue); }

/* --- Barre « livraison offerte » du tiroir ------------------------------- */
.ship-bar { padding: .9rem 1.4rem; border-bottom: 1px solid var(--line); background: var(--surface-muted); }
.ship-bar__track { height: 6px; border-radius: var(--r-pill); background: var(--blue-line); overflow: hidden; }
.ship-bar__fill {
  display: block; height: 100%; width: 0; border-radius: var(--r-pill);
  background: var(--blue); transition: width var(--mid) var(--ease);
}
.ship-bar__msg { margin-top: .5rem; font-size: var(--t-xs); font-weight: 650; color: var(--ink-soft); }
.ship-bar[data-unlocked="true"] .ship-bar__fill { background: var(--blue-bright); }
.ship-bar[data-unlocked="true"] .ship-bar__msg { color: var(--blue); }

/* --- Add-ons proposés dans le tiroir ------------------------------------- */
.drawer__addons { padding: 1rem 0 .2rem; margin-top: .4rem; border-top: 1px solid var(--line); }
.drawer__addons h4 { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); margin-bottom: .7rem; }
.addon {
  display: grid; grid-template-columns: 1fr auto auto; gap: .6rem; align-items: center;
  padding: .55rem 0; border-top: 1px solid var(--line);
}
.addon:first-child { border-top: 0; }
.addon__name { font-size: var(--t-sm); font-weight: 600; }
.addon__price { font-size: var(--t-sm); font-weight: 700; white-space: nowrap; }
.addon__btn { min-height: 38px; padding: .35rem .9rem; font-size: var(--t-xs); }

/* --- Dernière marche avant paiement -------------------------------------- */
.upsell {
  display: grid; gap: .6rem; margin-bottom: .9rem; padding: .85rem 1rem;
  background: var(--blue-tint); border: 1px solid var(--blue-line); border-radius: var(--r);
}
.upsell__txt { font-size: var(--t-xs); line-height: 1.45; color: var(--ink); }
.upsell .btn { min-height: 40px; font-size: var(--t-xs); }

/* --- Ligne d'abonnement dans le panier ----------------------------------- */
.line-item__sub { font-size: var(--t-xs); color: var(--blue); margin-top: .2rem; }

/* --- Compte à rebours d'expédition --------------------------------------- */
.cutoff {
  display: flex; align-items: center; gap: .45rem;
  font-size: var(--t-xs); font-weight: 650; color: var(--blue);
}
.cutoff--drawer { justify-content: center; margin-bottom: .7rem; }
.cutoff b { font-variant-numeric: tabular-nums; }

/* --- Bandeau ambassadeur -------------------------------------------------- */
.amb {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem var(--gutter);
  background: var(--blue-tint); border-bottom: 1px solid var(--blue-line);
}
.amb__photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.amb__txt { font-size: var(--t-xs); color: var(--ink); line-height: 1.4; }
.amb__txt b { display: block; }

/* --- Bandeau défilant (pur CSS) ------------------------------------------ */
/* Même habillage que le bandeau d'avis (.ratingbar) : accent + texte nuit. */
.marquee {
  overflow: hidden; background: var(--accent); color: var(--night);
}
.marquee__track {
  display: flex; align-items: center; gap: 1.4rem;
  padding-block: .65rem; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee span { font-size: var(--t-xs); font-weight: 650; letter-spacing: .04em; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Pastille rotative (rotation continue + impulsion au défilement) ------ */
.sticker {
  position: absolute; z-index: 4; right: -2%; top: -6%;
  width: clamp(84px, 11vw, 116px); aspect-ratio: 1;
  display: grid; place-items: center;
  color: var(--blue);
}
.sticker svg { width: 100%; height: 100%; animation: spin 22s linear infinite; transform: rotate(var(--sticker-scroll, 0deg)); }
.sticker text { font-family: var(--font-display); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; fill: currentColor; }
.sticker__core {
  position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
}
.sticker__core svg { width: 55%; height: auto; animation: none; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  /* Arrêt explicite des bandeaux défilants. La règle universelle plus haut
     (animation-duration: .001ms) les stoppe déjà, mais en les figeant sur
     leur état FINAL ; ici on les laisse au repos, à leur position initiale. */
  .marquee__track, .press__track, .sticker svg { animation: none; }
  .btn--push:hover, .btn--push:active { transform: none; }
}
