/*
Theme Name:   FVZ Child
Description:  Fietsverhuur Zeeland — child theme (GeneratePress parent)
Author:       Han + Claude
Author URI:   https://fietsverhuurzeeland.nl
Template:     generatepress
Version:      1.0
Text Domain:  fvz-child
*/

/* === BASIS — CSS custom properties (FVZ branding) === */
:root {
    /* Brand kleurpalet (Zeeland: zee + duin) */
    --fvz-blue: #1B7FAB;          /* Diep blauw — "Fietsverhuur" tekst, titels */
    --fvz-blue-light: #29A8E0;    /* Helder zeeblauw — primaire CTA, links, hover */
    --fvz-sand: #C9A876;          /* Duinzand — accent, badges */
    --fvz-sand-dark: #8F764F;     /* Zand donker — "Zeeland" tekst */
    --fvz-sand-light: #F4EADB;    /* Zand licht — zachte achtergrond */

    /* Tekst & utility */
    --fvz-dark: #1A2A3A;          /* tekst-donker */
    --fvz-text: #3D4B5C;          /* body text */
    --fvz-muted: #8B95A1;         /* secondary */
    --fvz-soft: #F4EADB;          /* alias: zand licht voor backwards compat */
    --fvz-white: #FFFFFF;

    /* Legacy alias (oude gele CTA → nu duinzand) */
    --fvz-yellow: #C9A876;

    /* Felle CTA-geel — voor Reserveer-knoppen die echt moeten poppen */
    --fvz-cta: #FFC107;
    --fvz-cta-hover: #FFB300;

    /* Status kleuren */
    --fvz-success: #2DA958;       /* "open vandaag" */
    --fvz-danger:  #E03E45;       /* "gesloten" */

    --fvz-radius: 12px;
    --fvz-radius-lg: 20px;
    --fvz-shadow:    0 2px 14px rgba(27, 127, 171, .08);
    --fvz-shadow-lg: 0 4px 28px rgba(27, 127, 171, .14);

    --fvz-container: 1240px;
    --fvz-font-display: 'Playfair Display', Georgia, serif;
    --fvz-font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

/* === RESET / BASIS === */
body {
    font-family: var(--fvz-font-body);
    color: var(--fvz-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--fvz-white);
}

/* === GENERATEPRESS BOXED-CONTAINER WEGHALEN === */
/* Forceer full-width — anders zit er een grijze rand omheen door GP Boxed layout */
body, .site, #page, .site-content, .content-area, main, #primary {
    background: var(--fvz-white) !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
}
.inside-article, .inside-page-header, .inside-header, .inside-footer-widgets, .site-content .content-area {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
.single-fvz_locatie main { padding: 0; }
.entry-header, .entry-meta, .entry-footer { display: none !important; }

.fvz-container {
    max-width: var(--fvz-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* === LOCATIE TEMPLATE === */
.fvz-loc { background: var(--fvz-white); }

/* HERO */
.fvz-loc-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-blue-light) 100%);
    color: var(--fvz-white);
}
.fvz-loc-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.fvz-loc-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,79,139,.20) 0%, rgba(13,79,139,.85) 100%);
}
.fvz-loc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--fvz-container);
    margin: 0 auto;
    padding: 80px 24px 48px;
    width: 100%;
}
.fvz-breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    margin-bottom: 16px;
}
.fvz-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.fvz-breadcrumb a:hover { color: var(--fvz-yellow); }
.fvz-eyebrow {
    display: inline-block;
    background: var(--fvz-yellow);
    color: var(--fvz-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.fvz-loc-title {
    font-family: var(--fvz-font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--fvz-white);
}
.fvz-loc-intro {
    font-size: 18px;
    line-height: 1.5;
    max-width: 640px;
    color: rgba(255,255,255,.95);
    margin: 0 0 24px;
}

/* BADGES */
.fvz-loc-status { margin-top: 8px; }
.fvz-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    background: var(--fvz-white);
}
.fvz-badge--open    { color: var(--fvz-success); border: 2px solid var(--fvz-success); }
.fvz-badge--closed  { color: var(--fvz-danger);  border: 2px solid var(--fvz-danger); }
.fvz-badge--later   { color: var(--fvz-blue);    border: 2px solid var(--fvz-blue); }

/* INFO GRID — wit met blauwe accenten */
.fvz-loc-info { padding: 64px 0; background: var(--fvz-white); }
.fvz-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 768px) {
    .fvz-grid-2 { grid-template-columns: 1fr; }
}
.fvz-loc-block {
    background: var(--fvz-white);
    border-radius: var(--fvz-radius-lg);
    padding: 32px;
    box-shadow: var(--fvz-shadow);
    border-top: 4px solid var(--fvz-blue-light);
    position: relative;
}
.fvz-loc-block:nth-child(2) { border-top-color: var(--fvz-sand); }
.fvz-loc-block h2 {
    font-family: var(--fvz-font-display);
    font-size: 26px;
    color: var(--fvz-blue);
    margin: 0 0 20px;
}
.fvz-loc-address { font-size: 17px; line-height: 1.5; color: var(--fvz-dark); margin: 0 0 16px; }
.fvz-loc-phone { font-size: 17px; margin: 0 0 20px; }
.fvz-loc-phone a { color: var(--fvz-blue); text-decoration: none; font-weight: 600; }
.fvz-loc-phone a:hover { color: var(--fvz-blue-light); }

/* AFHAAL- & RETOURTIJDEN */
.fvz-loc-hours-label { color: var(--fvz-muted); font-size: 13px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.fvz-loc-return {
    margin-top: 20px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(201,168,118,.20), rgba(201,168,118,.08));
    border-left: 4px solid var(--fvz-sand);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
}
.fvz-loc-return strong { display: block; color: var(--fvz-dark); margin-bottom: 2px; }
.fvz-loc-return span { color: var(--fvz-text); }

.fvz-loc-hours { list-style: none; padding: 0; margin: 0; }
.fvz-loc-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: 15px;
}
.fvz-loc-hours li:last-child { border-bottom: 0; }
.fvz-loc-hours li.is-today {
    background: linear-gradient(90deg, rgba(251,192,45,.15), transparent);
    margin: 0 -12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--fvz-dark);
}
.fvz-day { color: var(--fvz-dark); font-weight: 500; }
.fvz-loc-hours li.is-today .fvz-day { font-weight: 700; }
.fvz-time { color: var(--fvz-text); }

/* KNOPPEN */
.fvz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    border: 2px solid transparent;
    font-size: 16px;
}
.fvz-btn:hover { transform: translateY(-1px); box-shadow: var(--fvz-shadow-lg); }
.fvz-btn--primary {
    background: var(--fvz-cta);
    color: var(--fvz-dark);
    font-weight: 700;
}
.fvz-btn--primary:hover { background: var(--fvz-cta-hover); }
.fvz-btn--ghost {
    background: transparent;
    color: var(--fvz-blue);
    border-color: var(--fvz-blue);
}
.fvz-btn--ghost:hover { background: var(--fvz-blue); color: var(--fvz-white); }

/* RESERVERING CTA */
.fvz-loc-cta {
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-dark) 100%);
    color: var(--fvz-white);
    text-align: center;
    padding: 80px 24px;
}
.fvz-loc-cta h2 {
    font-family: var(--fvz-font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fvz-white);
    margin: 0 0 12px;
}
.fvz-loc-cta p { font-size: 18px; opacity: .9; margin: 0 0 28px; }
.fvz-rendi-placeholder {
    background: rgba(255,255,255,.08);
    border: 1px dashed rgba(255,255,255,.3);
    padding: 24px;
    border-radius: var(--fvz-radius);
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 14px;
}
.fvz-rendi-placeholder code {
    background: rgba(0,0,0,.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

/* CONTENT BLOK — wit met zand-licht accent achter prose */
.fvz-loc-content {
    padding: 72px 0;
    background:
        radial-gradient(ellipse at top left, rgba(201, 168, 118, .10), transparent 50%),
        var(--fvz-white);
}
.fvz-prose {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.7;
}
.fvz-prose h2, .fvz-prose h3 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-dark);
    margin-top: 1.8em;
}

/* KAART */
.fvz-loc-map {
    line-height: 0;
    background: var(--fvz-soft);
}
.fvz-loc-map iframe { display: block; border: 0; }

/* ============================================
   HEADER
   ============================================ */
.fvz-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--fvz-white);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.fvz-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 72px;
    padding-top: 12px; padding-bottom: 12px;
}
.fvz-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--fvz-dark);
    flex-shrink: 0;
}
.fvz-logo-icon { font-size: 28px; line-height: 1; }
.fvz-logo-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--fvz-font-display); }
.fvz-logo-text strong { font-size: 17px; font-weight: 700; color: var(--fvz-blue); }
.fvz-logo-text em    { font-size: 17px; font-style: normal; color: var(--fvz-sand-dark); font-weight: 700; }

/* Officieel FVZ rond logo */
.fvz-logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: transform .2s ease;
}
.fvz-logo:hover .fvz-logo-img { transform: scale(1.05); }
.fvz-logo--footer .fvz-logo-img { height: 84px; }

/* Tagline naast logo — vanaf 600px zichtbaar */
.fvz-tagline {
    display: none;
    flex-direction: column;
    line-height: 1.2;
    padding-left: 20px;
    margin-left: 4px;
    border-left: 2px solid rgba(0,0,0,.10);
    flex: 1;
    min-width: 0;
}
.fvz-tagline-main {
    font-family: var(--fvz-font-display);
    font-size: 15px;
    color: var(--fvz-blue);
    font-weight: 700;
    line-height: 1.2;
}
.fvz-tagline-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 11px;
    color: var(--fvz-muted);
    margin-top: 4px;
}
.fvz-tagline-sub span { white-space: nowrap; }
@media (min-width: 600px)  { .fvz-tagline { display: flex; } }
@media (max-width: 1100px) {
    .fvz-tagline-sub { display: none; }  /* alleen hoofdtekst onder 1100px */
    .fvz-tagline-main { font-size: 13px; }
}
@media (max-width: 599px)  { .fvz-tagline { display: none; } }

/* NAV — dropdown style op ALLE viewports (hamburger menu) */
.fvz-nav {
    position: absolute;
    top: 100%; right: 24px;
    background: var(--fvz-white);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(20, 50, 80, 0.18);
    border: 1px solid #e6edf2;
    padding: 16px;
    min-width: 260px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
}
.fvz-nav.is-open { display: flex; }
.fvz-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0; padding: 0;
}
.fvz-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fvz-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 11px 14px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.fvz-nav-list a:hover { background: rgba(41, 168, 224, 0.08); color: var(--fvz-blue); }

/* Contact-info onderaan menu */
.fvz-nav-contact {
    margin-top: 8px;
    padding: 14px 4px 4px;
    border-top: 1px solid #e6edf2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fvz-nav-contact a {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    color: var(--fvz-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
}
.fvz-nav-contact a:hover { background: rgba(41, 168, 224, 0.06); }

/* Header CTA — altijd zichtbaar naast hamburger */
.fvz-header-cta {
    margin-left: auto;
    padding: 9px 18px !important;
    font-size: 14px !important;
    background: var(--fvz-cta) !important;
    color: var(--fvz-dark) !important;
    font-weight: 700 !important;
    border-radius: 999px;
    text-decoration: none;
}
.fvz-header-cta:hover { background: var(--fvz-cta-hover) !important; }
@media (max-width: 480px) {
    .fvz-header-cta { padding: 8px 12px !important; font-size: 13px !important; }
}

/* ============================================
   TAALSWITCHER
   ============================================ */
