:root {
  --green:        #3b6d11;
  --green-dark:   #2a4f0b;
  --green-light:  #97c459;
  --green-soft:   #eaf3de;
  --bg:           #f7f4ef;
  --card:         #ffffff;
  --line:         #e6e1d6;
  --text:         #1f2a12;
  --muted:        #72766b;
  --star:         #e6a817;
  --radius:       16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   RTL-overrides voor Arabisch (html[dir="rtl"])
   Spiegelt richtingsgevoelige layout-elementen.
   ============================================================ */
html[dir="rtl"] body {
  font-family: 'Noto Kufi Arabic', 'Segoe UI', 'DM Sans', sans-serif;
}
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .topbar .wrap,
html[dir="rtl"] .header .wrap,
html[dir="rtl"] .footer .wrap,
html[dir="rtl"] .cart-item,
html[dir="rtl"] .cart-summary,
html[dir="rtl"] .checkout-summary,
html[dir="rtl"] .sum-item,
html[dir="rtl"] .sum-row,
html[dir="rtl"] .product-grid,
html[dir="rtl"] .grid,
html[dir="rtl"] .form-grid { direction: rtl; }

html[dir="rtl"] .sum-row { flex-direction: row-reverse; }

/* WhatsApp-knop op RTL juist rechts (mijn default was links) */
html[dir="rtl"] .wa-float { left: auto; right: 24px; }
@media (max-width: 560px) {
  html[dir="rtl"] .wa-float { left: auto; right: 16px; }
}

/* Pijltjes draaien om */
html[dir="rtl"] .card .add svg { transform: scaleX(-1); }
html[dir="rtl"] .breadcrumb .sep { transform: scaleX(-1); display: inline-block; }

/* Arabische tekst heeft meer line-height nodig voor ascenders/descenders */
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { line-height: 1.4; }
html[dir="rtl"] p, html[dir="rtl"] li { line-height: 1.8; }
h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
a { color: inherit; text-decoration: none; }

/* ===== Top bar ===== */
.topbar { background: var(--green-dark); color: #fff; font-size: 13px; padding: 10px 0; }
.topbar .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.topbar-left { display: flex; align-items: center; gap: 18px; opacity: .9; }
.topbar-left svg { width: 15px; height: 15px; }
.topbar-right { display: flex; align-items: center; gap: 24px; }
.shop-switch { opacity: .85; transition: opacity .15s ease; }
.shop-switch:hover { opacity: 1; }
.lang { display: flex; gap: 6px; align-items: center; }
.lang .flag {
  width: 24px; height: 16px; border-radius: 2px; cursor: pointer;
  display: block; overflow: hidden;
  opacity: .55; transition: opacity .15s ease, transform .15s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}
.lang .flag:hover { opacity: .9; transform: translateY(-1px); }
.lang .flag.active { opacity: 1; box-shadow: 0 0 0 1.5px #fff; }
.lang .flag svg { width: 100%; height: 100%; display: block; }

/* ===== Header ===== */
.header { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header .wrap { max-width: 1240px; margin: 0 auto; padding: 22px 24px; display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; }
.logo img { height: 54px; width: auto; display: block; }
nav.main { display: flex; gap: 34px; flex: 1; font-weight: 500; font-size: 15px; align-items: center; }
nav.main a { position: relative; padding: 6px 0; color: var(--text); }
nav.main a:hover { color: var(--green); }
nav.main a.active { color: var(--green); }
nav.main a.active::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--green-light); border-radius: 2px; }

/* Dropdown in main-nav voor overgebleven categorieën ("Meer ▾") */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: transparent; border: none; cursor: pointer;
  padding: 6px 0; font-family: inherit; font-size: 15px; font-weight: 500;
  color: var(--text); display: inline-flex; align-items: center;
  transition: color .15s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--green); }
.nav-dropdown-toggle.active::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--green-light); border-radius: 2px; }
.nav-dropdown-toggle svg { transition: transform .25s cubic-bezier(.34,1.56,.64,1); margin-left: 5px; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: -14px;
  min-width: 240px; margin-top: 14px; padding: 10px;
  background: var(--card);
  border: 1px solid rgba(151,196,89,.35);
  border-radius: 14px;
  box-shadow:
    0 24px 48px -20px rgba(42,79,11,.28),
    0 8px 16px -8px rgba(0,0,0,.10),
    0 0 0 1px rgba(255,255,255,.6) inset;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97);
  transform-origin: top left;
  transition: opacity .18s ease, transform .22s cubic-bezier(.34,1.56,.64,1), visibility .18s;
  z-index: 50;
}
/* Pijltje aan de bovenkant naar de toggle */
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -7px; left: 26px;
  width: 12px; height: 12px;
  background: var(--card);
  border-top: 1px solid rgba(151,196,89,.35);
  border-left: 1px solid rgba(151,196,89,.35);
  transform: rotate(45deg);
  border-top-left-radius: 3px;
}
/* Onzichtbare hover-brug zodat cursor niet valt tussen toggle en menu */
.nav-dropdown-menu::after {
  content: ''; position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; font-size: 14px; font-weight: 500;
  color: var(--text); text-decoration: none; white-space: nowrap;
  border-radius: 8px;
  position: relative;
  transition: background .15s ease, color .15s ease, padding .15s ease;
}
/* Groen rond puntje vóór elke categorie */
.nav-dropdown-menu a::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
/* Chevron-pijltje dat rechts verschijnt bij hover */
.nav-dropdown-menu a::after {
  content: '›';
  margin-left: auto; font-size: 18px; font-weight: 400;
  color: var(--green);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .15s ease, transform .15s ease;
}
.nav-dropdown-menu a:hover {
  background: linear-gradient(90deg, var(--green-soft), rgba(234,243,222,.4));
  color: var(--green-dark);
  padding-left: 16px;
}
.nav-dropdown-menu a:hover::before { background: var(--green); transform: scale(1.2); }
.nav-dropdown-menu a:hover::after { opacity: 1; transform: translateX(0); }
.nav-dropdown-menu a.active {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
}
.nav-dropdown-menu a.active::before { background: var(--green); }
.nav-dropdown-menu a.active::after { display: none; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card);
  display: grid; place-items: center; cursor: pointer; position: relative;
  transition: all .15s ease; color: var(--green-dark);
}
.icon-btn:hover { border-color: var(--green-light); background: var(--green-soft); }
.icon-btn svg { width: 20px; height: 20px; }
.badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  display: grid; place-items: center;
}

/* ===== Hero ===== */
.hero { background: linear-gradient(135deg, var(--green-soft) 0%, var(--bg) 75%); padding: 88px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(151,196,89,.22), transparent 70%); }
.hero .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero h1 { font-size: 58px; margin-bottom: 20px; }
.hero h1 em { color: var(--green); font-style: italic; }
.hero p.lead { font-size: 19px; color: var(--muted); margin-bottom: 36px; max-width: 520px; }

.btn { display: inline-block; padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: all .15s ease; text-align: center; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(59,109,17,.5); }
.btn-ghost { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero-illustratie (SVG fles) ── */
.hero-visual {
  position: relative;
  max-width: 420px;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-svg {
  width: 100%;
  height: auto;
  max-width: 340px;
  overflow: visible;
  animation: hero-float 7s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.14));
}
.hero-drop-1 { animation: drop-drift 5.5s ease-in-out infinite; }
.hero-drop-2 { animation: drop-drift 7s   ease-in-out infinite .8s; }
.hero-drop-3 { animation: drop-drift 6.2s ease-in-out infinite 1.8s; }
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes drop-drift {
  0%, 100% { transform: translate(0, 0);    opacity: 1; }
  50%       { transform: translate(-3px,-8px); opacity: .75; }
}
.bottle-glow { display: none; } /* vervangen door SVG */

