/* ==========================================================================
   PULSA — 20 minutes. Jambes neuves.
   DA inspirée de stepprs.com : orange saturé, Poppins bold, vagues, urgence.
   ========================================================================== */

:root {
  --orange:      #FF5B00;
  --orange-dark: #E04E00;
  --orange-soft: #FFF1E8;
  --ink:         #0B0B0B;
  --ink-2:       #3A3A3A;
  --ink-3:       #767676;
  --white:       #FFFFFF;
  --grey:        #F3F3F3;
  --grey-2:      #E6E6E6;
  --green:       #12A150;
  --yellow:      #FFC531;

  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gut: clamp(1.1rem, 4vw, 2.5rem);
  --sec: clamp(3.5rem, 8vw, 7rem);
  --max: 1280px;

  --r-s: 12px;
  --r-m: 20px;
  --r-l: 32px;
  --r-xl: 44px;

  --sh-s: 0 2px 10px rgba(11,11,11,.06);
  --sh-m: 0 8px 30px rgba(11,11,11,.10);
  --sh-o: 0 10px 30px rgba(255,91,0,.30);
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.03; letter-spacing: -.03em; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.55; }
.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.up { text-transform: uppercase; }
.muted { color: var(--ink-3); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: var(--sec); }
.center { text-align: center; }
.sec-head { max-width: 760px; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: .9rem; color: var(--orange); }
.sec-head p { margin-top: 1rem; color: var(--ink-2); }
.band-grey { background: var(--grey); }
.band-orange { background: var(--orange); color: #fff; }
.band-ink { background: var(--ink); color: #fff; }
.band-orange .sec-head .eyebrow, .band-ink .sec-head .eyebrow { color: #fff; opacity: .75; }
.band-orange .sec-head p, .band-ink .sec-head p { color: rgba(255,255,255,.82); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1.05rem 2rem; border-radius: 100px;
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s;
  text-align: center; line-height: 1.15;
}
.btn:active { transform: scale(.97); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: var(--sh-o); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #262626; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-m); }
.btn-outline { border: 2px solid currentColor; }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.band-orange .btn-outline:hover { background: #fff; color: var(--orange); border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 1.25rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .7rem 1.3rem; font-size: .85rem; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink); color: #fff; overflow: hidden;
  padding-block: .6rem; position: relative; z-index: 60;
}
.marquee-track { display: flex; width: max-content; animation: slide 28s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding-inline: 1.6rem; white-space: nowrap;
}
.marquee-track span::after { content: "★"; color: var(--orange); margin-left: 1.6rem; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: #fff;
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.header.scrolled { border-bottom-color: var(--grey-2); box-shadow: 0 2px 20px rgba(0,0,0,.05); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 72px; }
.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -.045em; }
.logo .dot { color: var(--orange); }
.nav { display: flex; gap: 1.9rem; font-size: .92rem; font-weight: 600; }
.nav a { position: relative; padding-block: .3rem; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--orange); border-radius: 3px; transform: scaleX(0);
  transform-origin: left; transition: transform .25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 1000px) { .nav { display: none; } }
.cart-btn {
  display: flex; align-items: center; gap: .5rem; padding: .65rem 1.2rem;
  border-radius: 100px; background: var(--ink); color: #fff; font-size: .88rem; font-weight: 700;
  transition: background .2s, transform .2s;
}
.cart-btn:hover { background: var(--orange); transform: translateY(-1px); }
.cart-count {
  min-width: 21px; height: 21px; padding-inline: 5px; display: grid; place-items: center;
  border-radius: 100px; background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800;
}
.cart-btn:hover .cart-count { background: #fff; color: var(--orange); }
.cart-count.zero { background: rgba(255,255,255,.22); }
.cart-btn:hover .cart-count.zero { background: rgba(0,0,0,.15); color: #fff; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: var(--orange); color: #fff; position: relative; padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.14), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.10), transparent 40%);
  pointer-events: none;
}
.hero-in {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; position: relative; z-index: 2;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
@media (max-width: 920px) { .hero-in { grid-template-columns: 1fr; text-align: center; } }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .stroke { -webkit-text-stroke: 2px #fff; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-weight: 500; opacity: .95; margin-bottom: 2rem; max-width: 30ch; }
@media (max-width: 920px) { .hero-sub { margin-inline: auto; } }
.hero-social { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; font-size: .9rem; font-weight: 600; }
@media (max-width: 920px) { .hero-social { justify-content: center; } }
.stars { color: var(--yellow); letter-spacing: .1em; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
@media (max-width: 920px) { .hero-btns { justify-content: center; } }
.hero-note { font-size: .84rem; opacity: .85; display: flex; align-items: center; gap: .45rem; }
@media (max-width: 920px) { .hero-note { justify-content: center; } }
.hero-media { position: relative; }
.hero-media img { width: 100%; max-width: 460px; margin-inline: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.28)); }
.hero-badge {
  position: absolute; top: 4%; right: 2%; z-index: 3;
  background: var(--ink); color: #fff; border-radius: 50%;
  width: 108px; height: 108px; display: grid; place-items: center; text-align: center;
  font-size: .74rem; font-weight: 800; line-height: 1.15; text-transform: uppercase;
  transform: rotate(-12deg); padding: .5rem;
}
.hero-badge b { display: block; font-size: 1.5rem; color: var(--orange); letter-spacing: -.03em; margin-bottom: .15rem; }
.hero-badge i { display: block; font-style: normal; font-size: .62rem; font-weight: 700; line-height: 1.2; letter-spacing: .01em; }
@media (max-width: 560px) {
  .hero-badge { width: 96px; height: 96px; }
  .hero-badge b { font-size: 1.15rem; }
  .hero-badge i { font-size: .56rem; }
}
.wave { display: block; width: 100%; position: relative; z-index: 2; margin-bottom: -1px; }

/* ---------- Bandeau confiance ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--grey-2); }
.trust-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding-block: 1.3rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .87rem; font-weight: 600; }
.trust-item svg { color: var(--orange); flex: 0 0 auto; }

/* ==========================================================================
   Kits
   ========================================================================== */
.kits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
@media (max-width: 940px) { .kits { grid-template-columns: 1fr; } }
.kit {
  background: #fff; border: 3px solid var(--grey-2); border-radius: var(--r-l);
  padding: 2rem 1.7rem; display: flex; flex-direction: column; position: relative;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.kit:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }
.kit.hot { border-color: var(--orange); box-shadow: var(--sh-o); }
.kit-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: .45rem 1.1rem; border-radius: 100px;
  white-space: nowrap;
}
.kit-img { height: 150px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.kit-img img { max-height: 150px; width: auto; object-fit: contain; }
.kit h3 { margin-bottom: .5rem; }
.kit-for { font-size: .88rem; color: var(--ink-3); margin-bottom: 1.3rem; min-height: 2.8em; }
.kit-price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.kit-price .now { font-size: 2.1rem; font-weight: 800; letter-spacing: -.035em; }
.kit-price .was { font-size: 1rem; color: var(--ink-3); text-decoration: line-through; }
.save-pill {
  display: inline-block; background: var(--orange-soft); color: var(--orange-dark);
  font-size: .78rem; font-weight: 800; padding: .3rem .75rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.kit ul { display: grid; gap: .6rem; margin-bottom: 1.8rem; flex: 1; }
.kit li { display: flex; gap: .6rem; font-size: .9rem; align-items: flex-start; }
.kit li svg { color: var(--orange); flex: 0 0 17px; margin-top: 4px; }
.kit li.off { color: var(--ink-3); }
.kit li.off svg { color: var(--grey-2); }

/* ==========================================================================
   Étapes
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-n {
  width: 62px; height: 62px; margin: 0 auto 1.3rem; border-radius: 50%;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800;
}
.band-orange .step-n { background: #fff; color: var(--orange); }
.step h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.step p { font-size: .94rem; color: var(--ink-2); }
.band-orange .step p { color: rgba(255,255,255,.85); }

/* ---------- Chiffres ---------- */
.figs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 780px) { .figs { grid-template-columns: repeat(2, 1fr); } }
.fig { text-align: center; padding: 1.6rem 1rem; background: rgba(255,255,255,.12); border-radius: var(--r-m); }
.fig .n { display: block; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: .5rem; }
.fig .l { font-size: .85rem; opacity: .85; line-height: 1.35; }

/* ==========================================================================
   Split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split.rev .split-media { order: -1; }
@media (max-width: 900px) { .split.rev .split-media { order: 0; } }
.split-media { border-radius: var(--r-l); overflow: hidden; background: var(--grey); display: grid; place-items: center; aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.contain { padding: 6%; }
.split-media.contain img { object-fit: contain; }
.band-orange .split-media { background: rgba(255,255,255,.14); }
.feat { display: grid; gap: .9rem; margin-top: 1.8rem; }
.feat li { display: flex; gap: .75rem; align-items: flex-start; font-size: .96rem; }
.feat li svg { color: var(--orange); flex: 0 0 20px; margin-top: 3px; }
.band-orange .feat li svg, .band-ink .feat li svg { color: #fff; }

/* ==========================================================================
   Produits
   ========================================================================== */
.prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 1040px) { .prods { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .prods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .prods { grid-template-columns: 1fr; } }
.prod {
  background: #fff; border-radius: var(--r-m); overflow: hidden;
  border: 2px solid var(--grey-2); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--sh-m); border-color: var(--ink); }
.prod-media { aspect-ratio: 1; background: var(--grey); display: grid; place-items: center; padding: 10%; position: relative; }
.prod-media img { width: 100%; height: 100%; object-fit: contain; }
.prod-tag {
  position: absolute; top: .8rem; left: .8rem; background: var(--ink); color: #fff;
  font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
}
.prod-tag.hot { background: var(--orange); }
.prod-body { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.prod-body h4 { font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: .4rem; letter-spacing: -.01em; }
.prod-body p { font-size: .84rem; color: var(--ink-3); margin-bottom: 1rem; flex: 1; line-height: 1.45; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.prod-price { font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; }
.prod-add {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; transition: background .2s, transform .2s; flex: 0 0 auto;
}
.prod-add:hover { background: var(--orange); transform: scale(1.1) rotate(90deg); }
.prod-add.done { background: var(--green); }

/* ==========================================================================
   Avis
   ========================================================================== */
.rev-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.6rem; }
.rev-score { display: flex; align-items: center; gap: 1rem; }
.rev-score .n { font-size: 3.2rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }
.rev { background: #fff; border-radius: var(--r-m); padding: 1.7rem; border: 2px solid var(--grey-2); }
.band-grey .rev { border-color: transparent; }
.rev .stars { font-size: .95rem; margin-bottom: .8rem; }
.rev h4 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.rev p { font-size: .92rem; color: var(--ink-2); margin-bottom: 1.2rem; }
.rev-by { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-3); }
.rev-av { width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .78rem; }
.rev-ok { color: var(--green); font-weight: 700; display: flex; align-items: center; gap: .25rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: .8rem; }
.qa { background: #fff; border: 2px solid var(--grey-2); border-radius: var(--r-s); overflow: hidden; transition: border-color .2s; }
.qa.open { border-color: var(--orange); }
.qa-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.25rem 1.4rem; text-align: left; font-size: 1rem; font-weight: 700; line-height: 1.35;
}
.qa-ic { flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; transition: transform .3s var(--ease); }
.qa.open .qa-ic { transform: rotate(135deg); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.qa-a p { padding: 0 1.4rem 1.35rem; color: var(--ink-2); font-size: .94rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.4rem; margin-bottom: 2.8rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; font-weight: 700; }
.footer ul { display: grid; gap: .6rem; }
.footer li a { font-size: .9rem; color: rgba(255,255,255,.8); transition: color .2s; }
.footer li a:hover { color: var(--orange); }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.7); max-width: 34ch; margin-top: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5); }
.pay { display: flex; gap: .45rem; flex-wrap: wrap; }
.pay span { padding: .28rem .6rem; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; font-size: .68rem; font-weight: 700; }

/* ==========================================================================
   Panier
   ========================================================================== */
.scrim { position: fixed; inset: 0; background: rgba(11,11,11,.45); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 90; }
.scrim.on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100%);
  background: #fff; z-index: 100; display: flex; flex-direction: column;
  transform: translateX(101%); transition: transform .38s var(--ease);
  box-shadow: -10px 0 60px rgba(0,0,0,.2);
}
.drawer.on { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.5rem; border-bottom: 2px solid var(--grey-2); }
.drawer-head h3 { font-size: 1.25rem; }
.x-btn { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--grey); transition: background .2s; }
.x-btn:hover { background: var(--grey-2); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.3rem 1.5rem; }
.drawer-foot { border-top: 2px solid var(--grey-2); padding: 1.3rem 1.5rem; }

