/* HerbaShop — design system */
:root {
  --groen: #4f9d2d;
  --groen-donker: #2e6b1e;
  --groen-diep: #1b3d14;
  --groen-licht: #eaf4e2;
  --inkt: #1d2b1a;
  --inkt-zacht: #55654f;
  --creme: #faf8f2;
  --wit: #ffffff;
  --amber: #e8a13d;
  --terracotta: #d96c47;
  --lijn: #e7e3d8;
  --schaduw: 0 1px 2px rgba(29, 43, 26, .06), 0 8px 24px rgba(29, 43, 26, .07);
  --schaduw-hover: 0 2px 4px rgba(29, 43, 26, .08), 0 16px 40px rgba(29, 43, 26, .13);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--inkt);
  background: var(--creme);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.topbar {
  background: var(--groen-diep); color: #dcebd2; font-size: 13px;
  padding: 8px 20px; letter-spacing: .02em;
  display: flex; justify-content: center; gap: 10px 34px; flex-wrap: wrap; text-align: center;
}
.topbar strong { color: #fff; }
.topbar-id { color: #fff; font-weight: 600; }
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 242, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lijn);
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: flex; align-items: baseline; gap: 8px; }
.logo .merk { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--groen-donker); }
.logo .merk span { color: var(--inkt); }
.logo .sub { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--inkt-zacht); display: none; }
.nav-links { display: flex; gap: 22px; font-size: 15px; font-weight: 500; color: var(--inkt-zacht); }
.nav-links a:hover, .nav-links a.actief { color: var(--groen-donker); }
.nav-spacer { flex: 1; }
.zoek { position: relative; }
.zoek input {
  width: 210px; padding: 9px 14px 9px 36px; border: 1px solid var(--lijn); border-radius: 999px;
  background: var(--wit); font: inherit; font-size: 14px; outline: none; transition: border .15s, width .2s;
}
.zoek input:focus { border-color: var(--groen); width: 260px; }
.zoek::before { content: "⌕"; position: absolute; left: 13px; top: 50%; transform: translateY(-52%); font-size: 17px; color: var(--inkt-zacht); }
.zoek-resultaten {
  position: absolute; top: 46px; right: 0; width: 340px; max-height: 420px; overflow: auto;
  background: var(--wit); border: 1px solid var(--lijn); border-radius: 14px; box-shadow: var(--schaduw-hover); display: none;
}
.zoek-resultaten.open { display: block; }
.zoek-resultaten a { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--lijn); }
.zoek-resultaten a:last-child { border-bottom: 0; }
.zoek-resultaten a:hover { background: var(--groen-licht); }
.zoek-resultaten .prijs { color: var(--groen-donker); font-weight: 600; white-space: nowrap; }
.cart-knop {
  position: relative; display: flex; align-items: center; gap: 8px;
  background: var(--groen-donker); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; transition: background .15s;
}
.cart-knop:hover { background: var(--groen-diep); }
.cart-teller {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--terracotta); color: #fff; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; display: none; align-items: center; justify-content: center;
}
.cart-teller.zichtbaar { display: flex; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, #edf5e4 0%, var(--creme) 55%, #fdf6e9 100%);
  border-bottom: 1px solid var(--lijn); overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding-top: 72px; padding-bottom: 80px; }
.hero-badge {
  display: inline-block; background: var(--wit); border: 1px solid var(--lijn); color: var(--groen-donker);
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; box-shadow: var(--schaduw);
}
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--groen-donker); }
.hero p.sub { font-size: 18px; color: var(--inkt-zacht); max-width: 520px; margin-bottom: 30px; }
.knoppen { display: flex; gap: 14px; flex-wrap: wrap; }
.knop {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px;
  font-size: 15.5px; font-weight: 600; border: 0; cursor: pointer; font-family: inherit; transition: transform .12s, background .15s, box-shadow .15s;
}
.knop.primair { background: var(--groen-donker); color: #fff; box-shadow: 0 6px 18px rgba(46, 107, 30, .28); }
.knop.primair:hover { background: var(--groen-diep); transform: translateY(-1px); }
.knop.stil { background: var(--wit); color: var(--inkt); border: 1px solid var(--lijn); }
.knop.stil:hover { border-color: var(--groen); color: var(--groen-donker); }
.hero-cijfers { display: flex; gap: 34px; margin-top: 40px; }
.hero-cijfers .cijfer strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--groen-donker); }
.hero-cijfers .cijfer span { font-size: 13.5px; color: var(--inkt-zacht); }
.hero-visual { position: relative; min-height: 380px; }
.hero-kaart {
  position: absolute; background: var(--wit); border-radius: var(--radius); box-shadow: var(--schaduw-hover);
  padding: 18px; width: 210px; border: 1px solid var(--lijn);
}
.hero-kaart .tegel { border-radius: 12px; height: 120px; margin-bottom: 12px; }
.hero-kaart .naam { font-size: 14px; font-weight: 600; line-height: 1.35; }
.hero-kaart .prijs { color: var(--groen-donker); font-weight: 700; margin-top: 6px; }
.hero-kaart.k1 { top: 8%; left: 6%; transform: rotate(-4deg); }
.hero-kaart.k2 { top: 34%; right: 2%; transform: rotate(3deg); z-index: 2; }
.hero-kaart.k3 { bottom: 0; left: 22%; transform: rotate(-1.5deg); }