/* ===== USP strip ===== */
.usp { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp .wrap { max-width: 1240px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.usp-item { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 500; }
.usp-item .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.usp-item .ico svg { width: 22px; height: 22px; }
.usp-item small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; }

/* ===== Sections ===== */
section.shop { padding: 80px 0; }
section.shop .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.section-head h2 { font-size: 40px; }
.section-head p { color: var(--muted); margin-top: 8px; font-size: 16px; }

/* Filter chips */
.filterbar-wrap { /* desktop: transparante doorgeef-wrapper */ }
.filterbar {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 0 0 16px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.chip {
  padding: 5px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  background: var(--card); border: 1px solid var(--line);
  color: var(--text); transition: all .15s ease; white-space: nowrap;
}
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Filterbar auto-scroll animatie */
@keyframes filterbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Load-more knop */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 4px;
}
.load-more-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.load-more-btn {
  min-width: 210px;
}
.load-more-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* ===== Product grid ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 28px; }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(59,109,17,.3); border-color: var(--green-light); }
.card a.card-link { display: flex; flex-direction: column; height: 100%; }
.card .image { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--green-soft) 0%, #d8e7bb 100%); position: relative; display: grid; place-items: center; overflow: hidden; }
.card .image img { max-width: 80%; max-height: 80%; object-fit: contain; }
.card .image .mini-bottle { width: 70px; height: 120px; border-radius: 10px 10px 14px 14px / 8px 8px 20px 20px; background: linear-gradient(160deg, #2a4f0b, #0d1d04); position: relative; box-shadow: 0 10px 20px -8px rgba(0,0,0,.3); }
.card .image .mini-bottle::before { content: ''; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 24px; height: 20px; background: #1a2407; border-radius: 4px; }
.card .image .mini-bottle::after { content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 48px; height: 60px; border-radius: 3px; background: #f7f4ef; }
.card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.card .cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 8px; }
/* Lange woorden (Kennismakingstraject, Donateurschap, ...) netjes afbreken */
.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.card .stars { color: var(--star); font-size: 13px; margin-bottom: 10px; }
.card .stars .count { color: var(--muted); margin-left: 6px; }
.card .desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; flex: 1; }
.card .variants { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.card .variants .v { padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all .1s ease; }
.card .variants .v:hover { border-color: var(--green); color: var(--green); }
.card .variants .v.on { background: var(--green); color: #fff; border-color: var(--green); }
.card .price-row { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.card .price { font-weight: 700; font-size: 18px; color: var(--green-dark); }
.card .price small { color: var(--muted); font-weight: 400; }
.card .price small.strike { text-decoration: line-through; color: var(--muted); font-size: 13px; margin-left: 6px; }
.card .add { background: var(--green); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: all .15s ease; }
.card .add:hover { background: var(--green-dark); transform: scale(1.05); }
.card .add svg { width: 18px; height: 18px; }

/* Intro / kennismakingstraject */
.intro-card { border: 1.5px solid var(--green-light); }
.intro-card:hover { border-color: var(--green); }
.intro-image { background: linear-gradient(135deg, #2a4f0b 0%, #3b6d11 100%) !important; position: relative; }
.intro-badge { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--green-dark); padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .3px; box-shadow: 0 4px 10px -4px rgba(0,0,0,.25); }
.intro-set { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; width: 80%; height: 70%; align-items: center; justify-items: center; }
.intro-set .s { width: 56px; height: 56px; border-radius: 8px; background: linear-gradient(160deg, #f7f4ef, #d8e7bb); box-shadow: 0 6px 14px -6px rgba(0,0,0,.35); position: relative; }
.intro-set .s::before { content: ''; position: absolute; inset: 8px 10px; border-radius: 4px; background: rgba(59,109,17,.18); }
.intro-set .s1::after { content: '🌿'; }
.intro-set .s2::after { content: '💊'; }
.intro-set .s3::after { content: '🧴'; }
.intro-set .s4::after { content: '🍵'; }
.intro-set .s::after { position: absolute; inset: 0; display: grid; place-items: center; font-size: 22px; }

/* ===== Banners ===== */
.banner { border-radius: var(--radius); padding: 30px 36px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 48px; }
.banner.warranty { background: #fde8e8; border: 1px solid #f5c2c2; color: #8b2e2e; }
.banner.warranty h3 { font-size: 24px; margin-bottom: 6px; color: #8b2e2e; }
.banner.warranty p { font-size: 14px; color: #8b2e2e; opacity: .9; }
.banner.warranty .btn { background: #fff; color: #8b2e2e; border: 1.5px solid #8b2e2e; }
.banner.warranty .btn:hover { background: #8b2e2e; color: #fff; }
.banner.donor { background: var(--green-soft); border: 1px solid var(--green-light); }
.banner.donor h3 { font-size: 24px; margin-bottom: 6px; color: var(--green-dark); }
.banner.donor p { font-size: 14px; color: var(--text); opacity: .85; }

/* ── Cross-shop kaart (stijl hulpbanner) ───────────────────────── */
.crossshop-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #e4dfd3;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .2s, transform .2s;
}
.crossshop-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-1px);
}
.crossshop-card__icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.crossshop-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.crossshop-card__body strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a0f;
}
.crossshop-card__body span {
  font-size: 12px;
  color: #6e6040;
  line-height: 1.4;
}
.crossshop-card__cta {
  flex-shrink: 0;
  background: #4ea312;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .crossshop-card { flex-wrap: wrap; }
  .crossshop-card__cta { width: 100%; text-align: center; }
}

/* ── Dual-section (Shop A: actief + niet-actief) ───────────────── */
.dual-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}
.dual-label svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.dual-label span {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.dual-label .dual-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--border);
}
.actief-label { color: var(--green-dark); }
.actief-label .dual-line { background: linear-gradient(to right, var(--green-dark), transparent); }
.niet-actief-label { color: #1e3a5f; margin-top: 12px; }
.niet-actief-label .dual-line { background: linear-gradient(to right, #3a6ea8, transparent); }

.dual-divider {
  margin: 48px 0 36px;
  border-radius: 16px;
  background: linear-gradient(130deg, #0d1d04 0%, #163009 55%, #1e4510 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d6edbb;
  position: relative;
  overflow: hidden;
}
.dual-divider::before {
  content: 'CBD';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255,255,255,.04);
  letter-spacing: -.02em;
  pointer-events: none;
  user-select: none;
}
.dual-divider-inner { flex: 1; }
.dual-divider-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.dual-divider-badge svg {
  width: 20px;
  height: 20px;
  color: #97c459;
  flex-shrink: 0;
}
.dual-divider p {
  font-size: 13px;
  line-height: 1.55;
  opacity: .75;
  margin: 0;
  max-width: 500px;
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, background .15s;
  flex-shrink: 0;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}
@media (max-width: 600px) {
  .dual-divider { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 20px; }
  .dual-divider::before { display: none; }
  .dual-divider-badge { font-size: 16px; }
  .btn-ghost-light { align-self: flex-start; }
}

/* Review link */
.review .kiyoh-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-weight: 600; margin-top: 10px; }
.review .kiyoh-link:hover { text-decoration: underline; }
.review .kiyoh-link svg { width: 12px; height: 12px; }

/* ===== Contact block in footer ===== */
.contact-block { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.contact-block a { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; font-weight: 500; padding: 8px 14px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); transition: background .15s ease; width: fit-content; }
.contact-block a:hover { background: rgba(255,255,255,.16); }
.contact-block a svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-block a.wa { background: #25d366; border-color: #25d366; color: #fff; }
.contact-block a.wa:hover { background: #1db954; }

/* ===== Floating WhatsApp ===== */
/* Floating WhatsApp: linkeronder — rechts zit de Google reCAPTCHA-badge */
.wa-float { position: fixed; bottom: 24px; left: 24px; right: auto; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px -6px rgba(37,211,102,.6); z-index: 100; transition: transform .15s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ===== Reviews ===== */
.reviews-wrap { background: var(--bg); padding: 80px 0; }
.reviews-wrap .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.kiyoh-score { display: flex; align-items: center; gap: 28px; background: var(--card); padding: 24px 32px; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 40px; flex-wrap: wrap; }
.kiyoh-score .num { font-family: 'Playfair Display', serif; font-size: 54px; color: var(--green); line-height: 1; }
.kiyoh-score .num small { font-size: 20px; color: var(--muted); font-weight: 400; }
.kiyoh-score .info { flex: 1; }
.kiyoh-score .info .stars { color: var(--star); font-size: 20px; margin-bottom: 4px; }
.kiyoh-score .info p { font-size: 14px; color: var(--muted); }
.kiyoh-score .info strong { color: var(--text); }
.kiyoh-score a.brand { font-size: 13px; color: var(--green); font-weight: 600; }
.kiyoh-score a.brand:hover { text-decoration: underline; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); display: flex; flex-direction: column; }
.review .stars { color: var(--star); font-size: 14px; margin-bottom: 14px; }
.review p.quote { font-size: 15px; line-height: 1.65; margin-bottom: 20px; flex: 1; font-style: italic; color: var(--text); }
.review .who { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--line); }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--green-light), var(--green)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.review .who b { color: var(--text); display: block; }

/* ===== Science / PubMed ===== */
.science { background: var(--green-dark); color: #d8e7bb; padding: 56px 0; }
.science .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; }
.science .ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--green-light); }
.science .ico svg { width: 28px; height: 28px; }
.science h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.science p { font-size: 15px; opacity: .9; max-width: 620px; }
.science .btn { background: var(--green-light); color: var(--green-dark); }
.science .btn:hover { background: #fff; color: var(--green-dark); }

/* ===== Footer ===== */
footer { background: var(--green-dark); color: #d8e7bb; padding: 64px 0 20px; border-top: 1px solid rgba(255,255,255,.08); }
footer .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
footer h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 18px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 14px; }
footer a:hover { color: #fff; }
footer .brand p { font-size: 14px; opacity: .85; margin-top: 14px; max-width: 300px; line-height: 1.7; }
footer .legal-notice { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-bottom: 14px; font-size: 12px; opacity: .65; line-height: 1.6; }
footer .bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; opacity: .85; }
footer .bottom a { color: #fff; font-weight: 500; }
footer .bottom a:hover { text-decoration: underline; }

/* ===== Hamburger-menu toggle (standaard verborgen op desktop) ===== */
.menu-toggle { display: none; }

/* ===== Algemene anti-overflow (safety voor mobiel) ===== */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 34px; }
  .hero-visual { max-width: 260px; margin: 0 auto; justify-self: center; }
  .hero-svg { max-width: 240px; }
  .usp .wrap { grid-template-columns: 1fr; gap: 16px; }
  .science .wrap { grid-template-columns: 1fr; text-align: center; }
  .science .ico { margin: 0 auto; }
  footer .cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .topbar-left span:nth-child(2) { display: none; }

  /* Header: logo links, iconen rechts, auto-margin geeft lucht ertussen */
  /* z-index omhoog zodat drawer (inside header) boven overlay (149) uitkomt */
  .header { z-index: 200; }
  .header .wrap { padding: 12px 16px; gap: 10px; }
  .logo img { height: 46px; }
  .header-actions { margin-left: auto; }

  /* Hamburger zichtbaar op mobiel */
  .menu-toggle {
    display: grid;
    position: relative;
  }
  .menu-toggle svg {
    position: absolute; inset: 0; margin: auto;
    width: 22px; height: 22px;
    transition: opacity .2s ease;
  }
  .menu-toggle .ic-close { opacity: 0; }
  body.menu-open .menu-toggle .ic-open  { opacity: 0; }
  body.menu-open .menu-toggle .ic-close { opacity: 1; }

  /* Scroll-lock als menu open is */
  body.menu-open { overflow: hidden; }

  /* Donkere backdrop achter het drawer-menu */
  .menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 149;
    opacity: 0;
    transition: opacity .25s ease;
  }
  body.menu-open .menu-overlay {
    display: block;
    opacity: 1;
  }

  /* Full-height slide-in drawer van rechts */
  nav.main {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 85vw);
    background: var(--card);
    box-shadow: -6px 0 40px rgba(0,0,0,.18);
    padding: 0;
    flex-direction: column; gap: 0;
    align-items: stretch; /* override desktop align-items:center — links vullen volle breedte */
    overflow-y: auto; overflow-x: hidden;
    font-size: 16px;
    z-index: 200;
    display: flex;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    /* visibility altijd zichtbaar — gewoon buiten beeld */
    opacity: 1;
    visibility: visible;
  }
  body.menu-open nav.main {
    transform: translateX(0);
  }

  /* Drawer-header: icons (account/cart/wa) + sluiten — geen dubbele lijn */
  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    /* geen border-bottom: de page-header heeft al een lijn op dezelfde y-positie */
    background: var(--card);
    flex-shrink: 0;
    min-height: 54px;
  }
  .nav-mobile-icons {
    display: flex; align-items: center; gap: 4px;
  }
  .nav-mobile-icon-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    color: var(--green-dark); position: relative;
    transition: background .12s;
    text-decoration: none;
    border: 1.5px solid var(--line);
  }
  .nav-mobile-icon-btn:hover { background: var(--green-soft); }
  .nav-mobile-wa-btn { color: #25d366; }
  .nav-mobile-wa-btn:hover { background: rgba(37,211,102,.12); }
  .nav-mobile-close {
    width: 36px; height: 36px;
    background: var(--bg); border: 1px solid var(--line);
    border-radius: 50%; cursor: pointer;
    display: grid; place-items: center;
    color: var(--text);
    transition: background .15s, border-color .15s;
    flex-shrink: 0;
  }
  .nav-mobile-close:hover { background: var(--line); border-color: var(--muted); }

  /* Label boven een sectie in het mobile menu */
  .nav-section-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--text);
    padding: 14px 22px 4px;
    user-select: none;
  }

  /* Nav-links in drawer */
  nav.main a {
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    color: var(--text); font-size: 15px; font-weight: 500;
    display: flex; align-items: center; justify-content: flex-start; gap: 12px;
    text-align: left; width: 100%;
    transition: background .12s, color .12s;
    text-decoration: none;
  }
  nav.main a:hover { background: var(--bg); }
  nav.main a:last-child { border-bottom: none; }
  nav.main a.active::after { display: none; }
  nav.main a.active { color: var(--green); background: var(--green-soft); }

  /* Speciale stijl voor account-link in drawer */
  .nav-account { color: var(--green-dark) !important; font-weight: 700 !important; }
  .nav-logout   { color: var(--muted) !important; font-size: 14px !important; }

  /* Taalwisselaar onderaan drawer */
  .nav-lang-mobile {
    padding: 16px 22px;
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  }
  .nav-lang-mobile .flag {
    width: 30px; height: 20px;
    border-radius: 3px; overflow: hidden; flex-shrink: 0;
    opacity: .5; transition: opacity .15s, transform .15s;
    outline: 2px solid transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,.18);
  }
  .nav-lang-mobile .flag.active  { opacity: 1; transform: scale(1.12); outline-color: var(--green); }
  .nav-lang-mobile .flag:hover:not(.active) { opacity: .85; }

  /* Mobiel: dropdown (Meer) — uitklapbaar via .open class */
  .nav-dropdown { width: 100%; border-bottom: 1px solid var(--line); position: static; }
  .nav-dropdown-toggle {
    width: 100%; justify-content: space-between;
    padding: 14px 22px; font-size: 15px; font-weight: 500;
    color: var(--text);
  }
  .nav-dropdown-toggle svg { transition: transform .22s ease; }
  .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border: none; border-radius: 0;
    margin: 0; padding: 0; width: 100%; min-width: 0;
    transform: none; opacity: 1; visibility: visible;
    display: none; background: linear-gradient(180deg, var(--green-soft), rgba(234,243,222,.4));
  }
  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    padding: 12px 22px 12px 36px; border-bottom: 1px solid rgba(151,196,89,.25);
    font-size: 14px; border-radius: 0;
  }
  .nav-dropdown-menu a::after { display: none; }
  .nav-dropdown-menu a:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 28px; }
  .hero p.lead { font-size: 15px; margin-bottom: 24px; }
  .hero { padding: 40px 0 36px; }
  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 14px; }
  .kiyoh-score { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
  .kiyoh-score .num { font-size: 40px; }
  .topbar { font-size: 12px; padding: 8px 0; }
  .topbar-left { display: none; }
  .topbar .wrap { justify-content: space-between; gap: 12px; padding: 0 14px; }
  .shop-switch { font-size: 11px; }
  .header .wrap { padding: 12px 14px; gap: 8px; }
  .logo img { height: 38px; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 17px; height: 17px; }
  .header-actions { gap: 6px; }
  .banner { grid-template-columns: 1fr; text-align: left; gap: 12px; padding: 20px; margin-top: 20px; }
  .banner .btn { justify-self: start; }
  .banner h3 { font-size: 17px; }
  .banner p { font-size: 13px; }
  /* Filterbar mobiel: JS transform-scroll (auto + handmatig slepen, iOS-compatibel) */
  .filterbar-wrap {
    position: relative;
    margin-right: -14px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
  .filterbar-wrap::after { display: none; }
  .filterbar {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    width: max-content;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    animation: none;          /* JS beheert beweging via transform */
    will-change: transform;   /* GPU-compositie hint */
  }
  .chip { padding: 5px 12px; font-size: 12px; }
  /* 2 producten naast elkaar op mobiel — compacter, maar leesbaar */
  .grid { gap: 12px; grid-template-columns: repeat(2, 1fr); }
  .card .body { padding: 12px 12px 14px; }
  .card h3 { font-size: 15px; margin-bottom: 6px; line-height: 1.25; }
  .card .cat { font-size: 10px; letter-spacing: 1px; margin-bottom: 6px; }
  .card .desc { display: none; }
  .card .image { aspect-ratio: 1 / 1; }
  .card .image .mini-bottle { width: 44px; height: 76px; }
  .card .image .mini-bottle::before { top: -9px; width: 16px; height: 12px; }
  .card .image .mini-bottle::after { top: 10px; width: 30px; height: 36px; }
  .card .price-row { padding-top: 10px; }
  .card .price { font-size: 15px; }
  .card .price small { display: block; font-size: 11px; margin-top: 2px; }
  .card .price small.strike { display: inline; margin-left: 4px; font-size: 11px; }
  .card .add { width: 32px; height: 32px; flex-shrink: 0; }
  .card .add svg { width: 14px; height: 14px; }
  .intro-badge { font-size: 9px; padding: 4px 8px; top: 8px; left: 8px; }
  section.shop { padding: 36px 0; }
  section.shop .wrap { padding: 0 14px; }
  .reviews-wrap { padding: 36px 0; }
  .reviews-wrap .wrap { padding: 0 14px; }
  .science { padding: 32px 0; }
  .science .wrap { padding: 0 14px; gap: 16px; }
  .science h3 { font-size: 20px; }
  .science p { font-size: 14px; }
  .hero .wrap { padding: 0 14px; }
  .hero-svg { max-width: 200px; }
  .review { padding: 20px; }
  .review p.quote { font-size: 14px; }
  footer { padding: 32px 0 16px; }
  footer .wrap { padding: 0 14px; }
  footer .cols { grid-template-columns: 1fr; gap: 24px; margin-bottom: 20px; }
  footer .bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; left: 16px; right: auto; }
  .wa-float svg { width: 24px; height: 24px; }
  .intro-set { width: 70%; height: 60%; gap: 6px; }
  .intro-set .s { width: 44px; height: 44px; }
  .intro-set .s::after { font-size: 18px; }
}
/* Extra smal scherm (<380px): wat extra compacter, maar blijft 2 kolommen */
@media (max-width: 380px) {
  .grid { gap: 8px; }
  .card .body { padding: 10px; }
  .card h3 { font-size: 14px; }
  .card .price { font-size: 14px; }
  .card .add { width: 28px; height: 28px; }
}