.fvz-langswitch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    background: var(--fvz-soft);
    border-radius: 999px;
    padding: 4px;
}
.fvz-langswitch-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--fvz-muted);
    transition: all .15s ease;
    line-height: 1;
}
.fvz-langswitch-item:hover {
    color: var(--fvz-blue);
    background: rgba(255,255,255,.7);
}
.fvz-langswitch-item.is-active {
    background: var(--fvz-white);
    color: var(--fvz-blue);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.fvz-langswitch-flag { font-size: 14px; line-height: 1; }
.fvz-langswitch-code { font-size: 11px; letter-spacing: .5px; }

@media (max-width: 900px) {
    .fvz-langswitch {
        margin-left: auto;
        margin-right: 8px;
    }
    .fvz-langswitch-code { display: none; }
    .fvz-langswitch-item { padding: 5px 7px; }
}

/* Hamburger — ALTIJD zichtbaar (desktop én mobile) */
.fvz-burger {
    display: flex;
    background: transparent; border: 0; cursor: pointer;
    width: 42px; height: 42px;
    padding: 9px;
    flex-direction: column; justify-content: space-between;
    margin-left: 8px;
    border-radius: 8px;
    transition: background .15s;
}
.fvz-burger:hover { background: rgba(41, 168, 224, 0.08); }
.fvz-burger span {
    display: block; height: 2.5px;
    background: var(--fvz-dark);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.fvz-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.fvz-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fvz-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile: full-width menu */
@media (max-width: 600px) {
    .fvz-nav {
        right: 12px; left: 12px;
        min-width: auto;
    }
}

/* ============================================
   HOMEPAGE - HERO
   ============================================ */
.fvz-hero {
    position: relative;
    min-height: 580px;
    display: flex; align-items: center;
    color: var(--fvz-white);
    overflow: visible; /* was hidden — anders clipt de search-dropdown */
    z-index: 5; /* boven de USP-sectie zodat de dropdown er overheen valt */
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-dark) 100%);
}
.fvz-hero-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(91,163,216,.4), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251,192,45,.25), transparent 50%);
    opacity: 1;
    overflow: hidden; /* clipt blob/dots binnen hero ondanks dat .fvz-hero zelf visible is */
}
/* Sfeerfoto (man op bakfiets) — vaag op de achtergrond, springt er niet uit */
.fvz-hero-photo {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 35%;
    filter: saturate(1.05);  /* scherp — geen blur meer */
    opacity: 1;              /* foto vol zichtbaar */
    transform: scale(1.02);
    z-index: 0;
    pointer-events: none;
}
/* Donkere waas achter de tekst — houdt de titel leesbaar bij volle foto */
.fvz-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 72% 64% at 50% 44%, rgba(8,28,44,.58), rgba(8,28,44,.20) 68%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.fvz-hero-inner {
    position: relative; z-index: 2;
    padding-top: 80px; padding-bottom: 80px;
    width: 100%;
    text-align: center;
}
.fvz-hero-title {
    font-family: var(--fvz-font-display);
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin: 16px auto 24px;
    max-width: 880px;
    color: var(--fvz-white);
}
.fvz-hero-lead {
    font-size: clamp(16px, 2vw, 19px);
    max-width: 640px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,.95);
    line-height: 1.5;
}

/* QUICK SEARCH */
.fvz-quick-search {
    background: var(--fvz-white);
    color: var(--fvz-dark);
    padding: 24px;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow-lg);
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.fvz-quick-search-label {
    display: block;
    font-weight: 600;
    color: var(--fvz-dark);
    margin-bottom: 12px;
    font-size: 15px;
}
.fvz-quick-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    position: relative; /* anchor voor dropdown */
}
@media (max-width: 600px) {
    .fvz-quick-search-row { grid-template-columns: 1fr; }
}

/* "of bezorging aanvragen" rij — secondaire CTA naast de primaire zoekactie */
.fvz-quick-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 14px;
    color: var(--fvz-muted);
}
.fvz-quick-or {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}
.fvz-quick-bezorg-btn {
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--fvz-dark) !important;
    font-weight: 600 !important;
    padding: 9px 18px !important;
    font-size: 14px !important;
    border-radius: 999px;
    text-decoration: none;
    border: 0 !important;
    transition: background .15s;
}
.fvz-quick-bezorg-btn:hover { background: #ffffff !important; transform: translateY(-1px); }
@media (max-width: 600px) {
    .fvz-quick-alt { flex-direction: column; gap: 8px; }
    .fvz-quick-bezorg-btn { width: 100%; text-align: center; }
}

/* === Google-Maps style live search === */
.fvz-search-wrap { position: relative; }
.fvz-search-inputwrap {
    position: relative;
    display: flex;
    align-items: center;
}
.fvz-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    opacity: .6;
}
.fvz-search-input {
    padding-left: 42px !important;
    padding-right: 36px !important;
}
.fvz-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.06);
    border: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    color: var(--fvz-dark);
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.fvz-search-clear:hover { background: rgba(0,0,0,.12); }

/* Dropdown — verschijnt onder zoekbalk */
.fvz-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: var(--fvz-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(27,127,171,.25), 0 2px 6px rgba(0,0,0,.10);
    border: 1px solid #E5E9EE;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
    z-index: 9999; /* boven alles — ook USP-sectie en interactive map */
}
/* Zorg dat USP / map / volgende secties géén z-index krijgen die de dropdown overlapt */
.fvz-usps,
.fvz-home-map-section,
.fvz-featured,
.fvz-cta-band {
    position: relative;
    z-index: 1;
}
@media (max-width: 600px) {
    .fvz-search-results { max-height: 320px; }
}

.fvz-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--fvz-dark);
    border-bottom: 1px solid #F0F2F5;
    transition: background .12s ease;
}
.fvz-search-result:last-child { border-bottom: 0; }
.fvz-search-result:hover,
.fvz-search-result.is-selected {
    background: var(--fvz-sand-light);
}
.fvz-search-result-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}
.fvz-search-result-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fvz-search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--fvz-dark);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fvz-search-result-sub {
    font-size: 12px;
    color: var(--fvz-muted);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fvz-search-result-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    flex-shrink: 0;
    letter-spacing: .2px;
}
.fvz-badge-locatie  { background: #E6F1FB; color: #1B7FAB; }
.fvz-badge-hotel    { background: #FBEAF0; color: #993556; }
.fvz-badge-camping  { background: #EAF3DE; color: #3B6D11; }
.fvz-badge-park     { background: #FAEEDA; color: #854F0B; }
.fvz-badge-transfer { background: #EEEDFE; color: #3C3489; }
.fvz-badge-dorp     { background: #F4EADB; color: #8F764F; }
.fvz-badge-poi      { background: #EAF3DE; color: #3B6D11; }

.fvz-search-spinner {
    display: inline-block;
    animation: fvz-spin 1.5s linear infinite;
    margin-right: 6px;
}
@keyframes fvz-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.fvz-search-empty {
    padding: 16px 18px;
    font-size: 14px;
    color: var(--fvz-muted);
    line-height: 1.5;
}
.fvz-search-empty kbd {
    background: #F0F2F5;
    border: 1px solid #DDE2E8;
    border-radius: 4px;
    padding: 1px 6px;
    font-family: monospace;
    font-size: 12px;
    color: var(--fvz-dark);
}

/* "Zoek in heel Zeeland" rij — extra accent */
.fvz-search-zoekzeeland {
    background: linear-gradient(135deg, #F4EADB 0%, #FAEEDA 100%);
    border-top: 2px solid var(--fvz-cta) !important;
}
.fvz-search-zoekzeeland:hover { background: linear-gradient(135deg, #EFE0CB 0%, #F5E4C5 100%); }
.fvz-search-zoekzeeland .fvz-search-result-title { color: var(--fvz-blue); font-weight: 700; }

/* === Tabs Plaats / Fietstype === */
.fvz-search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    padding: 4px;
    background: var(--fvz-soft);
    border-radius: 999px;
    width: fit-content;
}
.fvz-search-tab {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fvz-muted);
    transition: all .15s ease;
}
.fvz-search-tab:hover { color: var(--fvz-blue); }
.fvz-search-tab.is-active {
    background: var(--fvz-white);
    color: var(--fvz-blue);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.fvz-search-panel { display: block; }
.fvz-search-panel[hidden] { display: none; }

/* === Fietstype chips === */
.fvz-fiets-chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 8px;
    margin-top: 8px;
}
.fvz-fiets-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--fvz-soft);
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: var(--fvz-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all .15s ease;
}
.fvz-fiets-chip:hover {
    background: var(--fvz-white);
    border-color: var(--fvz-cta);
    box-shadow: 0 2px 8px rgba(255,193,7,.18);
    color: var(--fvz-blue);
    transform: translateY(-1px);
}
.fvz-fiets-chip-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.fvz-fiets-chip-label { flex: 1; }
.fvz-fiets-chips-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--fvz-muted);
    text-align: center;
    font-style: italic;
}

@media (max-width: 600px) {
    .fvz-fiets-chips { grid-template-columns: 1fr 1fr; }
    .fvz-search-tab { font-size: 12px; padding: 6px 12px; }
}
.fvz-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E9EE;
    border-radius: var(--fvz-radius);
    font-size: 16px;
    background: var(--fvz-white);
    color: var(--fvz-dark);
    cursor: pointer;
}
.fvz-select:focus { outline: none; border-color: var(--fvz-blue); }

/* ============================================
   USPS
   ============================================ */
.fvz-usps {
    padding: 72px 0;
    background: var(--fvz-soft);
}
.fvz-usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .fvz-usps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .fvz-usps-grid { grid-template-columns: 1fr; } }
.fvz-usp {
    background: var(--fvz-white);
    padding: 28px;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow);
    text-align: center;
}
.fvz-usp-icon { font-size: 36px; margin-bottom: 12px; }
.fvz-usp h3 {
    font-family: var(--fvz-font-display);
    font-size: 20px;
    color: var(--fvz-dark);
    margin: 0 0 8px;
}
.fvz-usp p { color: var(--fvz-text); font-size: 15px; margin: 0; line-height: 1.5; }

/* ============================================
   FEATURED LOCATIES
   ============================================ */
.fvz-featured { padding: 88px 0; background: var(--fvz-white); }
/* FAQ-menu-item in header — iets meer presence zodat 't opvalt */
.fvz-nav-faq {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--fvz-blue, #29A8E0) !important;
    font-weight: 600;
}
.fvz-nav-faq:hover { background: rgba(41, 168, 224, 0.08); border-radius: 6px; }

/* Partner worden — accent kleur (oranje/cta) zodat 't opvalt voor B2B */
.fvz-nav-partner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #c87a00 !important;
    font-weight: 600;
}
.fvz-nav-partner:hover { background: rgba(245, 166, 35, 0.10); border-radius: 6px; }

/* Popular-blok zit direct onder de zoekbalk: compactere top-padding + lichte gradient achtergrond */
.fvz-popular { padding: 56px 0 64px; background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%); }
.fvz-popular .fvz-section-head { margin-bottom: 36px; }
.fvz-popular .fvz-loc-card { box-shadow: var(--fvz-shadow); position: relative; }
.fvz-popular .fvz-loc-card-img { height: 220px; position: relative; }

/* Afhaaltijd pill op de foto-strip — RECHTSONDER, voorkomt overlap met plaats-badge linksboven */
.fvz-loc-card-hours {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #1a4660;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    line-height: 1.2;
    white-space: nowrap;
}
.fvz-loc-card-hours-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #888;
}
.fvz-loc-card-hours--open .fvz-loc-card-hours-dot {
    background: #2da34a;
    box-shadow: 0 0 0 3px rgba(45, 163, 74, 0.22);
    animation: fvz-pulse 2s ease-in-out infinite;
}
.fvz-loc-card-hours--opens_later .fvz-loc-card-hours-dot { background: #f5a623; }
.fvz-loc-card-hours--closed_today .fvz-loc-card-hours-dot,
.fvz-loc-card-hours--closed_day .fvz-loc-card-hours-dot { background: #d04545; }
@keyframes fvz-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.18); }
}

/* Retour-info regel onderaan de tile */
.fvz-loc-card-return {
    font-size: 13px !important;
    color: #5a7287 !important;
    margin: -8px 0 14px !important;
    line-height: 1.4;
}

/* ============================================
   HOMEPAGE SEO/GEO CONTENT BLOCK
   ============================================ */
