/* ============================================================
   GreenAmal · 2026 home redesign
   Scoped under body.gd-2026 so the rest of the site is untouched.
   Palette / type tokens come from the design handoff.
   ============================================================ */

html:has(body.gd-2026) { overflow-x: hidden; }
body.gd-2026 {
  /* Stop any rogue child (drawer transforms, decorative SVGs, edge-bleed
     gradients) from extending the page horizontally past the viewport. */
  overflow-x: hidden;
  max-width: 100vw;

  /* Colors */
  --forest-900: #14301F;
  --forest-700: #1F4A30;
  --forest-600: #2A6340;
  --forest-500: #2F8C3A;
  --forest-50:  #EEF3EE;
  --terra-600:  #B84A2E;
  --terra-500:  #D45D3D;
  --terra-100:  #F4D9CE;
  --terra-50:   #FBEDE5;
  --ochre-600:  #B17517;
  --ochre-500:  #D08F2A;
  --ochre-100:  #F5E4C2;
  --ochre-50:   #FAF1DE;
  --cream-h:    #FAF6EE;
  --cream-2h:   #F2EBDC;
  --paper:      #FFFFFF;
  --ink-h:      #1A1A14;
  --ink-2h:     #4A4A40;
  --ink-3h:     #8A8A7E;
  --line-h:     #E6DFCF;
  --line-2h:    #EFE8D6;
  /* Type */
  --font-display-h: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans-h:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Radii / shadows */
  --r-md-h: 12px;
  --r-lg-h: 18px;
  --r-xl-h: 28px;
  --shadow-sm-h: 0 1px 2px rgba(20,20,15,0.04), 0 1px 3px rgba(20,20,15,0.04);
  --shadow-md-h: 0 6px 18px -8px rgba(20,30,20,0.18);
  --shadow-lg-h: 0 20px 48px -16px rgba(20,30,20,0.22);

  background: var(--cream-h);
  color: var(--ink-h);
  font-family: var(--font-sans-h);
}

body.gd-2026 .container { max-width: 1320px; }

/* ── Promo bar override (forest, ochre code) ── */
body.gd-2026 .promo-bar {
  background: var(--forest-900);
  color: #F2E9D2;
  font-size: 12.5px;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
body.gd-2026 .promo-bar strong { color: #fff; font-weight: 600; }
body.gd-2026 .promo-bar code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: rgba(208,143,42,0.22);
  border: 1px dashed rgba(245,228,194,0.55);
  color: var(--ochre-100);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11.5px;
}

/* ── Typography (home-only) ── */
body.gd-2026 .h-eyebrow {
  font-family: var(--font-sans-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-500);
  display: inline-block;
}
body.gd-2026 .h-eyebrow.ochre { color: var(--ochre-600); }
body.gd-2026 .h-serif {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink-h);
}
body.gd-2026 .italic-terra { font-style: italic; color: var(--terra-500); }
body.gd-2026 .italic-ochre { font-style: italic; color: var(--ochre-600); }

body.gd-2026 h2.h-serif { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.1; margin: 0; }

/* ── Section head ── */
body.gd-2026 .h-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
body.gd-2026 .h-section-head .subtitle { color: var(--ink-3h); font-size: 14px; margin: 4px 0 0; }
body.gd-2026 .h-section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.gd-2026 .h-section-link:hover { color: var(--forest-600); }

/* ── Buttons (pill shaped, terra primary) ── */
body.gd-2026 .h-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s, background .15s, color .15s, box-shadow .15s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
body.gd-2026 .h-btn:active { transform: translateY(1px); }
body.gd-2026 .h-btn-primary {
  background: var(--terra-500);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(180,74,46,0.55);
}
body.gd-2026 .h-btn-primary:hover { background: var(--terra-600); color: #fff; }
body.gd-2026 .h-btn-ghost {
  background: transparent;
  color: var(--ink-h);
  border: 1px solid var(--line-h);
}
body.gd-2026 .h-btn-ghost:hover { background: #fff; border-color: var(--ink-h); }
body.gd-2026 .h-btn-lg { padding: 16px 26px; font-size: 15px; }

/* ── HERO ── */
body.gd-2026 .hero {
  padding: clamp(28px, 5vw, 56px) 0 clamp(36px, 5vw, 64px);
  background: var(--cream-h);
}
body.gd-2026 .hero-grid {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { body.gd-2026 .hero-grid { grid-template-columns: 1.05fr 1fr; } }

body.gd-2026 .hero-text { font-family: var(--font-sans-h); }
body.gd-2026 .hero-text .h-eyebrow { margin-bottom: 14px; }
body.gd-2026 .hero h1 {
  font-family: var(--font-display-h);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink-h);
}
body.gd-2026 .hero h1 em,
body.gd-2026 h2.h-serif em,
body.gd-2026 .h-newsletter h2 em {
  font-style: italic;
  color: var(--terra-500);
  font-weight: 400;
}
body.gd-2026 .hero h1 em.ochre,
body.gd-2026 h2.h-serif em.ochre,
body.gd-2026 .h-newsletter h2 em.ochre {
  color: var(--ochre-600);
}
body.gd-2026 .hero-lede {
  margin: 18px 0 0;
  color: var(--ink-2h);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  max-width: 50ch;
  line-height: 1.55;
}
body.gd-2026 .hero-cta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
body.gd-2026 .hero-trust {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-2h);
}
body.gd-2026 .hero-trust-item { display: inline-flex; align-items: center; gap: 6px; }
body.gd-2026 .hero-trust-item svg { color: var(--forest-700); }

body.gd-2026 .hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--r-xl-h);
  overflow: hidden;
  background: radial-gradient(circle at 50% 55%, #FFFFFF 0%, #F6EBD8 55%, #E8DDC4 100%);
  box-shadow: var(--shadow-md-h);
  max-width: none;
  margin: 0;
}
@media (min-width: 860px) { body.gd-2026 .hero-visual { aspect-ratio: 4 / 5; } }
body.gd-2026 .hero-visual .hero-image,
body.gd-2026 .hero-visual .hero-image picture,
body.gd-2026 .hero-visual .hero-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: 0;
  max-width: none;
}
body.gd-2026 .hero-visual .hero-image img { object-fit: cover; }

body.gd-2026 .hero-leaves-bg {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  opacity: 0.06;
  pointer-events: none;
}

body.gd-2026 .hero-card {
  position: absolute;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: var(--shadow-md-h);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
body.gd-2026 .hero-card-rating { top: 18px; right: 18px; }
body.gd-2026 .hero-card-rating .rating-num {
  font-family: var(--font-display-h);
  font-size: 22px;
  color: var(--ink-h);
  line-height: 1.05;
}
body.gd-2026 .hero-card-rating .rating-num .sub-frac { font-size: 14px; color: var(--ink-3h); }
body.gd-2026 .hero-card-rating .rating-sub {
  font-size: 10.5px;
  color: var(--terra-500);
  letter-spacing: 0.05em;
}
body.gd-2026 .hero-card-years { bottom: 18px; left: 18px; }
body.gd-2026 .hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest-700);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
body.gd-2026 .hero-card-rating .hero-card-icon {
  background: var(--terra-50);
  color: var(--terra-500);
  width: 30px;
  height: 30px;
}
body.gd-2026 .hero-card-years .years-num { font-weight: 700; }
body.gd-2026 .hero-card-years .years-sub { color: var(--ink-3h); font-size: 11px; }

/* ── Trust strip ── */
body.gd-2026 .trust-strip {
  background: var(--forest-700);
  color: #fff;
}
body.gd-2026 .trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 720px) {
  body.gd-2026 .trust-strip-inner { grid-template-columns: repeat(4, 1fr); }
}
body.gd-2026 .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.gd-2026 .trust-item:last-child { border-right: none; }
@media (min-width: 720px) {
  body.gd-2026 .trust-item { border-bottom: none; padding: 18px 20px; }
  body.gd-2026 .trust-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  body.gd-2026 .trust-item:last-child { border-right: none; }
}
body.gd-2026 .trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  flex-shrink: 0;
}
body.gd-2026 .trust-text .t1 { font-size: 13px; font-weight: 600; color: #fff; }
body.gd-2026 .trust-text .t2 { font-size: 11.5px; color: rgba(255,255,255,0.65); }

/* ── Best-sellers / nouveautés band ── */
body.gd-2026 .h-bestsellers { background: var(--cream-2h); padding: clamp(36px, 5vw, 64px) 0; }
body.gd-2026 .h-newrow { background: var(--cream-2h); padding: clamp(36px, 5vw, 64px) 0; }

body.gd-2026 .product-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
body.gd-2026 .product-row::-webkit-scrollbar { display: none; }
body.gd-2026 .product-row > * { flex: 0 0 78%; max-width: 280px; scroll-snap-align: start; }
@media (min-width: 640px) { body.gd-2026 .product-row > * { flex: 0 0 44%; } }
@media (min-width: 900px) {
  body.gd-2026 .product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-bottom: 0;
  }
  body.gd-2026 .product-row > * { flex: initial; max-width: none; }
}

/* ── Product card (home) ── */
body.gd-2026 .h-card {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
body.gd-2026 .h-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md-h);
  border-color: var(--line-h);
}
body.gd-2026 .h-card .h-card-media {
  aspect-ratio: 1 / 1;
  position: relative;
  background: linear-gradient(135deg, #F5EFE2 0%, #EBE3D0 100%);
  overflow: hidden;
  display: block;
}
body.gd-2026 .h-card .h-card-media img,
body.gd-2026 .h-card .h-card-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.gd-2026 .h-card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  z-index: 2;
}
body.gd-2026 .h-card-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
body.gd-2026 .h-card-badge.new { background: var(--forest-700); }
body.gd-2026 .h-card-badge.best { background: var(--ochre-500); }
body.gd-2026 .h-card-badge.promo { background: var(--terra-500); }

