/* ---------------------------------------------------------------
   Cultivez Facilement -- design tokens
   Palette : greige naturel + vert botanique + or solaire
   Type : Fraunces (display, organique) + Work Sans (corps, net)
------------------------------------------------------------------ */
:root {
  --bg: #F6F4EC;
  --surface: #FFFFFF;
  --surface-2: #EFEBDD;
  --ink: #1C2A1D;
  --ink-muted: #52604F;
  --green-700: #1F4A29;
  --green-600: #2F6B3A;
  --green-500: #3E7C4A;
  --green-100: #E3EEDB;
  --gold: #E3A63E;
  --gold-dark: #B9791F;
  --line: #DCD5BF;
  --shadow: 0 20px 45px -25px rgba(28, 42, 29, 0.35);
  --radius: 14px;
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Work Sans", ui-sans-serif, system-ui, sans-serif;
}

/* Mode sombre automatique retire (decision Raphael, 28/08/2026) --
   le site reste toujours dans le theme clair, quel que soit l'appareil. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  text-wrap: balance;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-muted); }
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 .8em;
}
.section-lede {
  max-width: 640px;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-700); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green-600); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; padding-left: .2em; }
.btn-small { padding: .6em 1.3em; font-size: .85rem; }
.btn-large { padding: 1.05em 2.2em; font-size: 1.05rem; }
.btn-block { width: 100%; margin-top: 1.4em; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark { font-size: 1.3rem; }
.brand-name em { font-style: normal; color: var(--green-600); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { text-decoration: none; font-size: .95rem; font-weight: 500; color: var(--ink-muted); }
.main-nav a:hover { color: var(--green-600); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero { padding: 64px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-lede { font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 1.6em 0 .4em; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Marquee trust band */
.marquee-band {
  background: var(--green-700);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
}
.marquee-item .dot { opacity: .5; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; }
}

/* Sections */
.section { padding: 84px 0; }
.section:nth-of-type(even) { background: var(--surface-2); }

/* Constat -- montage photo + listes detaillees fusionnes en un seul bloc continu */
.compare-graphic {
  margin-top: 2.4em;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.compare-visual { position: relative; }
.compare-visual img { display: block; width: 100%; height: auto; }
/* Chaque etiquette occupe sa propre moitie (largeur 50%) et centre son
   contenu dedans -- ne peut jamais chevaucher l'autre etiquette, quelle
   que soit la largeur d'ecran (bug reel corrige le 28/08/2026 : les deux
   pills a largeur fixe se touchaient et se recouvraient sur mobile). */
.compare-visual-label {
  position: absolute;
  top: 20px;
  width: 50%;
  display: flex;
  box-sizing: border-box;
}
.compare-visual-label-bad { left: 0; justify-content: flex-start; padding-left: 12px; }
.compare-visual-label-good { right: 0; justify-content: flex-end; padding-right: 12px; }
.compare-visual-label-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  flex-wrap: wrap;
  row-gap: 2px;
}
.compare-visual-label-bad .compare-visual-label-pill { background: rgba(30, 26, 20, .78); color: #F2EDE4; }
.compare-visual-label-bad .compare-visual-label-pill span { color: #E08A6E; font-weight: 700; }
.compare-visual-label-good .compare-visual-label-pill { background: rgba(255, 255, 255, .95); color: var(--green-700); }
.compare-visual-label-good .compare-visual-label-pill span { color: var(--green-600); font-weight: 700; }
.vs-badge-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

/* Compare cards (face-a-face, fondues directement sous l'image, pas de gap) */
.compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }
.vs-badge {
  justify-self: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 3px solid var(--bg);
  z-index: 2;
}
.compare-card { padding: 26px 28px; }
.compare-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 1.1em; }
.compare-card-bad { background: var(--surface); }
.compare-card-bad .compare-card-title { color: var(--ink-muted); }
.compare-card-bad .compare-card-title span { color: #B5533C; font-weight: 700; }
.compare-card-good { background: var(--green-100); border-color: var(--green-600); }
.compare-card-good .compare-card-title { color: var(--green-700); }
.compare-card-good .compare-card-title span { color: var(--green-600); font-weight: 700; }
.compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1em; }
.compare-card li { font-size: .92rem; color: var(--ink-muted); }
.compare-card-good li { color: var(--green-700); }
.compare-card li strong { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: .2em; }