.fvz-home-seo {
    padding: 72px 0;
    background: #ffffff;
}
.fvz-home-seo .fvz-section-head { margin-bottom: 36px; }
.fvz-home-seo .fvz-section-head h2 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}
.fvz-home-seo-prose {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16.5px;
    line-height: 1.75;
    color: #3a4d5b;
}
.fvz-home-seo-prose p { margin: 0 0 18px; }
.fvz-home-seo-prose h3 {
    font-family: var(--fvz-font-display);
    font-size: 22px;
    color: var(--fvz-blue, #29A8E0);
    margin: 32px 0 12px;
    line-height: 1.3;
}
.fvz-home-seo-prose strong { color: #1a3a52; }
.fvz-home-seo-prose a {
    color: var(--fvz-blue, #29A8E0);
    text-decoration: underline;
    text-decoration-color: rgba(41, 168, 224, 0.4);
    text-underline-offset: 3px;
    font-weight: 600;
}
.fvz-home-seo-prose a:hover {
    text-decoration-color: var(--fvz-blue, #29A8E0);
}
@media (max-width: 600px) {
    .fvz-home-seo { padding: 48px 0; }
    .fvz-home-seo-prose { font-size: 15.5px; }
    .fvz-home-seo-prose h3 { font-size: 19px; margin: 24px 0 10px; }
}

/* ============================================
   FAQ ACCORDION (homepage)
   ============================================ */
.fvz-faq { padding: 80px 0; background: #f6f9fb; }
.fvz-faq .fvz-section-head { margin-bottom: 40px; }
.fvz-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fvz-faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(20, 50, 80, 0.06);
    border: 1px solid #e6edf2;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.fvz-faq-item[open] {
    box-shadow: 0 6px 24px rgba(20, 50, 80, 0.10);
    border-color: var(--fvz-blue, #29A8E0);
}
.fvz-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #1a3a52;
    list-style: none;
    line-height: 1.4;
    transition: background 0.15s ease;
}
.fvz-faq-q::-webkit-details-marker { display: none; }
.fvz-faq-q:hover { background: #f6fbfe; }
.fvz-faq-q-text { flex: 1; }
.fvz-faq-q-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf6fc;
    color: var(--fvz-blue, #29A8E0);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.25s ease, background 0.2s ease;
}
.fvz-faq-item[open] .fvz-faq-q-icon {
    transform: rotate(45deg);
    background: var(--fvz-blue, #29A8E0);
    color: #fff;
}
.fvz-faq-a {
    padding: 0 22px 20px;
    color: #455a6b;
    font-size: 15px;
    line-height: 1.65;
}
.fvz-faq-a p { margin: 0 0 12px; }
.fvz-faq-a p:last-child { margin-bottom: 0; }
.fvz-faq-a a { color: var(--fvz-blue, #29A8E0); text-decoration: underline; }
.fvz-faq-a strong { color: #1a3a52; }

@media (max-width: 600px) {
    .fvz-faq { padding: 56px 0; }
    .fvz-faq-q { padding: 16px 18px; font-size: 15px; }
    .fvz-faq-a { padding: 0 18px 18px; font-size: 14.5px; }
    .fvz-loc-card-hours { font-size: 11.5px; padding: 5px 10px; bottom: 10px; right: 10px; }
}
.fvz-section-head { text-align: center; margin-bottom: 48px; }
.fvz-section-head h2 {
    font-family: var(--fvz-font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fvz-blue);
    margin: 12px 0;
}
.fvz-section-head p { color: var(--fvz-text); font-size: 17px; }

/* Eyebrow consistent maken: blauwe band met witte tekst */
.fvz-eyebrow {
    display: inline-block;
    background: var(--fvz-blue-light);
    color: var(--fvz-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fvz-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .fvz-featured-grid { grid-template-columns: 1fr; gap: 18px; } }

/* Mobiel: top-3 locatiekaarten compacter maken */
@media (max-width: 600px) {
    .fvz-popular .fvz-loc-card-img { height: 120px; }
    .fvz-loc-card-mark { gap: 4px; padding: 10px; }
    .fvz-loc-card-mark-icon { font-size: 26px; }
    .fvz-loc-card-place { font-size: 17px; }
    .fvz-loc-card-body { padding: 16px; }
}

.fvz-loc-card {
    display: block;
    background: var(--fvz-white);
    border-radius: var(--fvz-radius-lg);
    overflow: hidden;
    box-shadow: var(--fvz-shadow);
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}
.fvz-loc-card:hover { transform: translateY(-4px); box-shadow: var(--fvz-shadow-lg); }
.fvz-loc-card-img {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover; background-position: center;
}
.fvz-loc-card-img--kleur { display: flex; align-items: center; justify-content: center; }
.fvz-loc-card-mark { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; padding: 16px; text-align: center; }
.fvz-loc-card-mark-icon { font-size: 36px; line-height: 1; }
.fvz-loc-card-place { font-size: 21px; font-weight: 700; letter-spacing: .2px; text-shadow: 0 1px 3px rgba(0,0,0,.20); }
.fvz-loc-card-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,.95);
    color: var(--fvz-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.fvz-loc-card-body { padding: 24px; }
.fvz-loc-card-body h3 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-dark);
    font-size: 22px;
    margin: 0 0 8px;
}
.fvz-loc-card-body p { color: var(--fvz-text); font-size: 15px; margin: 0 0 16px; }
.fvz-loc-card-link { color: var(--fvz-blue); font-weight: 600; font-size: 15px; }

.fvz-section-cta { text-align: center; margin-top: 40px; }

/* ============================================
   CTA BAND
   ============================================ */
.fvz-cta-band {
    background: linear-gradient(135deg, var(--fvz-yellow) 0%, #fdd460 100%);
    color: var(--fvz-dark);
    text-align: center;
    padding: 72px 24px;
}
.fvz-cta-band h2 {
    font-family: var(--fvz-font-display);
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 12px;
    color: var(--fvz-white);
}
.fvz-cta-band p { font-size: 18px; margin: 0 0 28px; color: rgba(255,255,255,.95); }
.fvz-btn--lg { padding: 18px 36px !important; font-size: 18px !important; }
.fvz-cta-band .fvz-btn--primary {
    background: var(--fvz-sand);
    color: var(--fvz-dark);
}
.fvz-cta-band .fvz-btn--primary:hover { background: var(--fvz-sand-dark); color: var(--fvz-white); }

/* ============================================
   FOOTER — Strakke nieuwe versie (BEM, robuust, mobile-first)
   ============================================ */

/* Kleur-fallbacks zodat het ook werkt zonder fvz CSS-variabelen */
.fvz-site-footer {
    --footer-bg: var(--fvz-dark, #0F2A45);
    --footer-bg-bottom: rgba(0,0,0,0.25);
    --footer-fg: rgba(255,255,255,0.85);
    --footer-fg-muted: rgba(255,255,255,0.65);
    --footer-fg-faint: rgba(255,255,255,0.50);
    --footer-accent: var(--fvz-sand, #F5C56B);
    --footer-callout: var(--fvz-blue, #2E8FC6);
    --footer-callout-end: var(--fvz-blue-dark, #1a85b8);
    --footer-cta-bg: var(--fvz-cta, #F5A623);
    --footer-cta-text: var(--fvz-dark, #0F2A45);

    background: var(--footer-bg);
    color: var(--footer-fg);
    font-family: var(--fvz-font-body, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
    line-height: 1.5;
    margin-top: auto;          /* duwt de footer naar onderaan in flex-body */
    position: relative;
    z-index: 1;
}

/* Container — eigen container die altijd werkt, ook op pagina's zonder .fvz-container */
.fvz-site-footer__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ----------- BEZORG-CALLOUT (bovenste strook) ----------- */
.fvz-site-footer__callout {
    background: linear-gradient(135deg, var(--footer-callout) 0%, var(--footer-callout-end) 100%);
    padding: 28px 0;
}
.fvz-site-footer__callout .fvz-site-footer__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.fvz-site-footer__callout-text { flex: 1; min-width: 260px; }
.fvz-site-footer__callout-text h3 {
    color: #fff;
    font-family: var(--fvz-font-display, "Playfair Display", Georgia, serif);
    font-size: clamp(20px, 2.5vw, 24px);
    margin: 0 0 4px;
    line-height: 1.2;
}
.fvz-site-footer__callout-text p {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}
.fvz-site-footer__callout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--footer-cta-bg);
    color: var(--footer-cta-text) !important;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.15s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.fvz-site-footer__callout-btn:hover {
    background: var(--fvz-cta-hover, #d68a10);
    color: var(--footer-cta-text) !important;
    transform: translateY(-2px);
}

/* ----------- HOOFDFOOTER (4 kolommen) ----------- */
.fvz-site-footer__main {
    padding: 56px 0 48px;
}
.fvz-site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}
@media (max-width: 960px) {
    .fvz-site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .fvz-site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .fvz-site-footer__main { padding: 40px 0 32px; }
}

.fvz-site-footer__col h4 {
    color: #fff;
    font-family: var(--fvz-font-display, "Playfair Display", Georgia, serif);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 0.2px;
}

/* ----------- BRAND KOLOM ----------- */
.fvz-site-footer__brand {
    color: #fff;
    font-family: var(--fvz-font-display, "Playfair Display", Georgia, serif);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}
.fvz-site-footer__tagline {
    color: var(--footer-fg-muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 12px 0 24px;
    max-width: 320px;
}

/* Labels boven sub-blokken */
.fvz-site-footer__label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

/* Bedrijfsgegevens */
.fvz-site-footer__company { margin-top: 4px; }
.fvz-site-footer__company ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13.5px;
    color: var(--footer-fg-muted);
    line-height: 1.7;
}

/* Socials */
.fvz-site-footer__socials { margin-top: 22px; }
.fvz-site-footer__socials-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fvz-site-footer__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s ease;
}
.fvz-site-footer__social:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
    transform: translateY(-2px);
}
.fvz-site-footer__social[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #fd1d1d, #833ab4);
}
.fvz-site-footer__social[aria-label="Facebook"]:hover {
    background: #1877f2;
}

/* ----------- LINK-LIJSTEN ----------- */
.fvz-site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fvz-site-footer__list li {
    padding: 5px 0;
    font-size: 14.5px;
    line-height: 1.4;
}
.fvz-site-footer__list a {
    color: var(--footer-fg);
    text-decoration: none;
    transition: color 0.15s ease;
}
.fvz-site-footer__list a:hover { color: var(--footer-accent); }
.fvz-site-footer__list--contact li { color: var(--footer-fg); }
.fvz-site-footer__ico {
    display: inline-block;
    margin-right: 4px;
    font-style: normal;
}

/* ----------- OPENINGSTIJDEN ----------- */
.fvz-site-footer__hours {
    margin-top: 22px;
    color: var(--footer-fg-muted);
    font-size: 13.5px;
    line-height: 1.6;
}
.fvz-site-footer__hours p { margin: 0; }
.fvz-site-footer__hours em {
    color: var(--footer-fg-faint);
    font-style: italic;
}

/* ----------- PECHHULP BLOK ----------- */
.fvz-site-footer__pechhulp {
    margin-top: 22px;
    padding: 12px 14px;
    background: rgba(224, 62, 69, 0.15);
    border-left: 3px solid var(--fvz-danger, #e03e45);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--footer-fg);
}
.fvz-site-footer__pechhulp strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
    font-size: 13.5px;
}
.fvz-site-footer__pechhulp span { color: var(--footer-fg-muted); }

/* ----------- BOTTOM BAR ----------- */
.fvz-site-footer__bottom {
    background: var(--footer-bg-bottom);
    padding: 16px 0;
    font-size: 13px;
    color: var(--footer-fg-faint);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.fvz-site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Taalswitcher */
.fvz-site-footer__langs {
    display: flex;
    gap: 4px;
}
.fvz-site-footer__langs a {
    color: var(--footer-fg-muted);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.15s ease;
}
.fvz-site-footer__langs a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.fvz-site-footer__langs a.is-active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* Rechten */
.fvz-site-footer__rights {
    color: var(--footer-fg-faint);
    text-align: center;
    flex: 1;
    min-width: 200px;
}

/* Legal links */
.fvz-site-footer__legal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.fvz-site-footer__legal a {
    color: var(--footer-fg-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}
.fvz-site-footer__legal a:hover { color: var(--footer-accent); }
.fvz-site-footer__legal span { color: var(--footer-fg-faint); }

@media (max-width: 720px) {
    .fvz-site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .fvz-site-footer__rights { order: 3; }
    .fvz-site-footer__legal { justify-content: center; }
}

/* ----------- OUDE CLASSES — backwards compat alias ----------- */
/* Houdt eventuele legacy verwijzingen in templates werkend */
.fvz-footer { background: var(--fvz-dark, #0F2A45); color: rgba(255,255,255,0.85); }

/* ============================================
   ARCHIVE LOCATIES — /locaties/
   ============================================ */
.fvz-archive-hero {
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-dark) 100%);
    color: var(--fvz-white);
    padding: 64px 0 48px;
    text-align: center;
}
.fvz-archive-hero .fvz-breadcrumb { justify-content: center; margin-bottom: 12px; }
.fvz-archive-hero h1 {
    font-family: var(--fvz-font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--fvz-white);
    margin: 8px 0 16px;
}
.fvz-archive-lead { color: rgba(255,255,255,.9); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* KAART */
.fvz-archive-map-wrap { background: var(--fvz-soft); }
.fvz-archive-map {
    height: 480px;
    width: 100%;
    z-index: 1;
}
.fvz-map-pin {
    background: var(--fvz-blue-light);
    border: 3px solid var(--fvz-white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.fvz-map-pin-inner {
    transform: rotate(45deg);
    font-size: 16px;
    line-height: 1;
}

/* SVG FVZ-pin (nieuwe stijl) */
.fvz-pin {
    background: transparent !important;
    border: 0 !important;
    transition: transform .15s ease;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.fvz-pin:hover, .leaflet-marker-icon.fvz-pin:hover {
    transform: scale(1.15);
    z-index: 1000 !important;
}
.fvz-pin svg { display: block; width: 32px; height: 42px; }

/* Homepage kaart-sectie */
.fvz-home-map-section { padding: 48px 0 0; background: var(--fvz-white); }
.fvz-home-map {
    height: 380px;
    width: 100%;
    margin-top: 32px;
    border-top: 1px solid rgba(0,0,0,.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
}
@media (max-width: 700px) { .fvz-home-map { height: 380px; } }
.leaflet-popup-content { font-family: var(--fvz-font-body); font-size: 14px; margin: 12px !important; }
.fvz-popup-title { display: block; font-size: 16px; color: var(--fvz-dark); margin-bottom: 4px; font-family: var(--fvz-font-display); }
.fvz-popup-city { color: var(--fvz-muted); font-size: 13px; margin-bottom: 10px; }
.fvz-popup-actions { display: flex; flex-direction: column; gap: 6px; }
.fvz-popup-btn {
    display: block; text-align: center;
    padding: 8px 12px; border-radius: 6px;
    font-weight: 600; text-decoration: none;
    font-size: 13px;
}
.fvz-popup-btn-ghost { background: var(--fvz-soft); color: var(--fvz-blue); }
.fvz-popup-btn-ghost:hover { background: var(--fvz-blue); color: var(--fvz-white); }
.fvz-popup-btn-primary { background: var(--fvz-blue-light); color: var(--fvz-white); }
.fvz-popup-btn-primary:hover { background: var(--fvz-blue); }

/* GRID + ZOEKBALK */
.fvz-archive-grid-wrap { padding: 64px 0; background: var(--fvz-white); }
.fvz-archive-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
#fvz-loc-filter {
    flex: 1;
    min-width: 240px;
    max-width: 480px;
    padding: 14px 18px;
    border: 2px solid #E5E9EE;
    border-radius: var(--fvz-radius);
    font-size: 16px;
    background: var(--fvz-white);
    color: var(--fvz-dark);
}
#fvz-loc-filter:focus { outline: none; border-color: var(--fvz-blue); }
.fvz-archive-count { color: var(--fvz-muted); font-size: 15px; font-weight: 600; }
.fvz-regio-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 32px; }
.fvz-regio-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; border: 2px solid #E5E9EE; background: var(--fvz-white); color: var(--fvz-dark); font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.fvz-regio-chip:hover { border-color: var(--chip, var(--fvz-blue)); }
.fvz-regio-chip.is-active { background: var(--chip, var(--fvz-blue)); border-color: var(--chip, var(--fvz-blue)); color: #fff; }
.fvz-regio-chip.is-active .fvz-regio-chip-dot { background: #fff !important; }
.fvz-regio-chip-dot { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto; }
.fvz-archive-empty {
    text-align: center;
    padding: 48px;
    color: var(--fvz-muted);
    font-size: 16px;
}

/* ============================================
   INFO-SECTIE (adres + openingstijden) — partner-locaties zoals Yerseke
   ============================================ */
.fvz-loc-info-section {
    padding: 56px 0;
    background: #ffffff;
}
.fvz-loc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 800px) { .fvz-loc-info-grid { grid-template-columns: 1fr; } }
.fvz-loc-info-card {
    background: var(--fvz-soft);
    border-radius: var(--fvz-radius-lg);
    padding: 28px;
}
.fvz-loc-info-card h3 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 20px;
    margin: 0 0 16px;
    display: flex; align-items: center; gap: 10px;
}
.fvz-loc-info-dl { margin: 0; }
.fvz-loc-info-dl dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--fvz-muted);
    margin-top: 14px;
    font-weight: 700;
}
.fvz-loc-info-dl dd { margin: 4px 0 0; font-size: 15px; color: var(--fvz-dark); }
.fvz-loc-info-dl a { color: var(--fvz-blue); text-decoration: none; font-weight: 600; }
.fvz-loc-hours-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(20,50,80,0.10);
    font-size: 14px;
    color: var(--fvz-dark);
}
.fvz-loc-hours-row:last-of-type { border-bottom: 0; }
.fvz-loc-hours-row.is-today { font-weight: 700; color: var(--fvz-blue); }
.fvz-loc-hours-row.is-closed { color: var(--fvz-muted); }
.fvz-loc-retour-note {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--fvz-dark);
}

/* ============================================
   PARTNER-SERVICES SECTIE (Yerseke / partner-locaties)
   ============================================ */
.fvz-partner-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #fefcf6 0%, #fbf5e6 100%);
    position: relative;
    overflow: hidden;
}
.fvz-partner-section::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
    border-radius: 50%;
}
.fvz-partner-section::after {
    content: "";
    position: absolute;
    bottom: -50px; left: -50px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(41,168,224,0.12), transparent 70%);
    border-radius: 50%;
}
.fvz-partner-section .fvz-section-head { position: relative; z-index: 2; }
.fvz-eyebrow--gold {
    background: linear-gradient(135deg, var(--fvz-cta), #d68a10) !important;
    color: white !important;
}
.fvz-partner-attribution {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-size: 14px;
    color: var(--fvz-dark);
    margin-top: 12px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(20,50,80,0.08);
}
.fvz-partner-attribution strong { color: var(--fvz-blue); }

.fvz-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}
@media (max-width: 960px) { .fvz-partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fvz-partners-grid { grid-template-columns: 1fr; } }

.fvz-partner-card {
    background: #fff;
    border-radius: var(--fvz-radius-lg);
    padding: 26px 22px;
    text-decoration: none;
    color: var(--fvz-text);
    box-shadow: 0 2px 8px rgba(20,50,80,0.06);
    border: 2px solid transparent;
    display: flex; flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
}
.fvz-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(20,50,80,0.14);
    border-color: var(--fvz-cta);
}
.fvz-partner-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--fvz-sand-light), var(--fvz-sand));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}
.fvz-partner-card[data-tag="rose"]   .fvz-partner-icon { background: linear-gradient(135deg, #fde8e8, #f5c6c6); }
.fvz-partner-card[data-tag="blue"]   .fvz-partner-icon { background: linear-gradient(135deg, #e8f4fd, #b8d4e3); }
.fvz-partner-card[data-tag="purple"] .fvz-partner-icon { background: linear-gradient(135deg, #f0e6f5, #d4b8e3); }
.fvz-partner-card[data-tag="green"]  .fvz-partner-icon { background: linear-gradient(135deg, #e8f5e8, #b8e3b8); }

.fvz-partner-card h3 {
    font-family: var(--fvz-font-display);
    font-size: 19px;
    color: var(--fvz-dark);
    margin: 0 0 10px;
    line-height: 1.25;
}
.fvz-partner-card p {
    font-size: 14px;
    color: var(--fvz-text);
    line-height: 1.55;
    margin: 0 0 18px;
    flex: 1;
}
.fvz-partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fvz-blue);
    font-weight: 700;
    font-size: 14px;
    padding-top: 12px;
    border-top: 1px solid #eef3f6;
}
.fvz-partner-cta::after {
    content: "↗";
    font-size: 16px;
    transition: transform 0.2s;
}
.fvz-partner-card:hover .fvz-partner-cta::after { transform: translate(3px, -3px); }
.fvz-partner-domain {
    position: absolute;
    top: 18px; right: 18px;
    font-size: 11px;
    color: var(--fvz-muted);
    background: var(--fvz-soft);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: ui-monospace, "SF Mono", monospace;
}

/* IN DE BUURT — zand-licht achtergrond */
.fvz-nearby {
    padding: 72px 0;
    background: var(--fvz-sand-light);
}
.fvz-loc-card-dist {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--fvz-sand);
    color: var(--fvz-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* ============================================
   LOCATIE SHOWCASE (Burgh-Haamstede template)
   ============================================ */

/* === ART HERO — kleurrijk met UA-foto en golf-patroon === */
.fvz-loc-hero-art {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(41, 168, 224, .12), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(201, 168, 118, .18), transparent 55%),
        linear-gradient(180deg, var(--fvz-sand-light) 0%, var(--fvz-white) 100%);
    padding: 40px 0 96px;
    color: var(--fvz-white); /* SVG wave kleur — overgang naar volgende sectie */
}

/* Decoratieve elementen */
.fvz-hero-blob {
    position: absolute;
    top: -120px; left: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle at center, rgba(41, 168, 224, .14), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.fvz-hero-dots {
    position: absolute;
    bottom: 120px; left: 20%;
    width: 140px; height: 140px;
    background-image: radial-gradient(circle, var(--fvz-sand) 1.5px, transparent 2px);
    background-size: 16px 16px;
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

.fvz-loc-hero-art .fvz-container { position: relative; z-index: 2; }

.fvz-hero-art-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 32px;
}

/* TABLET (768-1024px) — strak 2-koloms, kleinere foto */
@media (max-width: 1024px) and (min-width: 768px) {
    .fvz-hero-art-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 32px;
        margin-top: 16px;
    }
    .fvz-loc-hero-art { padding: 28px 0 72px; }
    .fvz-hero-art-title { font-size: 42px; }
    .fvz-hero-art-intro { font-size: 16px; margin-bottom: 24px; }
    .fvz-hero-art-image { aspect-ratio: 4/3; }
    .fvz-hero-dots { display: none; }
    .fvz-hero-blob { width: 320px; height: 320px; top: -80px; left: -80px; }
}

/* MOBILE (<768px) — foto WEG, alleen tekst gecentreerd */
@media (max-width: 767px) {
    .fvz-hero-art-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 8px;
    }
    .fvz-loc-hero-art { padding: 32px 0 64px; }
    .fvz-hero-art-text { text-align: center; max-width: 100%; }
    .fvz-hero-art-cta { justify-content: center; }
    .fvz-hero-art-image { display: none; }  /* foto helemaal weg op mobile */
    .fvz-hero-dots { display: none; }
    .fvz-hero-blob { width: 260px; height: 260px; top: -100px; left: -100px; opacity: .6; }
    .fvz-hero-art-title { font-size: 36px; }
    .fvz-hero-art-intro { font-size: 16px; }
}

.fvz-hero-art-text { max-width: 540px; }
.fvz-hero-art-title {
    font-family: var(--fvz-font-display);
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.02;
    color: var(--fvz-blue);
    margin: 0 0 18px;
}
.fvz-hero-art-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--fvz-text);
    margin: 0 0 32px;
}
.fvz-hero-art-cta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}

/* Foto-blok rechts met asymmetrische rounded shape */
.fvz-hero-art-image {
    position: relative;
    aspect-ratio: 5/4;
}
.fvz-hero-art-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;  /* organic blob */
    box-shadow:
        0 12px 32px rgba(27, 127, 171, .18),
        0 4px 12px rgba(143, 118, 79, .12);
    position: relative;
    z-index: 2;
}
.fvz-hero-art-image.is-empty {
    background: linear-gradient(135deg, var(--fvz-blue-light), var(--fvz-blue));
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}

/* Decoratieve sand-cirkel achter de foto */
.fvz-hero-art-accent {
    position: absolute;
    top: -20px; right: -20px;
    width: 80%; height: 80%;
    background: var(--fvz-sand);
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    z-index: 1;
    opacity: .55;
}

/* Golfvorm onderaan — Zeeland kustlijn */
.fvz-hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    width: 100%; height: 80px;
    display: block;
    z-index: 1;
    color: var(--fvz-white); /* wave is wit zodat 't naadloos overgaat in volgende sectie */
}
.fvz-breadcrumb--dark { color: var(--fvz-muted); margin-bottom: 24px; }
.fvz-breadcrumb--dark a { color: var(--fvz-blue); text-decoration: none; }
.fvz-breadcrumb--dark a:hover { color: var(--fvz-blue-light); }

.fvz-hero-light-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .fvz-hero-light-grid { grid-template-columns: 1fr; gap: 32px; }
}

.fvz-hero-light-title {
    font-family: var(--fvz-font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--fvz-dark);
    margin: 0 0 16px;
}
.fvz-hero-light-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--fvz-text);
    margin: 0 0 32px;
    max-width: 520px;
}
.fvz-hero-light-cta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}

/* Subtiele open-status pillen */
.fvz-status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--fvz-white);
    border: 1px solid rgba(0,0,0,.08);
    font-size: 14px;
    color: var(--fvz-text);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(27, 127, 171, .05);
    max-width: 100%;
}
@media (min-width: 700px) { .fvz-status-pill { white-space: nowrap; } }
@media (max-width: 699px) {
    .fvz-status-pill { flex-wrap: wrap; line-height: 1.4; padding: 10px 14px; }
    .fvz-status-pill--return { display: flex; }
}
.fvz-status-pill strong { color: var(--fvz-dark); font-weight: 700; }
.fvz-status-sep { color: var(--fvz-muted); opacity: .7; }
.fvz-status-dot {
    width: 9px; height: 9px; border-radius: 50%;
    display: inline-block; flex-shrink: 0;
}
.fvz-status-pill.is-open .fvz-status-dot   { background: var(--fvz-success); box-shadow: 0 0 0 4px rgba(45,169,88,.20); animation: fvz-pulse 2s ease-in-out infinite; }
.fvz-status-pill.is-later .fvz-status-dot  { background: var(--fvz-blue-light); }
.fvz-status-pill.is-closed .fvz-status-dot { background: var(--fvz-danger); }

@keyframes fvz-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(45,169,88,.20); }
    50%      { box-shadow: 0 0 0 7px rgba(45,169,88,.10); }
}

