/* =========================================================================
   BestHoneyPack — besthoneypack.com
   Honinggoud op houtskool, editorial serif voor de koppen, veel witruimte.
   Bewust geen framework: de winkel is één pagina plus een productpagina.
   ========================================================================= */

:root {
  --ink:        #14110D;
  --ink-soft:   #2A241B;
  --accent:      #C4881A;
  --accent-lift: #E0A72C;
  --accent-deep: #8F6210;
  --cream:      #FBF7EF;
  --cream-deep: #F3EBDC;
  --paper:      #FFFFFF;
  --muted:      #6F6455;
  --muted-soft: #9A8F7E;
  --line:       #E9E1D2;
  --line-dark:  rgba(255, 255, 255, 0.14);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 17, 13, .05), 0 2px 8px rgba(20, 17, 13, .04);
  --shadow-md: 0 4px 12px rgba(20, 17, 13, .06), 0 18px 44px rgba(20, 17, 13, .08);
  --shadow-lg: 0 8px 24px rgba(20, 17, 13, .10), 0 32px 80px rgba(20, 17, 13, .14);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shell: 1200px;
  --gutter: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* iOS vergroot anders eigenhandig de tekst bij het draaien van het toestel. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}

.container {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 820px; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-md); }
.btn-primary:disabled { background: var(--line); color: var(--muted-soft); cursor: not-allowed; box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline.light { color: var(--cream); border-color: var(--line-dark); }
.btn-outline.light:hover { border-color: var(--cream); background: rgba(255,255,255,.06); }

.btn-ghost { background: var(--cream-deep); color: var(--ink); }
.btn-ghost:hover { background: var(--accent); color: var(--paper); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Aankondigingsbalk ---------- */
.announce {
  background: var(--ink);
  color: rgba(251, 247, 239, .82);
  font-size: 0.8rem;
  letter-spacing: .01em;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 40px;
  text-align: center;
}
.announce i { color: var(--accent-lift); margin-right: 7px; }
.announce-sep { width: 1px; height: 14px; background: var(--line-dark); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--accent-lift), var(--accent-deep));
  color: var(--paper);
  font-size: .95rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-text strong { font-weight: 700; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .16s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(1100px 460px at 88% 18%, rgba(224, 167, 44, .16), transparent 62%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 78%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 136, 26, .16);
}
.eyebrow.light {
  background: rgba(255,255,255,.06);
  border-color: var(--line-dark);
  color: rgba(251,247,239,.75);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.5rem, 5.2vw, 3.9rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
}
.lead {
  max-width: 46ch;
  margin: 0;
  font-size: 1.06rem;
  color: var(--muted);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 40px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats div { margin: 0; }
.hero-stats dt {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-stats dd {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

.hero-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-.6deg);
}
.hero-figure img { width: 100%; }

/* ---------- USP-balk ---------- */
.usps { border-block: 1px solid var(--line); background: var(--paper); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}
.usp:first-child { border-left: 0; padding-left: 0; }
.usp i { color: var(--accent); font-size: 1.05rem; }
.usp strong { display: block; font-size: 0.92rem; font-weight: 600; }
.usp span { font-size: 0.82rem; color: var(--muted-soft); }

/* ---------- Secties ---------- */
.section { padding: 104px 0; }
.section-tint { background: var(--cream); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head h2 {
  margin: 20px 0 14px;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}
.section-head p { margin: 0; color: var(--muted); }

/* ---------- Producten ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product:hover {
  transform: translateY(-4px);
  border-color: var(--cream-deep);
  box-shadow: var(--shadow-md);
}
.product-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* De leveranciersfoto's staan op wit, dus de tegel is wit; een lijn eronder
   scheidt het beeld van de tekst zonder dat er een grijs vlak ontstaat. */
.product-media {
  position: relative;
  padding: 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2, .8, .3, 1);
}
.product:hover .product-media img { transform: scale(1.04); }

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}
.product-body h3 { font-size: 1.2rem; }
.product-sub {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--muted-soft);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.price-unit { font-size: 0.78rem; color: var(--muted-soft); }
.product .btn { margin-top: auto; width: 100%; }

.ship-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 0;
  padding: 16px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 0.88rem;
  color: var(--muted);
}
.ship-note i { color: var(--accent); }