.ci { display: grid; grid-template-columns: 68px 1fr; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--grey-2); }
.ci:last-child { border-bottom: 0; }
.ci-img { width: 68px; height: 68px; border-radius: 10px; background: var(--grey); object-fit: contain; padding: 5px; }
.ci-name { font-size: .92rem; font-weight: 700; line-height: 1.3; }
.ci-meta { font-size: .78rem; color: var(--ink-3); margin-top: .2rem; }
.ci-row { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; }
.qty { display: flex; align-items: center; border: 2px solid var(--grey-2); border-radius: 100px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; }
.qty button:hover { color: var(--orange); }
.qty span { min-width: 26px; text-align: center; font-size: .85rem; font-weight: 700; }
.ci-price { font-weight: 800; font-size: .95rem; }
.ci-del { font-size: .76rem; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; margin-top: .4rem; }
.ci-del:hover { color: var(--orange); }

.cart-empty { text-align: center; padding: 3.5rem 1rem; }
.cart-empty svg { color: var(--grey-2); margin: 0 auto 1.2rem; }
.cart-empty p { color: var(--ink-3); margin-bottom: 1.4rem; }

.upsell { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 2px dashed var(--grey-2); }
.upsell h4 { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.up { display: grid; grid-template-columns: 46px 1fr auto; gap: .8rem; align-items: center; padding: .6rem 0; }
.up img { width: 46px; height: 46px; border-radius: 8px; background: var(--grey); object-fit: contain; padding: 4px; }
.up-name { font-size: .85rem; font-weight: 600; line-height: 1.3; }
.up-price { font-size: .8rem; color: var(--ink-3); font-weight: 700; }
.up-btn { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; transition: transform .2s; }
.up-btn:hover { transform: scale(1.12); }

.ship { margin-bottom: 1.1rem; }
.ship p { font-size: .8rem; margin-bottom: .45rem; font-weight: 600; }
.ship-track { height: 6px; background: var(--grey-2); border-radius: 100px; overflow: hidden; }
.ship-fill { height: 100%; background: var(--orange); border-radius: 100px; transition: width .45s var(--ease); }
.d-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .3rem; }
.d-total .l { font-size: .95rem; font-weight: 600; }
.d-total .v { font-size: 1.7rem; font-weight: 800; letter-spacing: -.03em; }
.d-note { font-size: .78rem; color: var(--ink-3); margin-bottom: 1rem; }