body.gd-2026 .h-card-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  color: var(--ink-2h);
  border: none;
  cursor: pointer;
  z-index: 2;
}
body.gd-2026 .h-card-fav:hover { color: var(--terra-500); }

/* "Voir le produit" hover pill */
body.gd-2026 .h-card-quick {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  background: var(--ink-h);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--font-sans-h);
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  z-index: 2;
}
body.gd-2026 .h-card:hover .h-card-quick { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  body.gd-2026 .h-card-quick { opacity: 1; transform: none; }
}

body.gd-2026 .h-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
body.gd-2026 .h-card-cat {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3h);
  font-weight: 600;
}
body.gd-2026 .h-card-name {
  font-family: var(--font-sans-h);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink-h);
  margin: 0;
  text-wrap: pretty;
}
body.gd-2026 .h-card-name a { color: inherit; text-decoration: none; }
body.gd-2026 .h-card-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--ink-3h);
}
body.gd-2026 .h-card-stars .stars-glyph {
  color: var(--ochre-500);
  letter-spacing: 1px;
  font-size: 12px;
}
body.gd-2026 .h-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
  gap: 8px;
}
body.gd-2026 .h-price { font-size: 17px; font-weight: 600; color: var(--ink-h); }
body.gd-2026 .h-price .h-unit { font-size: 11px; color: var(--ink-3h); font-weight: 500; margin-left: 2px; }
body.gd-2026 .h-price-old { font-size: 12px; color: var(--ink-3h); text-decoration: line-through; margin-left: 6px; font-weight: 500; }
body.gd-2026 .h-card-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest-700);
  color: #fff;
  display: grid; place-items: center;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
body.gd-2026 .h-card-add:hover { background: var(--forest-600); transform: scale(1.05); }

/* ── Category tiles ── */
body.gd-2026 .h-cat-section {
  background: var(--cream-h);
  padding: clamp(36px, 5vw, 64px) 0;
}
body.gd-2026 .cat-tiles {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { body.gd-2026 .cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { body.gd-2026 .cat-tiles { grid-template-columns: repeat(5, 1fr); gap: 14px; } }

body.gd-2026 .cat-tile {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-lg-h);
  overflow: hidden;
  background: linear-gradient(160deg, var(--c1, #F0E6D0) 0%, var(--c2, #D8C9A4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  transition: transform .2s, box-shadow .2s;
  color: var(--ink-h);
  text-decoration: none;
  isolation: isolate;
}
body.gd-2026 .cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md-h); }
body.gd-2026 .cat-tile-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
body.gd-2026 .cat-tile-img picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
body.gd-2026 .cat-tile-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .4s ease;
}
body.gd-2026 .cat-tile:hover .cat-tile-img img { transform: scale(1.05); }
body.gd-2026 .cat-tile .cat-tile-icon {
  position: relative;
  z-index: 1;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  font-size: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
/* When the tile has an image, lift the bottom text into a clean white pill — no dark overlay. */
body.gd-2026 .cat-tile .cat-tile-foot {
  position: relative;
  z-index: 1;
}
body.gd-2026 .cat-tile:has(.cat-tile-img) .cat-tile-foot {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 4px 12px rgba(20,30,20,0.08);
}
body.gd-2026 .cat-tile .cat-tile-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
body.gd-2026 .cat-tile .cat-tile-name {
  font-family: var(--font-display-h);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink-h);
}
/* Show long names on tablet/desktop, short names on phones */
body.gd-2026 .cat-tile-name-short { display: none; }
@media (max-width: 600px) {
  body.gd-2026 .cat-tile-name-long  { display: none; }
  body.gd-2026 .cat-tile-name-short { display: inline; }
}
body.gd-2026 .cat-tile .cat-tile-count {
  font-size: 11px;
  color: rgba(26,26,20,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.gd-2026 .cat-tile .cat-tile-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink-h);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s;
}
body.gd-2026 .cat-tile:hover .cat-tile-arrow { transform: translateX(3px); }

/* ── Story band ── */
body.gd-2026 .h-story {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--cream-h);
}
body.gd-2026 .story-grid {
  display: grid;
  gap: clamp(20px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { body.gd-2026 .story-grid { grid-template-columns: 1fr 1fr; } }
body.gd-2026 .story-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl-h);
  background: linear-gradient(160deg, #C5A05C 0%, #8B6633 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md-h);
}
body.gd-2026 .story-visual picture,
body.gd-2026 .story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
body.gd-2026 .story-stat {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--cream-h);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm-h);
}
body.gd-2026 .story-stat .num {
  font-family: var(--font-display-h);
  font-size: 26px;
  color: var(--forest-700);
  line-height: 1;
}
body.gd-2026 .story-stat .lbl { font-size: 11px; color: var(--ink-3h); }
body.gd-2026 .h-values {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { body.gd-2026 .h-values { grid-template-columns: 1fr 1fr; } }
body.gd-2026 .h-value {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--cream-2h);
  border-radius: var(--r-md-h);
}
body.gd-2026 .h-value-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest-50);
  color: var(--forest-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
body.gd-2026 .h-value h4 {
  font-family: var(--font-sans-h);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  letter-spacing: 0;
  color: var(--ink-h);
}
body.gd-2026 .h-value p { margin: 0; font-size: 12.5px; color: var(--ink-2h); line-height: 1.4; }

/* ── Reviews ── */
body.gd-2026 .h-reviews { padding: clamp(36px, 5vw, 64px) 0; background: var(--cream-h); }
body.gd-2026 .review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { body.gd-2026 .review-grid { grid-template-columns: repeat(3, 1fr); } }
body.gd-2026 .h-review {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: 20px;
}
body.gd-2026 .h-review .stars-glyph { color: var(--ochre-500); letter-spacing: 1px; font-size: 14px; }
body.gd-2026 .h-review p {
  margin: 12px 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-h);
}
body.gd-2026 .h-review .who { display: flex; align-items: center; gap: 10px; }
body.gd-2026 .h-review .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochre-100), var(--terra-100));
  display: grid; place-items: center;
  font-family: var(--font-display-h);
  font-size: 14px;
  color: var(--forest-700);
  font-weight: 600;
}
body.gd-2026 .h-review .who-name { font-size: 13px; font-weight: 600; }
body.gd-2026 .h-review .who-meta { font-size: 11.5px; color: var(--ink-3h); }

/* ── Newsletter ── */
body.gd-2026 .h-newsletter {
  padding: clamp(36px, 5vw, 64px) 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(208,143,42,0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--forest-900) 0%, #1B4030 100%);
  color: #F2E9D2;
}
body.gd-2026 .h-newsletter-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { body.gd-2026 .h-newsletter-grid { grid-template-columns: 1fr 1fr; } }
body.gd-2026 .h-newsletter h2 { color: #fff; }
body.gd-2026 .h-newsletter .h-eyebrow { color: var(--ochre-500); }
body.gd-2026 .h-newsletter p { color: #B0AB97; margin-top: 10px; max-width: 42ch; }
body.gd-2026 .h-newsletter .code {
  background: rgba(208,143,42,0.22);
  border: 1px dashed rgba(245,228,194,0.55);
  color: var(--ochre-100);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
}
body.gd-2026 .h-newsletter form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}
body.gd-2026 .h-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  padding: 10px 16px;
  outline: none;
}
body.gd-2026 .h-newsletter input::placeholder { color: rgba(255,255,255,0.45); }

/* ── WhatsApp FAB override (match design) ── */
body.gd-2026 .wa-float {
  bottom: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,0.55), 0 4px 10px rgba(0,0,0,0.08);
}
body.gd-2026 .wa-float:hover { transform: scale(1.06); }

/* ════════════════════════════════════════════════════════════
   SHARED — site-wide redesign chrome
   ════════════════════════════════════════════════════════════ */

/* Smooth crumbs */
body.gd-2026 .crumbs { font-size: 12px; color: var(--ink-3h); margin-bottom: 12px; }
body.gd-2026 .crumbs a { color: var(--ink-3h); }
body.gd-2026 .crumbs a:hover { color: var(--forest-700); }
body.gd-2026 .crumbs .sep { padding: 0 6px; opacity: 0.5; }

/* Generic standalone section eyebrow + section-link reuse */
body.gd-2026 .muted { color: var(--ink-3h); }
body.gd-2026 .stars-glyph { color: var(--ochre-500); letter-spacing: 1px; font-size: 12px; }

