/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://tokkenintwente.nl
Description: Child theme voor Tokken in Twente
Author: Tokken in Twente
Template: twentytwentyfive
Version: 1.0
*/

/* ══════════════════════════════════════════════
   1. NAVIGATIE — ALTIJD ZICHTBAAR (EERST!)
══════════════════════════════════════════════ */
nav.topnav,
.topnav {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: #FFFFFF !important;
  box-shadow: 0 2px 16px rgba(27,42,74,0.08) !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px clamp(16px, 5vw, 48px) !important;
  gap: 16px !important;
  min-height: 64px !important;
}

/* ══════════════════════════════════════════════
   2. WORDPRESS / TT5 ELEMENTEN VERBERGEN
══════════════════════════════════════════════ */
html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

.wp-site-blocks > header,
.wp-site-blocks > footer,
header.wp-block-template-part,
footer.wp-block-template-part,
.site-header, .site-footer,
#masthead, #colophon,
.wp-block-template-part,
nav.wp-block-navigation,
.wp-block-navigation,
.wp-block-site-title,
.wp-block-site-logo,
.wp-block-post-title,
.entry-header, .page-header { display: none !important; }

h1.wp-block-post-title,
.wp-block-post-title,
.entry-title { display: none !important; }

.wp-site-blocks,
.wp-block-post-content,
.entry-content,
.site-content,
#content, #main, main, .site-main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body { margin: 0 !important; padding: 0 !important; overflow-x: hidden; }
.wp-block-group.alignfull,
.has-global-padding { padding: 0 !important; }
.wp-block-template-part { display: none !important; }
.main-navigation,
#site-navigation,
.wp-block-navigation { display: none !important; }
.wp-site-blocks > * { margin-block-start: 0 !important; }
.is-layout-flow > * + * { margin-block-start: 0 !important; }
.wp-block-group.is-layout-constrained,
.wp-block-group.is-layout-flow { padding: 0 !important; margin: 0 !important; }

aside, .sidebar, #secondary, .widget-area,
.related-posts, .post-navigation,
.comments-area, #comments { display: none !important; }

.wp-block-post-content > .wp-block-html,
.wp-block-post-content > div,
.entry-content > .wp-block-html,
.entry-content > div {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
}

.wp-block-post-content.is-layout-flow,
.wp-block-post-content.is-layout-constrained {
  max-width: 100% !important;
  padding: 0 !important;
}

.wp-site-blocks > .wp-block-group,
.wp-site-blocks > main > *,
.wp-site-blocks > * {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wp-block-post-content > nav:not(.topnav),
nav.wp-block-breadcrumbs,
.wp-block-breadcrumbs,
nav[aria-label="Breadcrumb"],
nav[aria-label="breadcrumbs"],
nav[aria-label="U bent hier"],
.breadcrumb-trail,
#breadcrumbs,
.entry-content > nav:not(.topnav),
}

