/* ============================================================
   SummerDrop — Design System « Porcelaine & Glacier »
   Éditorial premium : Fraunces (display serif) + DM Sans,
   encre pétrole, hairlines, laiton pour les étoiles.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..650;1,9..144,300..650&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green: #2E5F63;
  --green-dark: #21484C;
  --green-pale: #E9EFEB;
  --lime: #D3B784;
  --berry: #A8503F;
  --berry-pale: #F5E9E4;
  --mango: #B08D57;
  --ink: #131A1E;
  --ink-soft: #414B4E;
  --muted: #7E837C;
  --line: #E4E0D5;
  --cream: #F4F2EB;
  --cream-2: #ECE9DF;
  --white: #FFFFFF;
  --paper: #FBFAF6;
  --shadow-sm: 0 1px 2px rgba(19,26,30,0.05);
  --shadow: 0 14px 40px rgba(19,26,30,0.08);
  --shadow-lg: 0 30px 70px rgba(19,26,30,0.12);
  --r: 10px;
  --r-sm: 6px;
  --r-lg: 14px;
  --maxw: 1240px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.005em; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 480; }
::selection { background: var(--lime); color: var(--ink); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #C6C1B2; border-radius: 4px; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

/* ── BUTTONS — rectangles nets, labels capitales espacées ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 3px; border: none; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .18s ease; white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 19px 36px; font-size: 0.82rem; }

/* ── BADGES / TAGS — étiquettes techniques discrètes ── */
.tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 12px; border-radius: 3px;
}
.tag-green { background: var(--green-pale); color: var(--green-dark); }
.tag-berry { background: var(--berry-pale); color: var(--berry); }
.tag-ink { background: var(--ink); color: #fff; }
.tag-solid-green { background: var(--ink); color: #fff; }

.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pdot 1.8s infinite; }
@keyframes pdot { 50%{ opacity:.3; } }

/* ── ANNOUNCE BAR ── */
.announce {
  background: var(--ink); color: rgba(255,255,255,0.85); text-align: center;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.announce b { color: var(--lime); font-weight: 600; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 90; background: rgba(251,250,246,0.92);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1.5rem; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 9px; }
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mango); display: inline-block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after { content:''; position: absolute; left:0; right:0; bottom:-3px; height: 1px; background: var(--ink); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  transition: border-color .2s, background .2s; color: var(--ink);
}
.icon-btn:hover { border-color: var(--ink); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--ink);
  color: #fff; font-size: 0.62rem; font-weight: 600; border-radius: 100px; display: none; align-items: center; justify-content: center; border: 2px solid var(--paper);
}
.cart-count.show { display: flex; }
.hamburger { display: none; }

@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; background: var(--paper); flex-direction: column; gap: 0; padding: 1rem 1.5rem 2rem; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .3s; box-shadow: var(--shadow); }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 0.78rem; }
  .hamburger { display: flex; }
}

/* ── SECTION PRIMITIVES ──
   Padding VERTICAL uniquement : ces classes sont souvent posées sur le
   même élément que .wrap (ex. <section class="section wrap">) ; utiliser
   le raccourci `padding: X 0` écraserait la gouttière horizontale de .wrap
   et collerait le contenu aux bords sur mobile. */
.section { padding-top: 6.5rem; padding-bottom: 6.5rem; }
.section-sm { padding-top: 4rem; padding-bottom: 4rem; }
.eyebrow { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mango); margin-bottom: 1.1rem; }
.h-xl { font-size: clamp(2.7rem, 5.4vw, 4.6rem); font-weight: 440; line-height: 1.04; }
.h-lg { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 460; }
.h-md { font-size: clamp(1.45rem, 2.6vw, 2.05rem); font-weight: 480; }
.lead { font-size: 1.08rem; color: var(--ink-soft); font-weight: 300; line-height: 1.8; }
.muted { color: var(--muted); }