/* ============================================================
   Productdetailpagina
   ============================================================ */
.breadcrumb {
  max-width: 1240px; margin: 0 auto; padding: 18px 24px;
  font-size: 13px; color: var(--muted);
}
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

.product-detail {
  max-width: 1240px; margin: 0 auto; padding: 0 24px 60px;
}
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  margin-bottom: 60px;
}
.pd-gallery { display: flex; flex-direction: column; gap: 16px; }
.pd-main-image {
  aspect-ratio: 1/1; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-soft) 0%, #d8e7bb 100%);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.pd-main-image img { max-width: 70%; max-height: 70%; object-fit: contain; }
.pd-main-image .big-bottle {
  position: relative; width: 200px; height: 330px;
  background: linear-gradient(160deg, #2a4f0b, #0d1d04);
  border-radius: 26px 26px 36px 36px / 24px 24px 48px 48px;
  box-shadow: 0 50px 70px -25px rgba(0,0,0,.4), inset 0 0 50px rgba(255,255,255,.08);
}
.pd-main-image .big-bottle::before {
  content: ''; position: absolute; top: -38px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 52px; background: #1a2407; border-radius: 10px 10px 6px 6px;
}
.pd-main-image .big-bottle .label {
  position: absolute; top: 100px; left: 50%; transform: translateX(-50%);
  width: 140px; padding: 12px 8px; background: #f7f4ef; color: #1f2a12;
  text-align: center; border-radius: 6px; font-family: 'Playfair Display', serif;
}
.pd-main-image .big-bottle .label .name { font-size: 14px; font-weight: 700; letter-spacing: .8px; }
.pd-main-image .big-bottle .label .pct { font-size: 30px; color: var(--green); margin-top: 6px; line-height: 1; }
.pd-main-image.intro-image {
  background: linear-gradient(135deg, #2a4f0b 0%, #3b6d11 100%);
}

.pd-info { padding-top: 8px; }
.pd-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; }
.pd-info h1 { font-size: 40px; margin-bottom: 14px; }
.pd-short { font-size: 16px; color: var(--muted); margin-bottom: 24px; max-width: 520px; }
.pd-price-block {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 20px; margin-bottom: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.pd-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--green-dark); font-weight: 700;
}
.pd-price-block .ex { font-size: 13px; color: var(--muted); margin-left: 6px; }

