/*
Theme Name: Uitzetlijst Babyspullen
Theme URI: https://uitzetlijst-babyspullen.nl
Author: Jouw Naam
Description: Custom affiliate thema voor uitzetlijst-babyspullen.nl
Version: 2.0
*/

/* ============================================================
   CSS VARIABELEN
   ============================================================ */
:root {
    --surface:       #F7FAF8;
    --surface-2:     #E8F2ED;
    --card:          #FFFFFF;
    --peach:         #FAECD6;
    --peach-dark:    #E8C89A;
    --peach-text:    #9A6830;
    --cta:           #3A8A60;
    --cta-dark:      #2D7050;
    --cta-light:     #E8F2ED;
    --red:           #FEF0F0;
    --red-border:    #F5C6C6;
    --red-text:      #B83232;
    --red-dark:      #9C3535;
    --amber:         #FFF8EC;
    --amber-dark:    #C87941;
    --amber-btn:     #C87920;
    --amber-btn-dark:#A86018;
    --text:          #2F2F2F;
    --muted:         #6B7570;
    --muted-light:   #A8B4AE;
    --border:        #DDE8E2;

    --font-heading:  'Poppins', sans-serif;
    --font-body:     'Inter', sans-serif;
    --font-detail:   'Fraunces', serif;

    --radius-sm:     6px;
    --radius-md:     10px;
    --radius-lg:     14px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 { font-size: clamp(1.7rem, 4vw, 2.2rem); font-weight: 700; }
h2 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: 0.9rem;  font-weight: 600; }

p { color: var(--muted); font-weight: 300; font-size: 0.9rem; }
a { color: var(--cta); text-decoration: none; }
a:hover { color: var(--cta-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow{ max-width: 780px;  margin: 0 auto; padding: 0 24px; }

.section           { padding: 56px 0; }
.section--white    { background: var(--card); }
.section--surface  { background: var(--surface); }
.section--surface2 { background: var(--surface-2); }
.section--peach    { background: var(--peach); }
.section--dark     { background: var(--text); }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.site-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.site-logo span { color: var(--cta); }

.main-nav ul { display: flex; gap: 24px; align-items: center; }
.main-nav a  { font-size: 0.85rem; color: var(--muted); font-weight: 400; transition: color 0.2s; }
.main-nav a:hover { color: var(--cta); }

/* ── Categorie dropdown ─────────────────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown { display: flex; align-items: center; }
.nav-has-dropdown > a { display: flex; align-items: center; white-space: nowrap; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; background: none; border: none; padding: 0 0 0 2px; cursor: pointer; color: inherit; flex-shrink: 0; }
.nav-chevron {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
    color: var(--muted);
}
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); color: var(--cta); }
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    width: 240px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    z-index: 100;
    overflow: hidden;
    padding-top: 12px;
}
.nav-dropdown::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 12px;
}
.nav-dropdown.open { display: block; }
.nav-dropdown__inner { padding: 8px 0; }
.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 0.84rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s;
}
.nav-dropdown__item:hover { background: var(--surface); color: var(--cta); }
.nav-dropdown__icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    overflow: hidden;
}
.nav-dropdown__icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-dropdown__all {
    display: block;
    margin: 6px 10px 8px;
    padding: 8px 12px;
    background: var(--cta-light);
    color: var(--cta);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s;
}
.nav-dropdown__all:hover { background: var(--cta); color: #fff; }

.nav-cta {
    background: var(--cta) !important;
    color: #fff !important;
    padding: 7px 16px;
    border-radius: var(--radius-md);
    font-weight: 500 !important;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--cta-dark) !important; }

.nav-footer-links { display: none; }

.nav-rode-lijst {
    color: var(--amber-btn) !important;
    font-weight: 500 !important;
}
.nav-rode-lijst:hover { color: var(--amber-btn-dark) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   KNOPPEN
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    line-height: 1;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--cta); color: #fff; }
.btn--primary:hover { background: var(--cta-dark); color: #fff; }
.btn--red { background: var(--red-text); color: #fff; }
.btn--red:hover { background: var(--red-dark); color: #fff; }
.btn--amber { background: var(--amber-btn); color: #fff; }
.btn--amber:hover { background: var(--amber-btn-dark); color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; color: #fff; }
.btn--outline { background: transparent; color: var(--cta); border: 1.5px solid var(--cta); }
.btn--outline:hover { background: var(--cta-light); }
.btn--ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn--ghost:hover { background: var(--surface-2); color: var(--text); }
.btn--sm { padding: 7px 14px; font-size: 0.78rem; }
.btn--lg { padding: 15px 32px; font-size: 0.95rem; }

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}
.badge--must   { background: var(--cta-light); color: var(--cta-dark); }
.badge--opt    { background: var(--peach); color: var(--peach-text); }
.badge--week   { background: var(--peach); color: var(--peach-text); }
.badge--new    { background: #EEF4FF; color: #3B5BA5; }
.badge--rood   { background: var(--red); color: var(--red-text); }
.badge--amber  { background: var(--amber); color: var(--amber-dark); }
.badge--grijs  { background: #F0F0F0; color: #666; }

.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--cta);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
    background: var(--surface-2);
    padding: 40px 0 36px;
    border-bottom: 1px solid #C8DDD3;
    overflow: hidden;
}
/* Reset padding/border voor hero met foto — die regelt het zelf */
.hero--with-photo { padding: 0; border-bottom: 1px solid #C8DDD3; }
.hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

/* Hero met foto */
/* Hero met foto — de foto loopt uit tot de rechterrand van het scherm */
.hero--with-photo {
    position: relative;
    overflow: hidden;
    padding: 0;             /* Geen eigen padding — content krijgt padding via hero__content */
    border-bottom: 1px solid #C8DDD3;
}
.hero--with-photo .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 240px;
    margin-right: calc(-50vw + 50%);
}
.hero__content {
    padding: 28px 32px 28px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero__photo-wrap {
    position: relative;
    overflow: visible;      /* Laat foto boven de sectie uitlopen */
}
.hero__photo {
    position: absolute;
    inset: -1px 0 0 0;     /* -1px top zodat geen groen lijntje zichtbaar is */
    width: 100%;
    height: calc(100% + 1px);
    object-fit: cover;
    object-position: center 25%;
    display: block;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.25) 20%, rgba(0,0,0,0.7) 40%, black 58%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.25) 20%, rgba(0,0,0,0.7) 40%, black 58%);
}
/* Badge zweeft links in de foto, verticaal gecentreerd */
.hero__badge--float {
    position: absolute;
    left: 12%;
    top: 22%;
    transform: none;
    z-index: 3;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.hero__badge--float .hero__badge-num { font-size: 2rem; }

/* Inline badge (uitzetlijst-pagina) */
.hero__badge--inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    margin-top: 8px;
    align-self: flex-start;
}
.hero__badge--inline .hero__badge-num { font-size: 1.5rem; }
.hero__badge--inline .hero__badge-lbl { text-align: left; margin-top: 0; }
.hero__tag {
    display: inline-flex;
    align-self: flex-start;  /* Krimpt naar tekstbreedte */
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--cta);
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.hero__tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); flex-shrink: 0; }
.hero h1 { margin-bottom: 6px; max-width: 500px; }
.hero h1 em { color: var(--cta); font-style: normal; }
.hero__sub { font-family: var(--font-detail); font-style: italic; color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; display: block; }
.hero p { max-width: 460px; margin-bottom: 20px; font-size: 0.9rem; }
.hero__badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    flex-shrink: 0;
}
.hero__badge-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--cta); display: block; line-height: 1; letter-spacing: -0.03em; }
.hero__badge-lbl { font-size: 0.68rem; color: var(--muted-light); letter-spacing: 0.04em; margin-top: 4px; display: block; }

