/* ===========================================================================
   PlayFizz — Thème aquatique candy-pop
   Direction : océan profond + écume + jaune soleil + corail. Esprit jeu/jouet.
   Typo : Fredoka (display arrondi) + Nunito (corps).
   =========================================================================== */

:root {
  /* Océan */
  --abyss: #062b46;
  --deep: #0a3d62;
  --sea: #1380b4;
  --blue: #2aa8e0;
  --sky: #6fd0f2;
  --aqua: #5fded6;
  --foam: #d6f3fb;
  --foam-2: #eafaff;

  /* Accents bonbon */
  --sun: #ffd84d;
  --sun-deep: #ffb300;
  --coral: #ff7a72;
  --coral-deep: #ff5a8a;
  --grape: #b388ff;
  --mint: #8ce6b0;
  --tangerine: #ffab5e;

  --ink: #0c3550;
  --ink-soft: #3d6580;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(8, 60, 98, .12);
  --shadow: 0 14px 34px rgba(8, 60, 98, .18);
  --shadow-lg: 0 28px 60px rgba(8, 60, 98, .28);
  --ring: 0 0 0 4px rgba(111, 208, 242, .45);

  --r-sm: 14px;
  --r: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --maxw: 1200px;
  --font-display: "Fredoka", "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--foam-2);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(15px, 1.05vw, 17px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; color: var(--deep); font-weight: 600; }
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.center { text-align: center; }

/* ============================================================= Backdrops */
/* Dégradé océan animé global posé derrière tout */
.ocean-bg {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(120% 80% at 80% -10%, #bfeeff 0%, transparent 55%),
    radial-gradient(120% 90% at 0% 110%, #d8fff6 0%, transparent 55%),
    linear-gradient(180deg, #eafaff 0%, #d6f3fb 45%, #c4ecfa 100%);
}
.ocean-bg::after { /* léger grain pour la profondeur */
  content: ""; position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(rgba(6,43,70,.6) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* Bulles flottantes globales */
.bubbles { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bubbles span {
  position: absolute; bottom: -60px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(146,222,247,.25) 60%, rgba(146,222,247,0) 70%);
  box-shadow: inset 0 0 8px rgba(255,255,255,.7);
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  10%  { opacity: .9; }
  90%  { opacity: .7; }
  100% { transform: translateY(-110vh) translateX(40px) scale(1); opacity: 0; }
}

/* Vagues SVG (séparateurs de section) */
.wave { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.wave-top { margin-bottom: -6px; }
.wave-bottom { margin-top: -6px; transform: rotate(180deg); }

/* ============================================================ Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: .85em 1.6em; border-radius: var(--r-pill);
  transition: transform .18s cubic-bezier(.34,1.6,.5,1), box-shadow .2s, filter .2s;
  white-space: nowrap; position: relative;
}
.btn:active { transform: scale(.96); }
.btn-primary {
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: #6b3b00; box-shadow: 0 8px 0 #d98e00, var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 0 #d98e00, var(--shadow); filter: saturate(1.1); }
.btn-primary:active { box-shadow: 0 3px 0 #d98e00; transform: translateY(3px) scale(.99); }
.btn-coral {
  background: linear-gradient(180deg, #ff8fb0 0%, var(--coral-deep) 100%);
  color: #fff; box-shadow: 0 8px 0 #d63b6f, var(--shadow-sm);
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 10px 0 #d63b6f, var(--shadow); }
.btn-coral:active { box-shadow: 0 3px 0 #d63b6f; transform: translateY(3px) scale(.99); }
.btn-blue {
  background: linear-gradient(180deg, var(--sky) 0%, var(--sea) 100%);
  color: #fff; box-shadow: 0 8px 0 #0c5e86, var(--shadow-sm);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 10px 0 #0c5e86, var(--shadow); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--deep); box-shadow: inset 0 0 0 2px rgba(19,128,180,.25); }
.btn-ghost:hover { background: #fff; }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.2rem; padding: 1em 2em; }

/* ============================================================= Header */
.topbar {
  background: linear-gradient(90deg, var(--deep), var(--sea), var(--deep));
  color: #eafaff; font-weight: 700; font-size: .82rem; overflow: hidden;
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.marquee { display: flex; white-space: nowrap; gap: 0; will-change: transform; animation: marquee 28s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { padding: .55em 1.4em; display: inline-flex; gap: .5em; align-items: center; }
.marquee span::before { content: "🌊"; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(19,128,180,.14);
}
.nav { display: flex; align-items: center; gap: 1.4rem; padding: .65rem 0; }
.brand { display: flex; align-items: center; gap: .55rem; margin-right: auto; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: .3rem; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; color: var(--ink-soft);
  padding: .5em .9em; border-radius: var(--r-pill); transition: .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--sea); background: rgba(111,208,242,.18); }
.icon-btn {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(111,208,242,.16); color: var(--sea); transition: .2s; position: relative;
}
.icon-btn:hover { background: var(--sky); color: #fff; transform: translateY(-2px); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px;
  background: var(--coral-deep); color: #fff; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid #fff; transform: scale(0); transition: transform .3s cubic-bezier(.34,1.6,.5,1);
}
.cart-count.show { transform: scale(1); }
.burger { display: none; }

/* ============================================================= Hero */
.hero { position: relative; padding: clamp(2rem, 5vw, 4rem) 0 1rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-display);
  font-weight: 600; color: var(--coral-deep); background: #fff;
  padding: .45em 1em; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  font-size: .9rem; margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(140,230,176,.35); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(140,230,176,0); } }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); letter-spacing: -.02em; }
.hero h1 .pop {
  background: linear-gradient(180deg, var(--blue), var(--sea));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.hero h1 .sun { color: var(--sun-deep); }
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; margin: 1.1rem 0 1.6rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.hero-proof { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.6rem; flex-wrap: wrap; }
.stars { color: var(--sun-deep); font-size: 1.1rem; letter-spacing: 2px; }
.proof-text { font-size: .9rem; color: var(--ink-soft); }
.proof-text b { color: var(--deep); }

.hero-media { position: relative; }
.hero-media .blob {
  position: absolute; inset: -6% -4%; z-index: 0;
  background: radial-gradient(circle at 50% 40%, #fff6c9, transparent 60%),
              radial-gradient(circle at 70% 70%, #bdeeff, transparent 60%);
  filter: blur(8px);
}
.hero-card {
  position: relative; z-index: 1; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff; rotate: -2deg;
  transition: rotate .4s, transform .4s; background: #fff;
}
.hero-card:hover { rotate: 0deg; transform: translateY(-4px); }
.float-tag {
  position: absolute; z-index: 2; background: #fff; border-radius: var(--r);
  padding: .6em .9em; box-shadow: var(--shadow); font-family: var(--font-display);
  font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: .5em;
  animation: bob 3.5s ease-in-out infinite;
}
.float-tag.t1 { top: 6%; left: -6%; color: var(--sea); }
.float-tag.t2 { bottom: 14%; right: -5%; color: var(--coral-deep); animation-delay: -1.2s; }
.float-tag.t3 { bottom: -4%; left: 12%; color: var(--sun-deep); animation-delay: -2.2s; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* Bandeau de confiance défilant */
.trust-strip { background: var(--deep); color: #cfeefc; padding: .9rem 0; margin-top: 2rem; }
.trust-strip .wrap { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; font-weight: 700; font-size: .92rem; }
.trust-strip span { display: inline-flex; gap: .5em; align-items: center; }

/* ============================================================= Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
.section-head { max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head .kicker {
  font-family: var(--font-display); font-weight: 600; color: var(--aqua); letter-spacing: .12em;
  text-transform: uppercase; font-size: .85rem; filter: brightness(.85);
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: .3rem 0 .6rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }
.tide { background: linear-gradient(180deg, #fff, #f0fbff); }

/* Features cards */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feature {
  background: #fff; border-radius: var(--r); padding: 1.8rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 2px solid #eaf6fb; transition: .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sky); }
.feature .emoji {
  font-size: 2.4rem; display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 1rem;
  background: radial-gradient(circle at 35% 30%, #fff, #e6f7ff); border-radius: 50%;
  box-shadow: inset 0 -6px 14px rgba(19,128,180,.12);
}
.feature h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ====================================================== Mini-jeu surprise */
.game { background: linear-gradient(180deg, var(--deep), var(--abyss)); color: #eafaff; position: relative; overflow: hidden; }
.game .section-head h2, .game .section-head p { color: #eafaff; }
.game .section-head .kicker { color: var(--sun); filter: none; }
.game-stage {
  position: relative; max-width: 760px; margin: 0 auto; text-align: center;
}
.bombs { display: flex; justify-content: center; gap: clamp(.6rem, 2vw, 1.4rem); flex-wrap: wrap; }
.bomb {
  --c1: #6fd0f2; --c2: #1380b4;
  width: clamp(72px, 13vw, 112px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0%, var(--c1) 28%, var(--c2) 100%);
  box-shadow: inset -8px -10px 18px rgba(0,0,0,.18), inset 8px 8px 14px rgba(255,255,255,.5), var(--shadow);
  position: relative; transition: transform .25s cubic-bezier(.34,1.6,.5,1); cursor: pointer;
  display: grid; place-items: center;
}
.bomb::after {
  content: "?"; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.25); transition: opacity .2s;
}
.bomb:hover { transform: translateY(-6px) scale(1.05) rotate(-4deg); }
.bomb.fizzing { animation: shake .5s ease; }
.bomb.revealed { cursor: default; background: radial-gradient(circle at 50% 45%, #fff, #d6f3fb 70%); box-shadow: inset 0 0 0 3px rgba(255,255,255,.6), var(--shadow); }
.bomb.revealed::after { content: attr(data-emoji); font-size: clamp(2.2rem, 6vw, 3.2rem); animation: pop-in .5s cubic-bezier(.34,1.7,.5,1); }
.bomb-name { font-family: var(--font-display); font-weight: 600; font-size: .8rem; margin-top: .4rem; min-height: 1.2em; color: #bfeeff; }
.bomb-wrap { display: flex; flex-direction: column; align-items: center; }
@keyframes shake { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-10deg) scale(1.05)} 40%{transform:rotate(8deg)} 60%{transform:rotate(-6deg)} 80%{transform:rotate(4deg)} }
@keyframes pop-in { from { transform: scale(0) rotate(-30deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.game-score { font-family: var(--font-display); font-weight: 600; margin: 1.6rem 0 .4rem; font-size: 1.2rem; }
.game-score b { color: var(--sun); }
.fizz-particle { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; pointer-events: none; animation: fizz .7s ease-out forwards; }
@keyframes fizz { to { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; } }

/* ============================================================= Produits */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 2px solid #eaf6fb; transition: .3s; display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--sky); }
.card-media { position: relative; aspect-ratio: 1; overflow: hidden; background: #eaf6fb; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--coral-deep); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: .78rem; padding: .35em .8em; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.card-badge.sun { background: var(--sun); color: #6b3b00; }
.card-badge.blue { background: var(--sea); }
.wish {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: .2s;
}
.wish:hover { transform: scale(1.12); color: var(--coral-deep); }
.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-rating { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: .4rem; }
.card-rating .stars { font-size: .9rem; }
.card h3 { font-size: 1.18rem; line-height: 1.15; }
.card .tag { color: var(--ink-soft); font-size: .9rem; margin: .3rem 0 .9rem; }
.price { display: flex; align-items: baseline; gap: .5rem; margin-top: auto; margin-bottom: 1rem; }
.price .now { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--deep); }
.price .was { color: var(--ink-soft); text-decoration: line-through; font-size: 1rem; }
.price .save { background: #ffe9ec; color: var(--coral-deep); font-weight: 800; font-size: .72rem; padding: .25em .6em; border-radius: var(--r-pill); }

/* ============================================================= Avis */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.review {
  background: #fff; border-radius: var(--r); padding: 1.6rem; box-shadow: var(--shadow-sm);
  border: 2px solid #eaf6fb; position: relative;
}
.review .stars { font-size: 1rem; margin-bottom: .6rem; }
.review p { font-size: .98rem; color: var(--ink); }
.review .who { margin-top: 1rem; font-family: var(--font-display); font-weight: 600; color: var(--sea); font-size: .92rem; }
.review::before { content: "“"; position: absolute; top: -6px; right: 18px; font-family: var(--font-display); font-size: 4rem; color: #d6f3fb; }

/* As seen on */
.seen { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; opacity: .8; }
.seen img { height: clamp(28px, 4vw, 44px); width: auto; filter: grayscale(.2); }

/* ============================================================= FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--r); margin-bottom: .8rem; box-shadow: var(--shadow-sm); border: 2px solid #eaf6fb; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 600; color: var(--deep); font-size: 1.05rem;
}
.faq-q .chev { transition: transform .3s; color: var(--sea); flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); }

/* ============================================================= CTA final */
.bigcta { background: linear-gradient(135deg, var(--sea), var(--blue)); color: #fff; text-align: center; border-radius: var(--r-lg); padding: clamp(2.5rem,5vw,4rem); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.bigcta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.bigcta p { font-size: 1.15rem; opacity: .92; margin: .8rem auto 1.6rem; max-width: 50ch; }

/* ============================================================= Footer */
.site-footer { background: var(--abyss); color: #bcdcec; padding: 3.5rem 0 2rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.site-footer a { display: block; padding: .25rem 0; color: #9fc6da; transition: .2s; }
.site-footer a:hover { color: var(--sun); }
.foot-brand img { height: 54px; margin-bottom: .8rem; }
.foot-brand p { font-size: .92rem; color: #8fb6cb; max-width: 34ch; }
.pay { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.pay span { background: rgba(255,255,255,.1); border-radius: 6px; padding: .3em .55em; font-size: .72rem; font-weight: 700; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #7ba6bd; }

/* ============================================================= Panier (drawer) */
.overlay { position: fixed; inset: 0; background: rgba(6,43,70,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .3s; z-index: 90; }
.overlay.show { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); z-index: 100;
  background: var(--foam-2); box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.drawer.show { transform: translateX(0); }
.drawer-head { padding: 1.3rem 1.4rem; background: #fff; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); }
.drawer-head h3 { font-size: 1.3rem; }
.ship-bar { padding: 1rem 1.4rem; background: #fff; border-top: 1px solid #eaf6fb; }
.ship-bar .lbl { font-size: .85rem; color: var(--ink-soft); margin-bottom: .5rem; }
.ship-bar .lbl b { color: var(--sea); }
.bar { height: 12px; border-radius: var(--r-pill); background: #e3f3fa; overflow: hidden; }
.bar > i { display: block; height: 100%; width: 0; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--aqua), var(--sun)); transition: width .4s; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-empty .big { font-size: 3rem; margin-bottom: .6rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; background: #fff; border-radius: var(--r); padding: .7rem; margin-bottom: .8rem; box-shadow: var(--shadow-sm); }
.cart-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.cart-item .ci-name { font-family: var(--font-display); font-weight: 600; font-size: .92rem; line-height: 1.1; color: var(--deep); }
.cart-item .ci-price { color: var(--sea); font-weight: 800; font-size: .9rem; margin-top: .2rem; }
.qty { display: inline-flex; align-items: center; gap: .2rem; margin-top: .5rem; background: #f0fbff; border-radius: var(--r-pill); padding: .15rem; }
.qty button { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--sea); font-weight: 800; box-shadow: var(--shadow-sm); }
.qty span { min-width: 24px; text-align: center; font-weight: 800; font-size: .9rem; }
.ci-remove { color: var(--ink-soft); align-self: start; font-size: 1.1rem; }
.ci-remove:hover { color: var(--coral-deep); }
.drawer-foot { padding: 1.2rem 1.4rem; background: #fff; box-shadow: 0 -8px 20px rgba(8,60,98,.08); }
.drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .9rem; font-family: var(--font-display); }
.drawer-total .t-lbl { color: var(--ink-soft); }
.drawer-total .t-val { font-size: 1.6rem; font-weight: 700; color: var(--deep); }
.secure-note { text-align: center; font-size: .78rem; color: var(--ink-soft); margin-top: .7rem; }

/* ============================================================= Toast */
.toast {
  position: fixed; left: 50%; bottom: 28px;
  transform: translateX(-50%) translateY(140%); background: var(--deep); color: #fff;
  padding: .9rem 1.4rem; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
  font-family: var(--font-display); font-weight: 600; z-index: 120; display: flex; gap: .6rem; align-items: center;
  transition: transform .4s cubic-bezier(.34,1.6,.5,1); max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .emoji { font-size: 1.3rem; }

/* ============================================================= Page produit */
.pdp { padding: clamp(1.5rem, 4vw, 3rem) 0; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.gallery-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 6px solid #fff; aspect-ratio: 1; background: #eaf6fb; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.thumb { width: 72px; height: 72px; border-radius: 14px; overflow: hidden; border: 3px solid transparent; cursor: pointer; box-shadow: var(--shadow-sm); transition: .2s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--sea); }
.thumb:hover { transform: translateY(-2px); }

.pdp-info .breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: .8rem; }
.pdp-info .breadcrumb a:hover { color: var(--sea); }
.pdp-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin: .3rem 0 .6rem; }
.pdp-rating { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.pdp-price { display: flex; align-items: baseline; gap: .7rem; margin: 1rem 0; }
.pdp-price .now { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--deep); }
.pdp-price .was { text-decoration: line-through; color: var(--ink-soft); font-size: 1.2rem; }
.pdp-price .save { background: var(--coral-deep); color: #fff; font-weight: 800; padding: .3em .7em; border-radius: var(--r-pill); font-size: .8rem; }
.pdp-short { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.2rem; }
.bundle-title { font-family: var(--font-display); font-weight: 600; color: var(--deep); margin: 1.2rem 0 .6rem; }
.bundles { display: flex; flex-direction: column; gap: .7rem; }
.bundle {
  display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; border-radius: var(--r);
  background: #fff; border: 2.5px solid #e3f0f6; cursor: pointer; transition: .2s; position: relative;
}
.bundle:hover { border-color: var(--sky); }
.bundle.sel { border-color: var(--sea); background: #f0fbff; box-shadow: var(--ring); }
.bundle .radio { width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid #c5deea; flex: none; display: grid; place-items: center; transition: .2s; }
.bundle.sel .radio { border-color: var(--sea); }
.bundle.sel .radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--sea); }
.bundle .b-label { font-weight: 700; font-size: .95rem; flex: 1; line-height: 1.2; }
.bundle .b-price { font-family: var(--font-display); font-weight: 700; color: var(--deep); }
.bundle .b-tag { position: absolute; top: -11px; right: 14px; background: var(--sun); color: #6b3b00; font-family: var(--font-display); font-weight: 600; font-size: .68rem; padding: .2em .7em; border-radius: var(--r-pill); }
.variant-row { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1rem 0; }
.variant { padding: .5em 1.1em; border-radius: var(--r-pill); border: 2px solid #d8eaf3; background: #fff; font-weight: 700; font-size: .9rem; transition: .2s; }
.variant.sel { border-color: var(--sea); background: #f0fbff; color: var(--sea); }
.pdp-actions { display: flex; gap: .8rem; margin: 1.4rem 0 1rem; }
.assure { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1.2rem; }
.assure div { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.assure .ico { width: 34px; height: 34px; border-radius: 50%; background: #eafaff; display: grid; place-items: center; flex: none; }

/* Timeline livraison */
.ship-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.6rem 0; }
.ship-step { background: #fff; border-radius: var(--r); padding: 1.1rem; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid #eaf6fb; }
.ship-step .ico { font-size: 1.6rem; }
.ship-step b { display: block; font-family: var(--font-display); color: var(--deep); margin: .3rem 0; }
.ship-step span { font-size: .82rem; color: var(--ink-soft); }

.detail-list { display: grid; gap: .6rem; max-width: 760px; margin: 0 auto; }
.detail-list li { display: flex; gap: .7rem; align-items: flex-start; background: #fff; padding: .9rem 1.1rem; border-radius: var(--r); box-shadow: var(--shadow-sm); border: 2px solid #eaf6fb; }
.detail-list li::before { content: "✓"; color: #fff; background: var(--mint); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; flex: none; box-shadow: 0 4px 10px rgba(140,230,176,.5); }

/* Page boutique : en-tête */
.shop-hero { text-align: center; padding: clamp(2rem,5vw,3.5rem) 0 1rem; }
.shop-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.shop-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 52ch; margin: .6rem auto 0; }

/* ============================================================= Reveal scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================= Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-inline: auto; } .hero-cta, .hero-proof { justify-content: center; }
  .hero-media { max-width: 460px; margin: 1rem auto 0; }
  .pdp-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; padding: 1rem; box-shadow: var(--shadow); gap: .3rem; }
  .features, .prod-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ship-timeline { grid-template-columns: 1fr; }
  .assure { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .float-tag.t1 { left: 2%; } .float-tag.t2 { right: 2%; }
}

/* Pages légales / prose */
.legal-wrap { width: min(100% - 40px, 800px); margin: clamp(1.5rem,4vw,3rem) auto; background: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem,4vw,3rem); box-shadow: var(--shadow-sm); border: 2px solid #eaf6fb; }
.legal-wrap h1 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: .4rem; }
.legal-wrap h2 { font-size: 1.3rem; margin: 1.6rem 0 .5rem; color: var(--sea); }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); margin-bottom: .7rem; }
.legal-wrap ul { padding-left: 1.2rem; list-style: disc; }
.legal-wrap a { color: var(--sea); font-weight: 700; }
.legal-wrap .updated { color: var(--ink-soft); font-size: .85rem; margin-bottom: 1.4rem; }
.legal-wrap .todo { background: #fff7e0; border: 1px dashed var(--sun-deep); border-radius: 8px; padding: .2em .5em; font-size: .9em; }

/* Accessibilité : respect du mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .bubbles { display: none; }
}