.pd-form { margin-bottom: 20px; }
.pd-label { font-size: 12px; color: var(--text); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin: 16px 0 10px; }
.variant-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.v-btn {
  padding: 10px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer;
  background: var(--card); color: var(--text);
  transition: all .15s ease;
}
.v-btn:hover { border-color: var(--green); color: var(--green); }
.v-btn.on { background: var(--green); border-color: var(--green); color: #fff; }

.price-dropdown {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 600;
  background: var(--card); color: var(--text); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%2372766b'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  margin-bottom: 4px; transition: border-color .15s;
}
.price-dropdown:focus { outline: none; border-color: var(--green); }

.qty-row { display: flex; gap: 16px; align-items: flex-end; margin-top: 14px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty button {
  width: 44px; height: 48px; border: none; background: transparent;
  font-size: 20px; font-weight: 700; color: var(--green-dark); cursor: pointer;
}
.qty button:hover { background: var(--green-soft); }
.qty input { width: 56px; height: 48px; border: none; text-align: center; font-size: 16px; font-weight: 600; font-family: inherit; background: transparent; }
.qty input:focus { outline: none; }
.btn.big { padding: 16px 24px; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }

.pd-usp {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  padding: 20px 0; margin: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pd-usp .u { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.pd-usp .u .i { color: var(--green); font-weight: 700; }

/* Compacte banner-stijl binnen de productpagina (overruled de grotere shop-page banners) */
.product-detail .banner {
  padding: 18px 20px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 0;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s ease;
}
.product-detail .banner:hover { filter: brightness(.96); }
.product-detail .banner .big-ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.55);
  display: grid; place-items: center;
}
.product-detail .banner .big-ico svg { width: 20px; height: 20px; }
.product-detail .banner.warranty .big-ico { color: #8b2e2e; }
.product-detail .banner.donor    .big-ico { color: var(--green); }
.product-detail .banner h3 {
  font-size: 15px; margin-bottom: 3px;
  font-family: 'Playfair Display', serif;
}
.product-detail .banner p { font-size: 13px; line-height: 1.4; opacity: .9; margin: 0; }

/* Tabs */
.tabs-wrap { max-width: 1240px; margin: 0 auto 60px; padding: 0 24px; }
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.tabs-nav button {
  background: transparent; border: none; cursor: pointer;
  padding: 14px 24px; font-family: inherit; font-size: 15px; font-weight: 600;
  /* Donkerdere kleur dan --muted zodat contrast >= 4.5:1 op #f7f4ef (WCAG AA) */
  color: #4a4d44; position: relative; top: 2px;
  border-bottom: 3px solid transparent; transition: all .15s ease;
}
.tabs-nav button:hover { color: var(--text); }
.tabs-nav button.active { color: var(--green-dark); border-bottom-color: var(--green); }
.tab-pane { display: none; max-width: 720px; }
.tab-pane.active { display: block; }
.tab-pane p { margin-bottom: 10px; }
.tab-pane a { color: var(--green); font-weight: 600; text-decoration: underline; }

/* Related */
.related-wrap { max-width: 1240px; margin: 56px auto 60px; padding: 0 24px; }
.related-wrap h2 { font-size: 28px; margin-bottom: 24px; }
/* Klanten bekeken ook — op desktop altijd 4 naast elkaar, ongeacht het totaal aantal items.
   auto-fit vult de rij als er weinig items zijn; 3 kolommen op wat smallere PC-schermen. */
.related-wrap .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) {
  .related-wrap .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .related-wrap .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Mobile product-detail — banners komen pas NA de add-to-cart knop */
@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; gap: 22px; }
  /* Haal de pd-gallery-wrapper weg zodat image en warranty banner losse grid-items worden */
  .pd-gallery { display: contents; }
  .pd-main-image { order: 1; }
  .pd-info { order: 2; }
  .pd-info .banner.donor { order: 3; }
  .pd-gallery > .banner.warranty { order: 4; }
  .pd-info h1 { font-size: 30px; }
  .pd-main-image .big-bottle { width: 160px; height: 260px; }
  .pd-main-image .big-bottle .label { width: 120px; top: 84px; }
  .pd-main-image .big-bottle .label .pct { font-size: 24px; }
}
@media (max-width: 560px) {
  .product-detail { padding: 0 16px 40px; }
  .tabs-wrap { padding: 0 16px; }
  .related-wrap { padding: 0 16px; }
  .qty-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn.big { width: 100%; padding: 16px 20px; }
  .tabs-nav { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; }
  .tabs-nav button { flex-shrink: 0; padding: 14px 18px; font-size: 14px; }
  .pd-info h1 { font-size: 26px; }
  /* Banner in smalle kolom: iets compacter */
  .product-detail .banner {
    gap: 12px;
    padding: 14px 16px;
  }
}

/* ============================================================
   Winkelwagen
   ============================================================ */
.cart-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px 60px; }
.cart-wrap h1 { font-size: 40px; margin: 12px 0 24px; }
.flash {
  padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px;
  border: 1px solid;
}
.flash-success { background: var(--green-soft); border-color: var(--green-light); color: var(--green-dark); }
.flash-error   { background: #fde8e8; border-color: #f5c2c2; color: #8b2e2e; }

.cart-empty { text-align: center; padding: 60px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.cart-empty p { color: var(--muted); margin-bottom: 20px; font-size: 16px; }

.cart-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px;
  display: grid; grid-template-columns: 80px 1fr auto auto 36px; gap: 16px; align-items: center;
}
.cart-item-img {
  width: 80px; height: 80px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green-soft), #d8e7bb);
  display: grid; place-items: center; overflow: hidden;
}
.cart-item-img img { max-width: 80%; max-height: 80%; object-fit: contain; }
.cart-item-info .cart-item-name { font-weight: 600; font-size: 15px; color: var(--text); display: block; margin-bottom: 2px; }
.cart-item-info .cart-item-name:hover { color: var(--green); }
.cart-item-info .cart-item-variant { font-size: 13px; color: var(--muted); }
.cart-item-info .cart-item-note { font-size: 12px; color: var(--muted); margin-top: 2px; }

