/* sexNzo — shared base styles
   Imported by every page; page-specific styles live in <style> in the page itself.

   ─── Design tokens ─────────────────────────────────────────────────────
   Edit values in :root below to retheme the whole site at once.

   --bg / --ink / --ink-soft     core text + background colors
   --lila / --mint / --geel /    pastel surface colors (light) — used for
   --roze / --blauw / --oranje   backgrounds, cards, decorative blobs
   --*-deep                      saturated variants — used for accents, links,
                                 buttons. Each category page sets
                                 --page-accent / --page-accent-rgb to one of
                                 these so buttons, focus rings, illustration
                                 colors and back-arrows match.
   --line                        subtle border color (10% ink)
   --shadow-card                 default card shadow
   --r-card / --r-button         border radii (cards 24px, buttons full-pill)
   --font-display / --font-body  Bricolage Grotesque + Plus Jakarta Sans

   When porting to WordPress: copy this :root block into your theme's
   style.css unchanged. Categories then opt-in via a body class
   (cat-lila / cat-roze / etc) defined per-page in each template's <style>.
*/

:root {
  --bg: #ffffff;
  --ink: #1f1d28;
  --ink-soft: #6b6878;
  --lila: #d8c7e9;
  --lila-deep: #6b2b9a;
  --mint: #c4e9d6;
  --mint-deep: #1aaa3a;
  --geel: #f6ecc4;
  --geel-deep: #c2860a;
  --roze: #f5cfd4;
  --roze-deep: #c63b6a;
  --blauw: #c4d8f0;
  --blauw-deep: #1f6fc4;
  --oranje: #f6d4b8;
  --oranje-deep: #e26a2b;
  --line: rgba(31, 29, 40, 0.10);
  --shadow-card: 0 1px 2px rgba(31,29,40,0.04), 0 10px 30px rgba(31,29,40,0.06);
  --r-card: 24px;
  --r-button: 999px;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body { min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── Decorative pastel blobs (drifting) ─────────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite;
}
.blob.lila  { background: var(--lila); width: 420px; height: 420px; top: -120px; left: -100px; animation-delay: -2s; }
.blob.mint  { background: var(--mint); width: 360px; height: 360px; top: 30%; right: -120px; animation-delay: -6s; }
.blob.geel  { background: var(--geel); width: 320px; height: 320px; bottom: -80px; left: 18%; animation-delay: -10s; }
.blob.roze  { background: var(--roze); width: 380px; height: 380px; bottom: 10%; right: 12%; animation-delay: -14s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.05); }
  66%      { transform: translate(-20px, 25px) scale(0.97); }
}

/* ─── Header ─────────────────────────────────────────────────────────── */
header.site {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  gap: 16px;
}