/* Retour-pil in zand */
.fvz-status-pill--return {
    background: var(--fvz-sand-light);
    border-color: var(--fvz-sand);
    color: var(--fvz-sand-dark);
}
.fvz-status-pill--return strong { color: var(--fvz-sand-dark); }
.fvz-status-icon { font-size: 14px; line-height: 1; }

/* Hero image */
.fvz-hero-light-image {
    border-radius: var(--fvz-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--fvz-blue), var(--fvz-blue-light));
    box-shadow: var(--fvz-shadow-lg);
}
.fvz-hero-light-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* Als geen image: hou de placeholder gradient zichtbaar */
@media (max-width: 900px) {
    .fvz-hero-light-image { display: none; }
}

/* USP-strook — kleurrijke band met zandtint */
.fvz-loc-usps-light {
    background: linear-gradient(135deg, var(--fvz-sand) 0%, #d4b687 50%, var(--fvz-sand) 100%);
    padding: 22px 0;
    color: var(--fvz-dark);
}
.fvz-loc-usps-list-light {
    display: flex; flex-wrap: wrap; justify-content: center;
    list-style: none; padding: 0; margin: 0;
    gap: 12px 32px; font-size: 15px; color: var(--fvz-dark); font-weight: 500;
}
.fvz-loc-usps-list-light li {
    display: inline-flex; align-items: center; gap: 8px;
}
.fvz-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    background: var(--fvz-white);
    color: var(--fvz-blue);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* Adres-blok extras */
.fvz-loc-contact-list { list-style: none; padding: 0; margin: 0 0 20px; }
.fvz-loc-contact-list li { padding: 6px 0; font-size: 16px; }
.fvz-loc-contact-list a { color: var(--fvz-blue); text-decoration: none; font-weight: 600; }
.fvz-loc-contact-list a:hover { color: var(--fvz-blue-light); }

/* Beschikbare fietsen — top 3 + Bekijk meer (zand-licht achtergrond voor contrast) */
.fvz-loc-bikes { padding: 72px 0; background: var(--fvz-sand-light); }
.fvz-bikes-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
@media (max-width: 900px) { .fvz-bikes-top-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fvz-bikes-top-grid { grid-template-columns: 1fr; } }

.fvz-bike-top-tile {
    display: flex; flex-direction: column; align-items: stretch;
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, var(--fvz-soft) 0%, #EAF1F8 100%);
    border: 2px solid transparent;
    border-radius: var(--fvz-radius-lg);
    text-decoration: none;
    color: var(--fvz-dark);
    transition: all .2s ease;
    box-shadow: var(--fvz-shadow);
}
.fvz-bike-top-tile:hover {
    border-color: var(--fvz-blue-light);
    transform: translateY(-3px);
    box-shadow: var(--fvz-shadow-lg);
}
.fvz-bike-top-icon {
    font-size: 56px;
    margin: 12px 0 12px;
    line-height: 1;
    display: block;
}

/* Foto in plaats van emoji in tile */
.fvz-bike-top-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--fvz-radius);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--fvz-soft);
}
.fvz-bike-top-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fvz-bike-top-tile:has(.fvz-bike-top-img) { padding: 14px; }