/* ============================================================
   STATS BALK
   ============================================================ */
.stats-bar {
    background: var(--cta);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2026/06/favicon_babyspullenuitzetlijst.nl_.png') repeat center/72px;
    opacity: 0.025;
    pointer-events: none;
}
.stats-bar__item { flex: 1; max-width: 275px; text-align: center; padding: 14px 8px; border-right: 1px solid rgba(255,255,255,0.18); }
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; min-height: 1.4em; letter-spacing: -0.02em; }
.stats-bar__lbl { font-size: 0.68rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   TRUST PILLS
   ============================================================ */
/* ── Pijl SVG icoon ─────────────────────────────────────────── */
.arr { display: inline-flex; align-items: center; margin-left: 3px; vertical-align: middle; }

/* ── Intro split layout ─────────────────────────────────────── */
.intro-split {
    display: flex;
    gap: 48px;
    align-items: center;
}
.intro-split__text { flex: 1; min-width: 0; max-width: calc(100% - 280px); }
.intro-split__photos {
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
}
.intro-photos-grid {
    position: relative;
    width: 188px;
    height: 336px;
    flex-shrink: 0;
    margin: 0 auto;
}
.intro-photo {
    position: absolute;
    width: 86px;
    height: 86px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    filter: blur(0.4px);
    pointer-events: none;
    -webkit-user-drag: none;
}
.intro-photo:nth-child(1) { left: 0;     top: 0; }
.intro-photo:nth-child(2) { left: 102px; top: 40px; }
.intro-photo:nth-child(3) { left: 0;     top: 102px; }
.intro-photo:nth-child(4) { left: 102px; top: 142px; }
.intro-photo:nth-child(5) { left: 0;     top: 204px; }
.intro-photo:nth-child(6) { left: 102px; top: 244px; }

.trust-pills { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem;
    color: var(--muted);
}
.trust-pill__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: var(--cta); }
.dot--peach { background: var(--peach-dark); }

/* ============================================================
   KOOPTIPS FEED
   ============================================================ */
.kooptip-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    transition: border-color 0.2s, transform 0.15s;
}
.kooptip-card:hover { border-color: var(--cta); transform: translateY(-2px); }
.kooptip-card__img-wrap { overflow: hidden; }
.kooptip-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kooptip-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.kooptip-card__meta { display: flex; align-items: center; gap: 12px; }
.kooptip-bron { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 600; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; color: var(--muted); }
.kooptip-bron a { color: inherit; text-decoration: none; }
.kooptip-bron a:hover { color: var(--cta); }
.kooptip-datum { font-size: 0.72rem; color: var(--muted); }
.kooptip-card__title { font-size: 1.1rem; margin: 0; }
.kooptip-card__excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.kooptip-card__footer { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 4px; }
.kooptip-prijs { font-size: 1.1rem; font-weight: 700; color: var(--cta); font-family: var(--font-heading); }
@media (max-width: 600px) {
    .kooptip-card { grid-template-columns: 1fr; }
    .kooptip-card__img-wrap { height: 200px; }
}

/* ============================================================
   KOOPTIPS — UPFRONT GRID
   ============================================================ */
.kt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.kt-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.kt-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.kt-card__img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); }
.kt-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kt-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.kt-card__bron-badge { display: none; }
.kt-card__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.kt-card__datum { font-size: .68rem; color: var(--muted-light); }
.kt-card__title { font-family: var(--font-heading); font-size: .9rem; font-weight: 700; line-height: 1.35; color: var(--text); margin: 0; }
.kt-card__prijs { font-size: 1rem; font-weight: 700; color: var(--text); font-family: var(--font-heading); }
.kt-card__cta { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; font-weight: 600; color: var(--cta); margin-top: auto; padding-top: 6px; }

/* ============================================================
   KOOPTIPS — VIDEO CAROUSEL
   ============================================================ */
.kt-carousel-section { padding: 16px 0 48px; }

/* Clipping wrapper — staat stil */
.kt-carousel-wrap { overflow: hidden; }

/* De track die verschuift via transform */
.kt-viewport {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 8px 0;
    will-change: transform;
}