/* ─── Header search ──────────────────────────────────────────────────── */
.search {
  flex: 1 1 auto;
  max-width: 320px;
  position: relative;
  display: flex;
  align-items: center;
}
.search input {
  width: 100%;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  padding: 9px 14px 9px 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(31, 29, 40, 0.08);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.search input::placeholder { color: rgba(31, 29, 40, 0.45); }
.search input:focus {
  outline: 0;
  background: #fff;
  border-color: var(--page-accent, var(--ink));
  box-shadow: 0 0 0 4px rgba(var(--page-accent-rgb, 31, 29, 40), 0.12);
}
.search .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--page-accent, var(--ink-soft));
  pointer-events: none;
}
.search-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--page-accent, var(--ink));
  cursor: pointer;
}
.search-toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
  .search { max-width: none; }
}
@media (max-width: 720px) {
  .search { display: none; }
  .search.open {
    display: flex;
    position: absolute;
    top: 100%; left: clamp(20px, 4vw, 56px); right: clamp(20px, 4vw, 56px);
    margin-top: 6px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 6px;
    box-shadow: var(--shadow-card);
    z-index: 11;
  }
  .search.open input {
    background: #fff;
    border-color: transparent;
  }
  .search-toggle { display: inline-flex; }
}
.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.site-mark .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, #1f6fc4, #e22b2b 30%, #6b2b9a 50%, #1aaa3a 70%, #e26a2b 90%);
}
.site-mark .site-logo-mark {
  /* Klein, statisch sexNzo-logo in de header — geen animatie, alleen letters */
  width: 110px;
  height: auto;
  pointer-events: none;
}
@media (max-width: 540px) {
  .site-mark .site-logo-mark { width: 92px; }
}
nav.primary {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 32px);
  font-size: 15px;
  font-weight: 500;
}
nav.primary a {
  color: var(--page-accent, var(--ink));
  padding: 6px 4px;
  font-weight: 700;
  transition: opacity .15s, transform .15s;
  position: relative;
}
nav.primary a:hover { opacity: 0.7; }
nav.primary a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px;
  bottom: -2px;
  height: 2px;
  background: var(--page-accent, var(--ink));
  border-radius: 2px;
}
nav.primary a.cta {
  color: #fff;
  padding: 10px 18px;
  background: var(--page-accent, var(--ink));
  border: 0;
  border-radius: var(--r-button);
  transition: filter .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(var(--page-accent-rgb, 31, 29, 40), 0.30);
}
nav.primary a.cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  opacity: 1;
  box-shadow: 0 6px 18px rgba(var(--page-accent-rgb, 31, 29, 40), 0.38);
}
nav.primary a.cta[aria-current="page"]::after { display: none; }

/* ─── Categorieën dropdown in the main nav ──────────────────────────── */
nav.primary .has-dropdown { position: relative; }
nav.primary .has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
nav.primary .has-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  transition: transform .15s;
}
nav.primary .has-dropdown:hover > a::after,
nav.primary .has-dropdown:focus-within > a::after { transform: rotate(180deg); }
nav.primary .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  background: rgba(243, 236, 248, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(107, 43, 154, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(31, 29, 40, 0.16), 0 1px 2px rgba(31, 29, 40, 0.04);
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(148px, 1fr));
  gap: 2px;
  min-width: 320px;
  transition: opacity .18s, transform .18s;
  z-index: 20;
}
nav.primary .has-dropdown:hover > .dropdown,
nav.primary .has-dropdown:focus-within > .dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
/* Small bridge so cursor can travel from link to dropdown without flicker */
nav.primary .has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0; height: 10px;
}
nav.primary .dropdown a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  transition: background .12s, opacity .12s;
}
nav.primary .dropdown a:hover { background: rgba(107, 43, 154, 0.12); opacity: 1; }
nav.primary .dropdown a .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}
nav.primary .dropdown a .dot.lila   { background: var(--lila-deep); }
nav.primary .dropdown a .dot.roze   { background: var(--roze-deep); }
nav.primary .dropdown a .dot.geel   { background: var(--geel-deep); }
nav.primary .dropdown a .dot.mint   { background: var(--mint-deep); }
nav.primary .dropdown a .dot.blauw  { background: var(--blauw-deep); }
nav.primary .dropdown a .dot.oranje { background: var(--oranje-deep); }