/* Overige fietsen grid (uitklap onder toppers) — zelfde 3-koloms grid als toppers */
.fvz-other-fietsen-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px dashed rgba(0,0,0,.12);
}
.fvz-other-fietsen-grid.is-open { display: grid; }
@media (max-width: 900px) { .fvz-other-fietsen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fvz-other-fietsen-grid { grid-template-columns: 1fr; } }

/* Other-fiets-card: identiek aan top-tile (zelfde maat, zelfde look) */
.fvz-other-fiets-card {
    position: relative; /* voor ⓘ info-knop */
    padding: 14px;
    background: linear-gradient(135deg, var(--fvz-soft) 0%, #EAF1F8 100%);
    border: 2px solid transparent;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow);
    display: flex; flex-direction: column; text-align: center;
    transition: all .2s ease;
}
/* ⓘ-knop op overige fietsen — iets compacter dan op toppers */
.fvz-bike-info-btn--other {
    width: 28px; height: 28px;
    top: 8px; right: 8px;
    font-size: 14px;
}
.fvz-other-fiets-card:hover {
    border-color: var(--fvz-blue-light);
    transform: translateY(-3px);
    box-shadow: var(--fvz-shadow-lg);
}
.fvz-other-fiets-img {
    display: block;
    aspect-ratio: 4/3;
    background: var(--fvz-soft);
    overflow: hidden;
    border-radius: var(--fvz-radius);
    margin-bottom: 12px;
}
.fvz-other-fiets-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fvz-other-fiets-icon {
    display: flex; align-items: center; justify-content: center;
    height: 100%; width: 100%;
    font-size: 56px;
}
.fvz-other-fiets-body {
    display: flex; flex-direction: column; gap: 8px; flex: 1;
    padding: 0 4px;
}
.fvz-other-fiets-body h4 {
    font-family: var(--fvz-font-display);
    font-size: 17px;
    margin: 0;
    color: var(--fvz-dark);
    line-height: 1.25;
}
.fvz-other-fiets-body h4 a { color: var(--fvz-dark); text-decoration: none; }
.fvz-other-fiets-body h4 a:hover { color: var(--fvz-blue); }
.fvz-other-fiets-price { font-size: 13px; color: var(--fvz-muted); }
.fvz-other-fiets-cta {
    margin-top: auto;
    background: var(--fvz-cta);
    color: var(--fvz-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    text-align: center;
}
.fvz-other-fiets-cta:hover { background: var(--fvz-cta-hover); }

/* Modal: secondary "Bekijk info" link */
.fvz-bike-modal-link {
    display: block; text-align: center;
    margin-top: 12px;
    color: var(--fvz-blue);
    font-weight: 600; font-size: 14px;
    text-decoration: none;
}
.fvz-bike-modal-link:hover { color: var(--fvz-blue-light); }
.fvz-bike-top-name {
    font-family: var(--fvz-font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--fvz-dark);
    margin-bottom: 16px;
}
.fvz-bike-top-cta {
    display: inline-block;
    background: var(--fvz-cta);
    color: var(--fvz-dark);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}
.fvz-bike-top-tile:hover .fvz-bike-top-cta { background: var(--fvz-cta-hover); }

/* ⓘ info-knop op tile + modal */
.fvz-bike-top-tile-wrap { position: relative; }
.fvz-bike-info-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--fvz-white);
    border: 2px solid var(--fvz-blue-light);
    color: var(--fvz-blue);
    font-size: 18px; font-weight: 700;
    cursor: pointer;
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    line-height: 1;
}
.fvz-bike-info-btn:hover {
    background: var(--fvz-blue-light);
    color: var(--fvz-white);
    transform: scale(1.1);
}

/* Modal dialog */
.fvz-bike-modal {
    border: 0;
    border-radius: var(--fvz-radius-lg);
    padding: 0;
    max-width: 480px;
    width: 90vw;
    background: var(--fvz-white);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.fvz-bike-modal::backdrop { background: rgba(27, 127, 171, .5); backdrop-filter: blur(4px); }
.fvz-bike-modal[open] { animation: fvz-modal-in .25s ease; }
@keyframes fvz-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.fvz-bike-modal-inner {
    padding: 24px 28px 28px;
    position: relative;
}
.fvz-bike-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--fvz-soft);
    border: 0;
    cursor: pointer;
    font-size: 18px;
    color: var(--fvz-text);
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.fvz-bike-modal-close:hover { background: var(--fvz-danger); color: var(--fvz-white); }
.fvz-bike-modal-img {
    aspect-ratio: 16/10;
    border-radius: var(--fvz-radius);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--fvz-soft);
}
.fvz-bike-modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fvz-bike-modal-img--placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--fvz-sand-light), var(--fvz-sand));
    font-size: 72px;
}
.fvz-bike-modal-title {
    font-family: var(--fvz-font-display);
    font-size: 26px;
    color: var(--fvz-blue);
    margin: 0 0 8px;
}
.fvz-bike-modal-sub { color: var(--fvz-text); font-size: 15px; line-height: 1.5; margin: 0 0 20px; }
.fvz-bike-modal-prices {
    display: flex; gap: 16px;
    background: var(--fvz-sand-light);
    padding: 14px 18px;
    border-radius: var(--fvz-radius);
    margin-bottom: 20px;
}
.fvz-bike-modal-price strong {
    display: block;
    font-size: 20px;
    color: var(--fvz-blue);
    font-weight: 700;
}
.fvz-bike-modal-price span { font-size: 12px; color: var(--fvz-muted); text-transform: uppercase; letter-spacing: .5px; }
.fvz-bike-modal-feat {
    list-style: none; padding: 0; margin: 0 0 16px;
}
.fvz-bike-modal-feat li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--fvz-text);
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.fvz-bike-modal-feat li:last-child { border-bottom: 0; }
.fvz-bike-modal-meta { font-size: 13px; color: var(--fvz-muted); margin: 0 0 16px; }
.fvz-bike-modal-cta {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ============================================
   BEZORGAANVRAAG FORMULIER
   ============================================ */
.fvz-bezorg-hero {
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-blue-light) 100%);
    color: var(--fvz-white);
    padding: 64px 0 56px;
    text-align: center;
}
.fvz-bezorg-hero h1 {
    font-family: var(--fvz-font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--fvz-white);
    margin: 12px 0 16px;
}
.fvz-bezorg-hero-intro {
    color: rgba(255,255,255,.95);
    font-size: 17px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.fvz-bezorg-form-section { padding: 56px 0; background: var(--fvz-sand-light); }
.fvz-bezorg-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) { .fvz-bezorg-layout { grid-template-columns: 1fr; } }

.fvz-bezorg-form {
    background: var(--fvz-white);
    padding: 32px;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow);
}
.fvz-form-block {
    border: 0;
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.fvz-form-block:last-of-type { border-bottom: 0; }
.fvz-form-block legend {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 14px;
}
.fvz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .fvz-form-row { grid-template-columns: 1fr; } }
.fvz-bezorg-form label { display: block; margin-bottom: 12px; }
.fvz-bezorg-form label span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fvz-dark);
    margin-bottom: 6px;
}
.fvz-bezorg-form input[type="text"],
.fvz-bezorg-form input[type="email"],
.fvz-bezorg-form input[type="tel"],
.fvz-bezorg-form input[type="number"],
.fvz-bezorg-form input[type="date"],
.fvz-bezorg-form select,
.fvz-bezorg-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #E5E9EE;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--fvz-white);
    color: var(--fvz-dark);
}
.fvz-bezorg-form input:focus,
.fvz-bezorg-form select:focus,
.fvz-bezorg-form textarea:focus {
    outline: none; border-color: var(--fvz-blue-light);
}
.fvz-bezorg-form small {
    display: block; font-size: 12px; color: var(--fvz-muted); margin-top: 4px;
}
.fvz-form-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 6px;
}
.fvz-cb {
    display: flex !important; align-items: center; gap: 8px;
    padding: 8px 12px;
    background: var(--fvz-soft);
    border-radius: 8px;
    font-size: 14px !important; cursor: pointer;
    margin: 0 !important;
}
.fvz-cb input { width: auto !important; margin: 0; }
.fvz-form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.fvz-form-disclaimer {
    text-align: center; font-size: 12px;
    color: var(--fvz-muted); margin: 14px 0 0;
}