/* ════════════════════════════════════════════════════════════
   CATEGORY RAIL (used on shop & category)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .cat-rail {
  background: var(--cream-h);
  border-bottom: 1px solid var(--line-2h);
  position: relative;
  z-index: 5;
}
body.gd-2026 .cat-rail-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px var(--gutter, 16px);
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  max-width: 1320px;
  margin: 0 auto;
}
body.gd-2026 .cat-rail-scroll::-webkit-scrollbar { display: none; }
body.gd-2026 .cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: var(--paper);
  border: 1px solid var(--line-h);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: border-color .15s, background .15s, color .15s;
  color: var(--ink-h);
  text-decoration: none;
}
body.gd-2026 .cat-chip:hover { border-color: var(--forest-700); color: var(--ink-h); }
body.gd-2026 .cat-chip.active { background: var(--forest-700); color: #fff; border-color: var(--forest-700); }
body.gd-2026 .cat-chip .chip-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest-50);
  display: grid; place-items: center;
  font-size: 13px;
}
body.gd-2026 .cat-chip.active .chip-icon { background: rgba(255,255,255,0.18); }
body.gd-2026 .cat-chip .count {
  font-size: 11px;
  color: var(--ink-3h);
  margin-left: 2px;
}
body.gd-2026 .cat-chip.active .count { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════════════════════
   SHOP page
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .shop-head {
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(12px, 2vw, 20px);
  background: var(--cream-h);
}
body.gd-2026 .shop-head h1 {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  color: var(--ink-h);
  margin: 0;
}
body.gd-2026 .shop-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
body.gd-2026 .shop-meta .count { font-size: 13px; color: var(--ink-3h); }

body.gd-2026 .shop-layout {
  display: grid;
  gap: 24px;
  padding: clamp(16px, 3vw, 24px) 0 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  body.gd-2026 .shop-layout { grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
}

body.gd-2026 .filters {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: 18px;
  display: none;
}
@media (min-width: 960px) {
  body.gd-2026 .filters {
    display: block;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}
body.gd-2026 .filter-group { padding: 12px 0; border-bottom: 1px solid var(--line-2h); }
body.gd-2026 .filter-group:last-child { border-bottom: none; }
body.gd-2026 .filter-group:first-child { padding-top: 0; }
body.gd-2026 .filter-group h4 {
  font-family: var(--font-sans-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3h);
  margin: 0 0 12px;
}
body.gd-2026 .filter-cats { display: flex; flex-direction: column; gap: 2px; }
body.gd-2026 .filter-cats a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink-2h);
  transition: background .12s, color .12s;
}
body.gd-2026 .filter-cats a:hover { background: var(--cream-h); color: var(--ink-h); }
body.gd-2026 .filter-cats a.active { background: var(--forest-50); color: var(--forest-700); font-weight: 600; }
body.gd-2026 .filter-cats .ct { font-size: 11px; color: var(--ink-3h); }

body.gd-2026 .checkbox-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 13.5px; cursor: pointer;
  color: var(--ink-2h);
}
body.gd-2026 .checkbox-row input { accent-color: var(--forest-700); width: 16px; height: 16px; }
body.gd-2026 .checkbox-row .ct { margin-left: auto; font-size: 11px; color: var(--ink-3h); }

body.gd-2026 .shop-toolbar {
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 16px;
}
body.gd-2026 .search-input {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line-h);
  border-radius: 999px; padding: 8px 14px;
  flex: 1; min-width: 0; max-width: 360px;
}
body.gd-2026 .search-input input {
  border: none; background: transparent; outline: none; font: inherit;
  flex: 1; min-width: 0; color: var(--ink-h);
}
body.gd-2026 .search-input svg { color: var(--ink-3h); flex-shrink: 0; }

body.gd-2026 .sort-select {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper); border: 1px solid var(--line-h);
  border-radius: 999px; padding: 8px 14px;
  font-size: 13px; cursor: pointer; color: var(--ink-h);
}
body.gd-2026 .sort-select select {
  border: none; background: transparent; font: inherit;
  outline: none; color: var(--ink-h); font-weight: 600;
}

body.gd-2026 .filter-btn-mobile {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line-h);
  border-radius: 999px; padding: 8px 14px; font-size: 13px;
  color: var(--ink-h); cursor: pointer;
}
@media (min-width: 960px) { body.gd-2026 .filter-btn-mobile { display: none; } }

body.gd-2026 .active-filters { display: flex; gap: 6px; flex-wrap: wrap; }
body.gd-2026 .active-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 4px 4px 11px;
  background: var(--forest-50);
  color: var(--forest-700);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  text-decoration: none;
}
body.gd-2026 .active-pill .x {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--forest-700); color: #fff;
  display: grid; place-items: center; font-size: 10px;
}

body.gd-2026 .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { body.gd-2026 .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 960px) { body.gd-2026 .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { body.gd-2026 .product-grid { grid-template-columns: repeat(4, 1fr); } }

body.gd-2026 .empty-state {
  padding: 60px 0; text-align: center;
  color: var(--ink-3h); grid-column: 1 / -1;
}

body.gd-2026 .pagination {
  display: flex; gap: 6px; justify-content: center; margin-top: 32px;
}
body.gd-2026 .pagination a, body.gd-2026 .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--line-h); border-radius: 999px;
  font-size: 13px; color: var(--ink-2h);
  background: var(--paper);
  text-decoration: none;
}
body.gd-2026 .pagination a:hover { border-color: var(--forest-700); color: var(--ink-h); }
body.gd-2026 .pagination .current { background: var(--forest-700); color: #fff; border-color: var(--forest-700); }
body.gd-2026 .pagination .disabled { opacity: 0.4; pointer-events: none; }

/* ════════════════════════════════════════════════════════════
   CATEGORY page
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .cat-hero {
  padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 32px);
  background: linear-gradient(180deg, var(--cream-2h) 0%, var(--cream-h) 100%);
  position: relative;
  overflow: hidden;
}
body.gd-2026 .cat-hero-inner { position: relative; z-index: 2; }
body.gd-2026 .cat-hero h1 {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  max-width: 16ch;
  margin: 8px 0 14px;
  color: var(--ink-h);
}
body.gd-2026 .cat-hero p { color: var(--ink-2h); max-width: 50ch; font-size: 15px; margin: 0; }
body.gd-2026 .cat-hero-leaves {
  position: absolute;
  top: -20%; right: -8%;
  width: 380px;
  opacity: 0.08;
  transform: rotate(15deg);
  pointer-events: none;
}
body.gd-2026 .cat-hero-stats { display: flex; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
body.gd-2026 .cat-hero-stat {
  background: rgba(255,255,255,0.6);
  padding: 10px 16px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.5);
}
body.gd-2026 .cat-hero-stat .n { font-family: var(--font-display-h); font-size: 22px; color: var(--forest-700); line-height: 1; }
body.gd-2026 .cat-hero-stat .l { font-size: 11px; color: var(--ink-3h); margin-top: 2px; letter-spacing: 0.04em; }

body.gd-2026 .cat-list { padding: clamp(36px, 5vw, 56px) 0 32px; }
body.gd-2026 .cat-list-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { body.gd-2026 .cat-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { body.gd-2026 .cat-list-grid { grid-template-columns: repeat(3, 1fr); } }

body.gd-2026 .cat-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink-h);
  /* Override legacy styles.css that set aspect-ratio:1 + dark scrim on .cat-card */
  aspect-ratio: auto;
  cursor: pointer;
}
body.gd-2026 .cat-card::after { content: none !important; display: none !important; }
body.gd-2026 .cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md-h); }
body.gd-2026 .cat-card-media {
  aspect-ratio: 16 / 9;
  background: var(--cream-2h);
  position: relative;
  display: grid; place-items: center;
  font-size: 52px;
  overflow: hidden;
}
body.gd-2026 .cat-card-media:has(img) { background: transparent; }
body.gd-2026 .cat-card-media picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
body.gd-2026 .cat-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
body.gd-2026 .cat-card-media .emoji {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  font-size: 64px;
  position: relative;
  z-index: 1;
}
body.gd-2026 .cat-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
body.gd-2026 .cat-card-body .ct { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--terra-500); }
body.gd-2026 .cat-card-body h3 { font-family: var(--font-display-h); font-size: 22px; margin: 0; font-weight: 400; letter-spacing: -0.01em; color: var(--ink-h); }
body.gd-2026 .cat-card-body p {
  color: var(--ink-2h); font-size: 13.5px; line-height: 1.45;
  margin: 0 0 auto; padding-bottom: 8px;
}
body.gd-2026 .cat-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--line-2h);
}
body.gd-2026 .cat-card-foot .link {
  font-size: 13px; font-weight: 600;
  color: var(--forest-700);
  display: inline-flex; align-items: center; gap: 6px;
}
body.gd-2026 .cat-card-foot .from { font-size: 12px; color: var(--ink-3h); }
body.gd-2026 .cat-card-foot .from b { color: var(--ink-h); font-weight: 600; }

body.gd-2026 .cat-single { padding: clamp(32px, 5vw, 48px) 0 64px; }
body.gd-2026 .cat-single-head {
  display: flex; gap: 16px; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 20px;
}