/* Mobile: dropdown becomes inline expansion under the hamburger menu */
@media (max-width: 720px) {
  nav.primary.open .has-dropdown { width: 100%; }
  nav.primary.open .has-dropdown > a::after { display: none; }
  nav.primary.open .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 4px 4px 8px 24px;
    grid-template-columns: 1fr;
    background: transparent;
    min-width: 0;
  }
  nav.primary.open .dropdown a { padding: 8px 8px 8px 12px; font-size: 13px; }
  nav.primary .has-dropdown::before { display: none; }
}
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-hamburger svg { width: 24px; height: 24px; }
@media (max-width: 720px) {
  nav.primary { display: none; }
  nav.primary.open {
    display: flex;
    position: absolute;
    top: 100%; right: clamp(20px, 4vw, 56px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 8px;
    min-width: 180px;
  }
  /* Mobile reorder: Home → Over ons → Contact → Categorieën (dropdown last) */
  nav.primary.open > a:nth-of-type(1) { order: 1; } /* Home */
  nav.primary.open > a[href="overons.html"] { order: 2; }
  nav.primary.open > a.cta { order: 3; } /* Contact */
  nav.primary.open > .has-dropdown { order: 4; }
  nav.primary.open a {
    padding: 12px 16px;
    border-radius: 10px;
  }
  nav.primary.open a:hover { background: rgba(31,29,40,0.04); }
  nav.primary.open a.cta { border: 0; text-align: left; }
  .nav-hamburger { display: inline-flex; }
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-button);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--page-accent, var(--ink));
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}
.btn-primary:hover { box-shadow: 0 6px 0 rgba(0, 0, 0, 0.22); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }

/* "Of bestel" — lichte variant van de primaire "Bel ons"-knop:
   zelfde page-accent kleur, maar met zachte tint-achtergrond ipv vol. */
.btn-secondary[data-hover="red"] {
  background: rgba(var(--page-accent-rgb), 0.14);
  border-color: transparent;
  color: var(--page-accent);
}
.btn-secondary[data-hover="red"]:hover {
  background: rgba(var(--page-accent-rgb), 0.24);
  border-color: transparent;
  color: var(--page-accent);
}

