/* ============================================================
   SANTÉ VERHAGEN — styles.css
   Palet afgeleid van het logo: goud op crème, champagne-tinten.
   Mobile-first: basisstijlen zijn voor mobiel, media queries
   breiden uit naar tablet/desktop.
   ============================================================ */

:root {
  --cream: #FBF7EF;        /* achtergrond, uit logo */
  --cream-deep: #F3EBDC;   /* panelen */
  --champagne: #F2E2BE;    /* zachte accentvlakken */
  --gold: #B5862F;         /* logo-goud */
  --gold-dark: #93691F;    /* hover / tekstgoud */
  --ink: #38311F;          /* warm donker, hoofdtekst */
  --muted: #7C7257;        /* secundaire tekst */
  --white: #FFFEFA;
  --line: #E4D9C2;
  --error: #A4452F;
  --ok: #5E7245;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(120, 95, 40, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
h3 { font-size: 1.45rem; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, #C99F47 0%, #9C7426 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(156, 116, 38, 0.28);
  cursor: pointer;
  transition: background .25s, color .25s, transform .15s;
  text-align: center;
}
.btn:hover { background: linear-gradient(135deg, #B5862F 0%, #84621E 100%); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(156, 116, 38, 0.38); }
.btn.ghost { background: transparent; border-color: var(--gold); color: var(--gold-dark); box-shadow: none; }
.btn.ghost:hover { background: linear-gradient(135deg, #C99F47, #9C7426); color: var(--white); }
.btn.small { padding: 0.6rem 1.3rem; font-size: 0.82rem; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn:focus-visible, a:focus-visible { outline: 2.5px solid var(--gold-dark); outline-offset: 3px; }

/* ---------- Header / navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.nav-logo img { height: 64px; width: auto; }
.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); border-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.cart-link { position: relative; display: inline-flex; padding: 0.4rem; color: var(--ink); }
.cart-link svg { width: 26px; height: 26px; }
.cart-count {
  position: absolute; top: -2px; right: -4px;
  min-width: 19px; height: 19px;
  background: var(--gold); color: var(--white);
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-count.hidden { display: none; }

.nav-toggle {
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0.5rem 0 1.2rem; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 6%;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.mobile-menu a.active { color: var(--gold-dark); }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-toggle, .mobile-menu { display: none !important; }
  .nav-logo img { height: 80px; }
}

/* ---------- Hero met champagnebubbels (signatuur) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0 5.5rem;
  background:
    radial-gradient(900px 480px at 15% 5%, rgba(232, 192, 110, 0.40), transparent 62%),
    radial-gradient(720px 440px at 88% 16%, rgba(232, 178, 158, 0.32), transparent 64%),
    linear-gradient(180deg, #FDF9F0 0%, #F4E7CB 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { margin: 0.4rem 0 1.1rem; }
.hero h1 em { font-style: italic; color: var(--gold-dark); }
.hero p.lead {
  max-width: 34rem;
  margin: 0 auto 2.2rem;
  font-size: 1.15rem;
  color: var(--muted);
}
.hero-actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }
@media (min-width: 600px) { .hero-actions { flex-direction: row; justify-content: center; } }

.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bubble {
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,252,240,.95), rgba(168,132,60,.35));
  box-shadow: 0 0 6px rgba(168,132,60,.25);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .5; }
  100% { transform: translateY(-110vh) translateX(14px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Secties ---------- */
.section { padding: 4.2rem 0; }
.section.tinted {
  background:
    radial-gradient(700px 360px at 85% 0%, rgba(232, 192, 110, 0.25), transparent 60%),
    linear-gradient(180deg, #F7EEDA 0%, #F2E3C4 100%);
}
.section.dark {
  background:
    radial-gradient(820px 420px at 82% -5%, rgba(201, 159, 71, 0.30), transparent 60%),
    linear-gradient(135deg, #3C341F 0%, #4D432A 100%);
  color: #EFE6D0;
}
.section.dark h2, .section.dark h3 { color: #FBF4E2; }
.section.dark .eyebrow { color: #DCB668; }
.section.dark .story p { color: #EFE6D0; }
.section.dark .story em { color: #E6C173; }
.section.dark .gold-rule { background: linear-gradient(90deg, transparent, #DCB668 30%, #DCB668 70%, transparent); }
.section.dark .btn.ghost { color: #EFDCA8; border-color: #C99F47; }
.section.dark .btn.ghost:hover { color: var(--white); }
.section-head { text-align: center; max-width: 38rem; margin: 0 auto 2.8rem; }
.section-head p { color: var(--muted); margin-top: 0.8rem; }

.gold-rule {
  width: 130px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  margin: 1.3rem auto 0;
  border: none;
}

/* ---------- Productkaarten ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 620px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-figure {
  position: relative;
  background: linear-gradient(180deg, #FFFDF6 0%, #F4E2B8 140%);
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}
.product-figure img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 12px 14px rgba(90,70,30,.18)); }
.product-figure .placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--gold); text-align: center;
}
.product-figure .placeholder svg { width: 54px; height: 54px; }
.product-figure .placeholder span { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.badge-stack {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-start;
}
.fav-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: linear-gradient(135deg, #C99F47, #9C7426);
  color: #FFFDF6;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .34rem .85rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(140, 106, 38, .35);
}

.product-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-house { font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .35rem; }
.product-body h3 { margin-bottom: .55rem; }
.product-desc { font-size: .95rem; color: var(--muted); margin-bottom: .9rem; }
.product-specs { list-style: none; font-size: .85rem; color: var(--muted); margin-bottom: 1.1rem; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.product-specs li { background: var(--cream-deep); border-radius: 999px; padding: .2rem .75rem; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }
.product-price small { font-size: .78rem; font-family: var(--font-body); color: var(--muted); display: block; font-weight: 300; }
.price-on-request { font-size: .92rem; color: var(--muted); font-style: italic; }

.filter-row { display: flex; justify-content: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filter-btn {
  font-family: var(--font-body);
  background: transparent; border: 1.5px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: .55rem 1.4rem; cursor: pointer;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--white); }

/* ---------- USP / regio-strook ---------- */
.usp-strip { display: grid; gap: 1.4rem; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 720px) { .usp-strip { grid-template-columns: repeat(3, 1fr); } }
.usp { padding: 1.6rem 1.2rem; }
.usp svg { width: 36px; height: 36px; color: var(--gold); margin: 0 auto .8rem; }
.usp h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.usp p { font-size: .92rem; color: var(--muted); }

.notice {
  background: var(--champagne);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
  display: flex; gap: .8rem; align-items: flex-start;
}
.notice svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--gold-dark); margin-top: 2px; }

/* ---------- Proeverijen ---------- */
.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  margin-bottom: 1.4rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: auto 1fr;
  align-items: start;
}
.event-date {
  background: var(--cream-deep);
  border-radius: 12px;
  text-align: center;
  padding: .7rem .9rem;
  min-width: 74px;
}
.event-date .day { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); }
.event-meta { font-size: .9rem; color: var(--muted); margin: .3rem 0 .7rem; }
.event-card.past { opacity: .65; border-left-color: var(--line); }
.badge {
  display: inline-block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: var(--white); border-radius: 999px; padding: .25rem .8rem; margin-bottom: .5rem;
}

/* ---------- Formulieren ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
}
@media (min-width: 720px) { .form-card { padding: 2.4rem 2.4rem; } }

.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: .35rem; }

.field-row { display: grid; gap: 0 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

.choice-cards { display: grid; gap: .9rem; grid-template-columns: 1fr; margin-bottom: 1.2rem; }
@media (min-width: 640px) { .choice-cards { grid-template-columns: 1fr 1fr; } }
.choice-card { position: relative; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card label {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: all .2s;
}
.choice-card label strong { display: block; font-size: 1.02rem; font-weight: 500; margin-bottom: .2rem; }
.choice-card label span { font-size: .87rem; color: var(--muted); }
.choice-card input:checked + label { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 1px var(--gold); }
.choice-card input:focus-visible + label { outline: 2.5px solid var(--gold-dark); outline-offset: 2px; }

.checkbox-line { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; margin: 1.1rem 0; }
.checkbox-line input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }

/* ---------- Winkelmandje / checkout ---------- */
.checkout-layout { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 920px) { .checkout-layout { grid-template-columns: 1.2fr .9fr; align-items: start; } }

.cart-items { list-style: none; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem .8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-name { font-weight: 400; }
.cart-item-house { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); }
.qty-controls { display: inline-flex; align-items: center; gap: .2rem; border: 1.5px solid var(--line); border-radius: 999px; background: var(--white); }
.qty-controls button {
  width: 34px; height: 34px; border: none; background: none; cursor: pointer;
  font-size: 1.15rem; color: var(--gold-dark); border-radius: 999px;
}
.qty-controls button:hover { background: var(--cream-deep); }
.qty-controls .qty { min-width: 26px; text-align: center; font-size: .98rem; }
.cart-item-price { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; text-align: right; }
.cart-remove { background: none; border: none; color: var(--muted); font-size: .8rem; cursor: pointer; text-decoration: underline; justify-self: start; padding: 0; }
.cart-remove:hover { color: var(--error); }

.summary-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: sticky; top: 96px; }
.summary-line { display: flex; justify-content: space-between; font-size: .98rem; padding: .45rem 0; }
.summary-line.total { border-top: 1.5px solid var(--line); margin-top: .6rem; padding-top: .9rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.summary-line .free { color: var(--ok); }
.shipping-progress { font-size: .85rem; color: var(--gold-dark); background: var(--champagne); border-radius: 10px; padding: .65rem .9rem; margin-top: .8rem; }

.empty-state { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }
.empty-state svg { width: 56px; height: 56px; color: var(--gold); margin: 0 auto 1rem; }

.form-error { color: var(--error); font-size: .9rem; margin-top: .6rem; display: none; }
.form-error.show { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--cream);
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: .92rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 90;
  max-width: 92%;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- 18+ leeftijdspoort ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(40, 33, 18, 0.78);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
}
.age-gate-card {
  background: var(--cream);
  border-radius: 18px;
  max-width: 430px;
  width: 100%;
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.age-gate-card img { height: 72px; width: auto; margin: 0 auto 1.2rem; }
.age-gate-card h2 { font-size: 1.7rem; margin-bottom: .6rem; }
.age-gate-card p { font-size: .95rem; color: var(--muted); margin-bottom: 1.6rem; }
.age-gate-actions { display: flex; flex-direction: column; gap: .8rem; }
.age-gate .nix { margin-top: 1.3rem; font-size: .78rem; color: var(--muted); }
body.gate-locked { overflow: hidden; }

/* ---------- Over ons / verhaal ---------- */
.story { max-width: 42rem; margin: 0 auto; font-size: 1.1rem; }
.story p { margin-bottom: 1.4rem; }
.story em { color: var(--gold-dark); }
.story .signoff { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; text-align: center; margin-top: 2.4rem; }
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  float: left;
  line-height: .85;
  padding-right: .12em;
  color: var(--gold);
}

.house-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .house-grid { grid-template-columns: repeat(3, 1fr); } }
.house-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; }
.house-card h3 { margin-bottom: .5rem; }
.house-card p { font-size: .93rem; color: var(--muted); }
.house-card .region { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: .6rem; }

/* ---------- Voorwaarden ---------- */
.legal { max-width: 46rem; margin: 0 auto; font-size: .98rem; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: var(--ink); margin-bottom: .7rem; }
.legal ul { padding-left: 1.3rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #D8CFB8;
  padding: 3.2rem 0 2rem;
  margin-top: 4rem;
  font-size: .92rem;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.25rem; margin-bottom: .8rem; }
.site-footer a { color: #E8DFC6; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .45rem; }
.footer-logo { height: 84px; width: auto; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(232, 223, 198, .2);
  margin-top: 2.4rem; padding-top: 1.4rem;
  display: flex; flex-direction: column; gap: .5rem;
  font-size: .8rem; color: #B0A78C;
  text-align: center;
}
.nix18 { font-weight: 500; letter-spacing: .1em; color: var(--cream); }

/* ---------- Pagina-hero (subpagina's) ---------- */
.page-hero { text-align: center; padding: 3.4rem 0 2.6rem; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.page-hero p { color: var(--muted); max-width: 34rem; margin: .8rem auto 0; }


/* ---------- Reveal bij scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Logo prominent in de hero */
.hero-logo { height: clamp(110px, 22vw, 170px); width: auto; margin: 0 auto 1.6rem; }

/* ---------- Catalogus-groepen (champagne / witte wijn) ---------- */
.cat-group + .cat-group { margin-top: 4.5rem; }
.cat-head { text-align: center; max-width: 46rem; margin: 0 auto 2.4rem; }
.cat-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 2.5rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.cat-title::before, .cat-title::after {
  content: "";
  height: 2px;
  width: clamp(36px, 9vw, 84px);
  flex-shrink: 0;
}
.cat-title::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.cat-title::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.cat-intro { color: var(--muted); font-size: .98rem; margin-top: .9rem; }