/* ════════════════════════════════════════════════════════════
   PRODUCT page
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .product-hero {
  padding-top: clamp(16px, 3vw, 28px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
body.gd-2026 .product-grid-main {
  display: grid;
  gap: clamp(20px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { body.gd-2026 .product-grid-main { grid-template-columns: 1.05fr 1fr; } }

body.gd-2026 .gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 80px 1fr;
}
@media (max-width: 600px) {
  body.gd-2026 .gallery { grid-template-columns: 1fr; }
  body.gd-2026 .gallery .thumbs { order: 2; display: flex !important; flex-direction: row !important; overflow-x: auto; padding-bottom: 4px; }
  body.gd-2026 .gallery .thumbs::-webkit-scrollbar { display: none; }
  body.gd-2026 .gallery .thumb { flex: 0 0 64px; }
}
body.gd-2026 .thumbs { display: flex; flex-direction: column; gap: 8px; }
body.gd-2026 .thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md-h);
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(160deg, var(--c1, #F0E6D0) 0%, var(--c2, #D8C9A4) 100%);
  cursor: pointer;
  position: relative;
  transition: border-color .15s;
}
body.gd-2026 .thumb.active { border-color: var(--forest-700); }
body.gd-2026 .thumb img, body.gd-2026 .thumb picture { width: 100%; height: 100%; object-fit: cover; }

body.gd-2026 .main-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl-h);
  overflow: hidden;
  background: linear-gradient(160deg, var(--c1, #F0E6D0) 0%, var(--c2, #D8C9A4) 100%);
  position: relative;
  box-shadow: var(--shadow-md-h);
}
body.gd-2026 .main-image img,
body.gd-2026 .main-image picture { width: 100%; height: 100%; object-fit: cover; display: block; }
body.gd-2026 .main-image .badge-pos {
  position: absolute; top: 16px; left: 16px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}

body.gd-2026 .p-cat {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra-500); font-weight: 600;
}
body.gd-2026 .p-name {
  font-family: var(--font-sans-h);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  color: var(--ink-h);
}
body.gd-2026 .p-rating-row {
  display: flex; align-items: center; gap: 14px; margin-top: 12px;
  flex-wrap: wrap; font-size: 13px;
}
body.gd-2026 .p-rating-row .stars-glyph { font-size: 15px; }
body.gd-2026 .p-rating-row a { color: var(--forest-700); text-decoration: underline; }

body.gd-2026 .p-price-block {
  margin-top: 22px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
}
body.gd-2026 .p-price { font-family: var(--font-sans-h); font-weight: 700; font-size: 32px; color: var(--ink-h); line-height: 1; letter-spacing: -0.02em; }
body.gd-2026 .p-price .dh { font-size: 16px; font-weight: 600; color: var(--ink-2h); margin-left: 4px; }
body.gd-2026 .p-price-old { font-size: 16px; color: var(--ink-3h); text-decoration: line-through; margin-left: 10px; }
body.gd-2026 .p-promo-bar {
  margin-top: 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--terra-600);
}
body.gd-2026 .p-promo-bar b { color: var(--ink-h); }
body.gd-2026 .p-stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--forest-700); font-weight: 500;
  margin-top: 8px;
}
body.gd-2026 .p-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: #2D9A56; box-shadow: 0 0 0 4px rgba(45,154,86,0.18); }
body.gd-2026 .p-stock.out { color: var(--terra-600); }
body.gd-2026 .p-stock.out .dot { background: var(--terra-500); box-shadow: 0 0 0 4px rgba(212,93,61,0.18); }

body.gd-2026 .variants { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
body.gd-2026 .variant {
  padding: 10px 14px;
  border: 1px solid var(--line-h);
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  background: var(--paper);
  color: var(--ink-h);
  transition: border-color .15s, background .15s;
}
body.gd-2026 .variant.active { border-color: var(--forest-700); background: var(--forest-50); color: var(--forest-700); font-weight: 600; }

body.gd-2026 .add-row { display: flex; gap: 10px; margin-top: 18px; }
body.gd-2026 .qty {
  display: flex; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-h);
  border-radius: 999px;
  overflow: hidden;
}
body.gd-2026 .qty button { width: 44px; height: 48px; font-size: 18px; color: var(--ink-2h); background: transparent; border: none; cursor: pointer; }
body.gd-2026 .qty button:hover { background: var(--cream-h); color: var(--ink-h); }
body.gd-2026 .qty input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  outline: none;
  color: var(--ink-h);
}
body.gd-2026 .add-row .h-btn { flex: 1; height: 48px; }

body.gd-2026 .wa-row {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  background: #1A5631;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
body.gd-2026 .wa-row:hover { background: #154824; }

body.gd-2026 .trust-mini {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
body.gd-2026 .trust-mini-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px;
  background: var(--cream-2h);
  border-radius: var(--r-md-h);
  font-size: 12.5px;
  color: var(--ink-2h);
}
body.gd-2026 .trust-mini-item svg { color: var(--forest-700); flex-shrink: 0; }
body.gd-2026 .trust-mini-item b { display: block; font-size: 13px; font-weight: 600; color: var(--ink-h); }
body.gd-2026 .trust-mini-item span { color: var(--ink-3h); }

body.gd-2026 .tabs {
  margin-top: 32px;
  border-top: 1px solid var(--line-2h);
  padding-top: 24px;
}
body.gd-2026 .tab-heads { display: flex; gap: 0; border-bottom: 1px solid var(--line-2h); flex-wrap: wrap; }
body.gd-2026 .tab-heads button {
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3h);
  border: none;
  border-bottom: 2px solid transparent;
  margin-right: 20px;
  background: transparent;
  cursor: pointer;
}
body.gd-2026 .tab-heads button.active { color: var(--ink-h); border-bottom-color: var(--forest-700); font-weight: 600; }
body.gd-2026 .tab-body {
  padding: 20px 0;
  font-size: 14px;
  color: var(--ink-2h);
  line-height: 1.6;
}
body.gd-2026 .tab-body ul { padding-left: 18px; }
body.gd-2026 .tab-body li { margin-bottom: 4px; }
body.gd-2026 .tab-pane { display: none; }
body.gd-2026 .tab-pane.active { display: block; }

body.gd-2026 .related { padding: clamp(36px, 5vw, 56px) 0; background: var(--cream-2h); }
body.gd-2026 .review-summary {
  margin-top: 32px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { body.gd-2026 .review-summary { grid-template-columns: 200px 1fr; } }
body.gd-2026 .review-summary .big { text-align: center; }
body.gd-2026 .review-summary .big .n {
  font-family: var(--font-display-h);
  font-size: 56px;
  color: var(--ink-h);
  line-height: 1;
}
body.gd-2026 .review-summary .big .stars-glyph { font-size: 18px; }
body.gd-2026 .review-summary .big .total { color: var(--ink-3h); font-size: 12px; margin-top: 6px; }
body.gd-2026 .review-bars { display: flex; flex-direction: column; gap: 6px; }
body.gd-2026 .review-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-3h);
}
body.gd-2026 .review-bar .label { width: 38px; }
body.gd-2026 .review-bar .track { flex: 1; height: 6px; background: var(--line-2h); border-radius: 999px; overflow: hidden; }
body.gd-2026 .review-bar .fill { height: 100%; background: var(--ochre-500); }
body.gd-2026 .review-bar .count { width: 26px; text-align: right; }

/* ════════════════════════════════════════════════════════════
   ABOUT page
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .ab-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 48px);
  text-align: center;
  background: var(--cream-h);
  position: relative;
  overflow: hidden;
}
body.gd-2026 .ab-hero .container { position: relative; z-index: 2; }
body.gd-2026 .ab-hero h1 {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.04;
  max-width: 18ch;
  margin: 14px auto 0;
  color: var(--ink-h);
}
body.gd-2026 .ab-hero h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .ab-hero p {
  color: var(--ink-2h); max-width: 50ch; margin: 18px auto 0;
  font-size: 15px; line-height: 1.55;
}
body.gd-2026 .ab-leaves-pattern {
  position: absolute;
  left: 50%; bottom: -40px;
  transform: translateX(-50%);
  width: 60%;
  max-width: 480px;
  opacity: 0.07;
  pointer-events: none;
}

body.gd-2026 .ab-story {
  background: var(--cream-2h);
  padding: clamp(40px, 6vw, 72px) 0;
}
body.gd-2026 .ab-story-grid {
  display: grid;
  gap: clamp(20px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { body.gd-2026 .ab-story-grid { grid-template-columns: 1fr 1fr; } }
body.gd-2026 .ab-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl-h);
  overflow: hidden;
  background: linear-gradient(160deg, #C5A05C 0%, #8B6633 100%);
  position: relative;
  box-shadow: var(--shadow-md-h);
}
body.gd-2026 .ab-img img,
body.gd-2026 .ab-img picture { width: 100%; height: 100%; object-fit: cover; display: block; }
body.gd-2026 .ab-img .stat {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm-h);
}
body.gd-2026 .ab-img .stat .n { font-family: var(--font-display-h); font-size: 22px; color: var(--forest-700); line-height: 1; }
body.gd-2026 .ab-img .stat .l { font-size: 11px; color: var(--ink-3h); }

body.gd-2026 .ab-values { padding: clamp(40px, 6vw, 72px) 0; background: var(--cream-h); }
body.gd-2026 .ab-values .center { text-align: center; }
body.gd-2026 .ab-values h2 { font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.015em; }
body.gd-2026 .ab-values h2 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .ab-values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 720px) { body.gd-2026 .ab-values-grid { grid-template-columns: repeat(3, 1fr); } }
body.gd-2026 .ab-value {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: 28px 24px;
  text-align: center;
}
body.gd-2026 .ab-value .ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ochre-50);
  color: var(--ochre-600);
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
body.gd-2026 .ab-value h3 { font-family: var(--font-display-h); font-size: 22px; margin: 0 0 8px; font-weight: 400; color: var(--ink-h); }
body.gd-2026 .ab-value p { color: var(--ink-2h); font-size: 13.5px; line-height: 1.5; margin: 0; }

body.gd-2026 .ab-timeline { padding: clamp(40px, 6vw, 72px) 0; background: var(--cream-2h); }
body.gd-2026 .ab-timeline .center { text-align: center; }
body.gd-2026 .ab-timeline h2 { font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.015em; }
body.gd-2026 .ab-timeline h2 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .timeline {
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.gd-2026 .tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px;
  background: var(--paper);
  border-radius: var(--r-lg-h);
  border: 1px solid var(--line-2h);
}
body.gd-2026 .tl-year { font-family: var(--font-display-h); font-size: 32px; color: var(--forest-700); line-height: 1; }
body.gd-2026 .tl-content h4 { font-family: var(--font-sans-h); font-size: 14px; font-weight: 600; margin: 0 0 4px; letter-spacing: 0; color: var(--ink-h); }
body.gd-2026 .tl-content p { color: var(--ink-2h); font-size: 13.5px; margin: 0; }

body.gd-2026 .ab-cta {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(208,143,42,0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--forest-900) 0%, #1B4030 100%);
  color: #F2E9D2;
}
body.gd-2026 .ab-cta h2 {
  color: #fff;
  font-family: var(--font-display-h);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px auto 18px;
  max-width: 24ch;
}
body.gd-2026 .ab-cta h2 em { font-style: italic; color: var(--ochre-500); font-weight: 400; }
body.gd-2026 .ab-cta p { color: rgba(255,255,255,0.7); max-width: 44ch; margin: 0 auto 24px; }
body.gd-2026 .ab-cta .h-eyebrow { color: var(--ochre-500); }

/* ════════════════════════════════════════════════════════════
   CONTACT page
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .contact-hero {
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
  text-align: center;
  background: var(--cream-h);
}
body.gd-2026 .contact-hero h1 {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  max-width: 18ch;
  margin: 12px auto 0;
  color: var(--ink-h);
}
body.gd-2026 .contact-hero h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .contact-hero p { color: var(--ink-2h); max-width: 48ch; margin: 16px auto 0; }

body.gd-2026 .contact-body { background: var(--cream-2h); padding: clamp(36px, 5vw, 56px) 0; }
body.gd-2026 .contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { body.gd-2026 .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 24px; } }

body.gd-2026 .contact-card {
  background: var(--paper);
  border-radius: var(--r-lg-h);
  padding: 24px;
}
body.gd-2026 .contact-card h2 { font-family: var(--font-display-h); font-size: 24px; font-weight: 400; color: var(--ink-h); margin: 0; }
body.gd-2026 .contact-card .sub { font-size: 13px; color: var(--ink-3h); margin: 4px 0 0; }

body.gd-2026 .contact-items { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
body.gd-2026 .contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: var(--r-md-h);
  transition: background .15s;
  color: var(--ink-h);
  text-decoration: none;
}
body.gd-2026 .contact-item:hover { background: var(--cream-h); }
body.gd-2026 .contact-item .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ochre-50);
  color: var(--ochre-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
body.gd-2026 .contact-item .lbl {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3h); font-weight: 600;
}
body.gd-2026 .contact-item .val { font-size: 15px; color: var(--ink-h); margin-top: 2px; }
body.gd-2026 .contact-item .val a { color: var(--forest-700); }
body.gd-2026 .contact-item .val a:hover { text-decoration: underline; }

body.gd-2026 .wa-promo {
  margin-top: 20px;
  background: var(--forest-900);
  color: #fff;
  border-radius: var(--r-lg-h);
  padding: 24px;
}
body.gd-2026 .wa-promo h3 { color: #fff; font-family: var(--font-display-h); font-size: 22px; font-weight: 400; margin: 0; }
body.gd-2026 .wa-promo p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-top: 8px; }
body.gd-2026 .wa-promo .h-btn {
  background: #25D366;
  color: #fff;
  margin-top: 16px;
  width: 100%;
  padding: 14px;
}
body.gd-2026 .wa-promo .h-btn:hover { background: #1FB852; }

body.gd-2026 .gd-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { body.gd-2026 .gd-form-grid { grid-template-columns: 1fr 1fr; } }
body.gd-2026 .gd-field { display: flex; flex-direction: column; }
body.gd-2026 .gd-field label {
  font-size: 12px; font-weight: 500; color: var(--ink-2h);
  margin-bottom: 6px;
}
body.gd-2026 .gd-field label .req { color: var(--terra-500); }
body.gd-2026 .gd-field input,
body.gd-2026 .gd-field textarea,
body.gd-2026 .gd-field select {
  font: inherit; font-size: 14.5px;
  background: var(--cream-h);
  border: 1px solid var(--line-h);
  border-radius: var(--r-md-h);
  padding: 12px 14px;
  outline: none;
  color: var(--ink-h);
  transition: border-color .15s, background .15s;
}
body.gd-2026 .gd-field input:focus,
body.gd-2026 .gd-field textarea:focus {
  border-color: var(--forest-700);
  background: var(--paper);
}
body.gd-2026 .gd-field textarea { resize: vertical; min-height: 120px; }
body.gd-2026 .gd-field-full { grid-column: 1 / -1; }

body.gd-2026 .topic-pills { display: flex; gap: 6px; flex-wrap: wrap; }
body.gd-2026 .topic-pill {
  padding: 8px 14px;
  border: 1px solid var(--line-h);
  border-radius: 999px;
  font-size: 12.5px;
  background: var(--cream-h);
  cursor: pointer;
  transition: all .15s;
  color: var(--ink-h);
}
body.gd-2026 .topic-pill.active { background: var(--forest-700); color: #fff; border-color: var(--forest-700); }

body.gd-2026 .map-band {
  background: linear-gradient(160deg, #C5A05C 0%, #5E4E2C 100%);
  aspect-ratio: 16 / 6;
  border-radius: var(--r-lg-h);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
body.gd-2026 .map-band .ph {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em; text-transform: uppercase;
}
body.gd-2026 .map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  background: var(--terra-500);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
body.gd-2026 .map-pin::after {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream-h);
}

/* ════════════════════════════════════════════════════════════
   CART page (/panier)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .cart-page { padding: clamp(20px, 3vw, 32px) 0 clamp(40px, 6vw, 64px); background: var(--cream-h); min-height: 60vh; }
body.gd-2026 .cart-head { margin: 14px 0 24px; }
body.gd-2026 .cart-head h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.025em;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; color: var(--ink-h); margin: 0;
}
body.gd-2026 .cart-head h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .cart-head p { margin: 6px 0 0; font-size: 14px; }

/* Empty state */
body.gd-2026 .cart-empty {
  padding: 80px 24px; text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-xl-h);
}
body.gd-2026 .cart-empty svg { color: var(--line-h); margin: 0 auto 16px; display: block; }
body.gd-2026 .cart-empty h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin: 0 0 8px; color: var(--ink-h); }
body.gd-2026 .cart-empty p { color: var(--ink-2h); margin: 0 0 24px; }