/* ══════════════════════════════════════════════
   3. RESET & CSS VARIABELEN
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --geel:       #F7C948;
  --rood:       #E8352A;
  --blauw:      #1B2A4A;
  --groen:      #3A7D44;
  --wit:        #FFFFFF;
  --lichtgrijs: #F7F7F4;
  --grijs:      #EFEFEB;
  --tekstgrijs: #555560;
  --radius-s:   10px;
  --radius-m:   18px;
  --radius-l:   28px;
  --schaduw:    0 4px 24px rgba(27,42,74,0.10);
  --schaduw-l:  0 8px 40px rgba(27,42,74,0.14);
  --container:  1100px;
  --padding-x:  clamp(16px, 5vw, 48px);
}
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--wit);
  color: var(--blauw);
  overflow-x: hidden;
  line-height: 1.7;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ══════════════════════════════════════════════
   4. TYPOGRAFIE
══════════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.2; }
h1 { font-size: clamp(1.7rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
h3 { font-size: clamp(0.95rem, 2vw, 1.2rem); font-weight: 700; margin-bottom: 8px; }
h4 { font-size: clamp(0.9rem, 1.8vw, 1.05rem); font-weight: 700; }
p  { font-size: clamp(0.88rem, 1.8vw, 1rem); color: var(--tekstgrijs); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════
   5. LABELS
══════════════════════════════════════════════ */
.label {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.label-rood { color: var(--rood); background: rgba(232,53,42,0.09); }
.label-wit  { color: var(--geel); background: rgba(247,201,72,0.15); }

/* ══════════════════════════════════════════════
   6. KNOPPEN
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  padding: clamp(10px, 2vw, 14px) clamp(18px, 3vw, 30px);
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-rood   { background: var(--rood); color: var(--wit); box-shadow: 0 6px 20px rgba(232,53,42,0.30); }
.btn-rood:hover { background: #c42820; }
.btn-blauw  { background: var(--blauw); color: var(--wit); box-shadow: 0 6px 20px rgba(27,42,74,0.22); }
.btn-blauw:hover { background: #0f1d35; }
.btn-outline { background: transparent; color: var(--blauw); border: 2px solid rgba(27,42,74,0.20); }
.btn-outline:hover { border-color: var(--rood); color: var(--rood); }
.btn-outline-wit { background: transparent; color: var(--wit); border: 2px solid rgba(255,255,255,0.40); }
.btn-outline-wit:hover { border-color: var(--geel); background: rgba(247,201,72,0.10); }
.btn-geel   { background: var(--geel); color: var(--blauw); box-shadow: 0 6px 20px rgba(247,201,72,0.35); }
.btn-groep  { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════════════
   7. NAVIGATIE — DESKTOP DETAILS
══════════════════════════════════════════════ */
.topnav-logo img {
  height: clamp(36px, 5vw, 50px);
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 28px);
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--blauw);
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.actief { color: var(--rood); border-bottom-color: var(--rood); }
.nav-links .btn { border-bottom: none; padding: 8px 18px; font-size: 0.85rem; }

/* ══════════════════════════════════════════════
   8. NAVIGATIE — HAMBURGER & MOBIEL MENU
══════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  -webkit-appearance: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blauw);
  border-radius: 2px;
  pointer-events: none;
}
.mobiel-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--blauw);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vh, 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobiel-menu.open { display: flex; }
.mobiel-menu a {
  color: var(--wit);
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: manipulation;
}
.mobiel-menu a:hover { color: var(--geel); }
.mobiel-menu .btn-rood { font-size: clamp(1rem, 3vw, 1.2rem); padding: 12px 32px; }
.sluit-mob {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--wit);
  font-size: 2rem;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events: auto;
  z-index: 10001;
}

/* ══════════════════════════════════════════════
   9. LAYOUT HELPERS
══════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  width: 100%;
}
.container-smal {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--padding-x);
}
.sectie         { padding: clamp(40px, 8vw, 88px) 0; }
.sectie-grijs   { background: var(--lichtgrijs); }
.sectie-wit     { background: var(--wit); }
.sectie-blauw   { background: var(--blauw); }
.sectie-lichtblauw { background: #EAF1FB; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 28px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2.5vw, 24px);
}

/* ══════════════════════════════════════════════
   10. KAARTJES
══════════════════════════════════════════════ */
.kaart {
  background: var(--wit);
  border-radius: var(--radius-m);
  padding: clamp(16px, 3vw, 32px);
  box-shadow: var(--schaduw);
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.kaart:hover { transform: translateY(-4px); border-color: var(--geel); box-shadow: var(--schaduw-l); }
.kaart-icon  { font-size: 2rem; margin-bottom: 14px; display: block; }

/* ══════════════════════════════════════════════
   11. FOOTER
══════════════════════════════════════════════ */
.sitefooter {
  background: #0f1d35;
  color: rgba(255,255,255,0.55);
  padding: clamp(28px, 5vw, 48px) 0 24px;
  font-size: 0.85rem;
}
.sitefooter a { color: var(--geel); text-decoration: none; }
.sitefooter a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 32px);
  margin-bottom: 28px;
}
.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  color: var(--wit);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer-col p,
.footer-col li  { font-size: 0.83rem; line-height: 1.9; }
.footer-col ul  { list-style: none; padding: 0; }
.footer-bottom  { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--wit) !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--rood); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   12. PAGE-HERO
══════════════════════════════════════════════ */
.page-hero {
  background: var(--blauw);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 10vw, 100px) 0 clamp(64px, 11vw, 110px);
  width: 100%;
  margin: 0;
}
.page-hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(247,201,72,0.14) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}
.page-hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,53,42,0.18) 0%, transparent 70%);
  right: -80px;
  top: -80px;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}
.page-hero h1 { color: var(--geel) !important; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-family: 'Baloo 2', cursive;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--geel); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.85); }