/* ---------- usp strip ---------- */
.usps { background: var(--groen-diep); color: #e8f2df; }
.usps .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 30px; padding-top: 20px; padding-bottom: 20px; font-size: 14.5px; }
.usps .usp { display: flex; align-items: center; gap: 9px; }
.usps .usp::before { content: "✓"; color: #9fd57e; font-weight: 700; }

/* ---------- secties ---------- */
section.blok { padding: 72px 0; }
.blok-kop { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.blok-kop h1, .blok-kop h2 { font-size: clamp(26px, 3vw, 36px); }
.variant-knop { cursor: pointer; border: 1.5px solid transparent; font: inherit; font-size: 12.5px; font-weight: 600; transition: all .12s; }
.variant-knop:hover { border-color: var(--groen); }
.variant-knop.gekozen { background: var(--groen-donker); color: #fff; border-color: var(--groen-donker); }
.blok-kop .alles { color: var(--groen-donker); font-weight: 600; font-size: 15px; white-space: nowrap; }
.blok-kop .alles:hover { text-decoration: underline; }
.vooraf { color: var(--groen-donker); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; }

/* categorie-grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-kaart {
  position: relative; background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius);
  padding: 26px 22px; overflow: hidden; transition: transform .15s, box-shadow .15s;
}
.cat-kaart:hover { transform: translateY(-3px); box-shadow: var(--schaduw-hover); }
.cat-kaart .icoon { font-size: 30px; margin-bottom: 14px; display: block; }
.cat-kaart h3 { font-size: 18px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 650; }
.cat-kaart p { font-size: 13.5px; color: var(--inkt-zacht); line-height: 1.5; }
.cat-kaart .aantal { position: absolute; top: 18px; right: 18px; font-size: 12px; font-weight: 700; color: var(--groen-donker); background: var(--groen-licht); border-radius: 999px; padding: 3px 10px; }

/* ---------- product-kaarten ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.p-kaart {
  position: relative; display: flex; flex-direction: column; background: var(--wit);
  border: 1px solid var(--lijn); border-radius: var(--radius); overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.p-kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw-hover); }
.p-tegel { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; border-bottom: 1px solid var(--lijn); }
.p-tegel img.foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 4%; }
.p-monogram {
  font-family: var(--font-display); font-size: 44px; font-weight: 700; color: rgba(255,255,255,.92);
  width: 92px; height: 92px; border-radius: 999px; background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255,255,255,.35); text-shadow: 0 2px 10px rgba(0,0,0,.14);
}
.badge-korting {
  position: absolute; top: 12px; left: 12px; background: var(--terracotta); color: #fff;
  font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 4px 11px; z-index: 2;
}
.badge-uitverkocht {
  position: absolute; top: 12px; right: 12px; background: var(--inkt); color: #fff;
  font-size: 11.5px; font-weight: 600; border-radius: 999px; padding: 4px 11px; z-index: 2;
}
.p-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.sterren { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--inkt-zacht); margin-bottom: 7px; }
.sterren .vol { color: var(--amber); letter-spacing: 1px; font-size: 13px; }
.p-naam { font-size: 15px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.p-kort { font-size: 13px; color: var(--inkt-zacht); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.p-prijs { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 9px; margin-bottom: 3px; }
.p-prijs .nu, .p-prijs .oud { white-space: nowrap; }
.p-prijs .nu { font-size: 19px; font-weight: 700; color: var(--groen-donker); }
.p-prijs .oud { font-size: 12.5px; color: var(--inkt-zacht); }
.p-prijs .oud s { text-decoration: line-through; }
.p-bulk { font-size: 12px; color: var(--inkt-zacht); margin-bottom: 13px; }
.p-bulk strong { white-space: nowrap; }
.p-acties { display: flex; gap: 9px; }
.p-acties .knop { flex: 1; justify-content: center; padding: 11px 10px; font-size: 14px; }

/* ---------- product-detail ---------- */
.kruimel { font-size: 13.5px; color: var(--inkt-zacht); padding: 22px 0 0; }
.kruimel a:hover { color: var(--groen-donker); }
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; padding: 34px 0 72px; align-items: start; }
.detail-visual {
  position: sticky; top: 96px; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid var(--lijn);
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; box-shadow: var(--schaduw);
}
.zoom-hint {
  position: absolute; bottom: 14px; right: 16px; background: rgba(255,255,255,.92); border: 1px solid var(--lijn);
  border-radius: 999px; padding: 6px 13px; font-size: 12.5px; font-weight: 600; color: var(--inkt-zacht);
}
.lichtbak {
  position: fixed; inset: 0; z-index: 200; background: rgba(23, 34, 20, .78);
  display: flex; align-items: center; justify-content: center; overflow: auto; padding: 28px; cursor: zoom-out;
}
.lichtbak img {
  max-width: min(920px, 92%); max-height: 92vh; object-fit: contain; background: #fff;
  border-radius: 18px; padding: 26px; cursor: zoom-in; transition: max-width .2s, max-height .2s; margin: auto;
}
.lichtbak img.gezoomd { max-width: none; max-height: none; width: 170%; cursor: zoom-out; }
.lichtbak-sluit {
  position: fixed; top: 18px; right: 22px; color: #fff; font-size: 26px; cursor: pointer;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); border-radius: 999px;
}
.detail-visual img.foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 3.5%; }
.detail-visual .p-monogram { width: 140px; height: 140px; font-size: 64px; }
.detail h1 { font-size: clamp(26px, 3vw, 38px); margin: 10px 0 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip { font-size: 12.5px; font-weight: 600; color: var(--groen-donker); background: var(--groen-licht); border-radius: 999px; padding: 5px 13px; }
.detail .intro { font-size: 16.5px; color: var(--inkt-zacht); margin-bottom: 24px; }
.koopblok { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 24px; box-shadow: var(--schaduw); margin-bottom: 30px; }
.koopblok .p-prijs .nu { font-size: 30px; }
.koopblok .p-prijs .oud { font-size: 16px; }
.bulk-tip { font-size: 13.5px; background: var(--groen-licht); color: var(--groen-donker); border-radius: 10px; padding: 9px 13px; margin: 12px 0 18px; font-weight: 500; }
.koop-rij { display: flex; gap: 12px; align-items: stretch; }
.aantal-kiezer { display: flex; align-items: center; border: 1px solid var(--lijn); border-radius: 999px; background: var(--creme); }
.aantal-kiezer button { width: 42px; height: 100%; min-height: 48px; border: 0; background: none; font-size: 19px; cursor: pointer; color: var(--inkt-zacht); }
.aantal-kiezer button:hover { color: var(--groen-donker); }
.aantal-kiezer input { width: 40px; text-align: center; border: 0; background: none; font: inherit; font-weight: 700; font-size: 16px; outline: none; }
.koop-rij .knop { flex: 1; justify-content: center; font-size: 16px; }
.levering { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; font-size: 13.5px; color: var(--inkt-zacht); }
.levering span::before { content: "✓ "; color: var(--groen); font-weight: 700; }
.usp-lijst { list-style: none; margin-bottom: 28px; }
.usp-lijst li { padding-left: 26px; position: relative; margin-bottom: 9px; font-size: 15px; }
.usp-lijst li::before { content: "✓"; position: absolute; left: 0; color: var(--groen); font-weight: 700; }
.info-tabs { border-top: 1px solid var(--lijn); }
.info-tab { border-bottom: 1px solid var(--lijn); }
.info-tab summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 17px 2px; font-weight: 650; font-size: 15.5px;
}
.info-tab summary::-webkit-details-marker { display: none; }
.info-tab summary::after { content: "+"; font-size: 21px; color: var(--groen-donker); transition: transform .15s; }
.info-tab[open] summary::after { transform: rotate(45deg); }
.info-tab .inhoud { padding: 0 2px 19px; font-size: 14.5px; color: var(--inkt-zacht); white-space: pre-line; }
.info-tab .inhoud ul { margin: 4px 0 4px 20px; }
.info-tab .inhoud li { margin-bottom: 6px; }

/* ---------- filters / winkelpagina ---------- */
.filterbalk { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-chip {
  font-size: 13.5px; font-weight: 600; padding: 8px 16px; border-radius: 999px; cursor: pointer;
  background: var(--wit); border: 1px solid var(--lijn); color: var(--inkt-zacht); transition: all .13s;
}
.filter-chip:hover { border-color: var(--groen); color: var(--groen-donker); }
.filter-chip.actief { background: var(--groen-donker); border-color: var(--groen-donker); color: #fff; }

/* ---------- winkelmand ---------- */
.mand-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: start; padding-bottom: 72px; }
.mand-lijst { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); overflow: hidden; }
.mand-rij { display: grid; grid-template-columns: 84px 1fr auto; gap: 18px; padding: 18px 22px; border-bottom: 1px solid var(--lijn); align-items: center; }
.mand-rij:last-child { border-bottom: 0; }
.mand-tegel { width: 84px; height: 74px; border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; background: #fff; border: 1px solid var(--lijn); }
.mand-tegel img.foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 5%; }
.mand-tegel .p-monogram { width: 44px; height: 44px; font-size: 20px; }
.mand-info .naam { font-weight: 600; font-size: 14.5px; }
.mand-info .stuk { font-size: 12.5px; color: var(--inkt-zacht); margin-top: 3px; }
.mand-info .bulk-actief { color: var(--groen-donker); font-weight: 600; }
.mand-rechts { display: flex; flex-direction: column; align-items: end; gap: 8px; }
.mand-rechts .totaal { font-weight: 700; color: var(--groen-donker); }
.mand-rechts .weg { font-size: 12.5px; color: var(--terracotta); background: none; border: 0; cursor: pointer; font-family: inherit; }
.mand-rechts .weg:hover { text-decoration: underline; }
.overzicht { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 26px; box-shadow: var(--schaduw); position: sticky; top: 96px; }
.overzicht h3 { font-size: 20px; margin-bottom: 18px; }
.overzicht .rij { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 10px; color: var(--inkt-zacht); }
.overzicht .rij.groot { font-size: 17px; font-weight: 700; color: var(--inkt); border-top: 1px solid var(--lijn); padding-top: 14px; margin-top: 14px; }
.verzend-balk { background: var(--groen-licht); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--groen-donker); margin: 16px 0; }
.verzend-balk .baan { height: 6px; background: #d3e6c4; border-radius: 999px; margin-top: 8px; overflow: hidden; }
.verzend-balk .baan i { display: block; height: 100%; background: var(--groen); border-radius: 999px; transition: width .3s; }
.overzicht .knop { width: 100%; justify-content: center; margin-top: 8px; }
.leeg-mand { text-align: center; padding: 80px 24px; }
.leeg-mand .emoji { font-size: 52px; margin-bottom: 16px; }

/* ---------- programmawijzer ---------- */
.wijzer { max-width: 760px; margin: 0 auto; }
.stap-teller { display: flex; gap: 8px; margin-bottom: 28px; }
.stap-teller i { flex: 1; height: 5px; border-radius: 999px; background: var(--lijn); }
.stap-teller i.klaar { background: var(--groen); }
.wijzer-kaart { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 36px; box-shadow: var(--schaduw); }
.wijzer-kaart h2 { font-size: 26px; margin-bottom: 22px; }
.opties-lijst { display: grid; gap: 12px; }
.optie {
  display: flex; align-items: center; gap: 14px; padding: 17px 20px; border: 1.5px solid var(--lijn);
  border-radius: 14px; cursor: pointer; font-size: 15.5px; font-weight: 500; background: var(--creme); transition: all .13s;
}
.optie:hover, .optie.gekozen { border-color: var(--groen); background: var(--groen-licht); }
.optie .em { font-size: 22px; }

/* ---------- inhoudspaginas ---------- */
.proza { max-width: 760px; padding-bottom: 72px; }
.proza h1 { font-size: clamp(30px, 3.4vw, 42px); margin: 40px 0 18px; }
.proza h2 { font-size: 22px; margin: 30px 0 10px; }
.proza p { margin-bottom: 14px; color: var(--inkt-zacht); }
.proza .info-tabs { margin-top: 10px; }

/* ---------- resultaat-noot + melding ---------- */
.resultaat-noot {
  font-size: 12.5px; color: var(--inkt-zacht); background: var(--wit); border: 1px solid var(--lijn);
  border-radius: 12px; padding: 11px 14px; margin: 14px 0 26px; line-height: 1.55;
}
.melding {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 150;
  width: min(760px, calc(100vw - 28px)); background: var(--wit); border: 1px solid var(--lijn);
  border-radius: 16px; box-shadow: var(--schaduw-hover); padding: 16px 18px;
  display: flex; align-items: center; gap: 18px;
}
.melding-tekst { font-size: 13.5px; line-height: 1.55; color: var(--inkt-zacht); }
.melding-tekst strong { color: var(--inkt); }
.melding-tekst a { color: var(--groen-donker); font-weight: 600; text-decoration: underline; }
.melding .knop { white-space: nowrap; padding: 11px 20px; font-size: 14px; }
@media (max-width: 600px) { .melding { flex-direction: column; align-items: stretch; text-align: center; } }

/* ---------- toast ---------- */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 20px); z-index: 100;
  background: var(--groen-diep); color: #fff; padding: 13px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; opacity: 0; pointer-events: none; transition: all .25s; box-shadow: var(--schaduw-hover);
}
#toast.zichtbaar { opacity: 1; transform: translate(-50%, 0); }