/* Free-shipping bar */
body.gd-2026 .cart-ship-bar {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-md-h);
  padding: 14px 18px;
  margin-bottom: 20px;
}
body.gd-2026 .cart-ship-bar p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: var(--ink-2h);
  display: inline-flex; align-items: center; gap: 6px;
}
body.gd-2026 .cart-ship-bar p strong { color: var(--ink-h); font-weight: 600; }
body.gd-2026 .cart-ship-bar p svg { color: var(--forest-700); }
body.gd-2026 .cart-ship-bar .progress-track {
  height: 6px; background: var(--cream-2h); border-radius: 999px; overflow: hidden;
}
body.gd-2026 .cart-ship-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ochre-500) 0%, var(--terra-500) 100%);
  border-radius: 999px; transition: width .35s ease;
}
body.gd-2026 .cart-ship-bar.is-unlocked .progress-fill { background: var(--forest-700); }

/* Layout: items + summary */
body.gd-2026 .cart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 880px) {
  body.gd-2026 .cart-grid { grid-template-columns: 1.6fr 1fr; gap: 28px; }
}

body.gd-2026 .cart-list { display: flex; flex-direction: column; gap: 12px; }

body.gd-2026 .cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  align-items: center;
}
body.gd-2026 .cart-item-thumb {
  width: 96px; height: 96px;
  border-radius: var(--r-md-h);
  overflow: hidden;
  background: var(--cream-2h);
  flex-shrink: 0;
  display: block;
}
body.gd-2026 .cart-item-thumb picture,
body.gd-2026 .cart-item-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
body.gd-2026 .cart-item-info { min-width: 0; }
body.gd-2026 .cart-item-name {
  font-family: var(--font-sans-h);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--ink-h);
}
body.gd-2026 .cart-item-name a { color: inherit; text-decoration: none; }
body.gd-2026 .cart-item-name a:hover { color: var(--forest-700); }
body.gd-2026 .cart-item-meta { font-size: 12.5px; color: var(--ink-3h); margin-bottom: 10px; }

body.gd-2026 .cart-item .qty-mini {
  display: inline-flex; align-items: center;
  background: var(--cream-h);
  border: 1px solid var(--line-h);
  border-radius: 999px;
  overflow: hidden;
  width: max-content;
}
body.gd-2026 .cart-item .qty-mini button {
  width: 32px; height: 32px;
  background: transparent; border: none; color: var(--ink-2h); font-size: 15px; cursor: pointer;
  transition: background .15s;
}
body.gd-2026 .cart-item .qty-mini button:hover { background: rgba(20,30,20,0.06); color: var(--ink-h); }
body.gd-2026 .cart-item .qty-mini input {
  width: 32px; text-align: center; border: none; background: transparent;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-h); outline: none; padding: 0;
}

body.gd-2026 .cart-item-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
body.gd-2026 .cart-item-price {
  font-family: var(--font-display-h); font-size: 20px; color: var(--ink-h); font-weight: 500;
  letter-spacing: -0.01em;
}
body.gd-2026 .cart-item-remove {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink-3h);
  background: transparent; border: none; cursor: pointer; padding: 0;
  transition: color .15s;
}
body.gd-2026 .cart-item-remove:hover { color: var(--terra-500); }