/* Hero animatie wrap */
.hero-animatie-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-animatie-wrap iframe {
  width: 420px;
  height: 340px;
  border: none;
  border-radius: var(--radius-m);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
  display: block;
}

/* Badge balk */
.badge-balk { background: var(--geel); padding: 14px clamp(16px,5vw,48px); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.badge-balk span { font-family: 'Baloo 2', cursive; font-weight: 700; color: var(--blauw); font-size: 0.95rem; }
.badge-balk a { display: inline-flex; align-items: center; gap: 6px; background: var(--blauw); color: var(--wit); font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 0.85rem; padding: 7px 18px; border-radius: 50px; text-decoration: none; transition: background 0.18s; }
.badge-balk a:hover { background: #0f1d35; }

/* ══════════════════════════════════════════════
   13. SPELUITLEG
══════════════════════════════════════════════ */
.stap-nr {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--rood); color: var(--wit);
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; box-shadow: 0 4px 14px rgba(232,53,42,0.28);
}
.stap-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px; background: var(--wit); border-radius: var(--radius-m); box-shadow: var(--schaduw); }
.stap-item p { margin-bottom: 0; font-size: 0.9rem; }
.stap-kaart {
  background: var(--wit); border-radius: var(--radius-m);
  padding: clamp(20px, 3vw, 32px); box-shadow: var(--schaduw);
  border: 2px solid transparent; transition: transform 0.2s, border-color 0.2s;
}
.stap-kaart:hover { transform: translateY(-4px); border-color: var(--geel); }
.regel-kaart {
  background: var(--wit); border-radius: var(--radius-m);
  padding: 24px; border-left: 4px solid var(--rood);
  box-shadow: 0 2px 12px rgba(27,42,74,0.07); transition: transform 0.18s;
}
.regel-kaart:hover { transform: translateX(4px); }
.regel-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.video-embed {
  position: relative; overflow: hidden;
  border-radius: var(--radius-m); aspect-ratio: 16/9; background: #000;
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.download-kaart {
  background: var(--wit); border-radius: var(--radius-m);
  padding: 36px; box-shadow: var(--schaduw);
  display: flex; align-items: center; gap: 28px;
  border: 2px solid rgba(27,42,74,0.06); max-width: 720px;
}
.download-icon {
  width: 72px; height: 72px; background: #EAF1FB;
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 2rem; flex-shrink: 0;
}
.foto-sectie { padding: clamp(32px, 5vw, 56px) 0; background: var(--wit); }
.foto-sectie img {
  display: block; width: 100%; max-width: 900px;
  margin: 0 auto; border-radius: var(--radius-l);
  box-shadow: var(--schaduw-l); object-fit: cover; height: auto;
}

/* ══════════════════════════════════════════════
   14. CONTACT
══════════════════════════════════════════════ */
.contact-kaartjes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.contact-kaart {
  background: var(--lichtgrijs); border-radius: var(--radius-m);
  padding: 28px; text-align: center;
  border: 2px solid transparent; transition: border-color 0.2s, transform 0.2s;
}
.contact-kaart:hover { border-color: var(--geel); transform: translateY(-4px); }
.contact-kaart .c-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.contact-kaart h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-kaart p { font-size: 0.88rem; margin: 0; }
.contact-kaart a { color: var(--rood); text-decoration: none; font-weight: 600; }
.form-wrap {
  background: var(--wit); border-radius: var(--radius-m);
  padding: clamp(28px, 5vw, 48px); box-shadow: var(--schaduw);
  border: 2px solid rgba(27,42,74,0.06);
}

/* ══════════════════════════════════════════════
   15. FAQ
══════════════════════════════════════════════ */
.faq-groep { margin-bottom: 40px; }
.faq-groep-titel {
  font-family: 'Baloo 2', cursive; font-weight: 800;
  font-size: 1.1rem; color: var(--blauw);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--grijs);
}
.faq-item {
  background: var(--wit); border-radius: var(--radius-s);
  margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(27,42,74,0.06);
}
.faq-vraag {
  width: 100%; background: none; border: none;
  padding: 18px 22px; text-align: left;
  font-family: 'Baloo 2', cursive; font-weight: 700;
  font-size: clamp(0.88rem, 1.8vw, 1rem); color: var(--blauw);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
}
.faq-vraag .chevron { color: var(--rood); font-size: 1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-antwoord {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 22px; font-size: 0.92rem;
  color: var(--tekstgrijs); line-height: 1.7;
}
.faq-item.open .faq-antwoord { max-height: 300px; padding: 0 22px 18px; }

/* ══════════════════════════════════════════════
   16. WOOCOMMERCE — ALGEMEEN
══════════════════════════════════════════════ */
body.woocommerce-page,
body.woocommerce {
  background: var(--wit) !important;
  font-family: 'Mulish', sans-serif !important;
  overflow-x: hidden;
}
body.woocommerce-page .wp-site-blocks,
body.woocommerce .wp-site-blocks {
  padding: 0 !important; margin: 0 !important;
  max-width: 100% !important; width: 100% !important;
}

/* ══════════════════════════════════════════════
   17. WOOCOMMERCE — PRODUCTPAGINA
══════════════════════════════════════════════ */
.woocommerce div.product {
  display: block !important; max-width: 1100px !important;
  margin: 0 auto !important; padding: clamp(28px, 5vw, 56px) clamp(16px, 5vw, 48px) !important;
  width: 100% !important; float: none !important;
}
.woocommerce div.product::after { content: ''; display: table; clear: both; }
.woocommerce div.product .woocommerce-product-gallery {
  float: left !important; width: 50% !important; margin-right: 4% !important; margin-bottom: 24px !important;
}
.woocommerce div.product .woocommerce-product-gallery__wrapper { width: 100% !important; }
.woocommerce div.product .woocommerce-product-gallery__image img {
  width: 100% !important; height: auto !important; border-radius: var(--radius-m) !important;
}
.woocommerce div.product .summary {
  float: left !important; width: 46% !important;
  writing-mode: horizontal-tb !important; text-orientation: mixed !important;
  overflow: visible !important; word-break: normal !important; white-space: normal !important;
}
.woocommerce div.product .summary * {
  writing-mode: horizontal-tb !important; text-orientation: mixed !important;
  white-space: normal !important; word-break: normal !important; overflow-wrap: break-word !important;
}
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .up-sells,
.related.products {
  clear: both !important; float: none !important; width: 100% !important; writing-mode: horizontal-tb !important;
}
.woocommerce div.product .product_title {
  font-family: 'Baloo 2', cursive !important; font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important; color: var(--blauw) !important; margin-bottom: 14px !important; line-height: 1.2 !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: 'Baloo 2', cursive !important; font-size: clamp(1.6rem, 3vw, 2rem) !important;
  font-weight: 800 !important; color: var(--rood) !important; margin-bottom: 20px !important; display: block !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--tekstgrijs) !important; line-height: 1.7 !important;
  margin-bottom: 24px !important; font-size: clamp(0.88rem, 1.8vw, 1rem) !important;
}
.woocommerce div.product .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--rood) !important; color: var(--wit) !important;
  border: none !important; border-radius: 50px !important;
  padding: 14px 32px !important; font-family: 'Baloo 2', cursive !important;
  font-size: 1rem !important; font-weight: 700 !important;
  cursor: pointer !important; box-shadow: 0 6px 20px rgba(232,53,42,0.30) !important;
  transition: background 0.18s !important; min-height: 48px !important;
  white-space: nowrap !important; display: inline-flex !important;
  align-items: center !important; text-decoration: none !important;
}
.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: #c42820 !important; }
.woocommerce div.product form.cart {
  display: flex !important; gap: 12px !important;
  align-items: center !important; flex-wrap: wrap !important; margin-bottom: 20px !important;
}
.woocommerce div.product form.cart .qty {
  width: 64px !important; height: 48px !important;
  border: 2px solid var(--grijs) !important; border-radius: var(--radius-s) !important;
  font-size: 16px !important; text-align: center !important;
  font-family: 'Baloo 2', cursive !important; color: var(--blauw) !important;
}
.woocommerce div.product .woocommerce-tabs {
  margin-top: 48px !important; padding-top: 24px !important; border-top: 2px solid var(--grijs) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--grijs) !important; padding: 0 !important;
  margin-bottom: 24px !important; display: flex !important; gap: 4px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: 'Baloo 2', cursive !important; font-weight: 700 !important; color: var(--tekstgrijs) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--rood) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid var(--rood) !important; }