.kt-slide {
    flex-shrink: 0;
    /* width wordt via JS gezet */
    aspect-ratio: 9/16;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #111;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.kt-spacer { flex-shrink: 0; /* width via JS */ }
.kt-slide__thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kt-slide__embed { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.kt-slide__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 52px;
    height: 52px;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 1;
    transition: opacity 0.2s;
}
.kt-slide.active .kt-slide__play { opacity: 0; pointer-events: none; }
.kt-slide.active .kt-slide__thumb { opacity: 0; }
.kt-slide__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 36px 12px 14px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    z-index: 3;
    pointer-events: none;
}
.kt-slide__overlay .kt-slide__koop { pointer-events: auto; }
.kt-slide.active .kt-slide__overlay { pointer-events: none; }
.kt-slide__mini { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.35); }
.kt-slide__meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.kt-slide__naam { font-size: .72rem; font-weight: 700; color: #fff; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kt-slide__prijs { font-size: .7rem; color: rgba(255,255,255,0.75); }
.kt-slide__koop {
    flex-shrink: 0;
    background: #fff;
    color: var(--text);
    font-size: .65rem;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}
.kt-slide.active .kt-slide__koop { opacity: 1; }
.kt-reel__nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.kt-reel__nav:hover { background: var(--surface-2); }
@media (max-width: 900px) {
    .kt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .kt-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   CATEGORIE GRID
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat-grid--full { grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── Kraamcadeaus ── */
.kc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.kc-grid--overig { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.kc-filters { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.kc-prijsfilter { display: flex; flex-wrap: wrap; gap: 8px; }
.kc-prijsfilter__btn { background: var(--card); border: 1.5px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: .8rem; font-weight: 600; cursor: pointer; color: var(--text); transition: all .15s; }
.kc-prijsfilter__btn:hover { border-color: var(--cta); color: var(--cta); }
.kc-prijsfilter__btn.active { background: var(--cta); border-color: var(--cta); color: #fff; font-weight: 700; }
.kc-geslachtfilter { display: flex; flex-wrap: wrap; gap: 8px; }
.kc-geslachtfilter__btn { display: flex; align-items: center; gap: 5px; background: var(--card); border: 1.5px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: .8rem; font-weight: 600; cursor: pointer; color: var(--text); transition: all .15s; }
.kc-geslachtfilter__btn:hover { border-color: var(--cta); color: var(--cta); }
.kc-geslachtfilter__btn.active { background: var(--cta); border-color: var(--cta); color: #fff; font-weight: 700; }
.kc-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .18s, transform .18s; }
.kc-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.kc-card--top3 { border-color: var(--accent); }
.kc-card--top3:first-child { border-color: #f59e0b; }
.kc-card__img { position: relative; aspect-ratio: 1/1; background: var(--surface-2); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.kc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.kc-card:hover .kc-card__img img { transform: scale(1.04); }
.kc-card--klein .kc-card__img { aspect-ratio: 4/3; }
.kc-card__rank { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.6); color: #fff; font-size: .8rem; font-weight: 700; padding: 3px 7px; border-radius: 20px; backdrop-filter: blur(4px); }
.kc-card__rank--num { font-size: .75rem; background: rgba(0,0,0,0.45); }
.kc-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; gap: 5px; }
.kc-card__title { font-size: .9rem; font-weight: 700; margin: 0; line-height: 1.3; }
.kc-card__desc { font-size: .76rem; color: var(--muted); line-height: 1.5; margin: 0; }
.kc-card__prijs { font-size: .78rem; font-weight: 700; color: var(--accent); }
.kc-card__koop { margin-top: auto; display: inline-flex; align-items: center; gap: 5px; }
.kc-stem__btns { display: flex; gap: 6px; flex-wrap: nowrap; margin-top: 8px; }
.kc-btn { border: 1.5px solid var(--border); background: var(--card); border-radius: 20px; padding: 5px 12px; font-size: .75rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: all .15s; }
.kc-btn--xs { padding: 4px 9px; font-size: .7rem; }
.kc-btn--fav:hover, .kc-btn--fav.active { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.kc-btn--niet:hover, .kc-btn--niet.active { background: var(--surface-2); border-color: var(--muted); }
.kc-stem__bar { height: 4px; background: var(--surface-2); border-radius: 2px; overflow: hidden; margin-top: 8px; }
.kc-stem__bar-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width .4s; }
.kc-stem__pct { font-size: .72rem; color: var(--muted); }
.kc-reactie { display: flex; align-items: flex-start; gap: 6px; background: var(--surface-2); border-radius: var(--radius); padding: 6px 9px; }
.kc-reactie--fav { border-left: 3px solid var(--green); }
.kc-reactie--niet { border-left: 3px solid #dc2626; }
.cat-card--large { padding: 22px 20px; }
.cat-card--large .cat-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 14px; }
.cat-card--large h3 { font-size: 1rem; margin-bottom: 6px; }
.cat-card--large p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.hero--simple { background: var(--surface); padding: 48px 0 36px; border-bottom: 1px solid var(--border); }
.cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
    display: block;
}
.cat-card:hover { border-color: var(--cta); transform: translateY(-2px); }
.cat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 1.1rem; overflow: hidden; }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.cat-icon--green { background: var(--cta-light); }
.cat-icon--peach { background: var(--peach); }
.cat-card h3 { font-size: 0.85rem; margin-bottom: 3px; }
.cat-card p  { font-size: 0.75rem; }
.cat-card__count { font-size: 0.68rem; color: var(--cta); font-weight: 500; margin-top: 7px; display: block; }

/* Categorieën homepage — nieuw design */
.cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; }
.cat-header h2 { margin: 6px 0 0; }
.cat-header__link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.85rem; font-weight: 600; color: var(--cta); white-space: nowrap; padding-bottom: 4px; }
.cat-header__link:hover { color: var(--cta-dark); }

.cat-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.cat-card-new {
    display: flex; flex-direction: column;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    text-decoration: none; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.cat-card-new:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); border-color: var(--cta); }

.cat-card-new__img {
    width: 100%; aspect-ratio: 16/9; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cat-card-new__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cat-card-new:hover .cat-card-new__img img { transform: scale(1.04); }
.cat-card-new__emoji { font-size: 2rem; }

.cat-card-new__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.cat-card-new__body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.cat-card-new__body p { font-size: 0.78rem; color: var(--muted); margin-bottom: auto; line-height: 1.5; }
.cat-card-new__count { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; font-size: 0.75rem; font-weight: 600; color: var(--cta); }

@media (max-width: 680px) { .cat-grid-new { grid-template-columns: 1fr 1fr; } .cat-header { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ============================================================
   UITZETLIJST ITEMS
   ============================================================ */
.lijst-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.lijst-header a { font-size: 0.78rem; color: var(--cta); font-weight: 500; }

.lijst-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.lijst-item:last-child { border-bottom: none; }

.item-check { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--surface); cursor: pointer; transition: all 0.2s; }
.item-check.done { background: var(--cta); border-color: var(--cta); }
.item-check.done::after { content: ''; display: block; width: 5px; height: 10px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translate(-1px,-1px); }

.item-img { width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; overflow: hidden; }

.item-info { flex: 1; }
.item-info h4 { font-size: 0.85rem; margin-bottom: 2px; }
.item-info p  { font-size: 0.75rem; }
.item-info .playfair-note { font-family: var(--font-detail); font-style: italic; font-size: 0.68rem; color: var(--muted-light); margin-top: 2px; display: block; }

.item-link { font-size: 0.78rem; color: var(--cta); font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.item-link:hover { color: var(--cta-dark); }

/* FASE HEADERS op uitzetlijst pagina */
.fase-blok { margin-bottom: 32px; }
.fase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #E8F2ED;
    border-radius: var(--radius-md);
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    border: 1px solid var(--border);
}
.fase-header:hover { background: #d8ead0; }
.fase-week { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; color: #fff; }
.fase-week--now    { background: var(--cta); }
.fase-week--urgent { background: var(--amber-dark); }
.fase-week--later  { background: var(--muted-light); }
.fase-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; flex: 1; }
.fase-count { font-size: 0.75rem; color: var(--muted); }
.fase-chevron { font-size: 0.875rem; color: var(--muted-light); transition: transform 0.2s; }
.fase-blok.open .fase-chevron { transform: rotate(180deg); }

.fase-items { display: none; background: var(--card); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 0 20px; }
.fase-blok.open .fase-items { display: block; }

.fase-todo {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: none;
    padding: 16px 20px 18px;
}
.fase-blok.open .fase-todo { display: block; }
.fase-todo__header {
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--cta-dark);
    margin-bottom: 10px;
}
.fase-todo__lijst {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fase-todo__lijst li {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.45;
    padding-left: 4px;
}

/* ============================================================
   TOP 3 AANBEVOLEN
   ============================================================ */
.top3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 12px; }

.top3-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.15s; }
.top3-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.11); transform: translateY(-2px); }
.top3-card--featured { border-color: var(--cta); border-width: 2px; }

.top3-card__img { width: 100%; aspect-ratio: 4/3; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; overflow: hidden; border-bottom: 1px solid var(--border); position: relative; }
.top3-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

.top3-card__ribbon { position: absolute; top: 10px; left: 10px; background: var(--cta); color: #fff; font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: .04em; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; }
.top3-card__ribbon--grijs { background: #b0b0b0; }

.top3-card__body { padding: 14px 16px; display: flex; flex-direction: column; flex: 1; }
.top3-card__shop-pill { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: .03em; padding: 2px 8px; border-radius: 10px; background: var(--surface-2); color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.top3-card__name { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 7px; }
.top3-card__stars { font-size: 0.78rem; color: #e08c00; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.top3-card__stars span { color: var(--muted-light); font-size: 0.72rem; }
.top3-card__highlight { font-size: 0.76rem; color: var(--cta); font-weight: 600; line-height: 1.5; margin-bottom: 12px; flex: 1; }
.top3-card__price { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1; }
.top3-card__price small { font-size: 0.7rem; color: var(--muted-light); font-weight: 400; display: block; margin-top: 2px; }

.top3-card__cta { display: block; width: 100%; text-align: center; background: #2ecc71; color: #fff; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; padding: 12px 12px; border-radius: var(--radius-sm); text-decoration: none; transition: background 0.15s; }
.top3-card__cta:hover { background: #27b960; color: #fff; }
.top3-card--featured .top3-card__cta { background: #2ecc71; }

@media (max-width: 720px) { .top3-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .top3-grid { grid-template-columns: 1fr; } }

/* ============================================================
   RODE LIJST PAGINA
   ============================================================ */
.rl-hero {
    background: #A0443A;
    padding: 40px 0 32px;
}
.rl-hero__inner {
    display: flex;
    gap: 48px;
    align-items: center;
}
.rl-hero__text { flex: 1; }
.rl-hero__photos {
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
}
@media (max-width: 768px) {
    .rl-hero__inner { flex-direction: column; gap: 24px; }
    .rl-hero__photos { display: none; }
}
.rode-lijst-hero {
    background: #A0443A;
    padding: 36px 0 24px;
}
.rode-lijst-hero h1 { color: #fff; }
.rode-lijst-hero .hero__sub { color: rgba(255,255,255,0.6); }
.rode-lijst-hero p  { color: rgba(255,255,255,0.55); }

.rode-zoek-wrap { padding: 0 0 20px; }
.rode-zoek-inp {
    width: 100%;
    padding: 14px 18px 14px 46px;
    border-radius: var(--radius-md);
    border: 3px solid #fff;
    background: #fff;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.rode-zoek-inp::placeholder { color: #aaa; }
.rode-zoek-inp:focus { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.rode-zoek-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; pointer-events: none; }

/* Stemmen op rode lijst */
.rl-stem { display: flex; gap: 6px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.rl-stem__label { font-size: 0.7rem; color: var(--muted); margin-bottom: 5px; font-weight: 500; }
.rl-stem__btn { font-size: 0.72rem; font-weight: 600; padding: 5px 10px; border-radius: 20px; border: 1.5px solid; cursor: pointer; background: none; transition: all 0.15s; white-space: nowrap; }
.rl-stem__btn--ja { border-color: var(--red-text); color: var(--red-text); }
.rl-stem__btn--ja:hover, .rl-stem__btn--ja.active { background: var(--red-text); color: #fff; }
.rl-stem__btn--nee { border-color: var(--cta); color: var(--cta); }
.rl-stem__btn--nee:hover, .rl-stem__btn--nee.active { background: var(--cta); color: #fff; }
.rl-stem__bar { height: 4px; border-radius: 4px; background: var(--border); overflow: hidden; margin-top: 6px; }
.rl-stem__bar-fill { height: 100%; background: var(--red-text); border-radius: 4px; transition: width 0.4s; }
.rl-stem__teller { font-size: 0.68rem; color: var(--muted-light); margin-top: 4px; }
.rl-betwist { display: inline-flex; align-items: center; gap: 4px; background: #fff8e1; color: #a07800; border: 1px solid #ffe082; font-size: 0.68rem; font-weight: 600; padding: 3px 8px; border-radius: 12px; }

.zoek-resultaten {
    background: var(--card);
    border-radius: var(--radius-md);
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: none;
}
.zoek-item { padding: 11px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.zoek-item:last-child { border-bottom: none; }
.zoek-item--link { text-decoration: none; color: inherit; display: flex; transition: background 0.15s; }
.zoek-item--link:hover { background: var(--surface-2); }
.zoek-item__naam { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; flex: 1; }
.zoek-item__pct  { font-size: 0.8rem; font-weight: 600; color: var(--red-text); flex-shrink: 0; }
.zoek-item__geen { padding: 14px 16px; font-size: 0.85rem; color: var(--muted); font-style: italic; text-align: center; }

.rode-filter { background: var(--card); padding: 11px 0; border-bottom: 1px solid var(--border); display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.rode-filter__lbl { font-size: 0.68rem; color: var(--muted-light); font-weight: 500; margin-right: 4px; }
.rode-filter__btn { font-size: 0.68rem; padding: 4px 11px; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
.rode-filter__btn.active,
.rode-filter__btn:hover { background: var(--red-text); color: #fff; border-color: var(--red-text); }

/* RODE LIJST ITEM */
.rl-item { background: var(--card); border-bottom: 2px solid var(--surface); }

.rl-item__rode { display: flex; gap: 12px; padding: 16px 0; align-items: flex-start; }
.rl-rank { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--red-border); width: 22px; flex-shrink: 0; padding-top: 2px; }
.rl-ico { width: 64px; height: 64px; border-radius: 10px; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; overflow: hidden; }
.rl-ico img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; display: block; }
.rl-info { flex: 1; min-width: 0; }
.rl-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--red-text); font-weight: 500; display: block; margin-bottom: 2px; }
.rl-naam { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.rl-kort { font-size: 0.78rem; color: var(--muted); font-weight: 300; line-height: 1.55; margin-bottom: 6px; }
.rl-quote { font-family: var(--font-detail); font-style: italic; font-size: 0.72rem; color: var(--red-text); background: var(--red); border-left: 2px solid var(--red-border); padding: 5px 10px; border-radius: 0 5px 5px 0; margin-bottom: 7px; display: block; }
.rl-tags { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; }

.rl-right { flex-shrink: 0; text-align: right; }
.rl-pct { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--red-text); display: block; line-height: 1; }
.rl-pct-lbl { font-size: 0.65rem; color: var(--muted-light); display: block; margin-bottom: 6px; }
.rl-react-lnk { font-size: 0.72rem; color: var(--muted); cursor: pointer; text-decoration: underline; display: block; text-align: right; }
.rl-react-lnk:hover { color: var(--red-text); }

/* GROENE ALT SECTIE */
.alt-sectie { background: var(--surface-2); border-top: 1px solid #C8DDD3; }

.alt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
}
.alt-header:hover { background: #d4e8da; }
.alt-header__left { display: flex; align-items: center; gap: 8px; flex: 1; }
.alt-header__ico { width: 26px; height: 26px; background: var(--cta); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #fff; flex-shrink: 0; }
.alt-header__tekst { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--cta-dark); }
.alt-header__sub { font-size: 0.72rem; color: var(--cta); font-weight: 400; margin-left: 4px; opacity: 0.8; }
.alt-header__chevron { font-size: 0.875rem; color: var(--cta); transition: transform 0.25s; }
.alt-sectie.open .alt-header__chevron { transform: rotate(180deg); }
.alt-cta-pijl { background: var(--cta); color: #fff; font-size: 0.72rem; font-weight: 500; padding: 5px 13px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; transition: background 0.2s; }
.alt-header:hover .alt-cta-pijl { background: var(--cta-dark); }

.alt-body { display: none; padding: 0 0 14px; }
.alt-sectie.open .alt-body { display: block; }

.alt-grid { display: flex; flex-direction: column; gap: 8px; }

.alt-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.2s, transform 0.15s; }
.alt-card:hover { border-color: var(--cta); transform: translateY(-1px); }

.alt-card__row { display: flex; align-items: center; gap: 10px; padding: 11px 14px; }
.alt-badge { font-size: 0.65rem; font-weight: 600; padding: 3px 9px; border-radius: 20px; flex-shrink: 0; white-space: nowrap; }
.ab-borst  { background: #FFF0F5; color: #A8346A; border: 1px solid #F5C6D8; }
.ab-fles   { background: #EEF4FF; color: #3B5BA5; border: 1px solid #C6D4F5; }
.ab-budget { background: var(--amber); color: var(--amber-dark); border: 1px solid var(--peach-dark); }
.ab-alg    { background: var(--cta-light); color: var(--cta-dark); border: 1px solid #C8DDD3; }

.alt-card__info { flex: 1; min-width: 0; }
.alt-card__naam { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
.alt-card__desc { font-size: 0.72rem; color: var(--muted); font-weight: 300; line-height: 1.45; }

.alt-card__right { flex-shrink: 0; text-align: right; }
.alt-card__prijs { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--cta); display: block; }
.alt-card__shop  { font-size: 0.65rem; color: var(--muted-light); display: block; margin-bottom: 4px; }
.alt-koop        { display: block; background: var(--cta); color: #fff; padding: 5px 12px; border-radius: 7px; font-size: 0.72rem; font-weight: 500; text-decoration: none; text-align: center; white-space: nowrap; transition: background 0.2s; }
.alt-koop:hover  { background: var(--cta-dark); color: #fff; }
.alt-koop--gratis { display: block; color: var(--cta); font-size: 0.72rem; font-weight: 500; text-decoration: none; text-align: right; white-space: nowrap; padding: 4px 0; }

.alt-tip { background: var(--peach); padding: 7px 14px; border-top: 1px solid #EDD9B8; display: flex; gap: 6px; align-items: flex-start; }
.alt-tip p { font-family: var(--font-detail); font-style: italic; font-size: 0.72rem; color: var(--peach-text); line-height: 1.5; font-weight: 400; }

/* REACTIES PANEEL */
.react-paneel { display: none; background: var(--red); border-top: 1px solid var(--border); padding: 14px 0; }
.rl-item.react-open .react-paneel { display: block; }
.react-paneel__titel { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; color: var(--red-text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }

.rc { background: var(--card); border: 1px solid var(--red-border); border-radius: 9px; padding: 11px 13px; margin-bottom: 7px; }
.rc:last-child { margin-bottom: 0; }
.rc__tekst { font-size: 0.8rem; color: var(--text); line-height: 1.6; margin-bottom: 6px; }
.rc__meta  { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--muted-light); }
.rc__avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--red-border); color: var(--red-text); font-size: 0.6rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-heading); }
.rc__foto  { margin-top: 7px; background: rgba(184,50,50,0.06); border: 1px dashed var(--red-border); border-radius: 6px; padding: 8px; text-align: center; font-size: 0.72rem; color: var(--red-text); cursor: pointer; }

/* MISKOOP INSTUUR FORMULIER */
.meld-form { background: var(--card); border: 1px solid var(--red-border); border-radius: var(--radius-md); padding: 18px; }
.meld-form h4 { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; color: var(--red-text); margin-bottom: 3px; }
.meld-form .sub { font-size: 0.75rem; color: var(--muted); margin-bottom: 14px; font-weight: 300; display: block; }

/* ============================================================
   SINGLE MISKOOP PAGINA
   ============================================================ */
.mis-hero { background: var(--red-dark); padding: 28px 0 24px; }
.mis-hero__emoji { width: 96px; height: 96px; background: rgba(255,255,255,.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; overflow: hidden; }
.mis-hero__emoji img { width: 96px; height: 96px; object-fit: cover; border-radius: 14px; display: block; }
.mis-hero__cat { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); font-weight: 500; display: block; margin-bottom: 4px; }
.mis-hero__title { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.mis-hero__sub { color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 300; line-height: 1.6; }
.mis-score-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 4px 14px 4px 6px; margin-top: 12px; }
.mis-score-pill__num { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff; }
.mis-score-pill__lbl { font-size: .7rem; color: rgba(255,255,255,.6); }

/* Stem sectie */
.mis-stem { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 20px; }
.mis-stem__vraag { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.mis-stem__sub { font-size: .8rem; color: var(--muted); font-weight: 300; margin-bottom: 16px; display: block; }
.mis-stem__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 0; }
.mis-stem__btn { padding: 12px 10px; border-radius: var(--radius-md); border: 2px solid; font-family: var(--font-heading); font-size: .85rem; font-weight: 600; cursor: pointer; background: none; transition: all .15s; text-align: center; }
.mis-stem__btn--mis { border-color: var(--red-text); color: var(--red-text); }
.mis-stem__btn--mis:hover, .mis-stem__btn--mis.selected { background: var(--red-text); color: #fff; }
.mis-stem__btn--ok  { border-color: var(--cta); color: var(--cta); }
.mis-stem__btn--ok:hover, .mis-stem__btn--ok.selected  { background: var(--cta); color: #fff; }

/* Stem formulier */
.mis-stem__form { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: none; }
.mis-stem__form.visible { display: block; }
.mis-stem__reden { padding: 10px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--cta); background: var(--cta-light); color: var(--cta-dark); font-size: .8rem; font-style: italic; margin-bottom: 14px; }

/* Stembalk */
.mis-balk { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.mis-balk__labels { display: flex; justify-content: space-between; font-size: .72rem; font-weight: 600; margin-bottom: 6px; }
.mis-balk__labels span:first-child { color: var(--red-text); }
.mis-balk__labels span:last-child  { color: var(--cta); }
.mis-balk__bar { height: 8px; border-radius: 8px; background: var(--cta-light); overflow: hidden; }
.mis-balk__fill { height: 100%; background: var(--red-text); border-radius: 8px; transition: width .4s; }
.mis-balk__teller { font-size: .7rem; color: var(--muted-light); margin-top: 5px; text-align: center; }

/* Reactie cards */
.mis-reactie { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 10px; }
.mis-reactie--mis  { border-left: 3px solid var(--red-text); }
.mis-reactie--ok   { border-left: 3px solid var(--cta); }
.mis-reactie__type { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; display: block; }
.mis-reactie--mis .mis-reactie__type { color: var(--red-text); }
.mis-reactie--ok  .mis-reactie__type { color: var(--cta); }
.mis-reactie__tekst { font-size: .85rem; color: var(--text); line-height: 1.6; margin-bottom: 8px; }
.mis-reactie__meta { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: var(--muted-light); }
.mis-reactie__avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--surface-2); font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; color: var(--muted); font-family: var(--font-heading); flex-shrink: 0; }

/* Link op lijstpagina */
.rl-item__link { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; color: var(--red-text); text-decoration: none; margin-top: 8px; }
.rl-item__link:hover { text-decoration: underline; }

/* ============================================================
   FORMULIEREN (algemeen)
   ============================================================ */
.form-row { margin-bottom: 12px; }
.form-row label { display: block; font-size: 0.75rem; font-weight: 500; margin-bottom: 4px; color: var(--text); }
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    background: var(--surface);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(58,138,96,0.1);
}
.form-row textarea { min-height: 80px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-notice { font-size: 0.68rem; color: var(--muted-light); margin-top: 10px; font-style: italic; }

.upload-area {
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    cursor: pointer;
    background: var(--card);
    transition: border-color 0.2s;
}
.upload-area:hover { border-color: var(--cta); }
.upload-area p { font-size: 0.75rem; color: var(--muted-light); font-weight: 300; }
.upload-area strong { color: var(--cta); font-weight: 500; }
.upload-preview { font-size: 0.72rem; color: var(--cta); font-weight: 500; margin-top: 4px; }

/* ============================================================
   STEMMEN (productpagina)
   ============================================================ */
.stem-sectie { background: var(--surface-2); border-radius: var(--radius-md); padding: 16px 18px; display: flex; align-items: center; gap: 16px; }
.stem-reacties { margin-top: 8px; }
.stem-reacties__toggle { background: none; border: none; cursor: pointer; font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; padding: 4px 0; }
.stem-reacties__toggle:hover { color: var(--text); }
#stem-reacties-chevron { transition: transform 0.2s; }
.stem-reacties__lijst { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.stem-reactie { display: flex; align-items: flex-start; gap: 8px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; font-size: .8rem; }
.stem-reactie--g { border-left: 3px solid var(--green); }
.stem-reactie--r { border-left: 3px solid #dc2626; }
.stem-reactie__icon { flex-shrink: 0; font-size: 1rem; }
.stem-reactie__tekst { color: var(--text); line-height: 1.4; }
.stem-sectie__info { flex: 1; }
.stem-sectie__label { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; display: block; margin-bottom: 2px; }
.stem-sectie__sub { font-size: 0.72rem; color: var(--muted); font-weight: 300; display: block; margin-bottom: 10px; }
.stem-btns { display: flex; gap: 8px; }
.stem-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 7px;
    border: 1.5px solid var(--border);
    background: var(--card);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--text);
    transition: all 0.2s;
}
.stem-btn--g { border-color: var(--cta); color: var(--cta); }
.stem-btn--g:hover, .stem-btn--g.active { background: var(--cta); color: #fff; }
.stem-btn--r { border-color: var(--red-text); color: var(--red-text); }
.stem-btn--r:hover, .stem-btn--r.active { background: var(--red-text); color: #fff; }

.stem-score { text-align: center; flex-shrink: 0; }
.stem-pct { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--cta); display: block; line-height: 1; }
.stem-pct-lbl { font-size: 0.65rem; color: var(--muted-light); }
.stem-bar { display: flex; gap: 2px; margin-top: 8px; height: 5px; border-radius: 10px; overflow: hidden; width: 80px; }
.stem-bar__g { background: var(--cta); transition: width 0.4s; }
.stem-bar__r { background: var(--red-text); transition: width 0.4s; }

/* TABS */
.tabs-sticky { position: sticky; top: 64px; z-index: 50; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.tabs { display: flex; border-bottom: 1px solid var(--border); background: var(--card); overflow-x: auto; padding-left: max(24px, calc((100% - 780px) / 2)); }
.tab { padding: 12px 18px; font-size: 0.78rem; font-weight: 500; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap; font-family: var(--font-body); }
.tab.active { color: var(--cta); border-bottom-color: var(--cta); }
.tab__cnt     { background: var(--surface-2); color: var(--cta); font-size: 0.65rem; padding: 1px 6px; border-radius: 20px; margin-left: 4px; }
.tab__cnt-red { background: var(--red); color: var(--red-text); font-size: 0.65rem; padding: 1px 6px; border-radius: 20px; margin-left: 4px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ============================================================
   QUOTE STRIP (homepage)
   ============================================================ */
.quote-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 26px 24px 20px;
}
.quote-strip__inner {
    display: grid;
    max-width: 580px;
    margin: 0 auto;
    min-height: 68px;
}
.quote-strip__item {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.quote-strip__item.is-active {
    opacity: 1;
    pointer-events: auto;
}
.quote-strip__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--surface-2);
}
.quote-strip__body { flex: 1; }
.quote-strip__quote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: .93rem;
    font-weight: 400;
    color: var(--text);
    margin: 0 0 5px;
    line-height: 1.55;
}
.quote-strip__naam {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
}
.quote-strip__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}
.quote-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.5s;
    cursor: pointer;
}
.quote-strip__dot.is-active { background: var(--cta); }
@media (max-width: 480px) {
    .quote-strip__item { flex-direction: column; text-align: center; gap: 10px; }
}

/* ============================================================
   FAQ SECTIE
   ============================================================ */
.faq-sectie {
    background: var(--surface);
    padding: 36px 0 40px;
    border-top: 1px solid var(--border);
}
.faq-lijst {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-item { border-bottom: none; }
.faq-vraag {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--card);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    transition: background .15s;
}
.faq-vraag:hover { background: var(--surface-2); }
.faq-vraag[aria-expanded="true"] { background: var(--cta-light); color: var(--cta-dark); }
.faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cta);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .2s;
}
.faq-antwoord {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-antwoord__inner {
    padding: 14px 18px 16px;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
    background: var(--surface);
}
.faq-antwoord__inner p { margin: 0 0 8px; }
.faq-antwoord__inner p:last-child { margin: 0; }

/* ============================================================
   ARTIKEL GRID (blog)
   ============================================================ */
.artikel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.artikel-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.15s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.artikel-card:hover { transform: translateY(-2px); }
.artikel-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.artikel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artikel-thumb--peach { background: var(--peach); }
.artikel-thumb--green { background: var(--cta-light); }
.artikel-body { padding: 14px 16px 8px; flex: 1; }
.artikel-tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--cta); font-weight: 500; margin-bottom: 5px; display: block; }
.artikel-body h3 { font-size: 0.85rem; line-height: 1.4; margin-bottom: 5px; }
.artikel-body p  { font-size: 0.75rem; }
.artikel-footer { padding: 8px 16px 14px; display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.artikel-footer a { font-size: 0.78rem; color: var(--cta); font-weight: 500; }
.artikel-footer .leestijd { font-family: var(--font-detail); font-style: italic; font-size: 0.72rem; color: var(--muted-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: none; padding: 14px 0; cursor: pointer; }
.faq-vraag { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 500; color: var(--text); user-select: none; }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--cta-light); color: var(--cta); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; transition: all 0.2s; }
.faq-item.open .faq-icon { background: var(--cta); color: #fff; }
.faq-antwoord { font-size: 0.85rem; color: var(--muted); margin-top: 10px; font-weight: 300; line-height: 1.7; display: none; }
.faq-antwoord.open { display: block; }

/* ============================================================
   TIPS SECTIE (UGC)
   ============================================================ */
.tips-sectie { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 40px; }
.tip-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 10px; }
.tip-card__tekst { font-size: 0.875rem; color: var(--text); line-height: 1.65; margin-bottom: 8px; }
.tip-card__meta { display: flex; align-items: center; gap: 7px; font-size: 0.72rem; color: var(--muted-light); }
.tip-card__avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--cta-light); color: var(--cta); font-size: 0.65rem; font-weight: 600; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); flex-shrink: 0; }
.tip-badge-a { background: var(--cta-light); color: var(--cta-dark); font-size: 0.65rem; padding: 2px 7px; border-radius: 20px; font-weight: 500; }
.tip-badge-m { background: var(--red); color: var(--red-text); font-size: 0.65rem; padding: 2px 7px; border-radius: 20px; font-weight: 500; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: 48px 24px; }
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner .playfair { font-family: var(--font-detail); font-style: italic; color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FAQ
   ============================================================ */
.faq-footer-section { background: var(--surface); border-top: 1px solid var(--border); padding: 32px 0; }
.faq-footer__title { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; color: var(--text); margin-bottom: 16px; }
.faq-footer__link { display: inline-block; margin-top: 14px; font-size: 0.8rem; color: var(--cta); font-weight: 600; }
.faq-footer__link:hover { color: var(--cta-dark); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border-top: 1px solid var(--border); background: none; }
.faq-list--grid { border-bottom: 1px solid var(--border); }
.faq-item__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 6px 0; background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--text);
    text-align: left;
}
.faq-item__question:hover { color: var(--cta); }
.faq-item__icon { flex-shrink: 0; color: var(--cta); transition: transform 0.2s; width: 16px; height: 16px; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__answer p { padding: 0 0 12px; font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* FAQ hero */
.faq-hero { background: var(--surface-2); border-bottom: 1px solid #C8DDD3; padding: 48px 0 40px; }
.faq-hero__inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.faq-hero__text h1 { margin: 8px 0 6px; }
.faq-hero__stats { display: flex; flex-direction: column; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 28px; min-width: 200px; }
.faq-stat__num { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--cta); line-height: 1; }
.faq-stat__lbl { font-size: 0.78rem; color: var(--muted); }
.faq-stat__note { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.faq-stat__note svg { flex-shrink: 0; color: var(--cta); }

/* FAQ zoekbalk */
.faq-search-wrap { position: relative; max-width: 480px; margin-top: 20px; }
.faq-search { width: 100%; padding: 12px 44px 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 0.95rem; font-family: var(--font-body); color: var(--text); background: var(--card); outline: none; }
.faq-search:focus { border-color: var(--cta); box-shadow: 0 0 0 3px rgba(58,138,96,.12); }
.faq-search__icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

/* FAQ overzichtspagina */
.faq-group { margin-bottom: 40px; }
.faq-group__title { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--cta); background: var(--cta-light); border-radius: 20px; padding: 4px 14px; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.faq-list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 80px; align-items: start; }
@media (max-width: 700px) {
    .faq-hero__inner { grid-template-columns: 1fr; }
    .faq-hero__stats { flex-direction: row; flex-wrap: wrap; }
    .faq-list--grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--text); padding: 36px 0 24px; }
.site-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-logo { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.footer-logo span { color: var(--cta); }
.footer-logo__img { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.footer-tagline { font-family: var(--font-detail); font-style: italic; font-size: 0.78rem; color: rgba(255,255,255,0.3); display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 300; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 4px; }
.footer-col a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.site-footer__bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.22); font-weight: 300; }

/* ============================================================
   BERICHTEN
   ============================================================ */
.bericht { padding: 12px 16px; border-radius: var(--radius-md); font-size: 0.85rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.bericht--success { background: var(--cta-light); color: var(--cta-dark); border: 1px solid var(--border); }
.bericht--error   { background: var(--red); color: var(--red-text); border: 1px solid var(--red-border); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 10px 0; font-size: 0.72rem; color: var(--muted-light); }
.breadcrumb a { color: var(--cta); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   BLOG SINGLE
   ============================================================ */
.blog-content h2 { margin: 28px 0 12px; }
.blog-content h3 { margin: 22px 0 10px; }
.blog-content p  { margin-bottom: 16px; color: var(--text); font-weight: 400; font-size: 0.95rem; line-height: 1.75; }
.blog-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.blog-content ul li { margin-bottom: 6px; font-size: 0.9rem; color: var(--muted); }
.blog-content a  { color: var(--cta); text-decoration: underline; }
.blog-content img { border-radius: var(--radius-md); margin: 20px 0; }

/* ============================================================
   CATEGORIE GRID
   ============================================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 8px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.18s, transform 0.18s;
}
.cat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.cat-card__img {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--surface-2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cat-card:hover .cat-card__img img { transform: scale(1.04); }
.cat-card__emoji { font-size: 2.5rem; }
.cat-card__badge {
    position: absolute;
    top: 10px; left: 10px;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}
.cat-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.cat-card__title { font-size: .95rem; font-weight: 700; margin: 0; line-height: 1.3; }
.cat-card__desc { font-size: .78rem; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }
.cat-card__cta { font-size: .75rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 3px; margin-top: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .cat-grid,
    .cat-grid--full { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .intro-split { flex-direction: column; gap: 16px; }
    .intro-split__text { max-width: 100% !important; width: 100%; }
    .intro-photos-grid { display: none; }
    .intro-split__photos { display: none; }
    .kc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .kc-grid--overig { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .kc-verlanglijst-sidebar { display: none !important; }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__badge { display: none; }
    .hero--with-photo { padding-top: 20px; }
    .hero--with-photo .hero__inner { grid-template-columns: 1fr; margin-right: 0; }
    .hero__content { padding: 16px 0 16px; }
    .hero__photo-wrap { height: 200px; margin: 0 -24px; overflow: hidden; }
    .hero__photo { position: absolute; inset: 0; height: 100%; mask-image: linear-gradient(to bottom, black 45%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%); }
    .hero__badge--float { left: 50%; top: auto; bottom: 14px; transform: translateX(-50%); padding: 10px 18px; }
    .hero__badge--float .hero__badge-num { font-size: 1.4rem; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .artikel-grid { grid-template-columns: 1fr; }
    html { margin-top: 0 !important; overflow-x: hidden; }
    body { overflow-x: hidden; }
    .section { padding: 32px 0; }
    #wpadminbar { display: none !important; }
    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0;
        width: 100vw; height: calc(100vh - 64px);
        background: #fff;
        z-index: 190;
        padding: 20px 24px 32px;
        overflow-y: auto;
    }
    .main-nav.open ul { flex-direction: column; gap: 0; width: 100%; align-items: stretch; }
    .main-nav.open ul > li { border-bottom: 1px solid var(--border); }
    .main-nav.open ul > li > a {
        font-size: 15px !important;
        font-weight: 500 !important;
        color: var(--text) !important;
        padding: 18px 0 !important;
        display: flex !important;
        align-items: center !important;
        background: none !important;
        border-radius: 0 !important;
        flex: 1;
    }
    .main-nav.open ul > li.nav-has-dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .main-nav.open ul > li.nav-has-dropdown > .nav-dropdown-toggle {
        flex-shrink: 0;
        padding: 18px 4px !important;
        color: var(--muted) !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        width: auto !important;
    }
    .main-nav.open ul > li.nav-has-dropdown > .nav-dropdown {
        flex: 0 0 100%;
    }
    .main-nav.open li.nav-has-cta { border-bottom: none !important; margin-top: 16px; }
    .main-nav.open .nav-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        background: var(--cta) !important;
        color: #fff !important;
        padding: 18px 16px 18px 0 !important;
        margin-left: -8px !important;
        padding-left: 8px !important;
        width: calc(100% + 8px) !important;
        border-radius: var(--radius-md) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
    }
    .main-nav.open .nav-rode-lijst { border-bottom: none !important; }
    .nav-footer-links { display: none; }
    .main-nav.open .nav-footer-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-top: 28px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        padding-bottom: 8px;
    }
    .main-nav.open .nav-footer-links a {
        font-size: 0.82rem;
        color: var(--muted);
        text-decoration: none;
    }
    .main-nav.open .nav-footer-links a:hover { color: var(--cta); }
    .nav-footer-sep { color: var(--border); font-size: 0.9rem; line-height: 1; }
    .main-nav.open .nav-dropdown { position: static; box-shadow: none; border: none; padding-top: 0; width: 100%; }
    .main-nav.open .nav-dropdown.open { display: block; }
    .main-nav.open .nav-dropdown__item { padding: 10px 12px; font-size: 0.95rem; }
    .nav-toggle { display: flex; z-index: 200; position: relative; }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
    .mobile-header-spacer { display: block; height: 65px; }
    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stats-bar { flex-wrap: wrap; }
    .stats-bar__item { min-width: 50%; }
    .form-grid { grid-template-columns: 1fr; }
    .rl-item__rode { flex-wrap: wrap; }
    .rl-right { min-width: 60px; }

    /* Fase-headers uitzetlijst: titel op nieuwe regel */
    .fase-header { flex-wrap: wrap; gap: 8px 10px; padding: 12px 16px; }
    .fase-week { order: 1; }
    .fase-count { order: 2; margin-left: auto; }
    .fase-chevron { order: 3; position: static; flex-shrink: 0; }
    .fase-title { order: 10; flex: 0 0 100%; font-size: 0.95rem; }

    /* Stemfunctie productpagina: kolom layout op mobiel */
    .stem-sectie { flex-direction: column; align-items: stretch; gap: 12px; }
    .stem-sectie__info { flex: none; }
    .stem-btns { flex-direction: row; gap: 8px; }
    .stem-btn { flex: 1; justify-content: center; font-size: .85rem; padding: 10px 8px; }
    .stem-score { display: flex; align-items: center; gap: 12px; justify-content: flex-start; padding-top: 8px; border-top: 1px solid var(--border); }
    .stem-pct { font-size: 1.1rem; }
    .stem-bar { flex: 1; }

    /* Miskoop checker single pagina */
    .mis-main-grid { grid-template-columns: 1fr !important; }
    .mis-stem-col { position: static !important; }
    .mis-hero__title { font-size: 1.2rem; }
    .alt-card__row { flex-wrap: wrap; }
    .alt-card__right { flex: 0 0 100%; display: flex; align-items: center; gap: 10px; flex-direction: row-reverse; justify-content: flex-end; margin-top: 6px; }
    .alt-card__prijs { display: inline; }
    .alt-card__shop { display: inline; margin-bottom: 0; margin-left: 6px; }
}

@media (max-width: 480px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__top { grid-template-columns: 1fr; }
    h1 { font-size: 1.5rem; }
    .tabs { font-size: 0.72rem; }
    .tab { padding: 10px 12px; }

    /* Lijst items compacter op mobiel */
    .lijst-item { gap: 10px; padding: 12px 0; align-items: center; }
    .item-img { width: 40px; height: 40px; font-size: 1.1rem; flex-shrink: 0; }
    .item-info p { display: none; }
    .item-info .playfair-note { display: none; }
    .item-info h4 { font-size: 0.88rem; margin-bottom: 0; }
    .badge { display: none; }
    .item-link { font-size: 0.72rem; white-space: nowrap; }
}

/* WhatsApp CTA blok */
.wa-cta-blok { background: #f0faf4; border-top: 1px solid #d4edda; padding: 48px 24px; text-align: center; }
.wa-cta-blok h2 { margin-bottom: 8px; }
.wa-cta-blok p { color: var(--muted); font-size: .9rem; margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }

.wa-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px 14px 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37,211,102,.35);
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
}
.wa-pill-btn:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,.45); color: #fff; }
.wa-pill-btn__icon {
    width: 42px; height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wa-pill-btn__icon svg { width: 24px; height: 24px; }
.wa-pill-btn__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.wa-pill-btn__sub { font-size: .72rem; font-weight: 400; opacity: .85; }