@media (max-width: 600px) {
  body.gd-2026 .cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "thumb info" "side side";
    gap: 12px;
  }
  body.gd-2026 .cart-item-thumb { grid-area: thumb; width: 72px; height: 72px; }
  body.gd-2026 .cart-item-info { grid-area: info; }
  body.gd-2026 .cart-item-side {
    grid-area: side; flex-direction: row; justify-content: space-between; align-items: center;
    padding-top: 6px; border-top: 1px dashed var(--line-h);
  }
}

body.gd-2026 .cart-keep-shopping {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--forest-700);
  text-decoration: none;
  padding: 12px 4px;
}
body.gd-2026 .cart-keep-shopping:hover { color: var(--forest-600); }

/* Summary panel */
body.gd-2026 .cart-summary {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: 24px;
  position: sticky;
  top: 100px;
}
body.gd-2026 .cart-summary h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink-h);
  margin: 0 0 16px;
}
body.gd-2026 .cart-summary .summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2h);
}
body.gd-2026 .cart-summary .summary-row.is-discount { color: var(--terra-500); }
body.gd-2026 .cart-summary .summary-row.total {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-h);
  font-size: 16px;
  color: var(--ink-h);
  font-weight: 600;
}
body.gd-2026 .cart-summary .summary-row.total .total-amount {
  font-family: var(--font-display-h); font-size: 28px; font-weight: 500;
  letter-spacing: -0.015em;
}

body.gd-2026 .cart-coupon {
  display: flex; gap: 6px;
  margin: 14px 0;
}
body.gd-2026 .cart-coupon input {
  flex: 1;
  font: inherit; font-size: 13.5px;
  background: var(--cream-h);
  border: 1px solid var(--line-h);
  border-radius: 999px;
  padding: 10px 14px;
  outline: none;
  color: var(--ink-h);
  transition: border-color .15s, background .15s;
  min-width: 0;
}
body.gd-2026 .cart-coupon input:focus { border-color: var(--forest-700); background: var(--paper); }
body.gd-2026 .cart-coupon button {
  border: 1px solid var(--line-h); background: var(--cream-h);
  border-radius: 999px; padding: 10px 16px;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-h);
  cursor: pointer; white-space: nowrap;
  transition: border-color .15s, background .15s;
}
body.gd-2026 .cart-coupon button:hover { background: var(--paper); border-color: var(--ink-h); }
body.gd-2026 .cart-coupon-error {
  color: var(--terra-600); font-size: 12px; margin: -6px 0 10px;
}

body.gd-2026 .cart-secure {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3h);
}
body.gd-2026 .cart-secure svg { color: var(--forest-700); }

body.gd-2026 .cart-cod-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--forest-50);
  color: var(--forest-700);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   CHECKOUT page (/paiement)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .checkout-page { padding: clamp(20px, 3vw, 32px) 0 clamp(40px, 6vw, 64px); background: var(--cream-h); }
body.gd-2026 .checkout-head { margin: 14px 0 24px; }
body.gd-2026 .checkout-head h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.025em;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; color: var(--ink-h); margin: 0;
}
body.gd-2026 .checkout-head h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .checkout-head p { margin: 6px 0 0; font-size: 14px; }

body.gd-2026 .checkout-errors {
  background: #fde6e2;
  border-left: 3px solid var(--terra-500);
  padding: 14px 18px;
  border-radius: var(--r-md-h);
  margin-bottom: 24px;
  color: #a82e10;
  font-size: 14px;
  line-height: 1.5;
}

body.gd-2026 .checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 880px) {
  body.gd-2026 .checkout-grid { grid-template-columns: 1.6fr 1fr; gap: 28px; }
}
body.gd-2026 .checkout-main { display: flex; flex-direction: column; gap: 16px; }

body.gd-2026 .checkout-card {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: 24px;
}
body.gd-2026 .checkout-card h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink-h);
  margin: 0 0 4px;
}

/* Payment method tile */
body.gd-2026 .payment-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 2px solid var(--forest-700);
  border-radius: var(--r-md-h);
  background: var(--forest-50);
  margin-top: 14px;
}
body.gd-2026 .payment-method.active .payment-check { display: grid; }
body.gd-2026 .payment-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest-700);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
body.gd-2026 .payment-method strong {
  display: block;
  font-family: var(--font-sans-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-h);
  margin-bottom: 2px;
}
body.gd-2026 .payment-desc { font-size: 12.5px; color: var(--ink-2h); line-height: 1.4; }
body.gd-2026 .payment-check {
  display: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--forest-700);
  color: #fff;
  place-items: center;
  flex-shrink: 0;
}

/* Checkout summary tweaks (inherits from .cart-summary) */
body.gd-2026 .checkout-summary { padding: 24px; }
body.gd-2026 .checkout-items {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line-h);
}
body.gd-2026 .checkout-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
body.gd-2026 .checkout-line-thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-2h);
  position: relative;
}
body.gd-2026 .checkout-line-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.gd-2026 .checkout-line-thumb .qty-pill {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--forest-700);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--paper);
}
body.gd-2026 .checkout-line-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-h);
  line-height: 1.3;
  min-width: 0;
}
body.gd-2026 .checkout-line-price {
  font-family: var(--font-display-h);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-h);
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════════════════
   AUTH pages · login / register / forgot / reset / account
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .auth-page {
  padding: clamp(32px, 5vw, 64px) 0;
  background: var(--cream-h);
  min-height: 60vh;
}
body.gd-2026 .auth-card {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-xl-h);
  padding: clamp(28px, 4vw, 40px);
  max-width: 460px;
  margin: 0 auto;
}
body.gd-2026 .auth-card-wide { max-width: 580px; }
body.gd-2026 .auth-card .h-eyebrow { margin-bottom: 8px; }
body.gd-2026 .auth-card h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.1; color: var(--ink-h);
  margin: 0;
}
body.gd-2026 .auth-card h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .auth-sub {
  margin: 6px 0 24px;
  color: var(--ink-3h);
  font-size: 14px;
}
body.gd-2026 .auth-sub a {
  color: var(--forest-700);
  font-weight: 600;
  text-decoration: none;
}
body.gd-2026 .auth-sub a:hover { color: var(--forest-600); text-decoration: underline; }

body.gd-2026 .auth-form { display: flex; flex-direction: column; gap: 14px; }
body.gd-2026 .auth-form.gd-form-grid { display: grid; gap: 14px; }

body.gd-2026 .auth-error {
  background: #fde6e2;
  border-left: 3px solid var(--terra-500);
  padding: 12px 14px;
  border-radius: var(--r-md-h);
  margin-bottom: 18px;
  color: #a82e10;
  font-size: 13.5px;
  line-height: 1.5;
}
body.gd-2026 .auth-error a { color: inherit; text-decoration: underline; font-weight: 600; }

body.gd-2026 .auth-row { display: flex; justify-content: flex-end; }
body.gd-2026 .auth-link {
  font-size: 13px;
  color: var(--forest-700);
  text-decoration: none;
}
body.gd-2026 .auth-link:hover { color: var(--forest-600); text-decoration: underline; }

body.gd-2026 .form-hint {
  font-size: 12px; color: var(--ink-3h);
  margin: 0;
}
body.gd-2026 .form-hint a { color: var(--forest-700); }

body.gd-2026 .auth-success {
  background: var(--forest-50);
  border-left: 3px solid var(--forest-700);
  padding: 12px 14px;
  border-radius: var(--r-md-h);
  margin-bottom: 18px;
  color: var(--forest-700);
  font-size: 13.5px;
  line-height: 1.5;
}
body.gd-2026 .auth-success a { color: inherit; font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   ACCOUNT page (/mon-compte)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .account-page {
  padding: clamp(20px, 3vw, 32px) 0 clamp(40px, 6vw, 64px);
  background: var(--cream-h);
  min-height: 60vh;
}
body.gd-2026 .account-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
body.gd-2026 .account-head h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; color: var(--ink-h);
  margin: 6px 0 0;
}
body.gd-2026 .account-head h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }

body.gd-2026 .account-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-2h);
  overflow-x: auto;
  scrollbar-width: none;
}
body.gd-2026 .account-tabs::-webkit-scrollbar { display: none; }
body.gd-2026 .account-tabs a {
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3h);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
body.gd-2026 .account-tabs a:hover { color: var(--ink-h); }
body.gd-2026 .account-tabs a.active {
  color: var(--ink-h);
  border-bottom-color: var(--forest-700);
  font-weight: 600;
}

body.gd-2026 .account-card {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: 24px;
}
body.gd-2026 .account-card-table { padding: 0; overflow: hidden; }

body.gd-2026 .account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
body.gd-2026 .account-table thead {
  background: var(--cream-h);
  border-bottom: 1px solid var(--line-2h);
}
body.gd-2026 .account-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3h);
}
body.gd-2026 .account-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line-2h);
  color: var(--ink-h);
  vertical-align: middle;
}
body.gd-2026 .account-table tr:last-child td { border-bottom: none; }
body.gd-2026 .account-table .cell-mute { color: var(--ink-3h); }
body.gd-2026 .status-pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--cream-2h);
  color: var(--ink-2h);
}
body.gd-2026 .status-pill.status-success,
body.gd-2026 .status-pill.status-paid,
body.gd-2026 .status-pill.status-delivered { background: var(--forest-50); color: var(--forest-700); }
body.gd-2026 .status-pill.status-warning,
body.gd-2026 .status-pill.status-pending { background: var(--ochre-50); color: var(--ochre-600); }
body.gd-2026 .status-pill.status-danger,
body.gd-2026 .status-pill.status-cancelled { background: var(--terra-50); color: var(--terra-600); }

@media (max-width: 720px) {
  body.gd-2026 .account-table th:nth-child(2),
  body.gd-2026 .account-table td:nth-child(2) { display: none; }
}