/* ══════════════════════════════════════════════
   18. WOOCOMMERCE — WINKELWAGEN & CHECKOUT
══════════════════════════════════════════════ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1100px !important; margin: clamp(28px, 5vw, 48px) auto !important;
  padding: 0 clamp(16px, 5vw, 48px) !important; float: none !important;
}
.woocommerce-cart .woocommerce { padding: clamp(28px, 5vw, 56px) clamp(16px, 5vw, 48px) !important; }
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; font-size: clamp(0.85rem, 1.8vw, 0.95rem); }
.woocommerce table.shop_table th {
  font-family: 'Baloo 2', cursive; color: var(--blauw); font-weight: 700;
  padding: 12px 16px; border-bottom: 2px solid var(--grijs); text-align: left;
}
.woocommerce table.shop_table td { padding: 16px; border-bottom: 1px solid var(--grijs); vertical-align: middle; }
.woocommerce-cart-form__cart-item .product-thumbnail img { width: 80px !important; height: auto !important; }
.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
  background: transparent !important; color: var(--blauw) !important;
  padding: 12px 16px !important; border-bottom: 1px solid var(--grijs) !important;
}
.cart-collaterals .cart_totals {
  background: var(--wit) !important; border-radius: var(--radius-m) !important;
  padding: 24px !important; box-shadow: var(--schaduw) !important;
}
.woocommerce-checkout .shop_table th,
.woocommerce-checkout .shop_table td,
.woocommerce table.woocommerce-checkout-review-order-table th,
.woocommerce table.woocommerce-checkout-review-order-table td {
  background: transparent !important; color: var(--blauw) !important;
  padding: 12px 16px !important; border-bottom: 1px solid var(--grijs) !important;
}

/* ══════════════════════════════════════════════
   19. WOOCOMMERCE — PRODUCTOVERZICHT
══════════════════════════════════════════════ */
.woocommerce ul.products {
  display: grid !important; grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(14px, 3vw, 28px) !important; list-style: none !important;
  padding: 0 !important; margin: 0 !important; float: none !important; clear: both !important;
}
.woocommerce ul.products li.product {
  background: var(--wit) !important; border-radius: var(--radius-m) !important;
  box-shadow: var(--schaduw) !important; overflow: hidden !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  border: 2px solid transparent !important; float: none !important;
  width: auto !important; margin: 0 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) !important; border-color: var(--geel) !important; box-shadow: var(--schaduw-l) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Baloo 2', cursive !important; font-weight: 700 !important;
  color: var(--blauw) !important; font-size: clamp(0.95rem, 2vw, 1.1rem) !important; padding: 12px 16px 4px !important;
}
.woocommerce ul.products li.product .price {
  color: var(--rood) !important; font-family: 'Baloo 2', cursive !important;
  font-weight: 800 !important; font-size: clamp(1.1rem, 2vw, 1.3rem) !important; padding: 0 16px 12px !important; display: block !important;
}
.woocommerce ul.products li.product .woocommerce-product-details__short-description,
.woocommerce ul.products li.product .short-description,
.woocommerce ul.products li.product p:not(.price),
.related.products ul.products li.product p,
.related.products ul.products li.product div,
.upsells.products ul.products li.product p,
.upsells.products ul.products li.product div { display: none !important; }
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button { display: block !important; }
.woocommerce .related.products {
  max-width: 1100px !important; margin: 40px auto !important; padding: 0 clamp(16px, 5vw, 48px) !important;
}
.woocommerce .related.products h2 {
  font-family: 'Baloo 2', cursive !important; font-weight: 800 !important;
  color: var(--blauw) !important; margin-bottom: 20px !important;
}
.woocommerce .cross-sells ul.products { grid-template-columns: repeat(2, 1fr) !important; }
.woocommerce .cross-sells ul.products li.product { width: auto !important; float: none !important; }
.woocommerce .cross-sells .woocommerce-loop-product__title ~ * { display: none !important; }
.woocommerce .cross-sells .price,
.woocommerce .cross-sells .button { display: block !important; }