/* Klik-flash (mobiel) — gebruikt nu dezelfde page-accent ipv rood */
.btn.flash-red {
  background: rgba(var(--page-accent-rgb), 0.32) !important;
  border-color: transparent !important;
  color: var(--page-accent) !important;
}
.btn .arrow {
  transition: transform .25s;
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Footer ─────────────────────────────────────────────────────────── */
footer.site {
  position: relative;
  z-index: 1;
  padding: 24px clamp(20px, 4vw, 56px) 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  max-width: 1200px;
  margin: 0 auto;
}
footer.site .biz, footer.site .legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
footer.site .biz span, footer.site .legal span { white-space: nowrap; }
footer.site a { color: var(--ink-soft); }
footer.site a:hover { color: var(--ink); }
/* Op telefoon: footer onder elkaar, © BigamanProductions helemaal ONDERAAN */
@media (max-width: 600px) {
  footer.site { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  footer.site .legal { order: 1; justify-content: center; }
  footer.site > div:not(.legal) { order: 2; }
}

/* ─── Age verification modal ─────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  animation: fadeIn .4s ease;
}
.age-gate[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.age-card {
  width: min(440px, 100%);
  background: var(--bg);
  border-radius: 28px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(31,29,40,0.18), 0 1px 2px rgba(31,29,40,0.06);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.age-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: var(--lila);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  z-index: 0;
}
.age-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -40px;
  width: 180px; height: 180px;
  background: var(--mint);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  z-index: 0;
}
.age-card > * { position: relative; z-index: 1; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
}
.age-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.age-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 24px;
}
.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.age-actions .btn { justify-content: center; padding: 14px 20px; }

/* ─── Open-status pill (shared between homepage hero + header) ───────── */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  margin: 0 0 clamp(20px, 3.5vh, 32px);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(31, 29, 40, 0.06);
  cursor: default;
}
.open-status .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1aaa3a;
  position: relative;
  flex: 0 0 auto;
}
.open-status .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #1aaa3a;
  animation: pulse-ring 1.6s ease-out infinite;
}
.open-status.closed .dot { background: #c63b6a; }
.open-status.closed .dot::after { border-color: #c63b6a; }
@keyframes pulse-ring {
  0%   { transform: scale(0.7); opacity: 0.9; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .open-status .dot::after { animation: none; }
}

/* Compact variant injected into the header on every page (except homepage) */
.open-status.compact {
  margin: 0 0 0 12px;
  padding: 6px 12px 6px 10px;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.open-status.compact .dot { width: 8px; height: 8px; }
.open-status.compact .dot::after { inset: -3px; border-width: 1.5px; }

@media (max-width: 720px) {
  .open-status.compact .text { display: none; }
  .open-status.compact { padding: 6px; }
  .open-status.compact .dot { width: 9px; height: 9px; }
}
/* ─── Cookie banner ──────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(31, 29, 40, 0.08);
  box-shadow: 0 8px 32px rgba(31, 29, 40, 0.14);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  max-width: 760px;
  margin: 0 auto;
}
.cookie-bar.shown { opacity: 1; transform: translateY(0); }
.cookie-bar .cookie-body {
  flex: 1 1 280px;
  min-width: 0;
}
.cookie-bar .cookie-body a {
  color: var(--page-accent, var(--ink));
  border-bottom: 1px solid rgba(var(--page-accent-rgb, 31, 29, 40), 0.3);
}
.cookie-bar .cookie-body a:hover { border-color: var(--page-accent, var(--ink)); }
.cookie-bar .cookie-actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-bar button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, background .15s, filter .15s, border-color .15s;
}
.cookie-bar .cookie-decline {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid rgba(31, 29, 40, 0.15);
}
.cookie-bar .cookie-decline:hover { color: var(--ink); border-color: rgba(31, 29, 40, 0.4); }
.cookie-bar .cookie-accept {
  background: var(--page-accent, var(--ink));
  color: #fff;
  border: 0;
  box-shadow: 0 4px 12px rgba(var(--page-accent-rgb, 31, 29, 40), 0.28);
}
.cookie-bar .cookie-accept:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* ─── Category illustrations ────────────────────────────────────────── */
.cat-illu {
  width: clamp(100px, 14vw, 160px);
  aspect-ratio: 1 / 1;
  display: block;
  margin-bottom: 8px;
  color: var(--page-accent);
}
.cat-illu svg { width: 100%; height: 100%; display: block; overflow: visible; }
.cat-illu .ci-a { fill: rgba(var(--page-accent-rgb), 0.22); }
.cat-illu .ci-b { fill: rgba(var(--page-accent-rgb), 0.55); }
.cat-illu .ci-c { fill: var(--page-accent); }
.cat-illu .ci-s { fill: none; stroke: var(--page-accent); stroke-linecap: round; }

/* Animations — each shape group with a different rhythm so the whole thing breathes */
@keyframes ci-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
@keyframes ci-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(3px, -4px); }
}
@keyframes ci-spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes ci-wobble {
  0%, 100% { transform: translateX(0) rotate(0); }
  33%      { transform: translateX(-2px) rotate(-3deg); }
  66%      { transform: translateX(2px) rotate(3deg); }
}
.cat-illu .ci-pulse-1 { transform-origin: center; animation: ci-pulse 3.2s ease-in-out infinite; }
.cat-illu .ci-pulse-2 { transform-origin: center; animation: ci-pulse 2.6s ease-in-out infinite reverse; }
.cat-illu .ci-drift-1 { animation: ci-drift 4.4s ease-in-out infinite; }
.cat-illu .ci-drift-2 { animation: ci-drift 5.8s ease-in-out infinite reverse; }
.cat-illu .ci-spin    { transform-origin: center; animation: ci-spin-slow 18s linear infinite; }
.cat-illu .ci-wobble  { transform-origin: center; animation: ci-wobble 3.8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .cat-illu .ci-pulse-1, .cat-illu .ci-pulse-2,
  .cat-illu .ci-drift-1, .cat-illu .ci-drift-2,
  .cat-illu .ci-spin,    .cat-illu .ci-wobble { animation: none; }
}

/* ─── Animated logo (used in hero + small mark) ──────────────────────── */
.sexnzo-logo {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 1400 / 715;
}
.sexnzo-logo .letter {
  position: absolute;
  transform-origin: center center;
  will-change: transform;
}
.sexnzo-logo .letter img {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-user-drag: none; pointer-events: none;
}

/* ─── FAQ pill (gebruik onderaan over-ons / contact pagina's) ────────── */
.faq-pill {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto clamp(28px, 5vh, 48px);
  padding: 0 clamp(20px, 4vw, 56px);
}
.faq-pill a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px 18px 24px;
  background: #fff;
  border: 1px solid rgba(31,29,40,0.06);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(31,29,40,0.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.faq-pill a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--page-accent-rgb, 31, 29, 40), 0.18);
  border-color: rgba(var(--page-accent-rgb, 31, 29, 40), 0.20);
}
.faq-pill .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(var(--page-accent-rgb, 31, 29, 40), 0.10);
  color: var(--page-accent, var(--ink));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.faq-pill .copy {
  flex: 1 1 auto;
  min-width: 0;
}
.faq-pill .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--page-accent, var(--ink-soft));
  margin-bottom: 2px;
}
.faq-pill .title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.faq-pill .arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--page-accent, var(--ink));
  color: #fff;
  transition: transform .2s ease;
}
.faq-pill a:hover .arrow { transform: translateX(4px); }
.faq-pill .arrow svg { width: 18px; height: 18px; stroke-width: 2.5; }
/* Bestel-knop in de "Kom langs"-knoppenrij — wit, vet, in de accentkleur,
   even groot als de andere knoppen. */