/* ---------- Sticky mobile ---------- */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: #fff;
  border-top: 2px solid var(--grey-2); padding: .75rem var(--gut);
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.sticky-buy.on { transform: translateY(0); }
.sticky-buy .n { font-size: .86rem; font-weight: 700; line-height: 1.2; }
.sticky-buy .p { font-size: .8rem; color: var(--ink-3); font-weight: 600; }
@media (min-width: 1001px) { .sticky-buy { display: none; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 1.4rem; left: 50%; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: .9rem 1.5rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600; z-index: 110; box-shadow: var(--sh-m);
  display: flex; align-items: center; gap: .55rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s, visibility .25s;
  max-width: calc(100% - 2rem);
}
.toast.on { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.toast svg { color: var(--orange); flex: 0 0 auto; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Prix barré sur les cartes produit */
.prod-price .was {
  display: block; font-size: .82rem; font-weight: 500;
  color: var(--ink-3); text-decoration: line-through; letter-spacing: 0;
}

/* ==========================================================================
   Moyens de paiement (logos, bas de page)
   ========================================================================== */
.pay { display: flex; gap: .45rem; align-items: center; flex-wrap: wrap; }
.pay-card {
  width: 46px; height: 30px; padding: 0;
  background: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 5px;
  display: grid; place-items: center; overflow: hidden;
}
.pay-card svg { width: 100%; height: 100%; padding: 3px 4px; }
@media (max-width: 520px) { .pay-card { width: 42px; height: 27px; } }