/* Mechanism */
.mech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.4em; }
.mech-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.mech-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-dark); display: block; margin-bottom: .3em; }
.mech-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 3em; }
.mech-media-grid figure { margin: 0; }
.mech-media-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.mech-media-grid figcaption { margin-top: .6em; font-size: .85rem; color: var(--ink-muted); }

/* Proof */
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.proof-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2.6em; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card-featured { border-color: var(--green-600); box-shadow: var(--shadow); position: relative; }
.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 999px;
  margin-bottom: 1em;
  width: fit-content;
}
.price-tag { font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: .5em; }
.price-main { font-size: 1.9rem; font-weight: 600; }
.price-desc { font-size: .92rem; }
.price-features { list-style: none; padding: 0; margin: 1em 0 0; display: flex; flex-direction: column; gap: .65em; font-size: .92rem; color: var(--ink-muted); }
.price-features li { padding-left: 1.4em; position: relative; }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 700; }

/* Pro / B2B */
.pro-section { }
.pro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.pro-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .6em; margin-top: 1.4em; }
.pro-list li { padding-left: 1.4em; position: relative; color: var(--ink-muted); }
.pro-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 700; }
.pro-card { background: var(--green-700); color: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); }
.pro-card h3, .pro-card .price-tag { color: #fff; }
.pro-card .price-desc { color: color-mix(in srgb, #fff 75%, transparent); }

/* FAQ */
.faq-list { margin-top: 2.4em; display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { cursor: pointer; font-weight: 600; font-family: var(--font-display); font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--green-600); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: .9em; margin-bottom: 0; }

/* CTA final */
.section.cta-section { text-align: center; background: var(--green-700); color: #fff; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.section.cta-section h2 { color: #fff; }
.section.cta-section p { color: color-mix(in srgb, #fff 78%, transparent); max-width: 46ch; }

/* Product hero (page Produit) -- galerie + offres, style fiche produit */
.product-hero { padding: 48px 0 64px; }
.product-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }

.gallery-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery-thumb { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: none; aspect-ratio: 1/1; opacity: .65; transition: opacity .15s ease, border-color .15s ease; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: .9; }
.gallery-thumb.is-active { opacity: 1; border-color: var(--green-600); }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 1em 0 1.2em; }
.mini-badge { background: var(--green-100); color: var(--green-700); font-size: .78rem; font-weight: 600; padding: .4em .8em; border-radius: 999px; }
.product-hero-lede { font-size: 1.02rem; }

.offer-picker { margin: 1.6em 0 1.2em; }
.offer-picker-label { font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .7em; }
.offer-options { display: flex; flex-direction: column; gap: 10px; }
.offer-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: var(--surface);
  transition: border-color .15s ease, background .15s ease;
}
.offer-option input { position: absolute; opacity: 0; }
.offer-option.is-selected { border-color: var(--green-600); background: var(--green-100); }
.offer-option-name { font-weight: 600; font-size: .95rem; color: var(--ink); }
.offer-option-price { font-weight: 600; font-size: .95rem; color: var(--green-700); text-align: right; }
.offer-badge { grid-column: 1 / -1; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--gold-dark); }

/* Bullet + photo sections (Sous le capot, La technologie) */
.bullet-photo-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.bullet-photo-media { order: 1; }
.bullet-photo-copy { order: 2; }
.bullet-photo-section.reverse .bullet-photo-media { order: 2; }
.bullet-photo-section.reverse .bullet-photo-copy { order: 1; }
.bullet-photo-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }

.bullet-list { list-style: none; padding: 0; margin: 1.6em 0 0; display: flex; flex-direction: column; gap: 22px; }
.bullet-list li { display: flex; gap: 16px; align-items: flex-start; }
.bullet-icon { font-size: 1.3rem; line-height: 1.4; flex-shrink: 0; }
.bullet-list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-bottom: .15em; }
.bullet-list p { margin: 0; font-size: .92rem; }
.bullet-num {
  flex-shrink: 0;
  width: 2.1em; height: 2.1em;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Guide 3 etapes -- image au-dessus, numero a cote du titre */
.step-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; margin-bottom: 1.1em; }
.step-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-item h3 { display: flex; align-items: center; gap: .5em; margin-bottom: .4em; }
.step-num {
  flex-shrink: 0;
  width: 1.6em; height: 1.6em;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fabrication locale */
.craft-section { }
.craft-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.craft-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.craft-steps { display: flex; align-items: stretch; gap: 12px; margin: 1.6em 0 1.2em; }
.craft-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4em;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1em .8em;
}
.craft-step-icon { font-size: 1.5rem; line-height: 1; }
.craft-step span:last-child { font-size: .82rem; font-weight: 600; color: var(--ink); }
.craft-arrow { color: var(--ink-muted); font-size: 1.2rem; flex-shrink: 0; display: flex; align-items: center; }
.craft-note { font-size: .85rem; color: var(--ink-muted); font-style: italic; }