/* ── HERO ── */
.hero { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; padding-top: 5rem; padding-bottom: 5.5rem; }
.hero-copy .h-xl { margin: 1rem 0 1.5rem; }
.hero-copy .lead { max-width: 470px; margin-bottom: 2.4rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 2.4rem; }
.stars { color: var(--mango); letter-spacing: 2px; }
.hero-rating .stars { font-size: 0.95rem; }
.hero-rating small { color: var(--muted); font-size: 0.84rem; letter-spacing: 0.02em; }
.hero-visual { position: relative; }
.hero-visual .blob {
  position: absolute; inset: -6%; background: radial-gradient(circle at 60% 40%, rgba(46,95,99,0.07), transparent 62%); z-index: 0;
}
.hero-img-card {
  position: relative; z-index: 1; border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-lg); aspect-ratio: 1/1;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; z-index: 2; background: rgba(255,255,255,0.94); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 16px;
  display: flex; align-items: center; gap: 11px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.hero-float .ic { width: 30px; height: 30px; border-radius: 6px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.hero-float.f1 { top: 8%; left: -22px; }
.hero-float.f2 { bottom: 12%; right: -16px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-float.f1 { left: 8px; } .hero-float.f2 { right: 8px; }
}

/* ── TRUST STRIP — bande de spécifications ── */
.trust-strip { background: var(--ink); color: #fff; }
.trust-row { display: flex; justify-content: space-around; gap: 1rem; padding-top: 1.25rem; padding-bottom: 1.25rem; flex-wrap: wrap; }
.trust-row .ti { display: flex; align-items: center; gap: 11px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.trust-row .ti b { color: var(--lime); font-weight: 600; }

/* ── PRODUCT CARD ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 2rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-4px); border-color: #CFC9BA; box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 1/1; background: var(--cream); overflow: hidden; display: block; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.card:hover .card-media img { transform: scale(1.04); }
.card-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.card-disc { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(19,26,30,0.7); color: #fff; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; padding: 5px 9px; border-radius: 3px; backdrop-filter: blur(2px); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-name { font-family: var(--font-display); font-weight: 520; font-size: 1.22rem; margin-bottom: 6px; letter-spacing: -0.005em; }
.card-rating { font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.card-rating .stars { font-size: 0.78rem; }
.card-desc { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.1rem; flex: 1; font-weight: 300; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 1.1rem; }
.price-now { font-family: var(--font-display); font-weight: 550; font-size: 1.35rem; color: var(--ink); }
.price-old { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; }

/* ── BENEFITS / FEATURES ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 2.1rem 1.9rem; transition: border-color .3s;
}
.feature:hover { border-color: #CFC9BA; }
.feature .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--green-pale); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.hero-float .ic { color: var(--green-dark); }
.feature h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; }

/* ── SPLIT / USE-CASES ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); background: var(--cream); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy ul { list-style: none; margin-top: 1.4rem; display: grid; gap: 12px; }
.split-copy li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; font-weight: 300; }
.split-copy li .ck { color: var(--mango); font-weight: 700; flex-shrink: 0; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2rem; } .split.rev .split-media { order: 0; } }

/* ── USE-CASE PILLS ── */
.usecases { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.usecase { text-align: center; }
.usecase-img { aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; margin-bottom: 1rem; background: var(--cream-2); border: 1px solid var(--line); }
.usecase-img img { width: 100%; height: 100%; object-fit: cover; }
.usecase h4 { font-size: 1.05rem; } .usecase p { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
@media (max-width: 720px) { .usecases { grid-template-columns: 1fr 1fr; } }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; counter-reset: s; }
.step { text-align: center; }
.step .num { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 1.2rem; background: transparent; border: 1px solid var(--ink); color: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ── REVIEWS ── */
.rev-summary { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.rev-big { text-align: center; }
.rev-big .n { font-family: var(--font-display); font-size: 3.4rem; font-weight: 460; line-height: 1; }
.rev-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.rev-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.rev-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-family: var(--font-display); }
.rev-name { font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.rev-verified { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); font-weight: 600; }
.rev-card .stars { font-size: 0.8rem; margin-bottom: 0.6rem; }
.rev-text { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.9rem; font-weight: 300; line-height: 1.7; }
.rev-meta { font-size: 0.72rem; color: var(--muted); display: flex; justify-content: space-between; align-items: center; letter-spacing: 0.04em; }
.rev-votes { display: inline-flex; gap: 8px; }
.vote-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid var(--line); border-radius: 3px; padding: 5px 10px; font: inherit; font-size: 0.72rem; color: var(--muted); cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.vote-btn:hover { border-color: var(--ink); color: var(--ink); }
.vote-btn.on { border-color: var(--green-dark); color: var(--green-dark); background: var(--green-pale); }
.vote-btn[data-v="down"].on { border-color: var(--berry); color: var(--berry); background: var(--berry-pale); }
.vote-btn:disabled { opacity: .55; cursor: default; }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border: none; border-bottom: 1px solid var(--line); border-radius: 0; overflow: hidden; background: transparent; }
.faq-q { padding: 1.35rem 0.2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-weight: 500; font-size: 1.02rem; font-family: var(--font-display); }
.faq-q .pm { color: var(--mango); font-size: 1.25rem; font-weight: 300; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; padding: 0 0.2rem; }
.faq-item.open .faq-a { max-height: 340px; padding: 0 0.2rem 1.3rem; }
.faq-a p { font-size: 0.93rem; color: var(--ink-soft); font-weight: 300; max-width: 620px; }

/* ── MEDIA / LOGOS BAR ── */
.media-bar { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; opacity: 0.65; }
.media-bar span { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 1.05rem; color: var(--muted); }

/* ── GUARANTEE BANNER ── */
.guarantee { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.guarantee::after { content:''; position: absolute; right: -70px; bottom: -70px; width: 260px; height: 260px; border: 1px solid rgba(211,183,132,0.25); border-radius: 50%; }
.guarantee .seal { width: 80px; height: 80px; border-radius: 50%; border: 1px dashed var(--lime); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin: 0 auto 1.5rem; position: relative; z-index: 1; }
.guarantee h2 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 470; margin-bottom: 0.9rem; position: relative; z-index: 1; }
.guarantee p { max-width: 560px; margin: 0 auto; color: rgba(255,255,255,0.75); font-weight: 300; position: relative; z-index: 1; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 4rem 3rem; text-align: center; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 1.6rem auto 0; }
.nl-form input { flex: 1; border: 1px solid var(--line); background: var(--white); border-radius: 3px; padding: 15px 20px; font-family: var(--font-body); font-size: 0.92rem; outline: none; transition: border-color .2s; }
.nl-form input:focus { border-color: var(--green); }
@media (max-width: 480px) { .nl-form { flex-direction: column; } }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 4.5rem 0 1.8rem; margin-top: 5rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.87rem; max-width: 280px; line-height: 1.8; font-weight: 300; }
.footer-col h4 { color: rgba(255,255,255,0.45); font-family: var(--font-body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.87rem; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.76rem; flex-wrap: wrap; gap: 1rem; font-weight: 300; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.socials a:hover { border-color: var(--lime); color: var(--lime); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }

/* ── CART DRAWER ── */
.overlay { position: fixed; inset: 0; background: rgba(19,26,30,0.45); backdrop-filter: blur(3px); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.open { opacity: 1; pointer-events: all; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100vw); background: var(--paper); z-index: 201; transform: translateX(100%); transition: transform .45s cubic-bezier(.25,.8,.25,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 1.5rem 1.7rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-size: 1.3rem; font-weight: 500; }
.drawer-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.7rem; }
.di { display: grid; grid-template-columns: 66px 1fr auto; gap: 14px; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.di-img { width: 66px; height: 66px; border-radius: var(--r-sm); overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.di-img img { width: 100%; height: 100%; object-fit: cover; }
.di-name { font-size: 0.88rem; font-weight: 600; line-height: 1.35; }
.di-variant { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.03em; }
.di-price { font-size: 0.88rem; color: var(--ink); font-weight: 600; margin-top: 3px; font-family: var(--font-display); }
.qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 7px; }
.qty button { width: 26px; height: 26px; border: 1px solid var(--line); background: transparent; border-radius: 3px; cursor: pointer; font-weight: 600; color: var(--ink); transition: border-color .2s; }
.qty button:hover { border-color: var(--ink); }
.qty span { min-width: 18px; text-align: center; font-size: 0.88rem; font-weight: 600; }
.di-rm { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1rem; align-self: flex-start; transition: color .2s; }
.di-rm:hover { color: var(--berry); }
.drawer-empty { text-align: center; color: var(--muted); padding: 4rem 1rem; }
.drawer-empty .big { font-size: 3rem; opacity: .3; }
.drawer-foot { padding: 1.5rem 1.7rem; border-top: 1px solid var(--line); background: var(--cream); }
.drawer-sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.drawer-sub strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 520; }
.ship-hint { font-size: 0.78rem; color: var(--green-dark); background: var(--green-pale); border-radius: var(--r-sm); padding: 10px 14px; margin: 0.6rem 0 1rem; }
.ship-bar { height: 3px; background: rgba(46,95,99,0.18); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.ship-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width .4s; }

/* ── TOAST ── */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(140px); background: var(--ink); color: #fff; padding: 15px 26px; border-radius: var(--r-sm); font-size: 0.86rem; font-weight: 400; letter-spacing: 0.02em; z-index: 300; box-shadow: var(--shadow-lg); transition: transform .4s cubic-bezier(.25,.8,.25,1); display: flex; align-items: center; gap: 10px; white-space: nowrap; max-width: 90vw; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── PAGE HEADER (pages intérieures) ── */
.page-head { background: var(--cream); border-bottom: 1px solid var(--line); padding: 3.5rem 0; text-align: center; }
.page-head h1 { font-weight: 460; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.8rem; }
.breadcrumb a:hover { color: var(--ink); }

/* ── FORM FIELDS ── */
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.fg label { font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); }
.inp { border: 1px solid var(--line); border-radius: 3px; padding: 13px 15px; font-family: var(--font-body); font-size: 0.93rem; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s; width: 100%; }
.inp:focus { border-color: var(--green); }
.inp.err { border-color: var(--berry); background: #FBF3F0; }
textarea.inp { resize: vertical; min-height: 120px; }

/* ── ACCOUNT MENU ── */
.nav-right { position: relative; }
.account-menu { position: absolute; top: 56px; right: 0; width: 235px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--shadow); padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .2s; z-index: 95; }
.account-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.account-menu .am-head { padding: 11px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.account-menu .am-head b { display: block; font-size: 0.92rem; font-family: var(--font-display); font-weight: 550; }
.account-menu .am-head small { color: var(--muted); font-size: 0.76rem; }
.account-menu a, .account-menu button { display: block; width: 100%; text-align: left; padding: 10px 12px; border: none; background: none; font: inherit; font-size: 0.87rem; cursor: pointer; border-radius: 4px; color: var(--ink); }
.account-menu a:hover, .account-menu button:hover { background: var(--cream); }
.account-menu button { color: var(--berry); }

/* ── AUTH MODAL ── */
.modal-bg { position: fixed; inset: 0; background: rgba(19,26,30,0.55); backdrop-filter: blur(5px); z-index: 250; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .28s; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-card { background: var(--paper); border-radius: var(--r-lg); width: 100%; max-width: 430px; padding: 2.4rem; position: relative; transform: scale(0.97) translateY(10px); transition: transform .35s cubic-bezier(.25,.8,.25,1); max-height: 92vh; overflow-y: auto; }
.modal-bg.open .modal-card { transform: none; }
.modal-x { position: absolute; top: 1.1rem; right: 1.1rem; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 0.95rem; color: var(--muted); transition: border-color .2s, color .2s; }
.modal-x:hover { border-color: var(--ink); color: var(--ink); }
.auth-brand { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; margin-bottom: 1.3rem; }
.auth-switch { text-align: center; margin-top: 1.3rem; font-size: 0.87rem; color: var(--muted); font-weight: 300; }
.auth-switch a { color: var(--green-dark); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.code-input { text-align: center; font-size: 1.8rem; letter-spacing: 0.5em; font-weight: 600; padding: 14px; font-family: var(--font-display); }
.dev-code { background: var(--green-pale); color: var(--green-dark); border-radius: var(--r-sm); padding: 13px 15px; font-size: 0.85rem; text-align: center; }
.dev-code b { font-size: 1.2rem; letter-spacing: 0.18em; font-family: var(--font-display); }

/* ── REVIEW FORM ── */
.review-cta { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; text-align: center; max-width: 420px; }
.review-cta p { margin-bottom: 0.9rem; font-weight: 500; font-family: var(--font-display); font-size: 1.02rem; }
.review-form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; max-width: 460px; }
.star-pick { display: flex; gap: 5px; font-size: 1.6rem; margin-bottom: 0.8rem; cursor: pointer; }
.star-pick span { color: #D8D3C4; transition: color .15s; }
.star-pick span.on { color: var(--mango); }

/* ── ICONS ── */
.ic-svg { display: inline-block; vertical-align: -0.18em; flex-shrink: 0; }
.btn .ic-svg, .icon-btn .ic-svg, .qty .ic-svg { vertical-align: middle; }
.icon-btn .ic-svg { width: 19px; height: 19px; }
.trust-row .ti .ic-svg { color: var(--lime); }

/* ── BANDEAU COOKIES ── */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 160; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -12px 40px rgba(19,26,30,.07); transform: translateY(100%); transition: transform .4s; }
.cookie-bar.show { transform: none; }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 1.5rem; display: flex; align-items: center; gap: 1.5rem; }
.cookie-inner p { font-size: 0.83rem; color: var(--ink-soft); margin: 0; flex: 1; font-weight: 300; }
.cookie-inner a { color: var(--green-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 12px 20px; }
@media (max-width: 680px) { .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; } .cookie-actions .btn { flex: 1; } }

/* ── PAGE LÉGALE (texte) ── */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 0.8rem; font-weight: 500; }
.legal h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; font-weight: 550; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.7rem; font-weight: 300; }
.legal ul { padding-left: 1.2rem; margin-bottom: 0.7rem; }
.legal li { margin-bottom: 0.4rem; }
.legal .placeholder { background: #F8F1E3; border: 1px dashed var(--mango); border-radius: 4px; padding: 1px 7px; font-size: 0.88rem; color: #7A5E2C; }
.legal .updated { color: var(--muted); font-size: 0.82rem; margin-bottom: 2rem; }
.legal a { color: var(--green-dark); text-decoration: underline; }

/* ── ANIM REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE — raffinements mobile ─────────────────────────
   Gouttières préservées via .wrap ; rythme vertical resserré,
   CTA pleine largeur et bannières recadrées pour un rendu net. */
@media (max-width: 860px) {
  .section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .section-sm { padding-top: 3rem; padding-bottom: 3rem; }
}
@media (max-width: 600px) {
  .section { padding-top: 3.4rem; padding-bottom: 3.4rem; }
  .section-sm { padding-top: 2.4rem; padding-bottom: 2.4rem; }

  /* Hero — CTA empilés pleine largeur, cohérents */
  .hero-ctas { gap: 0.7rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-copy .lead { margin-bottom: 2rem; }
  .hero-rating { margin-top: 1.8rem; }

  /* Bannières — padding horizontal recadré sur petit écran */
  .guarantee { padding: 2.8rem 1.6rem; border-radius: var(--r); }
  .newsletter { padding: 2.8rem 1.6rem; }
  .rev-big .n { font-size: 2.8rem; }

  /* Bas de footer empilé proprement */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