.cart-item-qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.cart-item-qty button {
  width: 34px; height: 38px; border: none; background: transparent;
  font-size: 18px; font-weight: 700; color: var(--green-dark); cursor: pointer;
}
.cart-item-qty button:hover { background: var(--green-soft); }
.cart-item-qty .q { width: 36px; text-align: center; font-weight: 600; }

.cart-item-price .line { font-weight: 700; font-size: 15px; color: var(--green-dark); white-space: nowrap; }
.cart-item-price small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

.cart-item-remove button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card); color: var(--muted);
  display: grid; place-items: center; cursor: pointer; transition: all .15s ease;
}
.cart-item-remove button:hover { color: #8b2e2e; border-color: #f5c2c2; background: #fde8e8; }

.cart-summary {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; position: sticky; top: 100px;
}
.cart-summary h3 { font-size: 20px; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.sum-muted { color: var(--muted); font-size: 13px; }
.sum-total { padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--line); font-size: 16px; }
.sum-total strong { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-dark); }
.link-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-family: inherit; font-size: 13px; text-decoration: underline; }
.link-btn:hover { color: #8b2e2e; }

@media (max-width: 980px) {
  .cart-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-summary { position: static; }
}
@media (max-width: 560px) {
  .cart-wrap { padding: 0 12px 40px; }
  .cart-wrap h1 { font-size: 28px; }
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    grid-template-areas:
      "img  info   remove"
      "img  qty    price";
    gap: 8px 10px;
    padding: 12px;
    min-width: 0;
  }
  .cart-item-img     { grid-area: img; width: 60px; height: 60px; align-self: start; }
  .cart-item-info    { grid-area: info; min-width: 0; overflow-wrap: anywhere; }
  .cart-item-info .cart-item-name { font-size: 14px; }
  .cart-item-qty     { grid-area: qty; justify-self: start; }
  .cart-item-price   { grid-area: price; text-align: right; align-self: center; }
  .cart-item-remove  { grid-area: remove; align-self: start; }
  .cart-summary      { padding: 16px 14px; }
  .cart-summary h3   { font-size: 17px; }
}
/* Heel smalle schermen (iPhone SE, oude Androids): nog iets compacter */
@media (max-width: 380px) {
  .cart-wrap { padding: 0 10px 32px; }
  .cart-item { padding: 10px; gap: 6px 8px; }
  .cart-item-qty button { width: 30px; height: 34px; }
  .cart-item-qty .q { width: 30px; }
}

/* ============================================================
   Donateurschap-pagina
   ============================================================ */
.donor-page { padding: 0 0 60px; }
.donor-page .wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.donor-hero {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: center;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.donor-hero-ico {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.donor-hero-ico svg { width: 48px; height: 48px; }
.donor-hero-label { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.donor-hero h1 { font-size: 40px; margin-bottom: 10px; }
.donor-hero-lead { font-size: 16px; color: var(--muted); max-width: 600px; }

.donor-section-title {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

.donor-form { margin-bottom: 40px; }
.donor-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 20px;
}
.donor-tile {
  position: relative;
  background: var(--card); border: 2px solid var(--line); border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .15s ease;
}
.donor-tile:hover { border-color: var(--green-light); transform: translateY(-2px); }
.donor-tile input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.donor-tile:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: 0 8px 22px -12px rgba(59,109,17,.4);
}
.donor-tile-amount {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--green-dark); line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 2px;
}
.donor-tile-period { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* Eigen-bedrag-tegel */
.donor-tile-custom .donor-tile-amount .euro-prefix { font-family: inherit; }
.donor-tile-custom #donor-custom-amount {
  width: 80px;
  border: none; background: transparent;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--green-dark);
  text-align: center;
  -moz-appearance: textfield;
}
.donor-tile-custom #donor-custom-amount::-webkit-outer-spin-button,
.donor-tile-custom #donor-custom-amount::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.donor-tile-custom #donor-custom-amount:focus { outline: none; }
.donor-tile-custom #donor-custom-amount::placeholder {
  font-size: 16px; color: var(--muted); font-weight: 400; font-family: 'DM Sans', sans-serif;
}

.donor-custom-note {
  font-size: 15px; color: var(--text); font-weight: 700;
  margin-bottom: 24px;
}
.donor-custom-note a { color: var(--green); text-decoration: underline; }

.donor-submit {
  width: 100%; padding: 18px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px;
}

.donor-benefits {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 22px;
}
.donor-benefits h3 { font-size: 20px; margin-bottom: 14px; }
.donor-benefits ul { list-style: none; }
.donor-benefits li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 10px; font-size: 14px; line-height: 1.5;
}
.donor-benefits li > span:not(.chk) { flex: 1; min-width: 0; } /* tekst als één flex-item zodat <strong> niet op nieuwe regel springt */
.donor-benefits .chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
}
.donor-benefits .chk svg { width: 12px; height: 12px; }
.donor-description {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 22px;
}
.donor-description h3 { font-size: 20px; margin-bottom: 12px; }
.donor-description p { font-size: 14px; line-height: 1.6; }
.donor-auto-note { font-size: 13px; color: var(--muted); text-align: center; }

@media (max-width: 700px) {
  .donor-hero { grid-template-columns: 72px 1fr; gap: 16px; padding: 24px 0 20px; }
  .donor-hero-ico { width: 72px; height: 72px; }
  .donor-hero-ico svg { width: 36px; height: 36px; }
  .donor-hero h1 { font-size: 26px; }
  .donor-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .donor-tile { padding: 18px 12px; }
  .donor-tile-amount { font-size: 26px; }
  .donor-page .wrap { padding: 0 16px; }
}

/* ============================================================
   Inloggen (code-per-email)
   ============================================================ */