/* ══════════════════════════════════════════════
   20. HOMEPAGE SPECIFIEK
══════════════════════════════════════════════ */
.actie-balk { background: #e8f5e9; border-left: 4px solid var(--groen); border-radius: 0 var(--radius-s) var(--radius-s) 0; padding: 14px 20px; display: flex; align-items: center; gap: 12px; margin-bottom: 32px; font-family: 'Baloo 2', cursive; font-weight: 700; color: var(--groen); font-size: 0.95rem; }
.usp-logo-kaart { display: flex; align-items: center; justify-content: center; padding: 16px; }
.usp-logo-kaart img { width: 100%; max-height: 160px; object-fit: contain; }
.product-kaart { display: flex; flex-direction: column; overflow: hidden; }
.product-afb { background: var(--lichtgrijs); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-afb img { width: 72%; object-fit: contain; transition: transform 0.3s; }
.product-kaart:hover .product-afb img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--geel); color: var(--blauw); font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 0.72rem; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1rem; margin-bottom: 6px; }
.product-body p { font-size: 0.85rem; margin-bottom: 14px; flex: 1; }
.product-prijs { font-family: 'Baloo 2', cursive; font-size: 1.7rem; font-weight: 800; color: var(--rood); margin-bottom: 14px; line-height: 1; }
.product-prijs small { font-size: 0.75rem; color: var(--tekstgrijs); font-weight: 400; }
.product-kenmerken { list-style: none; margin-bottom: 16px; padding: 0; }
.product-kenmerken li { font-size: 0.82rem; color: var(--tekstgrijs); padding: 4px 0; display: flex; gap: 8px; align-items: center; border-bottom: 1px solid var(--grijs); }
.product-kenmerken li:last-child { border-bottom: none; }
.product-kenmerken li::before { content: "✓"; width: 18px; height: 18px; background: var(--rood); color: var(--wit); border-radius: 50%; font-size: 0.62rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   21. WINKEL SPECIFIEK
══════════════════════════════════════════════ */
.verzend-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.verzend-item { background: var(--lichtgrijs); border-radius: var(--radius-m); padding: 28px; text-align: center; border: 2px solid transparent; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; font-size: 2rem; }
.verzend-item:hover { border-color: var(--geel); transform: translateY(-4px); }
.verzend-item strong { font-family: 'Baloo 2', cursive; font-size: 1rem; color: var(--blauw); display: block; }
.verzend-item span { font-size: 0.83rem; color: var(--tekstgrijs); }
.relatie-sectie { background: var(--blauw); padding: clamp(48px,8vw,88px) 0; }
.relatie-afb { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-m); padding: 32px; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.relatie-afb img { width: 80%; object-fit: contain; }

/* ══════════════════════════════════════════════
   22. PRIVACY PAGINA
══════════════════════════════════════════════ */
.av-update { display: inline-block; background: var(--lichtgrijs); border-radius: var(--radius-s); padding: 8px 16px; font-size: 0.85rem; color: var(--tekstgrijs); margin-bottom: 40px; font-family: 'Baloo 2', cursive; font-weight: 600; }
.av-sectie { margin-bottom: 56px; }
.av-sectie h2 { font-family: 'Baloo 2', cursive; font-weight: 800; color: var(--blauw); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 28px; padding-bottom: 12px; border-bottom: 3px solid var(--rood); }
.av-artikel { background: var(--wit); border-radius: var(--radius-m); padding: clamp(20px, 3vw, 28px); box-shadow: var(--schaduw); margin-bottom: 16px; border-left: 4px solid var(--geel); }
.av-artikel h3 { font-family: 'Baloo 2', cursive; font-weight: 700; color: var(--blauw); font-size: clamp(0.95rem, 2vw, 1.1rem); margin-bottom: 10px; }
.av-artikel p { color: var(--tekstgrijs); font-size: clamp(0.88rem, 1.8vw, 0.95rem); line-height: 1.8; margin-bottom: 0; }
.av-artikel a { color: var(--rood); text-decoration: none; font-weight: 600; }
.av-lijst { list-style: none; padding: 0; margin: 0; }
.av-lijst li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: clamp(0.88rem, 1.8vw, 0.95rem); color: var(--tekstgrijs); border-bottom: 1px solid var(--grijs); }
.av-lijst li:last-child { border-bottom: none; }
.av-lijst li::before { content: "✓"; width: 20px; height: 20px; background: var(--rood); color: var(--wit); border-radius: 50%; font-size: 0.65rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.av-contact-kaart { background: var(--lichtgrijs); border-radius: var(--radius-m); padding: clamp(24px, 4vw, 36px); display: flex; gap: 24px; align-items: flex-start; border: 2px solid var(--grijs); margin-top: 32px; }
.av-contact-icon { font-size: 2.5rem; flex-shrink: 0; }
.av-contact-kaart h3 { font-family: 'Baloo 2', cursive; font-weight: 800; color: var(--blauw); margin-bottom: 8px; }
.av-contact-kaart p { color: var(--tekstgrijs); font-size: 0.92rem; margin-bottom: 0; }

/* ══════════════════════════════════════════════
   23. TEVREDENHEIDSONDERZOEK
══════════════════════════════════════════════ */
.tv-sectie-intro { background: var(--lichtgrijs); border-radius: var(--radius-m); padding: clamp(20px, 3vw, 28px); border-left: 4px solid var(--rood); }
.tv-deel-header { display: flex; align-items: flex-start; gap: 20px; }
.tv-deel-nr { width: 48px; height: 48px; border-radius: 50%; background: var(--rood); color: var(--wit); font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 14px rgba(232,53,42,0.28); }

/* ══════════════════════════════════════════════
   24. REVIEWS CARROUSEL
══════════════════════════════════════════════ */
.reviews-sectie {
  background: var(--blauw);
  padding: clamp(40px, 6vw, 64px) 0;
  overflow: hidden;
  position: relative;
}
.reviews-track-wrap { overflow: hidden; width: 100%; }
.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviewScroll 60s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-kaart {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-m);
  padding: 24px 28px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.review-kaart:hover { background: rgba(255,255,255,0.12); }
.review-sterren { color: var(--geel); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-tekst { color: rgba(255,255,255,0.88); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-naam { color: var(--geel); font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 0.85rem; }

/* ══════════════════════════════════════════════
   25. RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-animatie-wrap iframe { width: 300px; height: 240px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-kaartjes { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   26. RESPONSIVE — MOBIEL (max 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: clamp(16px, 4vw, 28px); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .btn-groep { flex-direction: column; align-items: stretch; }
  .btn-groep .btn { justify-content: center; width: 100%; }
  .page-hero .container { grid-template-columns: 1fr; }
  .hero-animatie-wrap { display: none; }
  .contact-kaartjes { grid-template-columns: 1fr; }
  .download-kaart { flex-direction: column; text-align: center; }
  .download-icon { margin: 0 auto; }
  .badge-balk { flex-direction: column; }
  .relatie-sectie .grid-2 { grid-template-columns: 1fr; }
  .verzend-strip { grid-template-columns: 1fr; }
  .av-contact-kaart { flex-direction: column; }
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary { float: none !important; width: 100% !important; margin-right: 0 !important; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .woocommerce-cart table.shop_table thead { display: none; }
  .woocommerce-cart table.shop_table tr { display: block; border-bottom: 2px solid var(--grijs); padding: 12px 0; }
  .woocommerce-cart table.shop_table td { display: flex; justify-content: space-between; align-items: center; padding: 8px 16px; border: none; font-size: 0.88rem; }
  .woocommerce-cart table.shop_table td::before { content: attr(data-title); font-family: 'Baloo 2', cursive; font-weight: 700; color: var(--blauw); margin-right: 12px; flex-shrink: 0; }
}

/* ══════════════════════════════════════════════
   27. RESPONSIVE — KLEIN MOBIEL (max 480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .topnav { padding: 8px 16px !important; min-height: 56px !important; }
  .topnav-logo img { height: 34px; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .woocommerce div.product form.cart { flex-direction: column !important; align-items: stretch !important; }
  .woocommerce div.product form.cart .qty { width: 100% !important; }
  .sectie { padding: clamp(32px, 6vw, 56px) 0; }
  .contact-kaartjes { grid-template-columns: 1fr; gap: 12px; }
  .form-wrap { padding: 20px !important; }
}

/* ══════════════════════════════════════════════
   28. GROOT SCHERM (min 1440px)
══════════════════════════════════════════════ */
@media (min-width: 1440px) {
  :root { --container: 1280px; --padding-x: 64px; }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.4rem; }
}

/* ══════════════════════════════════════════════
   29. TOUCH & TOEGANKELIJKHEID
══════════════════════════════════════════════ */
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, a.btn, input[type="submit"] { min-height: 44px; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--rood); outline-offset: 3px; border-radius: 4px; }
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], select, textarea { font-size: 16px !important; }
/* ══ FIX: HERO DIRECT NA NAV ══ */
.page-hero {
    margin-top: 0 !important;
}

.wp-site-blocks,
.wp-block-post-content,
.entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}