/* Info-banner in formulier */
.fvz-form-info {
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(41,168,224,.10), rgba(41,168,224,.04));
    border-left: 4px solid var(--fvz-blue-light);
    border-radius: 8px;
    font-size: 13px;
    color: var(--fvz-text);
    margin: 0 0 16px;
}
.fvz-form-info strong { color: var(--fvz-blue); }
.fvz-form-help {
    font-size: 13px;
    color: var(--fvz-muted);
    margin: 0 0 14px;
}
.fvz-form-block legend small { font-weight: 400; color: var(--fvz-muted); font-size: 12px; }

/* Fietsen + accessoires tiles (grid met aantal) */
.fvz-fiets-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.fvz-fiets-tile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--fvz-soft);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all .15s ease;
    min-width: 0; /* sta toe dat lange namen wrappen */
}
.fvz-fiets-tile:has(.fvz-qty.has-value) {
    background: var(--fvz-white);
    border-color: var(--fvz-cta);
    box-shadow: 0 2px 8px rgba(255,193,7,.15);
}
.fvz-fiets-tile-icon { font-size: 22px; line-height: 1; }
.fvz-fiets-tile-name {
    font-size: 14px;
    color: var(--fvz-dark);
    font-weight: 500;
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: break-word;
}

/* TABLET + MOBIEL: qty pill op nieuwe regel onderaan (anders wordt-ie afgekapt) */
@media (max-width: 700px) {
    .fvz-fiets-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .fvz-fiets-tile {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        row-gap: 10px;
    }
    .fvz-fiets-tile > .fvz-qty {
        grid-column: 1 / -1;
        justify-self: end;
    }
}
@media (max-width: 480px) {
    .fvz-fiets-tiles {
        grid-template-columns: 1fr;
    }
    .fvz-fiets-tile {
        padding: 14px;
    }
    .fvz-fiets-tile-name { font-size: 15px; }
}

/* +/- aantal control */
.fvz-qty {
    display: inline-flex; align-items: center;
    background: var(--fvz-white);
    border: 1px solid #E5E9EE;
    border-radius: 999px;
    overflow: hidden;
}
.fvz-qty.has-value { border-color: var(--fvz-cta); }
.fvz-qty-btn {
    width: 28px; height: 28px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    color: var(--fvz-blue);
    font-weight: 700;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.fvz-qty-btn:hover { background: var(--fvz-blue-light); color: var(--fvz-white); }
.fvz-qty-input {
    width: 30px !important;
    text-align: center;
    border: 0 !important;
    padding: 4px 0 !important;
    font-size: 14px !important;
    font-weight: 600;
    background: transparent !important;
    -moz-appearance: textfield;
}
.fvz-qty-input::-webkit-outer-spin-button,
.fvz-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fvz-btn-sm {
    font-size: 13px !important;
    padding: 8px 16px !important;
    margin-top: 8px;
}

.fvz-date-error {
    display: block !important;
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(224,62,69,.08);
    border-left: 3px solid var(--fvz-danger);
    color: var(--fvz-danger);
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 4px;
}

/* ============================================================
   FVZ datepicker (Flatpickr-readonly input) — eigen styling
   ============================================================ */
.fvz-bezorg-form input.fvz-datepicker,
.fvz-bezorg-form input.flatpickr-alt {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 2px solid #E5E9EE;
    border-radius: 10px;
    font-size: 15px;
    background: var(--fvz-white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231B7FAB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") no-repeat 12px center;
    color: var(--fvz-dark);
    cursor: pointer;
}
.fvz-bezorg-form input.fvz-datepicker:focus,
.fvz-bezorg-form input.flatpickr-alt:focus {
    border-color: var(--fvz-blue-light);
    outline: none;
}

/* Flatpickr kalender restyle — pas bij FVZ-look */
.flatpickr-calendar {
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(27,127,171,.18) !important;
    border: 1px solid #E5E9EE !important;
    font-family: inherit !important;
}
.flatpickr-months .flatpickr-month {
    background: var(--fvz-blue) !important;
    border-radius: 14px 14px 0 0 !important;
    color: #fff !important;
    height: 44px !important;
}
.flatpickr-current-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 600 !important;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg { fill: #fff !important; }
.flatpickr-weekdays { background: var(--fvz-soft) !important; }
span.flatpickr-weekday {
    color: var(--fvz-blue) !important;
    font-weight: 600 !important;
    background: var(--fvz-soft) !important;
}
.flatpickr-day {
    border-radius: 8px !important;
}
.flatpickr-day.today {
    border-color: var(--fvz-cta) !important;
    color: var(--fvz-dark) !important;
}
.flatpickr-day.today:hover { background: var(--fvz-cta) !important; color: var(--fvz-dark) !important; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--fvz-blue-light) !important;
    border-color: var(--fvz-blue-light) !important;
    color: #fff !important;
}
.flatpickr-day:hover {
    background: rgba(41,168,224,.12) !important;
    border-color: transparent !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #c8cfd8 !important;
    background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(224,62,69,.07) 4px, rgba(224,62,69,.07) 5px) !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
}

/* ============================================================
   FVZ tijdvenster-chips (radio-knoppen als kaartjes)
   ============================================================ */
.fvz-form-time-group { margin-top: 14px; }
.fvz-form-time-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fvz-dark);
    margin-bottom: 8px;
}
.fvz-timeslots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.fvz-timeslot { cursor: pointer; margin: 0 !important; }
.fvz-timeslot input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px; height: 1px;
}
.fvz-timeslot-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--fvz-soft);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all .15s ease;
    height: 100%;
}
.fvz-timeslot:hover .fvz-timeslot-card {
    background: var(--fvz-white);
    border-color: rgba(41,168,224,.30);
}
.fvz-timeslot.is-selected .fvz-timeslot-card,
.fvz-timeslot input:checked + .fvz-timeslot-card {
    background: var(--fvz-white);
    border-color: var(--fvz-cta);
    box-shadow: 0 2px 8px rgba(255,193,7,.18);
}
.fvz-timeslot-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.fvz-timeslot-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}
.fvz-timeslot-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--fvz-dark);
}
.fvz-timeslot-text small {
    font-size: 12px;
    color: var(--fvz-muted);
    margin: 0 !important;
}
.fvz-timeslot.is-selected .fvz-timeslot-text strong,
.fvz-timeslot input:checked + .fvz-timeslot-card .fvz-timeslot-text strong {
    color: var(--fvz-blue);
}

@media (max-width: 600px) {
    .fvz-timeslots { grid-template-columns: 1fr; }
}

/* ============================================================
   FVZ generieke chip-radio's (voor land, accommodatie etc.)
   ============================================================ */
.fvz-form-chip-group { margin-top: 14px; }
.fvz-form-chip-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fvz-dark);
    margin-bottom: 8px;
}
.fvz-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}
.fvz-chip { cursor: pointer; margin: 0 !important; }
.fvz-chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px; height: 1px;
}
.fvz-chip-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--fvz-soft);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all .15s ease;
    height: 100%;
}
.fvz-chip:hover .fvz-chip-card {
    background: var(--fvz-white);
    border-color: rgba(41,168,224,.30);
}
.fvz-chip input[type="radio"]:checked + .fvz-chip-card {
    background: var(--fvz-white);
    border-color: var(--fvz-cta);
    box-shadow: 0 2px 8px rgba(255,193,7,.18);
}
.fvz-chip input[type="radio"]:focus-visible + .fvz-chip-card {
    outline: 2px solid var(--fvz-blue-light);
    outline-offset: 2px;
}
.fvz-chip-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}
.fvz-chip-text {
    font-size: 14px;
    color: var(--fvz-dark);
    font-weight: 500;
    line-height: 1.3;
}
.fvz-chip input[type="radio"]:checked + .fvz-chip-card .fvz-chip-text {
    color: var(--fvz-blue);
    font-weight: 600;
}

@media (max-width: 480px) {
    .fvz-chips { grid-template-columns: repeat(2, 1fr); }
}

/* Info-aside rechts */
.fvz-bezorg-info { display: flex; flex-direction: column; gap: 16px; }
.fvz-bezorg-info-card {
    background: var(--fvz-white);
    padding: 24px;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow);
}
.fvz-bezorg-info-card h3 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 18px;
    margin: 0 0 12px;
}
.fvz-bezorg-info-card p { font-size: 14px; line-height: 1.5; margin: 0 0 8px; color: var(--fvz-text); }
.fvz-bezorg-info-card a { color: var(--fvz-blue); font-weight: 600; text-decoration: none; }
.fvz-bezorg-info-card a:hover { color: var(--fvz-blue-light); }
.fvz-bezorg-info-card--accent {
    background: var(--fvz-sand);
    color: var(--fvz-dark);
}
.fvz-bezorg-info-card--accent h3,
.fvz-bezorg-info-card--accent p { color: var(--fvz-dark); }
.fvz-bezorg-info-card--accent strong { color: var(--fvz-dark); }

.fvz-bezorg-steps { list-style: none; padding: 0; margin: 0; }
.fvz-bezorg-steps li {
    padding: 10px 0;
    font-size: 14px; color: var(--fvz-text);
    border-bottom: 1px dashed rgba(0,0,0,.08);
}
.fvz-bezorg-steps li:last-child { border-bottom: 0; }
.fvz-bezorg-steps li strong { color: var(--fvz-blue); }

/* ============================================================
   SEO long-form content onderaan bezorgaanvraag (Google ranking)
   ============================================================ */
.fvz-bezorg-seo {
    padding: 72px 0;
    background: var(--fvz-white);
}
.fvz-bezorg-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
}
@media (max-width: 900px) {
    .fvz-bezorg-seo-grid { grid-template-columns: 1fr; gap: 32px; }
    .fvz-bezorg-seo { padding: 48px 0; }
}

.fvz-bezorg-seo-main h2 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
}
.fvz-bezorg-seo-main h3 {
    color: var(--fvz-blue);
    font-size: 22px;
    margin: 36px 0 12px;
    line-height: 1.3;
}
.fvz-bezorg-seo-main p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--fvz-text);
    margin: 0 0 14px;
}
.fvz-bezorg-seo-lead {
    font-size: 17px !important;
    color: var(--fvz-dark) !important;
}
.fvz-bezorg-seo-main a {
    color: var(--fvz-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(41,168,224,.4);
    text-underline-offset: 3px;
}
.fvz-bezorg-seo-main a:hover {
    color: var(--fvz-blue-light);
    text-decoration-color: var(--fvz-blue-light);
}
.fvz-bezorg-seo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.fvz-bezorg-seo-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: var(--fvz-text);
}
.fvz-bezorg-seo-list li::before {
    content: '🚲';
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* FAQ accordeon-items */
.fvz-faq-item {
    padding: 14px 16px;
    margin: 8px 0;
    background: var(--fvz-soft);
    border: 1px solid #E5E9EE;
    border-radius: 10px;
    transition: background .15s ease;
}
.fvz-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--fvz-blue);
    font-size: 15px;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.fvz-faq-item summary::-webkit-details-marker { display: none; }
/* Geen CSS-plus meer — de plus zit in HTML via .fvz-faq-q-icon (animeert naar ×) */
.fvz-faq-item[open] { background: var(--fvz-white); border-color: var(--fvz-cta); }
.fvz-faq-item p {
    margin: 10px 0 0 !important;
    font-size: 15px !important;
    color: var(--fvz-text) !important;
    line-height: 1.55;
}

/* Side-cards */
.fvz-bezorg-seo-side { display: flex; flex-direction: column; gap: 16px; }
.fvz-bezorg-seo-card {
    background: var(--fvz-soft);
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid #E5E9EE;
}
.fvz-bezorg-seo-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    color: var(--fvz-blue);
}
.fvz-bezorg-seo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fvz-bezorg-seo-card ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    color: var(--fvz-text);
    line-height: 1.4;
}
.fvz-bezorg-seo-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--fvz-cta);
    font-weight: 700;
}
.fvz-bezorg-seo-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fvz-text);
    margin: 0 0 10px;
}
.fvz-bezorg-seo-card .fvz-btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    justify-content: center;
}
.fvz-bezorg-seo-card--accent {
    background: linear-gradient(135deg, var(--fvz-sand) 0%, var(--fvz-sand-dark) 100%);
    border-color: transparent;
    color: var(--fvz-dark);
}
.fvz-bezorg-seo-card--accent h3 { color: var(--fvz-dark); }
.fvz-bezorg-seo-card--accent p { color: var(--fvz-dark); }