/* ════════════════════════════════════════════════════════════
   ORDER CONFIRMATION (/confirmation-commande)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .confirmation-page {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--cream-h);
}
body.gd-2026 .confirmation-hero {
  text-align: center;
  margin-bottom: 32px;
}
body.gd-2026 .confirmation-check {
  width: 84px; height: 84px;
  background: var(--forest-50);
  color: var(--forest-700);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px -8px rgba(31,74,48,0.35);
}
body.gd-2026 .confirmation-hero h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.025em;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1;
  margin: 12px 0;
  color: var(--ink-h);
}
body.gd-2026 .confirmation-hero h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .confirmation-hero p { color: var(--ink-2h); font-size: 15px; max-width: 50ch; margin: 0 auto; }
body.gd-2026 .confirmation-hero p strong { color: var(--ink-h); }

body.gd-2026 .confirmation-card {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  overflow: hidden;
}
body.gd-2026 .confirmation-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-2h);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
body.gd-2026 .confirmation-head strong { font-family: var(--font-display-h); font-size: 18px; font-weight: 500; color: var(--ink-h); }

body.gd-2026 .confirmation-items {
  display: flex; flex-direction: column;
}
body.gd-2026 .confirmation-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 14px 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-2h);
  font-size: 13.5px;
}
body.gd-2026 .confirmation-line:last-child { border-bottom: none; }
body.gd-2026 .confirmation-line img {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream-2h);
}
body.gd-2026 .confirmation-line strong { color: var(--ink-h); }
body.gd-2026 .confirmation-line-total {
  font-family: var(--font-display-h);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
body.gd-2026 .confirmation-totals {
  padding: 18px 24px;
  background: var(--cream-h);
}
body.gd-2026 .confirmation-totals .summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0;
  font-size: 14px;
  color: var(--ink-2h);
}
body.gd-2026 .confirmation-totals .summary-row.is-discount { color: var(--terra-500); }
body.gd-2026 .confirmation-totals .summary-row.total {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px dashed var(--line-h);
  font-size: 16px; color: var(--ink-h); font-weight: 600;
}
body.gd-2026 .confirmation-totals .total-amount {
  font-family: var(--font-display-h); font-size: 26px; font-weight: 500;
  letter-spacing: -0.015em;
}

body.gd-2026 .confirmation-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { body.gd-2026 .confirmation-info-grid { grid-template-columns: 1fr 1fr; } }
body.gd-2026 .confirmation-info-card {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-md-h);
  padding: 18px 20px;
}
body.gd-2026 .confirmation-info-card strong {
  display: block; margin-bottom: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3h);
}
body.gd-2026 .confirmation-info-card p {
  margin: 0; font-size: 13.5px; color: var(--ink-h); line-height: 1.55;
}
body.gd-2026 .confirmation-next {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
body.gd-2026 .confirmation-next li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-2h);
}
body.gd-2026 .confirmation-next svg { color: var(--forest-700); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   STATIC pages (search, wishlist, faq, legal, 404/500)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .static-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(40px, 6vw, 64px);
  background: var(--cream-h);
  min-height: 60vh;
}
body.gd-2026 .static-head {
  margin: 14px 0 24px;
}
body.gd-2026 .static-head h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.025em;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; color: var(--ink-h);
  margin: 6px 0 0;
}
body.gd-2026 .static-head h1 em { font-style: italic; color: var(--terra-500); font-weight: 400; }
body.gd-2026 .static-head p { margin: 8px 0 0; color: var(--ink-2h); font-size: 15px; max-width: 60ch; }

body.gd-2026 .static-content {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  padding: clamp(24px, 4vw, 36px);
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--ink-2h);
  line-height: 1.65;
}
body.gd-2026 .static-content h2 {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: 1.4rem;
  color: var(--ink-h);
  margin: 28px 0 12px;
}
body.gd-2026 .static-content h2:first-child { margin-top: 0; }
body.gd-2026 .static-content h3 {
  font-family: var(--font-sans-h);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-h);
  margin: 20px 0 8px;
  letter-spacing: 0;
}
body.gd-2026 .static-content p { margin: 0 0 14px; }
body.gd-2026 .static-content a { color: var(--forest-700); }
body.gd-2026 .static-content a:hover { color: var(--forest-600); }
body.gd-2026 .static-content ul, body.gd-2026 .static-content ol {
  padding-left: 22px; margin: 0 0 14px;
}
body.gd-2026 .static-content li { margin-bottom: 6px; }
body.gd-2026 .static-content strong { color: var(--ink-h); }
body.gd-2026 .static-content hr { border: none; border-top: 1px solid var(--line-2h); margin: 24px 0; }

/* Search box */
body.gd-2026 .search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line-h);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  margin: 0 0 24px;
  max-width: 640px;
}
body.gd-2026 .search-box svg { color: var(--ink-3h); flex-shrink: 0; }
body.gd-2026 .search-box input {
  flex: 1; min-width: 0;
  border: none; background: transparent; outline: none;
  font: inherit; font-size: 15px; padding: 10px 0;
  color: var(--ink-h);
}
body.gd-2026 .search-empty {
  padding: 60px 24px; text-align: center;
  color: var(--ink-3h);
}
body.gd-2026 .search-empty em { color: var(--ink-h); font-style: italic; }

/* FAQ accordion */
body.gd-2026 .faq-list {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
body.gd-2026 .faq-item {
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-md-h);
  overflow: hidden;
}
body.gd-2026 .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-sans-h);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-h);
  position: relative;
  padding-right: 48px;
  transition: background .15s;
}
body.gd-2026 .faq-item summary::-webkit-details-marker { display: none; }
body.gd-2026 .faq-item summary:hover { background: var(--cream-h); }
body.gd-2026 .faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-3h);
  transition: transform .2s;
  line-height: 1;
}
body.gd-2026 .faq-item[open] summary::after { content: '−'; }
body.gd-2026 .faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink-2h);
  line-height: 1.6;
}
body.gd-2026 .faq-answer p:first-child { margin-top: 0; }
body.gd-2026 .faq-answer p:last-child { margin-bottom: 0; }
body.gd-2026 .faq-section-title {
  font-family: var(--font-display-h);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-h);
  margin: 32px 0 12px;
  letter-spacing: -0.015em;
}
body.gd-2026 .faq-section-title:first-of-type { margin-top: 0; }

/* ════════════════════════════════════════════════════════════
   LEGAL pages (cgv, privacy, cookies, mentions, returns) —
   they already use a .legal-page wrapper from styles.css; here
   we just rebrand the typography to match the redesign.
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .legal-page {
  padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 24px) clamp(40px, 6vw, 64px);
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream-h);
  color: var(--ink-2h);
  font-family: var(--font-sans-h);
  font-size: 15px;
  line-height: 1.65;
}
body.gd-2026 .legal-page h1 {
  font-family: var(--font-display-h); font-weight: 400; letter-spacing: -0.025em;
  font-size: clamp(2rem, 5vw, 2.6rem); line-height: 1.05; color: var(--ink-h);
  margin: 0 0 8px;
}
body.gd-2026 .legal-page .legal-meta {
  color: var(--ink-3h);
  font-size: 13px;
  margin: 0 0 28px;
}
body.gd-2026 .legal-page h2 {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: 1.4rem;
  color: var(--ink-h);
  margin: 32px 0 12px;
}
body.gd-2026 .legal-page h3 {
  font-family: var(--font-sans-h);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-h);
  margin: 20px 0 8px;
  letter-spacing: 0;
}
body.gd-2026 .legal-page p { margin: 0 0 14px; }
body.gd-2026 .legal-page a { color: var(--forest-700); }
body.gd-2026 .legal-page a:hover { color: var(--forest-600); }
body.gd-2026 .legal-page ul, body.gd-2026 .legal-page ol {
  padding-left: 22px; margin: 0 0 14px;
}
body.gd-2026 .legal-page li { margin-bottom: 6px; }
body.gd-2026 .legal-page strong { color: var(--ink-h); }
body.gd-2026 .legal-page hr { border: none; border-top: 1px solid var(--line-2h); margin: 24px 0; }

/* Blog grid (used on /blog and "à lire aussi" on /post/<slug>) */
body.gd-2026 .blog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { body.gd-2026 .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { body.gd-2026 .blog-grid { grid-template-columns: repeat(3, 1fr); } }
body.gd-2026 .blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-2h);
  border-radius: var(--r-lg-h);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink-h);
  transition: transform .2s, box-shadow .2s;
}
body.gd-2026 .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md-h); }
body.gd-2026 .blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-2h);
}
body.gd-2026 .blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
body.gd-2026 .blog-card:hover .blog-card-img img { transform: scale(1.04); }
body.gd-2026 .blog-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
body.gd-2026 .blog-card-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-500);
}
body.gd-2026 .blog-card-title {
  font-family: var(--font-display-h);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink-h);
  margin: 0;
}
body.gd-2026 .blog-card-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2h);
  margin: 0 0 auto;
  padding-bottom: 6px;
}
body.gd-2026 .blog-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--forest-700);
  padding-top: 8px;
  border-top: 1px solid var(--line-2h);
}

/* Error pages */
body.gd-2026 .error-code-h {
  font-family: var(--font-display-h);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(6rem, 16vw, 9rem);
  color: var(--terra-500);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.9;
}