/* Avis gallery */
.avis-gallery { margin: 2em 0; }
.avis-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.avis-gallery-item {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  margin: 0;
}
.avis-gallery-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.avis-gallery-item figcaption { margin-top: .6em; font-size: .82rem; color: var(--ink-muted); }

/* Caracteristiques techniques (specs) */
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2.2em; }
.spec-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.spec-icon { font-size: 1.4rem; line-height: 1; }
.spec-label { font-family: var(--font-body); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); display: block; margin-bottom: .3em; }
.spec-value { font-size: .9rem; color: var(--ink-muted); margin: 0; }

/* Guide en 3 etapes */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.4em; }
.step-item p { font-size: .92rem; }

/* Teasers (homepage) */
.teaser-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 2em; }
.teaser-head .eyebrow, .teaser-head h2 { margin-bottom: 0; }
.mech-teaser-list { list-style: none; padding: 0; margin: 2em 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mech-teaser-list li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; font-size: .93rem; color: var(--ink-muted); }
.mech-teaser-list strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .3em; }
.avis-teaser { text-align: center; }
.avis-teaser p { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Page hero (sous-pages) */
.page-hero { padding: 56px 0 16px; text-align: center; }
.page-hero .eyebrow { display: flex; justify-content: center; }
.page-hero h1 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 56ch; margin-left: auto; margin-right: auto; font-size: 1.05rem; }

/* Avis page */
.avis-launch-card {
  max-width: 720px;
  margin: 2.4em auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.avis-launch-card h3 { margin-bottom: .4em; }

/* Legal page */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 1.6em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: .95rem; }
.legal-placeholder { background: var(--green-100); color: var(--green-700); padding: .1em .5em; border-radius: 6px; font-weight: 600; }

/* Icone panier (header) */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 6px 8px;
  line-height: 1;
}
.cart-icon-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  min-width: 1.3em;
  height: 1.3em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .2em;
}

/* Tiroir panier */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 18, .45);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.cart-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--surface);
  z-index: 71;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 40px -20px rgba(0,0,0,.35);
  transform: translateX(100%);
  transition: transform .25s ease;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-header h3 { font-size: 1.1rem; }
.cart-drawer-close { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink-muted); padding: 0 4px; }

.cart-drawer-items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-drawer-empty { color: var(--ink-muted); font-size: .9rem; text-align: center; margin-top: 2em; }
.cart-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-item-name { font-size: .92rem; font-weight: 600; color: var(--ink); }
.cart-drawer-item-remove {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 1.7em; height: 1.7em;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.cart-drawer-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-drawer-total:empty { display: none; }
.cart-drawer-total-label { margin: 0; font-size: .8rem; color: var(--ink-muted); }
.cart-drawer-total-amount { margin: .2em 0 0; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); }

.select-formula.is-selected { background: var(--gold); border-color: var(--gold); color: var(--green-700); }

/* Footer */
.site-footer { padding: 32px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--ink-muted); }
.footer-inner a { text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .proof-grid, .pro-grid, .product-hero-grid, .bullet-photo-grid, .craft-grid { grid-template-columns: 1fr; }
  .bullet-photo-media, .bullet-photo-copy { order: initial !important; }
  .craft-steps { flex-direction: column; }
  .craft-step { flex-direction: row; text-align: left; justify-content: flex-start; }
  .craft-arrow { align-self: center; transform: rotate(90deg); }
  .hero-media { order: -1; }
  .mech-grid, .pricing-grid, .mech-teaser-list, .specs-grid, .steps-grid { grid-template-columns: 1fr; }
  .mech-media-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; gap: 0; }
  .vs-badge { margin: -18px auto; }
  .compare-visual-label { top: 10px; }
  .compare-visual-label-bad { padding-left: 8px; }
  .compare-visual-label-good { padding-right: 8px; }
  .compare-visual-label-pill { font-size: .72rem; padding: 6px 10px; gap: 5px; }
  .vs-badge-visual { width: 42px; height: 42px; font-size: .82rem; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-small { display: none; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 24px 26px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