/* ============================================================
   FVZ Landingspagina (dorp) template
   ============================================================ */
.fvz-dorp { background: var(--fvz-white); }

.fvz-dorp-hero {
    padding: 40px 0 32px;
    background: linear-gradient(135deg, var(--fvz-sand-light) 0%, var(--fvz-white) 100%);
    border-bottom: 1px solid #E5E9EE;
}
.fvz-breadcrumb {
    font-size: 13px;
    color: var(--fvz-muted);
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.fvz-breadcrumb a {
    color: var(--fvz-blue);
    text-decoration: none;
}
.fvz-breadcrumb a:hover { text-decoration: underline; }
.fvz-breadcrumb span:last-child { color: var(--fvz-dark); font-weight: 600; }

.fvz-dorp-h1 {
    font-family: var(--fvz-font-display);
    font-size: 38px;
    line-height: 1.15;
    color: var(--fvz-blue);
    margin: 0 0 18px;
}
@media (max-width: 700px) {
    .fvz-dorp-h1 { font-size: 28px; }
    .fvz-dorp-hero { padding: 28px 0 24px; }
}

.fvz-dorp-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.fvz-dorp-hero-cta .fvz-btn { font-weight: 700; }
.fvz-dorp-hero-meta {
    display: inline-block;
    margin-left: 6px;
    font-weight: 500;
    font-size: 0.88em;
    opacity: 0.92;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .fvz-dorp-hero-cta { flex-direction: column; }
    .fvz-dorp-hero-cta .fvz-btn { width: 100%; justify-content: center; text-align: center; }
    .fvz-dorp-hero-meta { display: block; margin: 4px 0 0; }
}

/* Sidebar — Dichtstbij locatie kaart */
.fvz-dorp-nearest-name {
    font-size: 20px !important;
    font-weight: 700;
    margin: 0 0 14px !important;
    display: block;
    color: var(--fvz-dark);
}
.fvz-dorp-meta {
    list-style: none;
    margin: 0 0 16px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
}
.fvz-dorp-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    color: var(--fvz-text);
}
.fvz-dorp-meta-icon {
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    font-size: 16px;
}
.fvz-dorp-nearest-body { margin-bottom: 16px !important; }
.fvz-dorp-view-link {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--fvz-blue);
    text-decoration: none;
    margin-top: 10px;
    padding: 8px;
    border-radius: 6px;
}
.fvz-dorp-view-link:hover { background: rgba(255,255,255,0.5); }

/* Sidebar — Bezorging-aanvraag kaart (alternatief) */
.fvz-dorp-card--deliver {
    background: #f0f6fa;
    border: 1px dashed #b8d4e3;
    text-align: center;
}
.fvz-dorp-or {
    display: block;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #6b8497;
    font-weight: 600;
    margin-bottom: 10px;
}
.fvz-dorp-deliver-note {
    font-size: 12.5px !important;
    color: #6b8497 !important;
    line-height: 1.5 !important;
    margin: 12px 0 0 !important;
    font-style: italic;
}

/* === WORD PARTNER — knop + kaart op landingspagina's === */

/* Partner-knop: opvallend goud, springt eruit naast de blauwe knoppen */
.fvz-btn--partner {
    background: var(--fvz-cta, #F5A623) !important;
    color: var(--fvz-dark, #0F2A45) !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 10px rgba(245, 166, 35, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.fvz-btn--partner:hover {
    background: var(--fvz-cta-hover, #d68a10) !important;
    color: var(--fvz-dark, #0F2A45) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.45);
}

/* Partner-kaart in de sidebar */
.fvz-dorp-card--partner {
    background: linear-gradient(135deg, #fff8ec 0%, #ffefd0 100%);
    border: 1px solid #f0d18a;
    text-align: center;
}
.fvz-dorp-partner-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a8741a;
    font-weight: 700;
    margin-bottom: 8px;
}
.fvz-dorp-card--partner h3 {
    color: var(--fvz-dark, #0F2A45);
    font-size: 18px;
    margin: 0 0 8px;
    line-height: 1.25;
}
.fvz-dorp-partner-body {
    font-size: 13.5px !important;
    color: #7a6238 !important;
    line-height: 1.55 !important;
    margin: 0 0 14px !important;
}

/* CTA-band onderaan met 2 knoppen */
.fvz-cta-band--dual .fvz-cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}
@media (max-width: 600px) {
    .fvz-cta-band--dual .fvz-cta-band-actions { flex-direction: column; align-items: stretch; }
}

.fvz-dorp-section { padding: 48px 0 64px; }

.fvz-dorp-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) {
    .fvz-dorp-grid { grid-template-columns: 1fr; gap: 32px; }
}

.fvz-dorp-main h2 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 26px;
    line-height: 1.25;
    margin: 36px 0 14px;
}
.fvz-dorp-main h2:first-child { margin-top: 0; }
.fvz-dorp-main h3 {
    color: var(--fvz-blue);
    font-size: 19px;
    margin: 24px 0 10px;
}
.fvz-dorp-main p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fvz-text);
    margin: 0 0 14px;
}
.fvz-dorp-main ul {
    margin: 0 0 14px;
    padding-left: 0;
    list-style: none;
}
.fvz-dorp-main ul li {
    padding: 6px 0 6px 26px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fvz-text);
}
.fvz-dorp-main ul li::before {
    content: '🚲';
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 8px;
}
.fvz-dorp-main strong { color: var(--fvz-dark); }
.fvz-dorp-main a {
    color: var(--fvz-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(41,168,224,.4);
    text-underline-offset: 3px;
}
.fvz-dorp-main hr { display: none; }

.fvz-dorp-faq {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #E5E9EE;
}
.fvz-dorp-faq h2 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    margin: 0 0 16px;
}

/* Sidebar cards */
.fvz-dorp-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
@media (max-width: 900px) {
    .fvz-dorp-side { position: static; }
}
.fvz-dorp-card {
    background: var(--fvz-soft);
    border: 1px solid #E5E9EE;
    border-radius: 12px;
    padding: 20px 22px;
}
.fvz-dorp-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    color: var(--fvz-blue);
}
.fvz-dorp-card strong {
    display: block;
    font-size: 18px;
    color: var(--fvz-dark);
    margin-bottom: 8px;
}
.fvz-dorp-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fvz-text);
    margin: 0 0 12px;
}
.fvz-dorp-card .fvz-btn {
    width: 100%;
    justify-content: center;
}
.fvz-dorp-card--cta {
    background: linear-gradient(135deg, var(--fvz-sand) 0%, var(--fvz-sand-dark) 100%);
    border-color: transparent;
    color: var(--fvz-dark);
}
.fvz-dorp-card--cta h3,
.fvz-dorp-card--cta p { color: var(--fvz-dark); }
.fvz-dorp-distance { font-size: 14px !important; }

/* Nearby villages grid (interne linking) */
.fvz-dorp-nearby {
    padding: 56px 0;
    background: var(--fvz-sand-light);
    border-top: 1px solid #E5E9EE;
}
.fvz-dorp-nearby h2 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    margin: 0 0 8px;
    font-size: 28px;
}
.fvz-dorp-nearby > .fvz-container > p {
    color: var(--fvz-muted);
    margin: 0 0 24px;
    font-size: 15px;
}
.fvz-dorp-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.fvz-dorp-nearby-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--fvz-white);
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: var(--fvz-dark);
    font-weight: 500;
    transition: all .15s ease;
}
.fvz-dorp-nearby-card:hover {
    border-color: var(--fvz-cta);
    box-shadow: 0 2px 8px rgba(255,193,7,.18);
    color: var(--fvz-blue);
    transform: translateY(-1px);
}
.fvz-dorp-nearby-icon { font-size: 18px; line-height: 1; }
.fvz-dorp-nearby-name { font-size: 14px; }

/* === Partner-aanmeld-blok op landingspagina === */
.fvz-partner-block {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--fvz-sand) 0%, var(--fvz-sand-dark) 100%);
}
.fvz-partner-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--fvz-white);
    border-radius: var(--fvz-radius-lg);
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(143,118,79,.25);
}
.fvz-partner-card .fvz-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--fvz-sand-dark);
    font-size: 13px;
    letter-spacing: 1px;
}
.fvz-partner-card h2 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.2;
    margin: 0 0 16px;
}
.fvz-partner-intro {
    color: var(--fvz-text);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.fvz-partner-msg {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}
.fvz-partner-msg--ok   { background: rgba(99,153,34,.12); color: #3B6D11; border-left: 4px solid #639922; }
.fvz-partner-msg--warn { background: rgba(224,62,69,.10); color: #993333; border-left: 4px solid #E03E45; }

.fvz-partner-form { display: flex; flex-direction: column; gap: 16px; }
.fvz-partner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .fvz-partner-row { grid-template-columns: 1fr; }
    .fvz-partner-card { padding: 28px 22px; }
}
.fvz-partner-form label {
    display: block;
    margin: 0;
}
.fvz-partner-form label > span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fvz-dark);
    margin-bottom: 6px;
}
.fvz-partner-form input[type="text"],
.fvz-partner-form input[type="email"],
.fvz-partner-form input[type="tel"],
.fvz-partner-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #E5E9EE;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--fvz-white);
    color: var(--fvz-dark);
}
.fvz-partner-form input:focus,
.fvz-partner-form textarea:focus {
    outline: none; border-color: var(--fvz-blue-light);
}
.fvz-partner-form textarea { resize: vertical; min-height: 90px; }
.fvz-partner-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--fvz-muted);
    margin: 8px 0 0;
}

/* === Dedicated Partner-pagina (page-partner-worden.php) === */
.fvz-partner-hero {
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-blue-light) 100%);
    color: var(--fvz-white);
    padding: 80px 0 64px;
    text-align: center;
}
.fvz-partner-hero .fvz-eyebrow { color: rgba(255,255,255,.85); }
.fvz-partner-hero h1 {
    font-family: var(--fvz-font-display);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    margin: 8px 0 16px;
    color: #fff;
}
.fvz-partner-hero-lead {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.95);
    line-height: 1.55;
}
.fvz-partner-hero .fvz-btn--primary {
    background: var(--fvz-cta) !important;
    color: var(--fvz-dark) !important;
}

.fvz-partner-voordelen { padding: 64px 0; background: var(--fvz-white); }
.fvz-partner-voordelen h2 {
    text-align: center;
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 32px;
    margin: 0 0 40px;
}
.fvz-partner-voordelen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.fvz-partner-voordeel {
    padding: 24px;
    background: var(--fvz-sand-light);
    border-radius: 12px;
    border: 1px solid #E5E9EE;
}
.fvz-partner-voordeel-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.fvz-partner-voordeel h3 {
    color: var(--fvz-blue);
    font-size: 17px;
    margin: 0 0 8px;
}
.fvz-partner-voordeel p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--fvz-text);
    margin: 0;
}

.fvz-partner-wie { padding: 64px 0; background: var(--fvz-sand-light); }
.fvz-partner-wie h2 {
    text-align: center;
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 32px;
    margin: 0 0 40px;
}
.fvz-partner-wie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.fvz-partner-wie-card {
    padding: 20px;
    background: var(--fvz-white);
    border-radius: 10px;
    text-align: center;
}
.fvz-partner-wie-icon { font-size: 36px; display: block; margin-bottom: 10px; }
.fvz-partner-wie-card h3 {
    color: var(--fvz-dark);
    font-size: 16px;
    margin: 0 0 6px;
}
.fvz-partner-wie-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--fvz-muted);
    margin: 0;
}