/* ════════════════════════════════════════════════════════════
   CART DRAWER (slide-out from right)
   The drawer markup is injected globally by main.js, so styles
   override the legacy .cart-drawer rules from styles.css.
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,30,20,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
body.gd-2026 .drawer-backdrop.open { opacity: 1; pointer-events: auto; }

body.gd-2026 .cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 100;
  box-shadow: -10px 0 40px -10px rgba(20,30,20,0.18);
  font-family: var(--font-sans-h);
  color: var(--ink-h);
}
body.gd-2026 .cart-drawer.open { transform: translateX(0); }

/* Head */
body.gd-2026 .cart-drawer .cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: none;
  background: var(--paper);
}
body.gd-2026 .cart-drawer .cart-drawer-head h3 {
  font-family: var(--font-display-h);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink-h);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.gd-2026 .cart-drawer .count-pill {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--forest-700);
  color: #fff;
  font-family: var(--font-sans-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
body.gd-2026 .cart-drawer .drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--ink-h);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s;
}
body.gd-2026 .cart-drawer .drawer-close:hover { background: var(--cream-2h); }

/* Free-shipping progress */
body.gd-2026 .cart-drawer .cart-drawer-shipping {
  padding: 8px 24px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-2h);
}
body.gd-2026 .cart-drawer .cart-drawer-shipping p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--ink-2h);
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.gd-2026 .cart-drawer .cart-drawer-shipping p strong { color: var(--ink-h); font-weight: 600; }
body.gd-2026 .cart-drawer .cart-drawer-shipping p svg { color: var(--forest-700); }
body.gd-2026 .cart-drawer .progress-track {
  height: 6px;
  background: var(--cream-2h);
  border-radius: 999px;
  overflow: hidden;
}
body.gd-2026 .cart-drawer .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ochre-500) 0%, var(--terra-500) 100%);
  border-radius: 999px;
  transition: width .35s ease;
}

/* Body — scrollable list of items */
body.gd-2026 .cart-drawer .cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.gd-2026 .cart-drawer .drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 12px;
  background: var(--paper);
  border-radius: var(--r-md-h);
  align-items: center;
  position: relative;
}
body.gd-2026 .cart-drawer .drawer-item-image {
  width: 72px; height: 72px;
  border-radius: var(--r-md-h);
  overflow: hidden;
  background: var(--cream-2h);
  flex-shrink: 0;
}
body.gd-2026 .cart-drawer .drawer-item-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
body.gd-2026 .cart-drawer .drawer-item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.gd-2026 .cart-drawer .drawer-item-info h4 {
  font-family: var(--font-sans-h);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink-h);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.gd-2026 .cart-drawer .drawer-item-info .price {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-h);
}
body.gd-2026 .cart-drawer .qty-mini {
  display: inline-flex;
  align-items: center;
  background: var(--cream-h);
  border: 1px solid var(--line-h);
  border-radius: 999px;
  overflow: hidden;
  width: max-content;
}
body.gd-2026 .cart-drawer .qty-mini button {
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  color: var(--ink-2h);
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}
body.gd-2026 .cart-drawer .qty-mini button:hover { background: rgba(20,30,20,0.06); color: var(--ink-h); }
body.gd-2026 .cart-drawer .qty-mini input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-h);
  outline: none;
  padding: 0;
}
body.gd-2026 .cart-drawer .drawer-item-remove {
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  color: var(--ink-3h);
  cursor: pointer;
  display: grid; place-items: center;
  border-radius: 50%;
  align-self: flex-start;
  transition: color .15s, background .15s;
}
body.gd-2026 .cart-drawer .drawer-item-remove:hover { color: var(--terra-500); background: var(--terra-50); }

/* Empty state */
body.gd-2026 .cart-drawer .cart-drawer-empty {
  padding: 60px 24px;
  text-align: center;
  color: var(--ink-3h);
}
body.gd-2026 .cart-drawer .cart-drawer-empty svg { color: var(--line-h); margin: 0 auto 12px; }
body.gd-2026 .cart-drawer .cart-drawer-empty h4 {
  font-family: var(--font-display-h);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--ink-h);
}
body.gd-2026 .cart-drawer .cart-drawer-empty p { margin: 0 0 18px; font-size: 13px; }
body.gd-2026 .cart-drawer .cart-drawer-empty .btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--terra-500); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
}

/* Foot — sticky bottom */
body.gd-2026 .cart-drawer .cart-drawer-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--line-2h);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.gd-2026 .cart-drawer .cart-drawer-foot .total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-2h);
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--line-h);
}
body.gd-2026 .cart-drawer .cart-drawer-foot .total-row span:first-child {
  font-weight: 600;
  color: var(--ink-h);
}
body.gd-2026 .cart-drawer .cart-drawer-foot .total-row span:last-child {
  font-family: var(--font-display-h);
  font-size: 26px;
  color: var(--ink-h);
}

body.gd-2026 .cart-drawer .drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.gd-2026 .cart-drawer .drawer-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  border: 1px solid transparent;
  cursor: pointer;
}
body.gd-2026 .cart-drawer .drawer-cta .btn-primary {
  background: var(--terra-500);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(180,74,46,0.55);
}
body.gd-2026 .cart-drawer .drawer-cta .btn-primary:hover { background: var(--terra-600); }
body.gd-2026 .cart-drawer .drawer-cta .btn-ghost {
  background: transparent;
  color: var(--ink-h);
  border-color: var(--line-h);
}
body.gd-2026 .cart-drawer .drawer-cta .btn-ghost:hover {
  background: var(--cream-h);
  border-color: var(--ink-h);
}

body.gd-2026 .cart-drawer .secure-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-3h);
}
body.gd-2026 .cart-drawer .secure-line svg { color: var(--forest-700); }

/* Mobile sizing */
@media (max-width: 480px) {
  body.gd-2026 .cart-drawer { width: 100vw; }
  body.gd-2026 .cart-drawer .cart-drawer-head { padding: 16px 18px 12px; }
  body.gd-2026 .cart-drawer .cart-drawer-shipping { padding: 6px 18px 14px; }
  body.gd-2026 .cart-drawer .cart-drawer-body { padding: 10px 12px; }
  body.gd-2026 .cart-drawer .cart-drawer-foot { padding: 16px 18px 20px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE HEADER · centered logo, hamburger left, cart right
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body.gd-2026 .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 10px 14px;
    align-items: center;
  }
  /* The hamburger is the first child of header-inner → naturally lands in col 1 */
  body.gd-2026 .menu-toggle { display: grid; }
  /* Logo centered in middle column — bigger SVG, with a small negative margin
     so the internal SVG whitespace doesn't make the bar too tall. */
  body.gd-2026 .header-inner > .logo {
    justify-self: center;
    grid-column: 2;
    margin: -2px 0;
  }
  body.gd-2026 .logo-img { height: 76px; max-width: 220px; }
  /* Desktop nav hidden on mobile — the drawer replaces it */
  body.gd-2026 .main-nav { display: none !important; }
  /* In the right-column actions, hide search + account; keep cart only */
  body.gd-2026 .header-actions { grid-column: 3; gap: 0; }
  body.gd-2026 .header-icon-search,
  body.gd-2026 .header-icon-account { display: none; }
}
@media (min-width: 901px) {
  body.gd-2026 .menu-toggle { display: none; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE DRAWER (hamburger menu)
   ════════════════════════════════════════════════════════════ */
body.gd-2026 .mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,30,20,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 95;
}
body.gd-2026 .mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

body.gd-2026 .mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 100;
  box-shadow: 10px 0 40px -10px rgba(20,30,20,0.18);
  font-family: var(--font-sans-h);
  color: var(--ink-h);
  visibility: hidden;
}
body.gd-2026 .mobile-drawer.open { transform: translateX(0); visibility: visible; }

body.gd-2026 .mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-2h);
}
body.gd-2026 .mobile-drawer-logo img { height: 36px; width: auto; display: block; }
body.gd-2026 .mobile-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--ink-h);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s;
}
body.gd-2026 .mobile-drawer-close:hover { background: var(--cream-2h); }

body.gd-2026 .mobile-drawer-nav {
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.gd-2026 .mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-h);
  text-decoration: none;
  transition: background .15s, color .15s;
}
body.gd-2026 .mobile-drawer-nav a svg { color: var(--ink-3h); flex-shrink: 0; }
body.gd-2026 .mobile-drawer-nav a:hover { background: var(--cream-h); }
body.gd-2026 .mobile-drawer-nav a.active {
  background: var(--forest-50);
  color: var(--forest-700);
  font-weight: 600;
}
body.gd-2026 .mobile-drawer-nav a.active svg { color: var(--forest-700); }

body.gd-2026 .mobile-drawer-section {
  padding: 8px 12px;
  border-top: 1px solid var(--line-2h);
  margin-top: 8px;
}
body.gd-2026 .mobile-drawer-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3h);
  padding: 10px 14px 6px;
}
body.gd-2026 .mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2h);
  text-decoration: none;
  transition: background .15s, color .15s;
}
body.gd-2026 .mobile-drawer-link svg { color: var(--ink-3h); flex-shrink: 0; }
body.gd-2026 .mobile-drawer-link:hover { background: var(--cream-h); color: var(--ink-h); }

body.gd-2026 .mobile-drawer-foot {
  margin-top: auto;
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line-2h);
}
body.gd-2026 .mobile-drawer-contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--forest-700);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 14px -6px rgba(31,74,48,0.45);
}
body.gd-2026 .mobile-drawer-contact-cta:hover { background: var(--forest-600); }

/* Desktop: never show the mobile drawer */
@media (min-width: 901px) {
  body.gd-2026 .mobile-drawer,
  body.gd-2026 .mobile-drawer-backdrop { display: none; }
}