/* ---------- footer ---------- */
footer.site { background: var(--groen-diep); color: #c9dcbc; margin-top: 40px; }
footer.site .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 56px 24px 30px; }
footer.site h4 { color: #fff; font-size: 15px; margin-bottom: 14px; font-family: var(--font-body); }
footer.site a { display: block; font-size: 14px; margin-bottom: 9px; opacity: .85; }
footer.site a:hover { opacity: 1; color: #fff; }
footer.site .merk { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 10px; }
footer.site p { font-size: 13.5px; line-height: 1.65; opacity: .8; }
.footer-onder { border-top: 1px solid rgba(255,255,255,.14); }
.footer-onder .wrap { display: block; padding: 20px 24px 28px; font-size: 12.5px; opacity: .65; line-height: 1.7; }

/* ---------- responsief ---------- */
@media (max-width: 1020px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 56px; }
  .hero-visual { display: none; }
  footer.site .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { height: 62px; gap: 10px; }
  .nav-links { display: none; }
  .zoek { flex: 1; }
  .zoek input { width: 100%; }
  .zoek input:focus { width: 100%; }
  .zoek-resultaten { left: 0; right: auto; width: min(340px, 86vw); }
  .cart-knop { padding: 10px 13px; }
  .cart-woord { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-body { padding: 12px 13px 14px; }
  .detail { grid-template-columns: 1fr; gap: 28px; }
  .detail-visual { position: relative; top: auto; }
  .mand-layout { grid-template-columns: 1fr; }
  section.blok { padding: 48px 0; }
}

/* ---------- prijstabel ---------- */
.prijstabel { width: 100%; border-collapse: collapse; background: var(--wit); border: 1px solid var(--lijn); border-radius: 14px; overflow: hidden; font-size: 14px; }
.prijstabel th { text-align: left; background: var(--groen-diep); color: #e8f2df; padding: 11px 14px; font-weight: 600; white-space: nowrap; }
.prijstabel td { padding: 10px 14px; border-top: 1px solid var(--lijn); }
.prijstabel tr:nth-child(even) td { background: var(--creme); }
.prijstabel td a { color: var(--groen-donker); font-weight: 500; }
.proza ul { margin: 6px 0 14px 22px; color: var(--inkt-zacht); }
.proza ul li { margin-bottom: 7px; }
.proza ul a { color: var(--groen-donker); font-weight: 600; }

/* ---------- tools ---------- */
.tool-rij { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.tool-rij label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--inkt-zacht); }
.tool-rij input[type="number"], .tool-rij select { padding: 10px 12px; border: 1px solid var(--lijn); border-radius: 10px; font: inherit; background: var(--creme); min-width: 120px; }
.tool-rij input[type="radio"] { margin-right: 6px; }
.tool-uitkomst { margin-top: 18px; background: var(--groen-licht); border-radius: 14px; padding: 18px; }
.tool-getal { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--groen-donker); }
.tool-fout { color: var(--terracotta); font-weight: 600; margin-top: 12px; }
.tool-noot { font-size: 12.5px; color: var(--inkt-zacht); margin-top: 10px; }