/* ---------- Split (ingrediënten) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.split-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-copy h2 {
  margin: 20px 0 16px;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
}
.split-copy > p { color: rgba(251, 247, 239, .7); margin: 0 0 28px; }

.ingredient-list { list-style: none; margin: 0 0 32px; padding: 0; }
.ingredient-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
}
.ingredient-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.ingredient-list strong { font-weight: 600; }
.ingredient-list span { font-size: 0.84rem; color: rgba(251, 247, 239, .5); text-align: right; }

/* ---------- Stappen ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.steps li {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.steps h3 { font-size: 1.18rem; margin-bottom: 8px; }
.steps p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ---------- Waarvoor (voordelen) ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.benefit {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.benefit h3 { font-size: 1.24rem; margin-bottom: 12px; }
.benefit p { margin: 0 0 12px; font-size: 0.95rem; color: var(--muted); }
.benefit p:last-child { margin-bottom: 0; }

.benefit-lead {
  grid-row: span 2;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(224, 167, 44, .14), transparent 62%),
    var(--cream);
  border-color: var(--accent);
}
.benefit-lead h3 { font-size: 1.5rem; }
.benefit-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.benefit-lead strong { color: var(--ink); }

.benefit-advice {
  grid-column: 1 / -1;
  background: var(--cream);
}
.benefit-advice h3 { font-size: 1.1rem; }
.benefit-advice i { color: var(--accent); margin-right: 8px; }
.benefit-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem !important;
}
.benefit-note a { color: var(--accent-deep); border-bottom: 1px solid currentColor; }

@media (max-width: 1000px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-lead { grid-row: auto; }
}

/* Mannen/vrouwen naast elkaar binnen de hoofdkaart. */
.doelgroep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.doelgroep-kop {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.doelgroep-kop i { color: var(--accent); margin-right: 7px; }
.doelgroep p { font-size: 0.9rem; margin: 0; }
.benefit-slot { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Contra-indicaties: bewust een ander, waarschuwend register dan de rest. */
.contra {
  margin-top: 26px;
  padding: 30px 32px;
  border: 1px solid #E7C9C4;
  border-left: 3px solid #B3392B;
  border-radius: var(--radius);
  background: #FDF6F4;
}
.contra-kop { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contra-kop i { color: #B3392B; font-size: 1.15rem; }
.contra-kop h3 { font-size: 1.18rem; margin: 0; }
.contra ul { margin: 0 0 16px; padding-left: 22px; }
.contra li { margin-bottom: 8px; font-size: 0.95rem; color: #6B4C46; }
.contra li strong { color: #7E2E22; }
.contra > p { margin: 0; font-size: 0.92rem; color: #6B4C46; }

@media (max-width: 720px) {
  .doelgroep { grid-template-columns: 1fr; gap: 14px; }
  .contra { padding: 24px 22px; }
  .contra-kop h3 { font-size: 1.06rem; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: none;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 0;
  padding: 0 0 24px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Winkelwagen ---------- */
.cart-fab {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .16s ease, background .16s ease;
}
.cart-fab:hover { transform: translateY(-2px); background: var(--accent-deep); }
.cart-count {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 22px; height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--accent-lift);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 17, 13, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: min(460px, 100%);
  max-height: min(88vh, 780px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(12px) scale(.99);
  transition: transform .22s cubic-bezier(.2, .8, .3, 1);
}
.cart-overlay.active .cart-modal { transform: none; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 { font-size: 1.2rem; }
.cart-close {
  width: 34px; height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.cart-close:hover { background: var(--cream-deep); color: var(--ink); }

.cart-items { flex: 1; padding: 12px 26px; overflow-y: auto; }
.cart-empty { padding: 34px 0; text-align: center; color: var(--muted-soft); }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-info h4 {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cart-qty { display: inline-flex; align-items: center; gap: 2px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease;
}
.qty-btn:first-of-type { border-radius: 8px 0 0 8px; }
.qty-btn:hover { background: var(--cream); border-color: var(--muted-soft); }
.qty-value {
  min-width: 34px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-block: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
}
.qty-plus { border-radius: 0 8px 8px 0; }

.cart-item-actions { display: flex; align-items: center; gap: 12px; }
.cart-item-price { font-size: 0.95rem; font-weight: 600; }
.cart-item-remove {
  border: 0;
  background: none;
  color: var(--muted-soft);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: color .16s ease;
}
.cart-item-remove:hover { color: var(--accent-deep); }

/* ---------- Checkout-formulier (stap 2) ---------- */
.checkout-form { padding: 24px 26px 4px; overflow-y: auto; }
.checkout-form h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 16px;
}
.checkout-form label {
  display: block;
  margin-bottom: 13px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.checkout-form input,
.checkout-form select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.checkout-form input:focus,
.checkout-form select:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 136, 26, .15);
}
.checkout-form .form-row { display: flex; gap: 12px; }
.checkout-form .form-row label { flex: 1; min-width: 0; }
.checkout-form .optioneel { font-weight: 400; color: var(--muted-soft); }
.checkout-form .form-error {
  margin: 4px 0 0;
  padding: 11px 14px;
  border-radius: 11px;
  background: #FDECEA;
  color: #A32218;
  font-size: 0.85rem;
}

.cart-footer { padding: 20px 26px 24px; border-top: 1px solid var(--line); }
.cart-lines { margin-bottom: 12px; }
.cart-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 3px 0;
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.btn-checkout { width: 100%; }
.btn-back {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.btn-back:hover { color: var(--accent-deep); }

/* ---------- Footer ---------- */
.footer {
  padding: 76px 0 0;
  background: var(--ink);
  color: rgba(251, 247, 239, .68);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer .logo-text { color: var(--cream); }
.footer-brand p { margin: 16px 0 0; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-col a { display: block; padding: 5px 0; transition: color .16s ease; }
.footer-col a:hover { color: var(--accent-lift); }
.footer-note { margin: 0; font-size: 0.82rem; color: rgba(251, 247, 239, .5); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
  color: rgba(251, 247, 239, .45);
}
.pay-methods i { color: var(--accent); margin-right: 7px; }

.made-by { color: rgba(251, 247, 239, .38); }
.made-by a {
  color: rgba(251, 247, 239, .62);
  border-bottom: 1px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.made-by a:hover { color: var(--accent-lift); border-bottom-color: currentColor; }

/* ---------- Responsief ---------- */

/* Kleine laptops en iPad in liggende stand: het raster mag blijven, maar de
   koppen en de witruimte moeten iets inbinden. */
@media (max-width: 1180px) {
  :root { --gutter: 24px; }
  .section { padding: 88px 0; }
  .hero { padding: 72px 0 80px; }
  .hero-grid { gap: 44px; }
  .nav { gap: 22px; }
  .nav a { font-size: 0.88rem; }
}

/* iPad staand en grote telefoons in liggende stand. */
@media (max-width: 1000px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { order: -1; transform: none; }
  .split-figure { order: -1; max-width: 560px; }
  .hero-copy { max-width: 640px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .price { font-size: 1.75rem; }
  .steps li:last-child { grid-column: 1 / -1; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-lead { grid-row: auto; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cart-modal { max-width: 520px; }
}

/* Telefoons. */
/* De volledige navigatiebalk past tot ongeveer 980 px; daaronder het menu
   inklappen, ook op een iPad in staande stand. */
@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
  .nav.active { display: flex; }
  .nav a { padding: 15px 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }

  .announce-inner { font-size: .72rem; gap: 12px; }
  .announce-inner span:nth-child(2), .announce-inner span:nth-child(3) { display: none; }

  .header-inner { min-height: 64px; }
  .hide-sm { display: none; }

  .hero { padding: 44px 0 56px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 34px; }

  .hero-figure { border-radius: 16px; }
  .hero-cta { gap: 10px; margin: 24px 0 32px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats { gap: 0; justify-content: space-between; padding-top: 20px; }
  .hero-stats dt { font-size: 1.25rem; }
  .hero-stats dd { font-size: 0.72rem; }

  /* Ruimere raakvlakken: knoppen op de telefoon minstens 48 px hoog. */
  .btn { padding: 15px 24px; min-height: 48px; }
  .btn-sm { min-height: 40px; }

  .product-grid, .steps, .usp-grid, .footer-grid, .fact-grid { grid-template-columns: 1fr; }
  .steps li:last-child { grid-column: auto; }
  /* Een vierkante fototegel maakt de kaart op een telefoon onnodig lang. */
  .product-media { padding: 14px; }
  .product-media img { aspect-ratio: 4 / 3; }
  .product-body { padding: 20px; }
  .price-row { margin: 16px 0 18px; }

  .usp { border-left: 0; padding: 16px 0; border-top: 1px solid var(--line); }
  .usp:first-child { border-top: 0; }

  .benefit { padding: 24px 22px; }
  .split-figure { max-width: none; }
  .ingredient-list li { flex-direction: column; gap: 4px; }
  .ingredient-list span { text-align: left; }

  .faq summary { padding: 18px 0; font-size: 1rem; }

  .footer { padding: 56px 0 0; }
  .footer-grid { gap: 30px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Winkelwagen als bladzijde-onderaan, met respect voor de thuisbalk-inkeping. */
  .cart-overlay { padding: 0; align-items: flex-end; }
  .cart-modal {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .cart-header { padding: 18px 20px; }
  .cart-items { padding: 10px 20px; }
  .checkout-form { padding: 20px 20px 4px; }
  .cart-footer { padding: 16px 20px calc(18px + env(safe-area-inset-bottom)); }
  /* 16 px voorkomt dat Safari op de iPhone inzoomt zodra een veld focus krijgt. */
  .checkout-form input, .checkout-form select { font-size: 16px; padding: 13px 14px; }
  .checkout-form .form-row { flex-direction: column; gap: 0; }
  .qty-btn { width: 36px; height: 36px; }
  .qty-value { height: 36px; min-width: 40px; }
  .cart-item-remove { padding: 6px 4px; font-size: 1.3rem; }

  .cart-fab {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 54px; height: 54px;
  }
}

/* Zeer smalle toestellen. */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; }
  .price { font-size: 1.6rem; }
}