.btn-bestel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--r-button);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  background: #ffffff;
  color: var(--page-accent, var(--ink));
  border: 0;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-bestel:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0, 0, 0, 0.10); }
.btn-bestel svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* Alle knoppen in de bezoek-rij iets compacter zodat ze even groot zijn en op één lijn passen. */
.visit-actions .btn,
.visit-actions .btn-bestel {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 480px) {
  .faq-pill a { padding: 14px 16px 14px 18px; gap: 12px; }
  .faq-pill .icon { width: 38px; height: 38px; font-size: 18px; }
  .faq-pill .arrow { width: 34px; height: 34px; }
}

/* ─── Back to top knop (FAQ + product detail) ───────────────────────── */
.back-to-top {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(340px, 60vh, 580px);
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--page-accent, var(--ink));
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(var(--page-accent-rgb, 31, 29, 40), 0.32);
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, box-shadow .18s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: 0 12px 28px rgba(var(--page-accent-rgb, 31, 29, 40), 0.45);
  animation: back-vibrate 0.28s linear infinite;
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

/* ─── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ─── Skip to content (a11y + SEO) ───────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 9999;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid #fff;
  outline-offset: -4px;
}
/* Wakker, speels accent op hover — past bij de hero-knop op de homepage */
@keyframes btn-vibrate {
  0%, 100% { transform: translate(0, -2px) rotate(0); }
  25%      { transform: translate(-1.5px, -2px) rotate(-0.7deg); }
  50%      { transform: translate(1.5px, -3px) rotate(0.7deg); }
  75%      { transform: translate(-1px, -2px) rotate(-0.4deg); }
}
@keyframes back-vibrate {
  0%, 100% { transform: translateX(-4px) rotate(0); }
  25%      { transform: translateX(-5px) rotate(-3deg); }
  50%      { transform: translateX(-3px) rotate(3deg); }
  75%      { transform: translateX(-5px) rotate(-2deg); }
}
/* Alle pillen/CTA's trillen speels op hover (john: alle pillen) */
.btn:hover,
.btn-bestel:hover,
.cta:hover,
.wa-link:hover,
.tel-link:hover,
.msg-link:hover {
  animation: btn-vibrate 0.28s linear infinite;
}
/* Retourpijltje linksboven + terug-naar-boven op subpagina's */
.back-link:hover {
  animation: back-vibrate 0.28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn-bestel:hover,
  .cta:hover,
  .wa-link:hover,
  .tel-link:hover,
  .msg-link:hover,
  .back-link:hover,
  .back-to-top:hover { animation: none; }
}
