:root {
  --bg: #ffffff;
  --bg-soft: #f7faf5;
  --ink: #223016;
  --muted: #63705a;
  --border: #eaefe2;
  --green: rgb(150, 192, 30);
  --green-dark: #7a9c17;
  --green-soft: #eef6d9;
  --orange: #ff8a1e;
  --orange-dark: #ef7300;
  --orange-soft: #fff1e2;
  --blue: #1eaedb;
  --blue-dark: #1489ab;
  --blue-soft: #e6f9fc;
  --charcoal: #33372f;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(34, 48, 22, 0.07), 0 1px 2px rgba(34, 48, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(34, 48, 22, 0.08);
  --shadow-lg: 0 20px 48px rgba(34, 48, 22, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --nav-h: 4.75rem;
  --ease: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: "Mulish", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
h1, h2, h3, h4, .display {
  font-family: "Baloo 2", cursive;
  line-height: 1.18;
  margin: 0;
  color: var(--charcoal);
  font-weight: 700;
}
p { margin: 0 0 0.9em; }
ul, ol { margin: 0; }

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 1rem; top: 1rem; z-index: 90; background: #fff; padding: 0.6rem 0.9rem; border-radius: 8px; box-shadow: var(--shadow-md); }

.wrap { width: min(calc(100% - 2.2rem), var(--max)); margin-inline: auto; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit; }
.logo img { height: 44px; width: auto; }
.logo span { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 1.15rem; color: var(--charcoal); }

.nav-links { display: flex; gap: 1.7rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--charcoal); font-weight: 700; font-size: 0.96rem; }
.nav-links a:not(.btn):hover { color: var(--orange-dark); }
.nav-item.is-current > a:not(.btn) { color: var(--orange-dark); }
.has-sub > a::after { content: "▾"; font-size: 0.7em; margin-left: 0.25em; color: var(--muted); }
[data-include="header"] { min-height: var(--nav-h); }
[data-include="footer"] { min-height: 16rem; background: #474747; }
.subnav {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  padding-top: calc(0.5rem + 0.7rem);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 15rem;
  display: none;
  z-index: 10;
}
.nav-item:hover .subnav, .nav-item:focus-within .subnav { display: block; }
.subnav li a { display: block; padding: 0.5rem 0.75rem; border-radius: 8px; font-weight: 600; font-size: 0.92rem; }
.subnav li a:hover { background: var(--bg-soft); }
.nav-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 1.45rem 2px;
  background-position:
    center 0.68rem,
    center 1.2rem,
    center 1.72rem;
  color: var(--charcoal);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:focus-visible,
.nav-toggle:active {
  outline: none;
  box-shadow: none;
  border: 0;
  background-color: transparent;
}
.nav-toggle[aria-expanded="true"] {
  background-image: none;
}
.nav-toggle[aria-expanded="true"]::before,
.nav-toggle[aria-expanded="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.45rem;
  height: 2px;
  background: currentColor;
}
.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost { background: var(--white); color: var(--charcoal); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.92rem; }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.badge.-green { background: var(--green-soft); color: var(--green-dark); }
.badge.-orange { background: var(--orange-soft); color: var(--orange-dark); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; }
.hero-photo {
  position: relative;
  min-height: min(78vh, 620px);
  display: flex;
  align-items: stretch;
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  color: #fff;
}
.hero-words { display: grid; gap: 0.05rem; margin-bottom: 1.6rem; justify-items: center; }
.hero-words span { font-family: "Baloo 2", cursive; font-weight: 700; text-transform: uppercase; line-height: 1.08; text-shadow: 0 2px 14px rgba(0,0,0,0.4); display: block; }
.hero-words .w1 { color: #d7ef4a; font-size: clamp(2rem, 4.6vw, 3.4rem); margin-left: 0; }
.hero-words .w2 { color: var(--orange); font-size: clamp(1.7rem, 3.7vw, 2.6rem); margin-left: 0.9em; }
.hero-words .w3 { color: #5fe0f0; font-size: clamp(1.7rem, 3.7vw, 2.6rem); margin-left: 0.25em; }
.hero-words .w4 { color: #fff; font-size: clamp(1.15rem, 2.1vw, 1.5rem); margin-left: 1.6em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

.hero-panel {
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 3rem 0.9rem 3rem 1.3rem;
  color: #fff;
}
/* wrapper for the small Valued rating widget at the top of the panel */
.hero-rating { margin-bottom: 1.3rem; min-height: 1.2rem; }

.hero-usps { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.hero-usps li { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; text-transform: uppercase; font-size: 1.05rem; padding: 0.35rem 0; }
.hero-usps .check { width: 1.5rem; height: 1.5rem; flex-shrink: 0; display: grid; place-items: center; }

.hero-deals-label { font-weight: 700; font-size: 1.05rem; margin: 0 0 0.6rem; }
.hero-deals { margin: 0; }
.hero-deal { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; font-size: 1.05rem; padding: 0.3rem 0; }
.hero-deal .plus { width: 1.4rem; height: 1.4rem; flex-shrink: 0; display: grid; place-items: center; }
.hero-note { font-size: 0.68rem; color: rgba(255,255,255,0.85); margin: 0.6rem 0 0; }

/* wave / smile divider */
.smile { position: relative; margin-top: -1px; }
.smile svg { display: block; width: 100%; height: auto; }
.smile-band {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 2.6rem 0 3.4rem;
  margin-top: -2px;
}
.smile-band h2 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 0.5rem; }
.smile-band p { color: #eafcff; max-width: 40rem; margin: 0 auto; }
.smile-bottom svg { display: block; width: 100%; height: auto; margin-top: -2px; }

/* ============ SECTIONS ============ */
.section { padding: 3.6rem 0; }
.section.-tight { padding: 2.2rem 0; }
.section.-roomy { padding: 5.2rem 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }
.section-head p { margin: 0.5rem 0 0; color: var(--muted); font-size: 1.06rem; }
.section-head.-center { margin-inline: auto; text-align: center; max-width: 34rem; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.reveal.is-in { opacity: 1; transform: none; }

/* category tiles (photo-top card, matches real site) */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cat {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 650ms cubic-bezier(.16,1,.3,1), box-shadow 650ms cubic-bezier(.16,1,.3,1);
}
.cat:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.cat-media { aspect-ratio: 4/3; overflow: hidden; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.16,1,.3,1); }
.cat:hover .cat-media img { transform: scale(1.05); }
.cat-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.cat-body h3 { font-size: 1.25rem; }
.cat-body p { margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1; }
.cat-body .btn { align-self: flex-start; margin-top: 0.4rem; }

/* compact variant: smaller, denser tiles for the "Onze feestjes" overview block */
.cats.-compact { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cats.-compact .cat-media { aspect-ratio: 16/10; }
.cats.-compact .cat-body { padding: 0.9rem 1rem 1.1rem; gap: 0.35rem; }
.cats.-compact .cat-body h3 { font-size: 1.05rem; }
.cats.-compact .cat-body p { font-size: 0.87rem; }
.cats.-compact .cat-body .btn { padding: 0.5rem 0.85rem; font-size: 0.84rem; }

/* filters (product grid) */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.filter-pill {
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-pill[aria-pressed="true"], .filter-pill:hover { background: var(--green-soft); color: var(--green-dark); border-color: var(--green); }

/* product grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 650ms cubic-bezier(.16,1,.3,1), box-shadow 650ms cubic-bezier(.16,1,.3,1);
}
.card:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4/3; background: var(--bg-soft); position: relative; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.16,1,.3,1); }
.card:hover .card-media img { transform: scale(1.05); }
.price-pill {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(30, 38, 20, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
}
.tag-pill {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.card-body h3 { font-size: 1.12rem; }
.card-meta { color: var(--muted); font-size: 0.9rem; margin: 0; }
.card-price { margin-top: auto; padding-top: 0.5rem; font-weight: 800; color: var(--green-dark); }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.step { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem 1.3rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.step-num {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-family: "Baloo 2", cursive; font-weight: 700;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* promo cards (ported 1:1 from the earlier mockup — kept because it tested well) */
.promo { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.1rem; }
.promo-card {
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.promo-card h3 { font-size: 1.85rem; color: #fff; }
.promo-card p { margin: 0.4rem 0 0; max-width: 28rem; color: rgba(255,255,255,0.92); }
.promo-a { background: linear-gradient(135deg, var(--green-dark), var(--green) 55%, #d7ef4a); }
.promo-b { background: linear-gradient(135deg, var(--orange-dark), var(--orange) 60%, #ffb056); }
.promo-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.14); right: -40px; top: -50px; }

/* reviews widget (Valued) */
.review-wrap { width: 100%; }

/* faq */
.faq details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.15rem; margin-bottom: 0.65rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 800; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--orange); flex-shrink: 0; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); margin: 0.6rem 0 0; }

/* cta band */
.cta-band { background: var(--green-soft); padding: 3.2rem 0; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.cta-band p { color: var(--muted); max-width: 34rem; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* footer — donker zoals de live site (#474747 + #2E2E2E) */
.site-footer { background: #474747; color: #fff; padding: 3rem 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 1.8rem; margin-bottom: 2rem; }
.foot-grid h4 { font-size: 1.05rem; margin-bottom: 0.7rem; color: #fff; }
.foot-grid p { margin: 0 0 0.4rem; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.foot-grid a { color: #fff; text-decoration: none; }
.foot-grid a:hover { color: #ffd7a8; }
.foot-logo { height: 64px; width: auto; margin-bottom: 0.9rem; }
.foot-bar { background: #2e2e2e; padding: 1.1rem 0 1.2rem; margin-top: 0.4rem; }
.foot-badges { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.foot-wwk { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: #fff; font-weight: 700; font-size: 0.92rem; line-height: 1.35; }
.foot-wwk img { height: 56px; width: auto; }
.foot-wwk:hover { color: #ffd7a8; }
.foot-bar .tiny { color: #dbdbdb; }
.tiny { color: var(--muted); font-size: 0.86rem; }

/* ============ PAGE HERO (info-pagina's) ============ */
.page-hero {
  position: relative;
  min-height: min(52vh, 460px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 36, 16, 0.15) 20%, rgba(26, 36, 16, 0.72) 100%);
}
.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.2rem), var(--max));
  margin: 0 auto;
  padding: 3.4rem 0 2.6rem;
  color: #fff;
}
.page-hero-copy h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.page-hero-copy p { margin: 0.45rem 0 0; color: #eef3df; font-size: 1.12rem; max-width: 38rem; }

/* ============ PRODUCT PAGE ============ */
.crumbs { padding: 1rem 0 0; font-size: 0.88rem; color: var(--muted); }
.crumbs a { color: inherit; text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--orange-dark); }

.product-hero { text-align: center; padding: 2rem 0 0.8rem; }
.product-hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.product-divider { border: 0; border-top: 1px solid var(--border); margin: 1.8rem 0 0; }

.product { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3.6rem; padding: 3rem 0 1.2rem; align-items: start; }
.product-left { display: flex; flex-direction: column; gap: 2.2rem; }

/* Foto + icoonbalk: volle breedte van de linkerkolom, geen padding boven/zij */
.p-photo-card {
  width: 100%;
  margin: 0;
  background: #474747;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.p-photo { position: relative; margin: 0; }
.p-photo-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.p-price-pill {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(24, 30, 16, 0.82); color: #fff;
  border-radius: 999px; padding: 0.5rem 1.1rem;
  font-family: "Baloo 2", cursive; font-size: 1.2rem; font-weight: 700;
}
.p-facts { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; padding: 1.5rem 1.2rem; }
.p-fact { text-align: center; width: 4.4rem; }
.p-fact img { width: 44px; height: 44px; object-fit: contain; margin: 0 auto 0.4rem; }
.p-fact span { display: block; font-size: 0.74rem; font-weight: 700; color: #e7e7e7; line-height: 1.25; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.split.-book { grid-template-columns: 1.15fr 0.85fr; }
.split .prose { max-width: none; }

/* optioneel, voor infopagina-icoonbalk */
.product-splash {
  width: 100%;
  background: #474747;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.p-info { display: flex; flex-direction: column; }
.p-info .kicker { margin-bottom: 1.1rem; }
.p-info h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 1.15rem; }
.p-info p { color: var(--muted); margin: 0 0 1.15em; line-height: 1.75; }
.p-price-line { font-size: 1.08rem; color: var(--ink); }
.p-price-line strong { color: var(--green-dark); }

.callout {
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 1.8rem 0 0;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.7rem 1.6rem 1.8rem;
  margin-top: 2rem;
}
.book-card .from { font-family: "Baloo 2", cursive; font-size: 1.9rem; color: var(--green-dark); margin-bottom: 0.9rem; }
.book-card .from span { font-size: 0.95rem; font-weight: 700; color: var(--muted); font-family: "Mulish", sans-serif; }
.spec { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.spec li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px dashed var(--border); font-size: 0.94rem; }
.spec li span { color: var(--muted); }

/* testimonial band (BLOK: review-slider — meerdere quotes, "12345" paginering op live site) */
.quote-band { background: var(--green); color: #fff; border-radius: var(--radius-lg); padding: 2.1rem 2.1rem; position: relative; }
.quote-band blockquote { margin: 0; font-size: 1.02rem; font-style: italic; line-height: 1.55; }
.quote-band footer { margin-top: 0.9rem; font-weight: 800; font-style: normal; }
.quote-dots { display: flex; gap: 0.4rem; margin-top: 1.1rem; }
.quote-dots span { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgba(255,255,255,0.4); }
.quote-dots span:first-child { background: #fff; }
.quote-band .wwk-link { color: #fff; text-decoration: underline; font-weight: 700; font-size: 0.88rem; }

/* full-bleed color bands, matching the alternating white/blue rhythm on the live product page */
.section-band { padding: 3.4rem 0; }
.section-band.-spaced { margin-top: 3.2rem; }
.section-band.-blue { background: var(--blue); color: #fff; }
.section-band.-blue h2, .section-band.-blue h3 { color: #fff; }
.section-band.-blue .prose p, .section-band.-blue .check-list { color: rgba(255,255,255,0.92); }
.section-band.-blue .check-list li::before { color: #fff; }
.section-band.-blue .game, .section-band.-blue .info-card { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.section-band.-blue .game h3, .section-band.-blue .info-card h3 { color: #fff; }
.section-band.-blue .game p, .section-band.-blue .info-card p { color: rgba(255,255,255,0.85); }
.section-band.-green { background: var(--green); color: #fff; }
.section-band.-green h2, .section-band.-green h3 { color: #fff; }
.section-band.-green .prose p, .section-band.-green .check-list { color: rgba(255,255,255,0.92); }
.section-band.-green .check-list li::before { color: #fff; }
.section-band.-green .game, .section-band.-green .info-card { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); }
.section-band.-green .game h3, .section-band.-green .info-card h3 { color: #fff; }
.section-band.-green .game p, .section-band.-green .info-card p { color: rgba(255,255,255,0.88); }
.section-band.-green-soft { background: var(--green-soft); }
.section-band.-cta {
  background: var(--orange);
  text-align: center;
  padding: 5rem 0;
}
.section-band.-cta h2 {
  color: #fff;
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  margin-bottom: 0.85rem;
}
.section-band.-cta p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  margin: 0 auto 1.7rem;
  max-width: 32rem;
}
.section-band.-cta .btn-primary {
  background: #fff;
  color: var(--orange-dark);
  padding: 0.95rem 1.7rem;
  font-size: 1.05rem;
}
.section-band.-cta .btn-primary:hover {
  background: #fff8f0;
  color: var(--orange-dark);
}

.prose { max-width: 50rem; }
.prose h2 { font-size: 1.65rem; margin: 2.2rem 0 0.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 1.4rem 0 0.4rem; }
.prose p { color: var(--muted); }
.prose a { font-weight: 700; }
.legal { max-width: 46rem; }
.legal ol { padding-left: 1.2rem; color: var(--muted); }
.legal li { margin-bottom: 0.45rem; }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 0.6rem; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem; align-items: start; }
.contact-card { background: var(--bg-soft); border-radius: var(--radius-md); padding: 1.4rem 1.3rem; }
.contact-card p { margin: 0 0 0.55rem; }
.people { display: flex; gap: 1rem; justify-content: center; margin: 0.6rem 0 1rem; }
.people img { width: 46%; max-width: 220px; border-radius: 50%; border: 3px solid var(--border); aspect-ratio: 1; object-fit: cover; }
.acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.acc-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc-item img { width: 100%; height: 180px; object-fit: contain; background: var(--bg-soft); }
.acc-body { padding: 1.1rem 1.2rem 1.3rem; }
.acc-body h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.acc-body p { color: var(--muted); margin-bottom: 0.6rem; }
.acc-price { font-weight: 800; color: var(--orange-dark); }
.check-list { list-style: none; padding: 0; color: var(--muted); }
.check-list li { display: flex; gap: 0.6rem; padding: 0.3rem 0; }
.check-list li::before { content: "✓"; color: var(--green-dark); font-weight: 800; }
.contents { padding-left: 1.2rem; color: var(--muted); }
.contents li { margin-bottom: 0.3rem; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.1rem 0 0; }
.game { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem; box-shadow: var(--shadow-sm); }
.game h3 { font-size: 1.03rem; margin-bottom: 0.35rem; }
.game p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 1.2rem 0; }
.info-card { background: var(--bg-soft); border-radius: var(--radius-md); padding: 1.3rem 1.2rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.info-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

.related { margin-top: 1rem; }
.p-reviews { padding-left: 0; padding-right: 0; }

.sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 60;
  padding: 0.7rem max(0.9rem, env(safe-area-inset-right)) calc(0.7rem + env(safe-area-inset-bottom)) max(0.9rem, env(safe-area-inset-left));
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 26px rgba(34,48,22,.08);
}
.sticky-inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}
.sticky-inner > div { min-width: 0; flex: 1 1 auto; }
.sticky-inner > div strong,
.sticky-inner > div .tiny { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-inner .btn {
  flex: 0 0 auto;
  max-width: 38%;
  margin-left: 0;
  padding: 0.32rem 0.65rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.p-reviews-panel {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
}
.p-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.p-review {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.p-review-meta {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.p-review p {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .btn, .card, .cat, .card-media img, .cat-media img { transition: none; }
}

@media (max-width: 980px) {
  .hero-inner, .product, .foot-grid, .review-wrap, .split, .split.-book, .contact-grid, .acc-grid,
  .cats, .cats.-compact, .grid, .steps, .info-cards, .game-grid, .promo, .thumbs,
  .p-reviews-grid { grid-template-columns: 1fr; }
  [aria-labelledby="p-reviews"] .grid { grid-template-columns: 1fr !important; }
  .hero-panel { padding: 2rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    inset: calc(var(--nav-h) + 0.5rem) 1rem auto;
    max-height: calc(100dvh - var(--nav-h) - 1.5rem);
    overflow: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > li:last-child {
    margin-top: 0.45rem;
    padding-top: 1rem;
  }
  .nav-links > li:last-child .btn {
    width: 100%;
    display: flex;
    padding: 0.8rem 1.2rem;
  }
  .subnav { position: static; transform: none; box-shadow: none; display: none; padding-left: 0.8rem; padding-top: 0.35rem; }
  .nav-item:hover .subnav, .nav-item:focus-within .subnav { display: none; }
  .nav-item.is-open .subnav { display: block; }
  .has-sub > a { display: flex; align-items: center; justify-content: space-between; }
  .sticky-bar { display: block; }
  body.has-sticky { padding-bottom: 5.2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .cats, .cats.-compact, .grid, .steps, .info-cards, .game-grid, .thumbs, .foot-grid, .promo { grid-template-columns: 1fr; }
  .logo span { display: none; }
  .hero-photo { min-height: 34rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding: 2.4rem 1.2rem 1.6rem; }
}