.fvz-partner-hoe { padding: 64px 0; background: var(--fvz-white); }
.fvz-partner-hoe h2 {
    text-align: center;
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    font-size: 32px;
    margin: 0 0 40px;
}
.fvz-partner-hoe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    position: relative;
}
.fvz-partner-hoe-step {
    text-align: center;
    padding: 24px 16px;
}
.fvz-partner-hoe-num {
    display: inline-flex;
    width: 44px; height: 44px;
    background: var(--fvz-cta);
    color: var(--fvz-dark);
    align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.fvz-partner-hoe-step h3 { color: var(--fvz-blue); font-size: 17px; margin: 0 0 8px; }
.fvz-partner-hoe-step p  { font-size: 14px; line-height: 1.55; color: var(--fvz-text); margin: 0; }

@media (max-width: 600px) {
    .fvz-partner-hero h1 { font-size: 28px; }
    .fvz-partner-voordelen, .fvz-partner-wie, .fvz-partner-hoe { padding: 40px 0; }
}

/* Success card */
.fvz-bezorg-success { padding: 64px 0; background: var(--fvz-sand-light); }
.fvz-bezorg-success-card {
    max-width: 640px; margin: 0 auto;
    background: var(--fvz-white);
    padding: 48px 32px;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow-lg);
    text-align: center;
    border-top: 6px solid var(--fvz-success);
}
.fvz-bezorg-success-icon { font-size: 56px; display: block; margin-bottom: 12px; }
.fvz-bezorg-success-card h2 {
    font-family: var(--fvz-font-display);
    color: var(--fvz-blue);
    margin: 0 0 16px;
    font-size: 28px;
}

/* ONZE FIETSEN HIER (fvz_fiets relationship grid op locatie) */
.fvz-loc-fietsen-grid { padding: 72px 0; background: var(--fvz-white); }
.fvz-fiets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.fvz-fiets-card {
    background: var(--fvz-white);
    border-radius: var(--fvz-radius-lg);
    overflow: hidden;
    box-shadow: var(--fvz-shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.fvz-fiets-card:hover { transform: translateY(-4px); box-shadow: var(--fvz-shadow-lg); }
.fvz-fiets-card-img-link { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--fvz-soft); }
.fvz-fiets-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fvz-fiets-card-img--placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--fvz-sand-light), var(--fvz-sand));
    font-size: 80px;
}
.fvz-fiets-card-body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; }
.fvz-fiets-card-body h3 { font-family: var(--fvz-font-display); font-size: 18px; margin: 0 0 4px; }
.fvz-fiets-card-body h3 a { color: var(--fvz-blue); text-decoration: none; }
.fvz-fiets-card-body h3 a:hover { color: var(--fvz-blue-light); }
.fvz-fiets-card-sub { font-size: 13px; color: var(--fvz-text); margin: 0 0 12px; line-height: 1.4; flex: 1; }
.fvz-fiets-card-foot {
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
    padding-top: 12px; border-top: 1px solid rgba(0,0,0,.06);
}
.fvz-fiets-card-price { font-size: 13px; color: var(--fvz-text); }
.fvz-fiets-card-price strong { color: var(--fvz-blue); font-size: 15px; }
.fvz-fiets-card-cta {
    background: var(--fvz-blue-light);
    color: var(--fvz-white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.fvz-fiets-card-cta:hover { background: var(--fvz-blue); }

/* Fietsen-prices op single fiets pagina */
.fvz-fiets-prices {
    display: flex; gap: 24px; margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--fvz-sand-light);
    border-radius: var(--fvz-radius);
    display: inline-flex;
}

/* Fietsroutes — blauwe gradient achtergrond voor sterke pop */
.fvz-loc-routes {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--fvz-blue) 0%, var(--fvz-blue-light) 100%);
    color: var(--fvz-white);
}
.fvz-loc-routes .fvz-section-head h2 { color: var(--fvz-white); }
.fvz-loc-routes .fvz-section-head p { color: rgba(255,255,255,.9); }
.fvz-loc-routes .fvz-eyebrow { background: var(--fvz-white); color: var(--fvz-blue); }
.fvz-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .fvz-routes-grid { grid-template-columns: 1fr; } }
.fvz-route-card {
    background: var(--fvz-white);
    padding: 28px;
    border-radius: var(--fvz-radius-lg);
    box-shadow: var(--fvz-shadow);
    border-top: 4px solid var(--fvz-sand);
}
.fvz-route-card { position: relative; }
.fvz-route-km {
    display: inline-block;
    background: var(--fvz-blue);
    color: var(--fvz-white);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.fvz-route-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--fvz-sand);
    color: var(--fvz-dark);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.fvz-route-card h3 {
    font-family: var(--fvz-font-display);
    font-size: 20px;
    color: var(--fvz-dark);
    margin: 0 0 12px;
}
.fvz-route-card p { color: var(--fvz-text); font-size: 14px; line-height: 1.5; margin: 0 0 16px; }
.fvz-route-link { color: var(--fvz-blue); font-weight: 600; text-decoration: none; }
.fvz-route-link:hover { color: var(--fvz-blue-light); }

/* FAQ accordion — wit met zand accent */
.fvz-loc-faq { padding: 72px 0; background: var(--fvz-white); }
.fvz-faq-list { max-width: 800px; margin: 0 auto; }
.fvz-faq-item {
    background: var(--fvz-soft);
    border-radius: var(--fvz-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .15s;
}
.fvz-faq-item[open] { box-shadow: var(--fvz-shadow); }
.fvz-faq-item summary {
    cursor: pointer;
    padding: 18px 56px 18px 24px;
    font-weight: 600;
    color: var(--fvz-dark);
    font-size: 16px;
    position: relative;
    list-style: none;
}
.fvz-faq-item summary::-webkit-details-marker { display: none; }
/* Geen CSS-plus meer — zit nu in HTML via .fvz-faq-q-icon */
.fvz-faq-answer {
    padding: 0 24px 20px;
    color: var(--fvz-text);
    line-height: 1.6;
}
.fvz-faq-answer p:first-child { margin-top: 0; }
.fvz-faq-answer p:last-child { margin-bottom: 0; }

/* Sticky CTA-bar (mobile/tablet) */
.fvz-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    display: none;
    background: var(--fvz-white);
    box-shadow: 0 -2px 12px rgba(0,0,0,.1);
    padding: 8px;
    gap: 6px;
}
.fvz-sticky-btn {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 10px 8px;
    border-radius: var(--fvz-radius);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}
.fvz-sticky-nav { background: var(--fvz-blue); color: var(--fvz-white); }
.fvz-sticky-nav:hover { background: var(--fvz-blue-light); }
.fvz-sticky-reserve {
    background: var(--fvz-cta); color: var(--fvz-dark);
    flex: 2.5; font-size: 14px; font-weight: 700;
}
.fvz-sticky-reserve:hover { background: var(--fvz-cta-hover); }
.fvz-sticky-icon { font-size: 18px; margin-bottom: 2px; }
.fvz-sticky-label { display: block; }
/* Sticky bar: ALLEEN mobile/tablet zichtbaar. Desktop heeft genoeg ruimte voor knoppen in content. */
.fvz-sticky-bar { display: none; }
@media (max-width: 900px) {
    .fvz-sticky-bar { display: flex; }
    body { padding-bottom: 76px; }
}

/* Bezorglocatie-melding (geen ophaalpunt) */
.fvz-loc-bezorg-note{ padding:34px 0 6px; }
.fvz-loc-bezorg-card{ display:flex; gap:18px; align-items:flex-start; background:#F4F8FB; border:1px solid rgba(27,127,171,.15); border-left:5px solid var(--fvz-blue,#1B7FAB); border-radius:14px; padding:22px 24px; }
.fvz-loc-bezorg-icon{ font-size:34px; line-height:1; }
.fvz-loc-bezorg-card h2{ margin:0 0 8px; font-family:var(--fvz-font-display); font-weight:700; font-size:clamp(22px,2.6vw,29px); line-height:1.2; letter-spacing:-.01em; color:var(--fvz-dark,#15384a); }
.fvz-loc-bezorg-card p{ margin:0; color:var(--fvz-muted,#4a5b66); font-size:15.5px; line-height:1.6; max-width:64ch; }
@media(max-width:600px){ .fvz-loc-bezorg-card{ flex-direction:column; gap:10px; } }

/* Bezorglocatie — knop in melding + SEO/GEO-blok */
.fvz-loc-bezorg-card .fvz-btn{ margin-top:14px; }
.fvz-loc-bezorg-seo{ padding:16px 0 54px; }
.fvz-loc-bezorg-seo .fvz-home-seo-prose{
    max-width:760px; margin:0 auto;
    font-family:var(--fvz-font-body);
    font-size:17px; line-height:1.85; color:#3a4d5b;
}
.fvz-loc-bezorg-seo .fvz-home-seo-prose h2{
    font-family:var(--fvz-font-display);
    font-size:clamp(26px,3.4vw,34px);
    font-weight:700; line-height:1.2;
    color:var(--fvz-dark,#1A2A3A);
    text-align:center; margin:0 0 22px;
}
.fvz-loc-bezorg-seo .fvz-home-seo-prose h2::after{
    content:""; display:block;
    width:56px; height:3px; margin:16px auto 0;
    border-radius:3px; background:var(--fvz-sand,#C9A876);
}
.fvz-loc-bezorg-seo .fvz-home-seo-prose p{ margin:0 0 20px; }
.fvz-loc-bezorg-seo .fvz-home-seo-prose p:first-of-type{ font-size:18.5px; color:#2a3b47; }
.fvz-loc-bezorg-seo .fvz-home-seo-prose strong{ color:var(--fvz-blue,#1B7FAB); }
@media(max-width:600px){ .fvz-loc-bezorg-seo .fvz-home-seo-prose{ font-size:16px; line-height:1.75; } }

/* ---- Accessoires op locatiepagina ---- */
.fvz-loc-acc{padding:48px 0;background:#fbf7ef}
.fvz-acc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:16px;max-width:1000px;margin:0 auto}
.fvz-acc-card{background:#fff;border:1px solid rgba(201,168,118,.35);border-radius:16px;padding:20px 16px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:6px;box-shadow:0 1px 3px rgba(26,42,58,.06);transition:.15s}
.fvz-acc-card:hover{transform:translateY(-3px);box-shadow:0 6px 18px rgba(26,42,58,.10)}
.fvz-acc-ico{font-size:30px;width:56px;height:56px;border-radius:14px;background:#f6efe2;display:grid;place-items:center}
.fvz-acc-img{width:70px;height:70px;border-radius:14px;overflow:hidden}
.fvz-acc-img img{width:100%;height:100%;object-fit:cover}
.fvz-acc-name{font-weight:700;font-size:15px;color:#1A2A3A}
.fvz-acc-sub{font-size:12.5px;color:#6b7683;line-height:1.4}
.fvz-acc-price{font-size:13px;font-weight:600;color:#1B7FAB;margin-top:2px}

/* Bereikbaarheid onder telefoonnummer in het menu */
.fvz-nav-hours{display:block;margin-top:4px;font-size:12.5px;color:#6b7683;line-height:1.4}

/* ============================================================
   MOBIEL — locatiekaarten netter (homepage 'populair' + /locaties/)
   Fixt: plaatsnaam werd afgekapt (vaste tegelhoogte "Burgh-"),
   de open/dicht-pill overlapte de plaatsnaam, en de tegels in het
   overzicht waren zo hoog dat de lijst eindeloos werd.
   ============================================================ */
@media (max-width: 600px) {

    /* Plaatsnaam mag netjes over 2 regels vallen — nooit meer afgekapt */
    .fvz-loc-card-place { line-height: 1.15; overflow-wrap: break-word; }

    /* Homepage: 'Onze populairste locaties' */
    .fvz-popular .fvz-loc-card-img { height: auto; min-height: 116px; }
    .fvz-popular .fvz-loc-card-mark { padding: 14px 12px; }
    /* open/dicht-pill naar RECHTSBOVEN i.p.v. rechtsonder → geen overlap meer met de plaatsnaam */
    .fvz-popular .fvz-loc-card-hours { top: 10px; right: 10px; bottom: auto; }

    /* Overzicht /locaties/: compacte kaarten (icoon + plaats naast elkaar) → veel minder scrollen */
    .fvz-archive .fvz-loc-card-img { aspect-ratio: auto; height: 92px; }
    .fvz-archive .fvz-loc-card-mark { flex-direction: row; gap: 10px; padding: 12px 14px; }
    .fvz-archive .fvz-loc-card-mark-icon { font-size: 22px; }
    .fvz-archive .fvz-loc-card-place { font-size: 18px; text-shadow: 0 1px 2px rgba(0,0,0,.22); }
    .fvz-archive .fvz-loc-card-body { padding: 14px 16px; }
    .fvz-archive .fvz-loc-card-body h3 { font-size: 18px; margin-bottom: 4px; }
    .fvz-archive .fvz-loc-card-body p { font-size: 14px; margin-bottom: 12px; }
    .fvz-archive .fvz-featured-grid { gap: 14px; }
}