.auth-wrap { padding: 0 0 60px; }
.auth-wrap .wrap { max-width: 520px; margin: 0 auto; padding: 0 24px; }
.auth-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 36px; margin-top: 12px;
  text-align: center;
}
.auth-ico {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.auth-ico svg { width: 32px; height: 32px; }
.auth-card h1 { font-size: 30px; margin-bottom: 10px; }
.auth-lead { color: var(--muted); font-size: 15px; margin-bottom: 14px; line-height: 1.55; }
.auth-lead.auth-note {
  background: var(--green-soft); color: var(--green-dark);
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; margin-bottom: 22px;
}
.auth-lead.auth-note strong { color: var(--green-dark); }
.recaptcha-notice { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: center; }
.recaptcha-notice a { color: var(--muted); text-decoration: underline; }
.auth-form { display: flex; flex-direction: column; gap: 14px; text-align: left; margin: 0 auto; max-width: 360px; }
.auth-form .field { gap: 6px; }
.auth-form .field span { font-size: 12px; font-weight: 700; letter-spacing: .3px; }
.auth-form .field input {
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 16px; background: var(--bg);
  transition: border-color .15s ease;
}
.auth-form .field input:focus { outline: none; border-color: var(--green); background: #fff; }
.auth-form .auth-code {
  text-align: center; letter-spacing: 8px;
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
  text-transform: uppercase;
}
.auth-form .btn { width: 100%; padding: 14px 20px; }
.auth-alt { font-size: 13px; color: var(--muted); margin-top: 22px; }
.auth-alt a { color: var(--green); font-weight: 600; text-decoration: underline; }

.auth-banner {
  background: var(--green-soft); border: 1px solid var(--green-light);
  border-radius: 12px; padding: 12px 16px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 14px; flex-wrap: wrap;
}
.auth-banner.logged-in { background: var(--green-soft); }
.auth-banner a { color: var(--green); font-weight: 700; text-decoration: underline; }

/* Account-badge met initiaal in header */
.icon-btn.account-badge {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.icon-btn.account-badge .account-initial {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; line-height: 1;
}
.icon-btn.account-badge:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* Mobile-only nav items — desktop-verborgen */
.only-mobile { display: none !important; }
.nav-desktop-only { /* zichtbaar op desktop, verborgen op mobiel — zie @media */ }
.nav-section-label { display: none; }
.nav-mobile-head  { display: none; }
.nav-lang-mobile  { display: none; }
.nav-divider { height: 1px; background: var(--line); margin: 4px 0; }

/* ============================================================
   Account-pagina's (dashboard / orders / wallet / gegevens)
   ============================================================ */
.account-wrap { padding: 0 0 60px; }
.account-wrap .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.account-wrap h1 { font-size: 34px; margin: 8px 0 24px; }
.account-wrap h2 { font-size: 22px; margin: 18px 0 14px; }

.account-grid {
  display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start;
}

/* Sidebar-navigatie */
.account-nav {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; position: sticky; top: 100px;
}
.account-nav-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.account-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  flex-shrink: 0;
}
.account-name { font-weight: 600; font-size: 14px; color: var(--text); }
.account-email { font-size: 12px; color: var(--muted); word-break: break-all; }

.account-nav-list { display: flex; flex-direction: column; gap: 2px; }
.account-nav-list a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.account-nav-list a:hover { background: var(--green-soft); color: var(--green-dark); }
.account-nav-list a.on { background: var(--green-soft); color: var(--green-dark); font-weight: 700; }
.account-nav-list a.logout {
  margin-top: 8px; border-top: 1px solid var(--line); padding-top: 14px; border-radius: 0;
  color: var(--muted);
}
.account-nav-list a.logout:hover { background: #fde8e8; color: #8b2e2e; }

/* Content-kolom */
.account-content { min-width: 0; }

/* Profielformulieren: contact + adres naast elkaar op desktop, gestapeld op mobiel */
.profile-forms {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-items: start;
}
@media (max-width: 980px) {
  .profile-forms { grid-template-columns: 1fr; }
}

/* Dashboard-kaarten */
.account-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.account-card {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.account-card:hover { transform: translateY(-2px); border-color: var(--green-light); box-shadow: 0 14px 30px -18px rgba(59,109,17,.3); }
.account-card.card-wallet { background: linear-gradient(135deg, var(--green-soft), #d8e7bb); border-color: var(--green-light); }
.account-card .ac-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.account-card .ac-value { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--green-dark); line-height: 1; margin-bottom: 6px; }
.account-card .ac-value-small { font-size: 18px; color: var(--text); }
.account-card .ac-value-green { color: var(--green-dark); }
.account-card .ac-sub { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.account-card .ac-link { font-size: 13px; color: var(--green); font-weight: 600; }

/* Bestellingen */
.empty-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 24px; text-align: center;
}
.empty-box p { color: var(--muted); margin-bottom: 18px; }
.orders-list { display: flex; flex-direction: column; gap: 10px; }
.order-row {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px;
  display: grid; grid-template-columns: 2fr auto auto auto; gap: 18px; align-items: center;
}
.or-num { font-weight: 700; font-size: 14px; color: var(--text); }
.or-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.or-total { font-weight: 700; color: var(--green-dark); }
.or-link { color: var(--green); font-weight: 600; font-size: 13px; }
.badge-status {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.badge-grey  { background: #eee; color: #555; }
.badge-amber { background: #fff3cd; color: #8a6200; }
.badge-blue  { background: #d9e7f5; color: #1d4b8f; }
.badge-green { background: var(--green-soft); color: var(--green-dark); }
.badge-red   { background: #fde8e8; color: #8b2e2e; }

/* Wallet */
.wallet-balance-box {
  background: linear-gradient(135deg, var(--green-soft), #d8e7bb);
  border: 1px solid var(--green-light); border-radius: var(--radius);
  padding: 30px 28px; margin-bottom: 28px; text-align: center;
}
.wallet-balance-box .label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-dark); opacity: .8; }
.wallet-balance-box .balance { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--green-dark); line-height: 1; margin: 6px 0 18px; }
.wallet-balance-box .cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.wallet-section-title { font-size: 20px; margin-bottom: 14px; }

.wallet-tx-list { display: flex; flex-direction: column; gap: 8px; }
.wtx-row {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 18px;
  display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center;
}
.wtx-label { font-weight: 600; font-size: 14px; }
.wtx-desc  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.wtx-date  { font-size: 12px; color: var(--muted); }
.wtx-amount { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; white-space: nowrap; }
.wtx-amount.plus  { color: var(--green); }
.wtx-amount.minus { color: #8b2e2e; }

/* Responsive */
@media (max-width: 900px) {
  .account-grid { grid-template-columns: 1fr; gap: 18px; }
  .account-nav { position: static; }
  .account-nav-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .account-nav-list a { padding: 8px 14px; }
  .account-nav-list a.logout { margin: 0; padding: 8px 14px; border: none; }

  /* Mobile-nav: verborgen elementen zichtbaar in drawer */
  .only-mobile       { display: flex !important; }
  .nav-section-label { display: block; }
  .nav-mobile-head   { display: flex; }
  .nav-lang-mobile   { display: flex; }
  .nav-divider       { display: block; margin: 0; }

  /* Desktop-only elementen verbergen in drawer */
  .nav-desktop-only  { display: none !important; }

  /* Mobiele links: compacter, duidelijker hiërarchie */
  nav.main > a {
    padding: 13px 22px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  /* Categorieën in mobiel drawer — zelfde stijl als andere nav-items */
  nav.main a.only-mobile {
    padding: 14px 22px;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  nav.main a.only-mobile.active { color: var(--green); background: var(--green-soft); }
  nav.main a.only-mobile:hover  { background: var(--bg); color: var(--text); }

  /* Laatste zichtbaar item vóór spacer: geen border */
  nav.main > a:last-of-type { border-bottom: none; }

  /* ── Shop accordion (mobiel) ── */
  .nav-accordion { flex-direction: column; }
  .nav-accordion-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px; font-size: 15px; font-weight: 500;
    color: var(--text); border-bottom: 1px solid var(--line);
    background: none; cursor: pointer; text-align: left;
    border-top: none; border-left: none; border-right: none;
    font-family: inherit;
  }
  .nav-accordion-toggle.active { color: var(--green); background: var(--green-soft); }
  .nav-accordion-toggle svg { transition: transform .25s ease; flex-shrink: 0; }
  .nav-accordion.open .nav-accordion-toggle svg { transform: rotate(180deg); }

  .nav-accordion-body { display: none; flex-direction: column; }
  .nav-accordion.open .nav-accordion-body { display: flex; }

  /* Sub-items */
  nav.main .nav-sub {
    padding: 12px 22px 12px 38px;
    font-size: 14px; font-weight: 400;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center;
    text-decoration: none;
    transition: background .12s, color .12s;
    background: var(--bg);
  }
  nav.main .nav-sub:hover { background: var(--line); color: var(--text); }
  nav.main .nav-sub.active { color: var(--green); background: var(--green-soft); font-weight: 500; }
}

@media (max-width: 560px) {
  .account-wrap .wrap { padding: 0 14px; }
  .account-wrap h1 { font-size: 26px; }
  .account-cards { grid-template-columns: 1fr; }
  .order-row { grid-template-columns: 1fr auto; gap: 10px; }
  .or-status { grid-column: 1 / -1; }
  .or-total, .or-link { grid-column: auto; }
  .wallet-balance-box .balance { font-size: 44px; }
  .wtx-row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .wtx-date { grid-column: 1 / -1; grid-row: 2; }
  .wtx-amount { grid-row: 1; }
}

@media (max-width: 560px) {
  .auth-wrap .wrap { padding: 0 14px; }
  .auth-card { padding: 28px 20px; }
  .auth-card h1 { font-size: 24px; }
  .auth-form .auth-code { font-size: 22px; letter-spacing: 6px; }
}

/* ============================================================
   Cart-item fallback-iconen (als product geen afbeelding heeft)
   ============================================================ */
.cart-ico {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
}
.cart-ico.donor-ico { color: var(--green); background: var(--green-soft); border-radius: 10px; }
.cart-ico.donor-ico svg { width: 34px; height: 34px; }
.cart-ico.topup-ico {
  color: #fff; font-weight: 700; font-size: 28px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 10px;
}

/* ============================================================
   Afrekenen (checkout)
   ============================================================ */
.checkout { padding: 0 0 60px; }
.checkout .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.checkout h1 { font-size: 40px; margin: 12px 0 28px; }

.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-fields { display: flex; flex-direction: column; gap: 18px; }

.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.panel h3 { font-size: 18px; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; letter-spacing: .2px; }
.panel p.note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.panel-intro { font-size: 13px; color: var(--muted); margin: -8px 0 16px; }
.panel textarea {
  width: 100%; font-family: inherit; font-size: 14px;
  padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg);
  resize: vertical;
}
.panel textarea:focus { outline: none; border-color: var(--green); background: #fff; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; grid-column: span 2; }
.field.wide  { grid-column: span 3; }
.field.small { grid-column: span 1; }
/* Uniform 2-koloms-grid: alle velden even breed */
.form-grid.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-grid.form-grid-2 .field { grid-column: auto; }
.field span { font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: .3px; }
.field input, .field select {
  padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 14px; background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green); background: #fff; }
.field.field-error input, .field.field-error select { border-color: #c66; background: #fff6f6; }
.field small.err { color: #8b2e2e; font-size: 12px; }

.radio-list { display: flex; flex-direction: column; gap: 10px; }
.radio-list.field-error { border: 1.5px solid #c66; border-radius: 10px; padding: 6px; background: #fff6f6; }
.radio-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.radio-item:has(input:checked) { border-color: var(--green); background: var(--green-soft); }
.radio-item input[type="radio"] { accent-color: var(--green); width: 18px; height: 18px; }
.radio-title { font-weight: 600; font-size: 14px; }
.radio-desc  { font-size: 13px; color: var(--muted); margin-top: 2px; }
.radio-price { font-weight: 700; color: var(--green-dark); white-space: nowrap; }

.panel-age { border-color: var(--green-light); background: var(--green-soft); }
.panel-age.field-error { border-color: #c66; background: #fff6f6; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; cursor: pointer; }
.check input[type="checkbox"] { accent-color: var(--green); width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }

.checkout-summary {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; position: sticky; top: 100px;
}
.checkout-summary h3 { font-size: 18px; margin-bottom: 14px; }
.sum-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.sum-item { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: baseline; font-size: 13px; }
.sum-item .si-name { color: var(--text); }
.sum-item .si-name small { display: block; color: var(--muted); font-size: 12px; }
.sum-item .si-qty   { color: var(--muted); font-size: 12px; }
.sum-item .si-price { font-weight: 600; color: var(--green-dark); white-space: nowrap; }
.summary-note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

@media (max-width: 980px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 20px; }
  .checkout-summary { position: static; }
  .checkout { padding: 0 0 40px; }
  .checkout .wrap { padding: 0 16px; }
  .checkout h1 { font-size: 30px; margin: 8px 0 20px; }
}
@media (max-width: 560px) {
  .checkout .wrap { padding: 0 12px; }
  .checkout h1 { font-size: 24px; margin: 6px 0 18px; }
  /* Forms volledig 1 kolom op mobiel — tweekolommen in 375-560px werd te krap
     voor straat+huisnr, postcode+plaats etc. Veel leesbaarder zo. */
  .form-grid, .form-grid.form-grid-2 { grid-template-columns: 1fr; gap: 10px; }
  .field, .field.wide, .field.small { grid-column: auto; }
  .field span { font-size: 12px; }
  /* 16px input-size voorkomt iOS auto-zoom */
  .field input, .field select, .panel textarea { font-size: 16px; padding: 10px 12px; width: 100%; min-width: 0; }
  .panel { padding: 16px 14px; }
  .panel h3 { font-size: 16px; margin-bottom: 12px; }
  .panel-intro { font-size: 12px; margin-bottom: 12px; }
  .radio-item { grid-template-columns: auto 1fr; padding: 12px; gap: 10px; min-width: 0; }
  .radio-body { min-width: 0; }
  .radio-item .radio-price { grid-column: 1 / -1; justify-self: end; font-size: 14px; padding-top: 4px; }
  .radio-title { font-size: 14px; }
  .radio-desc  { font-size: 12px; overflow-wrap: anywhere; }
  .checkout-summary { padding: 16px 14px; }
  .checkout-summary h3 { font-size: 16px; }
  .sum-item { font-size: 12px; gap: 6px; }
  .sum-item .si-name { overflow-wrap: anywhere; min-width: 0; }
  /* Breedte-bescherming voor wallet-inzet rij + kortingscode-form */
  .panel .discount-form > div,
  #wallet-amount-row { flex-wrap: wrap; }
}
/* Heel smal (<380px): extra compacte padding */
@media (max-width: 380px) {
  .checkout .wrap { padding: 0 10px; }
  .panel { padding: 14px 12px; }
  .checkout-summary { padding: 14px 12px; }
}

/* ============================================================
   Orderbevestiging
   ============================================================ */
.order-confirm { padding: 40px 0 60px; }
.order-confirm .wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.confirm-hero { text-align: center; padding: 40px 0 36px; }
.check-ico {
  width: 72px; height: 72px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.check-ico svg { width: 44px; height: 44px; }
.confirm-hero h1 { font-size: 40px; margin-bottom: 12px; }
.confirm-hero p.lead { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; }

.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.panel-pay { background: var(--green-soft); border-color: var(--green-light); }
.panel-pay h3 { color: var(--green-dark); }
.pay-details {
  display: grid; grid-template-columns: auto 1fr; gap: 10px 16px;
  margin: 12px 0; font-size: 14px;
}
.pay-details dt { color: var(--muted); }
.pay-details dd { font-weight: 600; }
.pay-details code {
  font-family: 'DM Sans', monospace; background: #fff; padding: 2px 8px; border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06);
}
.small { font-size: 12px; }
.muted { color: var(--muted); }

.next-steps ol { padding-left: 20px; margin: 12px 0; }
.next-steps li { margin-bottom: 10px; font-size: 14px; }
.next-steps a { color: var(--green); font-weight: 600; text-decoration: underline; }
.confirm-cta { text-align: center; margin-top: 24px; }

@media (max-width: 700px) {
  .confirm-grid { grid-template-columns: 1fr; }
  .confirm-hero h1 { font-size: 28px; }
  .order-confirm .wrap { padding: 0 16px; }
}

/* ============================================================
   Product-type badge (Actief / Niet-actief)
   ============================================================ */
.type-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 8px;
}
.type-badge-actief {
  background: #eaf3de;
  color: #2a4f0b;
  border: 1.5px solid #a8cf6e;
}
.type-badge-niet-actief {
  background: #dce8f7;
  color: #1e3a5f;
  border: 1.5px solid #93bce8;
}

/* ============================================================
   Kennismakingstraject — intro-form pagina
   ============================================================ */
.intro-form-page { padding: 0 0 60px; }
.intro-form-page .wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.intro-hero {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  align-items: center; padding: 28px 0 22px;
  border-bottom: 1px solid var(--line); margin-bottom: 28px;
}
.intro-hero-ico {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
}
.intro-hero-ico svg { width: 42px; height: 42px; }
.intro-hero-label { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.intro-hero h1 { font-size: 36px; margin-bottom: 8px; line-height: 1.2; }
.intro-hero-lead { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }
.intro-hero-price { font-size: 20px; font-weight: 700; color: var(--green-dark); margin: 8px 0 0; }

.intro-benefits {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 28px;
}
.intro-benefits h2 { font-size: 20px; margin: 0 0 16px; }
.intro-benefits ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.intro-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.55; }
.intro-benefits li > span:not(.chk) { flex: 1; min-width: 0; }
.intro-benefits .chk {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--green-soft); color: var(--green); display: grid; place-items: center;
}
.intro-benefits .chk svg { width: 12px; height: 12px; }

.intro-description {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 28px;
  font-size: 15px; line-height: 1.7; color: var(--text);
}
.intro-description h2, .intro-description h3 { margin-top: 0; color: var(--green-dark); }
.intro-description p { margin: 0 0 12px; }
.intro-description ul, .intro-description ol { padding-left: 22px; margin: 0 0 12px; }

.intro-howit {
  background: var(--green-soft); border: 1px solid var(--green-light);
  border-radius: 12px; padding: 14px 20px; margin-bottom: 28px;
}
.intro-howit strong { color: var(--green-dark); }
.intro-howit p { margin: 6px 0 0; font-size: 14px; color: var(--text); line-height: 1.55; }

/* Progress */
.intro-progress-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.intro-progress-outer { flex: 1; height: 8px; background: var(--line); border-radius: 8px; overflow: hidden; }
.intro-progress-inner { height: 100%; background: var(--green); border-radius: 8px; transition: width .35s ease; }
.intro-progress-label { font-size: 13px; color: var(--muted); white-space: nowrap; min-width: 80px; text-align: right; }

/* Stap-titel */
.intro-step-title { font-size: 19px; font-weight: 700; color: var(--green-dark); margin: 0 0 18px; }

/* Velden */
.intro-fields { display: flex; flex-direction: column; gap: 16px; }
.intro-field { display: flex; flex-direction: column; gap: 6px; }
.intro-field > span { font-size: 14px; font-weight: 600; color: var(--text); }
.intro-field > span em { color: var(--green); font-style: normal; margin-left: 2px; }
.intro-field input,
.intro-field select,
.intro-field textarea {
  border: 1.5px solid var(--line); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; font-family: inherit;
  color: var(--text); background: #fff;
  transition: border-color .15s;
}
.intro-field input:focus,
.intro-field select:focus,
.intro-field textarea:focus { outline: none; border-color: var(--green-light); background: #fff; }
.intro-field textarea { resize: vertical; min-height: 80px; }

/* Validatiefout */
.intro-field input.if-invalid,
.intro-field select.if-invalid,
.intro-field textarea.if-invalid { border-color: #e05555; }
.intro-field .if-invalid-msg { font-size: 12px; color: #e05555; margin-top: 2px; display: none; }
.intro-field input.if-invalid ~ .if-invalid-msg,
.intro-field select.if-invalid ~ .if-invalid-msg,
.intro-field textarea.if-invalid ~ .if-invalid-msg { display: block; }

/* Radio-groep */
.intro-radio-group { display: flex; gap: 20px; padding: 4px 0; flex-wrap: wrap; }
.intro-radio-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; font-weight: 400; }
.intro-radio-group label input { width: auto; accent-color: var(--green); }

/* Checkbox-veld */
.intro-checkbox-field { flex-direction: row !important; align-items: flex-start; gap: 10px !important; }
.intro-checkbox-field input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--green); }
.intro-checkbox-field > span { font-size: 14px; font-weight: 400 !important; line-height: 1.5; }
.intro-checkbox-field a { color: var(--green); text-decoration: underline; }

/* Slotopmerking */
.intro-submit-note { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 20px; }

/* Navigatieknoppen */
.intro-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }

@media (max-width: 700px) {
  .intro-hero { grid-template-columns: 60px 1fr; gap: 14px; padding: 20px 0 16px; }
  .intro-hero-ico { width: 60px; height: 60px; }
  .intro-hero-ico svg { width: 30px; height: 30px; }
  .intro-hero h1 { font-size: 24px; }
  .intro-form-page .wrap { padding: 0 16px; }
}

/* ============================================================
   Donateur — abonnementsinterval kiezer
   ============================================================ */
.donor-interval-wrap { margin: 8px 0 24px; }
.donor-interval-options {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px;
}
.donor-interval-option {
  position: relative; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 16px 10px; text-align: center;
  transition: border-color .15s, background .15s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.donor-interval-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.donor-interval-option:has(input:checked) {
  border-color: var(--green); background: var(--green-soft);
}
.donor-interval-option:hover { border-color: var(--green-light); }
.dio-label { font-size: 15px; font-weight: 700; color: var(--text); }
.dio-sub { font-size: 11px; color: var(--muted); line-height: 1.4; }
.donor-interval-option:has(input:checked) .dio-label { color: var(--green-dark); }
.donor-interval-option:has(input:checked) .dio-sub { color: var(--green); }

@media (max-width: 700px) {
  .donor-interval-options { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Cross-type sectie (actief ↔ niet-actief suggesties)
   ============================================================ */
.cross-type-wrap {
  margin: 52px 0 0;
  padding-top: 40px;
  border-top: 2px solid var(--line);
}
.cross-type-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  flex-wrap: wrap;
}
.cross-type-header .type-badge {
  font-size: 11px;
  margin-bottom: 0;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cross-type-header { font-size: 17px; gap: 10px; }
}

/* ── Zoekbalk (slide-down onder header) ─────────────────────────── */
.header-search-bar {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height .22s ease, padding .22s ease, box-shadow .22s ease;
  padding: 0;
  box-shadow: none;
}
.header-search-bar.open {
  max-height: 64px;
  padding: 8px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.header-search-bar .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 560px;    /* niet vol-breed op desktop */
  margin: 0 auto;      /* gecentreerd onder de header */
  width: 100%;
}
.header-search-form > svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--muted);
}
.header-search-form input[type="search"] {
  flex: 1;
  min-width: 0;
  padding: 7px 11px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.header-search-form input[type="search"]:focus { border-color: var(--green); }
.header-search-form .btn-sm {
  padding: 7px 14px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-search-form .search-close { flex-shrink: 0; }
@media (max-width: 480px) {
  .header-search-form { max-width: 100%; }
  .header-search-form .btn-sm { display: none; }
}

/* ── Zoekresultaten pagina ──────────────────────────────────────── */
.search-page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}
.search-page-bar { margin-bottom: 32px; }
.search-page-form { margin-bottom: 12px; }

.search-page-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  max-width: 580px;
  transition: border-color .15s;
}
.search-page-input-wrap:focus-within { border-color: var(--green); }
.search-page-icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--muted); }
.search-page-input {
  flex: 1; min-width: 0;
  border: none; background: none;
  font-size: 15px; font-family: inherit; color: var(--text);
  outline: none; padding: 6px 0;
  -webkit-appearance: none;
}
.search-page-btn {
  padding: 8px 18px;
  background: var(--green); color: #fff;
  border: none; border-radius: 8px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.search-page-btn:hover { background: var(--green-dark, #2e5a0e); }

.search-results-meta { color: var(--muted); font-size: 14px; margin: 0; }
.search-results-meta strong { color: var(--text); }

.search-grid { margin-bottom: 16px; }

.search-upsell-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 40px;
  opacity: .7;
}

.search-no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}
.search-no-results svg { width: 56px; height: 56px; margin-bottom: 16px; opacity: .35; }
.search-no-results p { font-size: 15px; margin: 0; }
.search-no-results a { color: var(--green); text-decoration: underline; }

/* ── Cross-shop suggestie op zoekpagina ─────────────────────────── */
.search-crossshop--top {
  background: var(--bg, #f6f6f4);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}
.search-crossshop-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-crossshop-inner svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  opacity: .5;
}
.search-crossshop-inner a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.search-crossshop-inner a:hover { text-decoration: underline; }
.search-crossshop-inner .sep { color: var(--muted); }
.crossshop-desc {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

.search-crossshop--bottom {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.search-crossshop-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
}
.search-crossshop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-crossshop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--green);
  border-radius: 40px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.search-crossshop-btn:hover {
  background: var(--green);
  color: #fff;
}
.search-crossshop-btn-inner {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.search-crossshop-btn-name { font-weight: 600; }
.search-crossshop-btn-desc {
  font-size: 11px;
  font-weight: 400;
  opacity: .75;
  line-height: 1.3;
}
.search-crossshop-btn svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  transition: transform .15s;
}
.search-crossshop-btn:hover svg { transform: translateX(3px); }

@media (max-width: 640px) {
  .search-page-wrap { padding: 28px 16px 48px; }
  .search-page-btn { padding: 8px 13px; }
  .search-crossshop-links { flex-direction: column; }
  .search-crossshop-btn { justify-content: space-between; }
}

