/* ======================================================================
   VCA Frontend — gedeelde stijlen voor archive én shortcode pagina's
   ====================================================================== */

:root {
    --vca-primary:       #1aacb8;
    --vca-primary-hover: #148f99;
    --vca-dark:          #1a1a1a;
    --vca-gray:          #f4f4f4;   /* kaartachtergrond */
    --vca-border:        #e0e0e0;
    --vca-text:          #444;
    --vca-radius:        8px;
}

/* ── Thema-isolatie: voorkom dat thema button:hover VCA-knoppen overschrijft ── */
.vca-archive-wrap button:hover,
.vca-single-wrap button:hover,
.vca-uf-modal-box button:hover,
.vca-rfb-outer button:hover,
.vsb-wrap button:hover {
    background-color: revert;
    color: revert;
    border-color: revert;
}

/* Specifieke overrides zodat thema-roze niet wint */
.vca-uf-modal-group-head:hover,
.vca-uf-modal-group-head:focus,
.vca-uf-modal-close:hover,
.vca-uf-modal-close:focus {
    background-color: transparent !important;
    color: var(--vca-dark) !important;
}
.vca-uf-modal-clear:hover,
.vca-uf-modal-clear:focus {
    background: none !important;
    color: var(--vca-dark) !important;
}
.vca-uf-modal-apply:hover,
.vca-uf-modal-apply:focus {
    background: var(--vca-primary-hover) !important;
    color: #fff !important;
}
/* vsb button hover overrides — thema-roze blokkeren */
.vsb-wrap .vsb-dest-item:hover,
.vsb-wrap .vsb-type-item:hover   { background: rgba(26,172,184,.1) !important; color: var(--vca-primary) !important; }
.vsb-wrap .vsb-sugg-item:hover   { background: rgba(26,172,184,.1) !important; color: inherit !important; }
.vsb-wrap .vsb-cal-nav:hover     { background: #e2e8f0 !important; color: #1a2b3c !important; }
.vsb-wrap .vsb-cal-day:hover:not(.vsb-cal-day--empty):not(.vsb-cal-day--past) { background: rgba(26,172,184,.08) !important; border-color: var(--vca-primary) !important; color: var(--vca-primary) !important; }
.vsb-wrap .vsb-confirm-btn:hover { background: #0d3d42 !important; color: #fff !important; }
.vsb-wrap .vsb-holiday-btn:hover { background: var(--vca-primary) !important; color: #fff !important; border-color: var(--vca-primary) !important; }
.vsb-wrap .vsb-reset-link:hover  { color: var(--vca-primary-hover) !important; background: none !important; }
.vsb-count-btn:hover             { border-color: var(--vca-primary) !important; color: var(--vca-primary) !important; background: transparent !important; }
.vsb-search-btn:hover            { background: var(--vca-primary-hover) !important; color: #fff !important; transform: translateY(-1px); }

/* ── Toegankelijkheid: focus-visible voor interactieve elementen ── */
.vca-fav-btn:focus-visible,
.vca-lightbox-close:focus-visible,
.vca-lightbox-prev:focus-visible,
.vca-lightbox-next:focus-visible,
.vca-map-toggle:focus-visible,
.vca-toon-meer:focus-visible,
.vca-unit-toggle:focus-visible,
.vsb-tab:focus-visible,
.vca-faq-q:focus-visible,
.vca-read-more-btn:focus-visible,
.vca-gallery-all-btn:focus-visible,
.vca-back-top:focus-visible,
.vca-map-fullscreen-btn:focus-visible {
    outline: 2px solid var(--vca-primary);
    outline-offset: 2px;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────── */
.vca-breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    position: relative;
    z-index: 2;
}

.vca-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    font-size: 0.82rem;
    color: #999;
}

.vca-breadcrumbs-item + .vca-breadcrumbs-item::before {
    content: '›';
    margin: 0 6px;
    color: #ccc;
}

.vca-breadcrumbs-link {
    color: var(--vca-text);
    text-decoration: none;
    transition: color .15s;
}

.vca-breadcrumbs-link:hover { color: var(--vca-primary); }

.vca-breadcrumbs-item--current span { color: #aaa; }

/* ── Hero banner ─────────────────────────────────────────────────────── */
.vca-archive-hero {
    background: linear-gradient(160deg, #0c2236 0%, #154e6e 55%, #1a7a9a 100%);
    padding: 52px 24px 32px;
    border-bottom: none;
    position: relative;
    overflow-x: clip; /* clips horizontal overflow (decoratieve cirkel) zonder verticale overlap te breken */
    overflow-y: visible; /* zoekbalk mag verticaal overlappen */
}

/* Decoratieve cirkel rechtsbovenin als subtiele textuur */
.vca-archive-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.vca-archive-hero > div:first-child { position: relative; z-index: 1; }

.vca-archive-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.vca-archive-hero p {
    color: rgba(255,255,255,.80);
    margin: 0;
    font-size: 1rem;
}

/* Refinement bar op de scheidingslijn blauw/zand — half boven, half onder */
.vca-archive-hero .vca-rfb-outer {
    position: relative;
    z-index: 10;
    margin-top: 28px;
    margin-bottom: -66px;
}

/* ── Beige pagina-achtergrond (archive) ──────────────────────────────── */
.vca-content-bg {
    background: var(--vca-archive-bg, #f4f1ea);
    padding-top: 24px;
    padding-bottom: 48px;
}

/* ── Layout: sidebar + main ──────────────────────────────────────────── */
.vca-archive-wrap {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    align-items: flex-start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────── */
.vca-sidebar {
    flex: 0 0 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--vca-radius);
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    position: sticky;
    top: 16px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    align-self: flex-start;
}

.vca-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.vca-sidebar h3 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    border: none;
}

.vca-sidebar-reset {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vca-primary);
    text-decoration: none;
}

.vca-sidebar-reset:hover {
    text-decoration: underline;
}

.vca-filter-group {
    margin-bottom: 22px;
}

.vca-filter-group h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 12px;
}

.vca-filter-group:first-child h4 { margin-top: 4px; }

.vca-filter-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vca-filter-group li {
    margin-bottom: 2px;
}

.vca-filter-group a,
.vca-filter-group a:hover,
.vca-filter-group a:focus {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    position: relative;
}

/* Checkbox pseudo-element */
.vca-filter-group ul li > a::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: #fff;
    transition: background .15s, border-color .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vca-filter-group ul li > a:hover::before {
    border-color: var(--vca-primary);
}

.vca-filter-group ul li > a.active::before {
    background: var(--vca-primary);
    border-color: var(--vca-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 10px;
}

/* Count badge rechts uitlijnen — zit achter de ::before, dus flex doet dit automatisch */
.vca-filter-group ul li > a .vca-filter-count { margin-left: auto; }

.vca-filter-group a:hover { color: #1a1a1a; }
.vca-filter-group a.active { color: #1a1a1a; font-weight: 600; }

/* Gegroepeerde taxonomie-filter (faciliteiten) */
.vca-taxonomy-group { margin-bottom: 12px; }

.vca-taxonomy-group-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #aaa;
    margin-bottom: 5px;
    padding-bottom: 3px;
    border-bottom: 1px solid #eee;
}

.vca-taxonomy-group-label a,
.vca-taxonomy-subgroup-label a,
.vca-taxonomy-group-label a:hover,
.vca-taxonomy-subgroup-label a:hover {
    color: inherit;
    text-decoration: none;
    font-size: inherit; /* niet overschreven door .vca-filter-group a */
    flex: 1;
}

.vca-taxonomy-group-label a:hover,
.vca-taxonomy-group-label a.active,
.vca-taxonomy-subgroup-label a:hover,
.vca-taxonomy-subgroup-label a.active {
    color: var(--vca-primary);
}

.vca-taxonomy-group ul { margin: 0; padding: 0 0 0 4px; }
.vca-taxonomy-group li { margin-bottom: 4px; }
.vca-taxonomy-subgroup { margin: 6px 0 8px; }

.vca-taxonomy-subgroup-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.83rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
    margin-top: 2px;
}

.vca-taxonomy-subgroup ul { padding-left: 8px; }
.vca-filter-hidden { display: none; }

.vca-toon-meer {
    background: none;
    border: none;
    box-shadow: none;
    color: var(--vca-primary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0 0 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vca-toon-meer.is-expanded { font-weight: 700; }

.vca-filter-count {
    background: #eee;
    color: #555;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    min-width: 24px;
    text-align: center;
}

/* Zero-count filteropties: visueel uitgeschakeld, niet klikbaar */
.vca-filter-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

/* Form-filters (select, date) */
.vca-select,
.vca-input-date {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    font-size: 0.9rem;
    color: var(--vca-dark);
    background: #fff;
    box-sizing: border-box;
}

.vca-select:focus,
.vca-input-date:focus {
    outline: none;
    border-color: var(--vca-primary);
    box-shadow: 0 0 0 2px rgba(26, 172, 184, .2);
}

.vca-filter-form { margin: 0; }

/* ── Actieve filter chips ────────────────────────────────────────────── */
.vca-filter-chips-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}

.vca-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f7f9;
    color: var(--vca-primary);
    border: 1px solid var(--vca-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
    cursor: pointer;
}

.vca-chip:hover {
    background: var(--vca-primary);
    color: #fff;
}

.vca-chip-remove {
    font-size: 1.05rem;
    line-height: 1;
    opacity: .7;
}

.vca-chip-reset {
    background: transparent;
    border-color: #ccc;
    color: #888;
    font-weight: 400;
}

.vca-chip-reset:hover {
    background: #f0f0f0;
    color: #444;
    border-color: #aaa;
}

/* ── Hoofdkolom (resultaten) ─────────────────────────────────────────── */
.vca-main {
    flex: 1;
    min-width: 0;
}

/* ── Loading state bij filterklik ────────────────────────────────────── */
.vca-loading .vca-main {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.2s;
    cursor: wait;
}

.vca-loading .vca-archive-wrap {
    position: relative;
}

.vca-loading .vca-archive-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    z-index: 10;
    border-radius: 1rem;
}

.vca-loading-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--vca-primary);
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    animation: vca-loading-progress 1.5s ease-in-out infinite;
}

.vca-loading .vca-loading-bar { display: block; }

@keyframes vca-loading-progress {
    0%   { width: 0; opacity: 1; }
    60%  { width: 75%; opacity: 1; }
    100% { width: 92%; opacity: 0.8; }
}

.vca-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.vca-results-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.vca-sort-form { margin: 0; }

.vca-sort-select {
    padding: 7px 32px 7px 12px;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    font-size: 0.88rem;
    color: var(--vca-dark);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 12px center / 10px 6px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.vca-sort-select:focus {
    outline: none;
    border-color: var(--vca-primary);
    box-shadow: 0 0 0 2px rgba(26,172,184,.2);
}

.vca-notice {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.vca-notice--info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* ── Horizontale accommodatiekaart ───────────────────────────────────── */
.vca-card {
    display: flex;
    flex-wrap: wrap;        /* verblijven-rij kan wrappen naar volle breedte */
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    transition: box-shadow .25s, transform .2s;
    position: relative;
}

.vca-card:hover {
    box-shadow: 0 8px 28px rgba(26,172,184,.18);
    transform: translateY(-3px);
}

.vca-card-image {
    flex: 0 0 280px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    background: #ddd;
    border-radius: var(--vca-radius) 0 0 var(--vca-radius);
}

.vca-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

.vca-card-image-placeholder {
    width: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.vca-card-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.vca-card-rating .star { color: #f5a623; font-size: 1.05rem; }

/* Ribbon: horizontale full-width balk bovenaan de kaart */
.vca-ribbon {
    width: 100%;
    flex: 0 0 100%;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 16px;
    position: relative;
    z-index: 4;
}

/* Beste keus — dieppaars, handmatige promotie */
.vca-ribbon--promo {
    background: #5c3d8f;
    box-shadow: 0 2px 5px rgba(92,61,143,.35);
    font-size: 0.78rem;
    letter-spacing: 0.09em;
}

/* Best beoordeeld — warm goud */
.vca-ribbon--rated {
    background: #b07d2e;
    box-shadow: 0 2px 5px rgba(176,125,46,.3);
}

/* Beste selectie — zachter blauwgroen */
.vca-ribbon--match {
    background: #3a8a7e;
    box-shadow: 0 2px 5px rgba(58,138,126,.3);
}

.vca-ribbon span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vca-ribbon--rated span::before,
.vca-ribbon--rated span::after {
    content: '★';
    font-size: 0.62rem;
    opacity: .75;
}

.vca-ribbon--match span::before,
.vca-ribbon--match span::after {
    content: '✓';
    font-size: 0.65rem;
    opacity: .75;
}

.vca-ribbon--promo span::before,
.vca-ribbon--promo span::after {
    content: '◆';
    font-size: 0.55rem;
    opacity: .7;
}

.vca-card-body {
    flex: 1;
    padding: 20px 20px 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vca-card-top h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 6px;
}

.vca-card-top h3 a {
    color: inherit;
    text-decoration: none;
}

.vca-card-top h3 a:hover { color: var(--vca-primary); }

.vca-card-location {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.vca-card-excerpt {
    color: var(--vca-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.vca-tag {
    background: #f0f0f0;
    color: #555;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 20px;
}

.vca-card-amenities {
    list-style: none;
    margin: 8px 0 14px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.vca-card-amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #444;
}

.vca-card-amenity-item .vca-amenity-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vca-primary);
}

.vca-card-amenity-item .vca-amenity-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.vca-tag--amenity {
    background: #eef6f4;
    color: #2a7a6a;
}

.vca-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--vca-border);
    padding-top: 14px;
    margin-top: auto;
}

.vca-card-price {
    font-size: 0.875rem;
    color: #666;
}

.vca-card-price strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vca-primary);
    line-height: 1.1;
}

.vca-card-price small { display: block; font-size: 0.78rem; color: #888; }
.vca-card-price-unit { display: inline-block; margin-left: 2px; }

/* ── Prijs-tooltip (EU Richtlijn Consumentenrechten) ────────────────── */
.vca-price-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #555;
    font-size: 0.65rem;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    cursor: help;
    vertical-align: super;
    margin-left: 2px;
    position: relative;
    flex-shrink: 0;
    line-height: 1;
}

/* Tooltip wordt gerenderd via JS als .vca-price-tooltip op body */
.vca-price-tooltip {
    position: fixed;
    width: 260px;
    padding: 10px 12px;
    background: #1e293b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity .15s;
}
.vca-price-tooltip.is-visible {
    opacity: 1;
}



/* ── Sidebar disclaimer ─────────────────────────────────────────────── */
.vca-hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.vca-sidebar-disclaimer {
    max-width: 320px;
    padding: 10px 14px;
    background: rgba(255,255,255,.15);
    border-radius: var(--vca-radius);
    font-size: 0.68rem;
    line-height: 1.5;
    color: rgba(255,255,255,.85);
    flex-shrink: 0;
    margin-top: 4px;
}

.vca-sidebar-disclaimer p {
    margin: 0;
}

.vca-card-persons {
    font-size: 0.85rem;
    color: #666;
    margin-left: 16px;
}

.vca-btn-primary {
    display: inline-block;
    background: var(--vca-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 20px;
    border-radius: var(--vca-radius);
    border: 2px solid var(--vca-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, box-shadow .2s, transform .15s;
}

.vca-btn-primary:hover {
    background: var(--vca-primary-hover);
    border-color: var(--vca-primary-hover);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(26,172,184,.35);
    transform: translateY(-1px);
}

.vca-btn-primary:focus-visible {
    outline: 2px solid var(--vca-primary);
    outline-offset: 3px;
}

.vca-card-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}

.vca-type-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--vca-primary);
    background: color-mix(in srgb, var(--vca-primary) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--vca-primary) 30%, transparent);
    border-radius: 4px;
    padding: 2px 8px;
}

.vca-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--vca-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 20px;
    border-radius: var(--vca-radius);
    border: 2px solid var(--vca-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s, transform .15s;
}

.vca-btn-secondary:hover {
    background: var(--vca-primary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.vca-btn-secondary:focus-visible {
    outline: 2px solid var(--vca-primary);
    outline-offset: 3px;
}

.vca-unit-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
}

.vca-unit-card-actions .vca-btn-primary {
    flex: 2;
    font-size: 0.85rem;
    padding: 10px 8px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(26,172,184,.35);
}

.vca-unit-card-actions .vca-btn-primary:hover {
    box-shadow: 0 4px 14px rgba(26,172,184,.45);
    transform: none;
}

.vca-unit-card-actions .vca-btn-secondary {
    flex: 1;
    font-size: 0.85rem;
    padding: 10px 8px;
    text-align: center;
    white-space: nowrap;
    border-width: 1.5px;
}

.vca-unit-card-actions .vca-btn-secondary:hover {
    background: #eef9fa;
    color: var(--vca-primary);
    transform: none;
}

/* ── Geen resultaten ─────────────────────────────────────────────────── */
.vca-no-results {
    padding: 48px 40px;
    text-align: center;
    color: #666;
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
}

.vca-no-results-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.vca-no-results h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 10px;
}

.vca-no-results p {
    font-size: 0.9rem;
    margin: 0 0 14px;
}

.vca-no-results-suggestions {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.vca-no-results-suggestions li a {
    font-size: 0.88rem;
    color: var(--vca-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vca-no-results-suggestions li a::before {
    content: '×';
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.7;
}

.vca-no-results-suggestions li a:hover { text-decoration: underline; }

.vca-no-results-reset {
    display: inline-block;
    margin-top: 4px;
}

.vca-no-results-related {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--vca-border);
    text-align: left;
}

.vca-no-results-related h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 14px;
}

.vca-no-results-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vca-no-results-card {
    display: block;
    border-radius: var(--vca-radius);
    overflow: hidden;
    border: 1px solid var(--vca-border);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s;
}

.vca-no-results-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); }

.vca-no-results-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.vca-no-results-card-placeholder {
    width: 100%;
    height: 110px;
    background: var(--vca-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vca-no-results-card-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vca-no-results-card-body strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vca-dark);
}

.vca-no-results-card-body span {
    font-size: 0.78rem;
    color: #666;
}

@media (max-width: 600px) {
    .vca-no-results-related-grid { grid-template-columns: 1fr; }
}

/* ── Paginering ──────────────────────────────────────────────────────── */
.vca-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.vca-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    color: var(--vca-text);
    text-decoration: none;
    font-size: 0.9rem;
    background: #fff;
}

.vca-pagination .page-numbers.current {
    background: var(--vca-primary);
    border-color: var(--vca-primary);
    color: #fff;
    font-weight: 700;
}

.vca-pagination .page-numbers:hover:not(.current) {
    border-color: var(--vca-primary);
    color: var(--vca-primary);
}

/* ── Shortcode wrapper ───────────────────────────────────────────────── */
.vca-shortcode-wrap .vca-archive-wrap {
    margin-top: 0;
}

/* ── Beschrijving (onder shortcode op landingspagina's) ──────────────── */
.vca-landing-description {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    font-size: 0.975rem;
    line-height: 1.75;
    color: var(--vca-text);
}

.vca-landing-description h2,
.vca-landing-description h3 {
    color: var(--vca-dark);
    margin-top: 0;
}

/* ── Verblijven-kaarten onder parkkaart ──────────────────────────────── */
.vca-card-units {
    flex-basis: 100%;
    border-top: 1px solid var(--vca-border);
    padding: 0 20px 16px;
}

.vca-units-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #aaa;
    padding: 10px 0 8px;
    border-bottom: 1px solid var(--vca-border);
    margin-bottom: 12px;
}

.vca-units-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

/* Regio-widget kolommen-override (vca-unit-cards in regio context) */
.vca-units-grid.vr-accoms-grid--2col { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.vca-units-grid.vr-accoms-grid--3col { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vca-units-grid.vr-accoms-grid--4col { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) {
    .vca-units-grid.vr-accoms-grid--3col,
    .vca-units-grid.vr-accoms-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .vca-units-grid.vr-accoms-grid--2col,
    .vca-units-grid.vr-accoms-grid--3col,
    .vca-units-grid.vr-accoms-grid--4col { grid-template-columns: 1fr; }
}

/* ── Unit card: uitklapbaar ──────────────────────────────────────────── */
.vca-unit-card {
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    display: flex;
    flex-direction: column;
}

/* Altijd zichtbare samenvattingsrij */
.vca-unit-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: background .15s;
}

.vca-unit-summary:hover { background: #fafafa; }

.vca-unit-summary-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Uitklaptoggle knop */
.vca-unit-toggle {
    background: none !important;
    border: none;
    cursor: pointer;
    padding: 2px 4px;
    color: #888;
    line-height: 1;
    display: flex;
    align-items: center;
}

.vca-unit-toggle:hover,
.vca-unit-toggle:focus {
    background: none !important;
    color: #555 !important;
}

.vca-toggle-icon {
    display: inline-block;
    font-size: 1.1rem;
    transform: rotate(90deg);   /* › → ↓ = ingeklapt */
    transition: transform .2s;
}

.vca-unit-card.is-open .vca-toggle-icon {
    transform: rotate(-90deg);  /* › → ↑ = uitgeklapt */
}

/* Detailpaneel: verborgen tot uitklapt */
.vca-unit-details {
    display: none;
    flex-direction: row;
    border-top: 1px solid var(--vca-border);
}

.vca-unit-card.is-open .vca-unit-details { display: flex; }

/* Thumb (afbeelding/gallery) */
.vca-unit-card-thumb {
    flex: 0 0 224px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

/* Gallery wrapper */
.vca-unit-gallery {
    position: relative;
    height: 100%;
    min-height: 160px;
}

.vca-unit-gallery a { display: block; height: 100%; }

.vca-unit-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery navigatiepijlen */
.vca-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .15s, background .15s;
    padding: 0;
    z-index: 2;
}

.vca-unit-card-thumb:hover .vca-gallery-btn,
.vca-card-image:hover .vca-gallery-btn { opacity: 1; }
.vca-gallery-btn:hover { background: rgba(0,0,0,.7); }
.vca-gallery-prev { left: 5px; }
.vca-gallery-next { right: 5px; }

/* Gallery teller */
.vca-gallery-counter {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 10px;
    pointer-events: none;
}

.vca-unit-card-placeholder {
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
}

/* Content naast de afbeelding in het detailpaneel */
.vca-unit-card-body {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

/* Bovenste rij: meta-info links, beoordeling rechts */
.vca-unit-body-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.vca-unit-body-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vca-unit-card-persons {
    font-size: 0.74rem;
    color: #888;
}

.vca-unit-card-location {
    font-size: 0.74rem;
    color: #666;
}

.vca-unit-card-rating {
    background: rgba(0,0,0,.62);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.vca-unit-card-rating .star { color: #f5a623; }

.vca-unit-card-excerpt {
    font-size: 0.76rem;
    color: var(--vca-text);
    line-height: 1.45;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-unit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 2px;
}

.vca-unit-tags .vca-tag {
    font-size: 0.7rem;
    padding: 2px 7px;
}

.vca-unit-card-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vca-dark);
    line-height: 1.25;
}

/* Prijs in summary-rij */
.vca-unit-summary .vca-unit-card-price {
    margin: 0;
    text-align: right;
}

.vca-unit-card-price small {
    display: block;
    font-size: 0.68rem;
    color: #888;
}

.vca-unit-card-price strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vca-dark);
    line-height: 1.1;
}

/* Bekijken-knop in detailpaneel: 20% groter dan de mini-variant */
.vca-unit-details .vca-btn-primary {
    margin-top: auto;
    align-self: flex-end;
    display: inline-block;
    font-size: 0.82rem;
    padding: 5px 12px;
}

.vca-units-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 4px 14px;
    transition: color .15s, border-color .15s;
}

.vca-units-more:hover {
    color: var(--vca-primary);
    border-color: var(--vca-primary);
    text-decoration: none;
}

/* ── Unit pills (experimenteel, VCA_UNIT_DISPLAY = 'pills') ─────────── */
.vca-unit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 16px 6px;
}

.vca-unit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f7f7f7;
    border: 1px solid var(--vca-border);
    border-radius: 20px;
    padding: 5px 12px;
    text-decoration: none;
    color: var(--vca-dark);
    font-size: 0.82rem;
    transition: background .15s, border-color .15s;
}

.vca-unit-pill:hover {
    background: #edf7f8;
    border-color: var(--vca-primary);
    text-decoration: none;
}

.vca-unit-pill-name { font-weight: 600; }
.vca-unit-pill-persons { color: #888; font-size: 0.78rem; }
.vca-unit-pill-price { color: var(--vca-primary); font-weight: 700; font-size: 0.82rem; margin-left: 2px; }

/* ── Mobile sidebar filter toggle ─────────────────────────────────── */
.vca-sidebar-toggle {
    display: none; /* zichtbaar op mobiel via media query */
}

.vca-sidebar-overlay {
    display: none;
}

.vca-sidebar-close {
    display: none; /* zichtbaar op mobiel */
}

.vca-mobile-action-bar {
    display: none; /* zichtbaar op mobiel via media query */
}

.vca-mobile-sort-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #fff;
    border: 1.5px solid var(--vca-border);
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
    overflow: hidden;
}
.vca-mobile-sort-wrap.is-active {
    border-color: var(--vca-primary);
    color: var(--vca-primary);
}
.vca-mobile-sort-form {
    position: absolute;
    inset: 0;
    margin: 0;
}
.vca-mobile-sort-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 16px; /* voorkomt zoom op iOS */
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .vca-archive-wrap { flex-direction: column; }
    .vca-card { flex-direction: column; }
    .vca-card-image { max-width: 100%; flex: none; }
    .vca-landing-description { padding: 24px 20px; }
    .vca-units-grid { grid-template-columns: 1fr; }
    .vca-unit-details { flex-direction: column; }
    .vca-unit-card-thumb { flex: none; height: 140px; }
    .vca-unit-gallery { min-height: 140px; }

    /* Mobiele actie-balk: sorteer + filters rechts uitgelijnd */
    .vca-mobile-action-bar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0 16px 12px;
        gap: 8px;
        width: 100%;
        align-self: stretch;
        box-sizing: border-box;
    }

    /* Filter toggle knop — groter, rechts */
    .vca-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 22px;
        background: var(--vca-primary);
        border: none;
        border-radius: 24px;
        font-size: 0.92rem;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 3px 10px rgba(26,172,184,.35);
        white-space: nowrap;
    }
    .vca-sidebar-toggle:active { background: var(--vca-primary-hover); }

    .vca-sidebar-toggle-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        background: #fff;
        color: var(--vca-primary);
        font-size: 0.7rem;
        font-weight: 800;
        border-radius: 10px;
    }

    /* Sort select verbergen in results-bar op mobiel (zit nu in actie-balk) */
    .vca-results-bar .vca-sort-form { display: none; }

    /* Sidebar als slide-in drawer */
    .vca-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 85%;
        max-width: 360px;
        max-height: none;
        height: 100%;
        z-index: 2000;
        background: #fff;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        transform: translateX(-100%);
        transition: transform .3s ease;
        box-shadow: none;
        padding-bottom: 40px;
    }
    .vca-sidebar.is-open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,.15);
    }

    /* Overlay achter drawer */
    .vca-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1999;
        background: rgba(0,0,0,.4);
    }
    .vca-sidebar-overlay.is-open { display: block; }

    /* Sluitknop in sidebar header — prominent ×-icoon */
    .vca-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1.5px solid #e2e8f0;
        background: #fff;
        border-radius: 50%;
        color: #1e293b;
        cursor: pointer;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }
    .vca-sidebar-close:hover { background: #f8fafc; border-color: #cbd5e1; }
    .vca-sidebar-close:active { background: #f1f5f9; }

    /* Header met acties naast elkaar */
    .vca-sidebar-header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   ZOEKBALK  (.vsb-*)
   ═══════════════════════════════════════════════════════════════════════ */

.vsb-wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Container */
.vsb-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 8px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 25px -5px rgba(26,172,184,.15);
    position: relative;
}

/* Secties */
.vsb-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    cursor: pointer;
    border-right: 1px solid #f1f5f9;
    transition: background .2s;
    border-radius: 1rem;
    min-width: 0;
}

.vsb-section--last { border-right: none; }
.vsb-section:hover { background: rgba(26,172,184,.08); }
.vsb-section.vsb-section--open { background: rgba(26,172,184,.15); }

/* Icon cirkel */
.vsb-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26,172,184,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--vca-primary);
}

.vsb-icon svg { width: 20px; height: 20px; }

/* Label groep */
.vsb-label-group {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
}

.vsb-label-top {
    font-size: 0.625rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 2px;
}

.vsb-label-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a2b3c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Panel (dropdown) */
.vsb-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,64,128,.15);
    z-index: 200;
    padding: 20px;
    min-width: 300px;
}

.vsb-panel--open { display: block; }

.vsb-panel--date { min-width: 272px; }
.vsb-panel--guest { min-width: 280px; }

.vsb-panel-title {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 12px;
    letter-spacing: .04em;
}

/* Bestemming inline input (in sectie-header) */
.vsb-wrap .vsb-dest-search,
.vsb-wrap .vsb-dest-search:focus,
.vsb-wrap .vsb-dest-search:active {
    display: block;
    width: 100%;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0.938rem;
    font-weight: 700;
    color: #1a2b3c;
    cursor: text;
    line-height: 1.3;
}

.vsb-wrap .vsb-dest-search::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Suggesties dropdown */
.vsb-dest-suggestions { margin-bottom: 6px; }

.vsb-sugg-header {
    font-size: 0.625rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 12px 2px;
    margin: 0;
}

.vsb-wrap .vsb-sugg-item,
.vsb-wrap .vsb-sugg-item:focus,
.vsb-wrap .vsb-sugg-item:active {
    width: 100%;
    text-align: left;
    background: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: background .15s;
}
.vsb-wrap .vsb-sugg-item:hover { background: rgba(26,172,184,.1); }

.vsb-sugg-label { font-size: 0.812rem; font-weight: 700; color: #1a2b3c; }
.vsb-sugg-sub   { font-size: 0.688rem; color: #64748b; }

.vsb-sugg-empty {
    font-size: 0.812rem;
    color: #94a3b8;
    padding: 10px 12px;
    margin: 0;
}

/* Bestemmingen lijst */
.vsb-dest-list {
    max-height: 220px;
    overflow-y: auto;
}

.vsb-dest-group { margin-bottom: 6px; }

.vsb-dest-country {
    display: block;
    font-size: 0.625rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 12px 2px;
}

.vsb-dest-item {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 0.812rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    color: #1a2b3c;
    transition: background .15s, color .15s;
}

.vsb-dest-item--all    { font-weight: 800; }
.vsb-dest-item--region { padding-left: 20px; }
.vsb-dest-item--city   { padding-left: 32px; font-weight: 500; font-size: 0.75rem; color: #475569; }

.vsb-dest-item:hover                   { background: rgba(26,172,184,.1); color: var(--vca-primary); }
.vsb-dest-item.vsb-dest-item--selected { background: rgba(26,172,184,.1); color: var(--vca-primary); }

/* Type-dropdown */
.vsb-panel--type { min-width: 180px; padding: 8px; }

.vsb-type-item {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 9px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    color: #1a2b3c;
    transition: background .15s, color .15s;
    display: block;
}

.vsb-type-item--all { font-weight: 800; }
.vsb-type-item:hover                     { background: rgba(26,172,184,.1); color: var(--vca-primary); }
.vsb-type-item.vsb-type-item--selected   { background: rgba(26,172,184,.1); color: var(--vca-primary); font-weight: 700; }

/* Kalender */
.vsb-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
}

.vsb-cal-month {
    font-size: 0.688rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vsb-wrap .vsb-cal-nav {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2b3c;
    padding: 0;
    transition: background .2s;
    flex-shrink: 0;
}
.vsb-wrap .vsb-cal-nav:disabled { opacity: .3; cursor: default; pointer-events: none; }

.vsb-wrap .vsb-cal-nav:hover:not(:disabled) { background: #e2e8f0; color: #1a2b3c; }

.vsb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.vsb-cal-weekdays span {
    font-size: 0.625rem;
    font-weight: 900;
    text-align: center;
    color: #cbd5e1;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.vsb-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }

.vsb-wrap .vsb-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    color: #1a2b3c;
    border: 1px solid #e2e8f0;
    background: none;
    transition: all .15s;
}

.vsb-wrap .vsb-cal-day:hover:not(.vsb-cal-day--empty):not(.vsb-cal-day--past) {
    background: rgba(26,172,184,.08);
    border-color: var(--vca-primary);
    color: var(--vca-primary);
}

.vsb-wrap .vsb-cal-day--selected { background: var(--vca-primary); color: #fff; border-color: var(--vca-primary); border-radius: 7px; }
.vsb-wrap .vsb-cal-day--in-range { background: rgba(26,172,184,.12); color: var(--vca-primary-hover); border-color: transparent; border-radius: 0; }
.vsb-wrap .vsb-cal-day--range-start { border-radius: 7px 0 0 7px; }
.vsb-wrap .vsb-cal-day--range-end { border-radius: 0 7px 7px 0; }
.vsb-wrap .vsb-cal-day--today { box-shadow: inset 0 0 0 2px var(--vca-primary); border-color: var(--vca-primary); }
.vsb-wrap .vsb-cal-day--past { color: #cbd5e1; border-color: #f1f5f9; background: none; font-weight: 400; cursor: default; pointer-events: none; }
.vsb-wrap .vsb-cal-day--empty { border-color: transparent; pointer-events: none; }

/* Kindervakanties snelle selectie */
.vsb-holidays {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0 2px;
    border-top: 1px solid #f1f5f9;
    margin-top: 8px;
}
.vsb-holidays-label {
    font-size: 0.562rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: .05em;
    width: 100%;
    margin-bottom: 2px;
}
.vsb-wrap .vsb-holiday-btn {
    font-size: 0.625rem;
    font-weight: 700;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 20px;
    padding: 3px 9px;
    background: none;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.vsb-wrap .vsb-holiday-btn:hover { background: #000; color: #fff; }

/* Gezelschap tellers */
.vsb-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.vsb-guest-row--divider { border-top: 1px solid #f1f5f9; padding-top: 16px; }
.vsb-guest-title { font-size: 0.875rem; font-weight: 700; color: #1a2b3c; }
.vsb-guest-sub { font-size: 0.625rem; font-weight: 700; color: #767676; margin-top: 2px; }

.vsb-counter { display: flex; align-items: center; gap: 14px; }

.vsb-count-btn {
    width: 34px;
    height: 34px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 9px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #1a2b3c;
    transition: all .2s;
}

.vsb-count-btn:hover { border-color: var(--vca-primary); color: var(--vca-primary); }
.vsb-count-btn:disabled { opacity: .35; cursor: default; pointer-events: none; }

.vsb-count-val { font-size: 0.938rem; font-weight: 900; min-width: 18px; text-align: center; }

/* Footer knoppen in panel */
.vsb-panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.vsb-reset-link {
    font-size: 0.625rem;
    font-weight: 800;
    color: var(--vca-primary);
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    padding: 8px 4px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
}

.vsb-confirm-btn {
    background: #1a2b3c;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .2s;
}

.vsb-confirm-btn:hover { background: #0f1e2d; }

.vsb-confirm-btn--full {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 0.688rem;
    margin-top: 8px;
}

/* Zoekknop */
.vsb-search-btn {
    background: var(--vca-primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 1.2rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s;
    box-shadow: 0 8px 15px -3px rgba(26,172,184,.3);
}

.vsb-search-btn:hover { background: var(--vca-primary-hover); transform: translateY(-1px); }
.vsb-search-btn:active { transform: scale(.97); }

/* ═══════════════════════════════════════════════════════════════════════
   REFINEMENT BAR  (.vca-rfb-*)  — archive paginafilter, boven resultaten
   Hergebruikt .vsb-* CSS; enkel plaatsing en maatafwijkingen hier.
   ═══════════════════════════════════════════════════════════════════════ */

.vca-rfb-outer {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 0 24px;
}

/* Compactere container dan de zoekbalk */
.vca-rfb-outer .vsb-container {
    border-radius: 1rem;
    padding: 4px;
    box-shadow: 0 4px 12px -2px rgba(0,64,128,.1);
}

/* Iets kleiner dan de zoekbalk-secties */
.vca-rfb-outer .vsb-section {
    padding: 10px 16px;
}

.vca-rfb-outer .vsb-icon {
    width: 34px;
    height: 34px;
}

/* Panel-positionering: items rechts gaan niet buiten scherm */
.vca-rfb-outer .vsb-section:last-of-type .vsb-panel,
.vca-rfb-outer .vsb-section:nth-last-of-type(2) .vsb-panel {
    left: auto;
    right: 0;
}

/* Toepassen-knop */
.vca-rfb-apply {
    background: #1a2b3c;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: .8rem;
    font-size: 0.688rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s;
    align-self: center;
    margin-left: 4px;
}
.vca-rfb-apply:hover { background: #0f1e2d; }

/* Dagen-keuze lijst in panel */
.vca-rfb-days-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0;
}

.vca-rfb-day-opt {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2b3c;
    cursor: pointer;
    transition: all .15s;
}
.vca-rfb-day-opt:hover { border-color: #00609b; color: #00609b; }
.vca-rfb-day-opt.is-selected { background: #1a2b3c; color: #fff; border-color: #1a2b3c; }

@media (max-width: 768px) {
    /* Refinement bar */
    .vca-rfb-outer { padding: 0 12px; }
    .vca-rfb-outer .vsb-container { flex-direction: column; border-radius: .8rem; }
    .vca-rfb-outer .vsb-section { border-right: none; border-bottom: 1px solid #f1f5f9; justify-content: space-between; }
    .vca-rfb-outer .vsb-section--last { border-bottom: 1px solid #f1f5f9; }
    .vca-rfb-apply { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; border-radius: .8rem; }

    /* Chevron rechts in elke rfb-sectie op mobiel */
    .vca-rfb-outer .vsb-section::after {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        border-right: 2px solid #94a3b8;
        border-bottom: 2px solid #94a3b8;
        transform: rotate(-45deg);
        flex-shrink: 0;
        margin-right: 2px;
    }

    /* Disclaimer: onder de titel stacken zodat hij volledig zichtbaar is */
    .vca-hero-content { flex-direction: column; gap: 12px; }
    .vca-sidebar-disclaimer { max-width: 100%; flex-shrink: 1; }

    /* Unit filter bar (enkele parkpagina) — 2×2 grid */
    .vsb-wrap[data-uf] .vsb-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: .8rem;
        padding: 4px;
    }
    .vsb-wrap[data-uf] .vsb-section {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 10px 12px;
        gap: 8px;
        border-radius: 0;
        min-width: 0;
    }
    .vsb-wrap[data-uf] .vsb-section[data-uf-panel="date"]  { grid-column: 1; grid-row: 1; border-right: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
    .vsb-wrap[data-uf] .vsb-section[data-uf-panel="days"]  { grid-column: 2; grid-row: 1; border-bottom: 1px solid #f1f5f9; }
    .vsb-wrap[data-uf] .vsb-section[data-uf-panel="guest"] { grid-column: 1; grid-row: 2; border-right: 1px solid #f1f5f9; }
    .vsb-wrap[data-uf] .vsb-section--last                  { grid-column: 2; grid-row: 2; }
    .vsb-wrap[data-uf] .vsb-icon { width: 28px; height: 28px; flex-shrink: 0; }
    .vsb-wrap[data-uf] .vsb-icon svg { width: 14px; height: 14px; }
    .vsb-wrap[data-uf] .vsb-label-group { align-items: flex-start; }
    .vsb-wrap[data-uf] .vsb-label-top { font-size: 0.55rem; margin-bottom: 0; }
    .vsb-wrap[data-uf] .vsb-label-value { font-size: 0.72rem; }

    /* Search bar — velden onder elkaar gestapeld (1 kolom) */
    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-container {
        display: flex;
        flex-direction: column;
        border-radius: 1.2rem;
        padding: 6px;
        gap: 0;
        overflow: visible;
    }

    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-section[data-panel="type"],
    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-section[data-panel="dest"],
    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-section[data-panel="date"],
    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-section[data-panel="guest"] {
        display: flex;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-section[data-panel="guest"] {
        border-bottom: none;
    }

    /* Secties: rij-layout (icon links, tekst rechts), links uitgelijnd */
    .vsb-wrap:not([data-rfb]):not([data-uf]) .vsb-section {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 10px 12px;
        gap: 8px;
        border-radius: 0;
        min-width: 0;
    }
    .vsb-section { border-right: none; border-bottom: none; }
    .vsb-section--last { border-right: none; border-bottom: none; }

    /* Iconen kleiner */
    .vsb-wrap:not([data-rfb]) .vsb-icon { width: 28px; height: 28px; flex-shrink: 0; }
    .vsb-wrap:not([data-rfb]) .vsb-icon svg { width: 14px; height: 14px; }

    /* Labels links uitgelijnd */
    .vsb-wrap:not([data-rfb]) .vsb-label-group { align-items: flex-start; }
    .vsb-wrap:not([data-rfb]) .vsb-label-top { font-size: 0.55rem; margin-bottom: 0; }
    .vsb-wrap:not([data-rfb]) .vsb-label-value { font-size: 0.72rem; }

    /* Bestemming input links uitgelijnd */
    .vsb-dest-search { font-size: 0.72rem; text-align: left; max-width: 100%; }

    /* Zoekknop full-width */
    .vsb-search-btn { width: 100%; justify-content: center; border-radius: .8rem; margin-top: 4px; flex: 0 0 100%; }

    /* Panels inline tonen onder het actieve veld op mobile, gespannen over hele bar */
    .vsb-wrap { position: relative; }
    .vsb-wrap .vsb-section { position: static; }
    .vsb-wrap .vsb-panel {
        max-height: none;
        overflow: hidden;
        min-width: 0;
        width: auto;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 14px;
    }
    /* Calendar cellen schalen mee met breedte; geen min-height op kleine schermen */
    .vsb-wrap .vsb-cal-day { min-height: 0; font-size: 0.85rem; }

    /* Zoekbalk iets meer ruimte van de navigatie/logo */
    .vsb-wrap:not([data-rfb]):not([data-uf]) { margin-top: 40px; }

    .vsb-tabs { overflow-x: auto; padding-bottom: 0; }
}

/* ── Bottom-sheet backdrop (mobile filter sheets) ──────────────────────────── */
.vca-uf-sheet-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 998; }
.vca-uf-sheet-backdrop[hidden] { display: none; }

/* Extra compact op kleine telefoons */
@media (max-width: 374px) {
    .vsb-section { padding: 8px 6px; }
    .vsb-wrap:not([data-rfb]) .vsb-label-value { font-size: 0.65rem; }
    .vsb-wrap:not([data-rfb]) .vsb-icon { width: 24px; height: 24px; }
    .vsb-wrap:not([data-rfb]) .vsb-icon svg { width: 12px; height: 12px; }
}

/* Kalendercel grootte op smalle schermen */
@media (max-width: 480px) {
    .vsb-cal-day { min-height: 40px; font-size: 0.9rem; }
}

/* ── Landing page ─────────────────────────────────────────────────────────── */
.vca-landing-wrap        { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }
.vca-landing-hero        { position: relative; background: linear-gradient(160deg, #0c2236 0%, #154e6e 55%, #1a7a9a 100%); color: #fff;
                            padding: 60px 20px 90px; text-align: center; margin-bottom: 40px; overflow: hidden; }
.vca-landing-hero::after { content: ''; position: absolute; bottom: -1px; left: -2%; width: 104%; height: 50px;
                            background: #fff; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.vca-landing-hero--img   { background-size: cover; background-position: center; }
.vca-landing-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.vca-landing-hero > *    { position: relative; z-index: 1; }
.vca-landing-h1          { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800;
                            margin: 0 0 12px; line-height: 1.2; }
.vca-landing-subtitle    { font-size: 1.05rem; opacity: .88; margin: 0; }
.vca-landing-count       { display: inline-block; margin-top: 14px; background: rgba(255,255,255,.15);
                            border: 1px solid rgba(255,255,255,.3); padding: 4px 14px;
                            border-radius: 20px; font-size: .9rem; }

.vca-landing-breadcrumb  { font-size: .85rem; color: #64748b; margin-bottom: 24px; }
.vca-landing-breadcrumb a { color: #64748b; text-decoration: none; }
.vca-landing-breadcrumb a:hover { text-decoration: underline; }
.vca-landing-breadcrumb span { margin: 0 6px; }

.vca-landing-intro       { max-width: 800px; margin: 0 auto 40px; font-size: 1.05rem;
                            line-height: 1.75; color: #334155; }
.vca-landing-intro h2,
.vca-landing-intro h3    { color: #1e293b; }

.vca-landing-section-title { font-size: 1.25rem; font-weight: 700; color: #1e293b;
                              margin: 0 0 20px; padding-bottom: 10px;
                              border-bottom: 2px solid #e2e8f0; }

.vca-landing-grid        { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                            gap: 24px; }
.vca-landing-divider     { border: none; border-top: 1px solid #e2e8f0; margin: 48px 0; }

.vca-faq-section         { max-width: 800px; margin: 0 auto; }
.vca-faq-section h2      { font-size: 1.4rem; font-weight: 700; color: #1e293b; margin-bottom: 24px; }
.vca-faq-item            { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.vca-faq-q               { width: 100%; text-align: left; background: #f8fafc; border: none;
                            padding: 16px 20px; font-size: 1rem; font-weight: 600; cursor: pointer;
                            display: flex; justify-content: space-between; align-items: center; color: #1e293b; }
.vca-faq-q::after        { content: '+'; font-size: 1.4rem; font-weight: 300; color: #94a3b8; transition: transform .2s; }
.vca-faq-item.is-open .vca-faq-q::after { transform: rotate(45deg); }
.vca-faq-a               { display: none; padding: 0 20px 18px; color: #475569; line-height: 1.7; font-size: .95rem; }
.vca-faq-item.is-open .vca-faq-a { display: block; }

.vca-landing-no-results  { text-align: center; padding: 60px 20px; color: #64748b; }
.vca-landing-no-results h3 { font-size: 1.3rem; color: #1e293b; margin-bottom: 10px; }

@media (max-width: 640px) {
    .vca-landing-grid { grid-template-columns: 1fr; }
}

/* ── Kaartweergave ───────────────────────────────────────────────────── */
.vca-results-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vca-map-toggle,
button.vca-map-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff !important;
    border: 1.5px solid var(--vca-primary) !important;
    border-radius: 6px;
    color: var(--vca-primary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: none !important;
}

.vca-map-toggle:hover,
.vca-map-toggle:focus,
.vca-map-toggle:active,
.vca-map-toggle.is-active,
button.vca-map-toggle:hover,
button.vca-map-toggle:focus,
button.vca-map-toggle:active,
button.vca-map-toggle.is-active {
    background: var(--vca-primary) !important;
    border-color: var(--vca-primary) !important;
    color: #fff !important;
}

#vcaMapContainer {
    position: relative;        /* Voor de fullscreen-knop */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

#vcaMap {
    width: 100%;
    height: 460px;
    background-color: #e8e4dc;
}

/* Leaflet popup */
.vca-map-popup .leaflet-popup-content-wrapper {
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.16);
}

.vca-map-popup .leaflet-popup-content { margin: 0; width: 220px !important; }

.vca-map-popup-inner {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.vca-map-popup-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.vca-map-popup-name {
    display: block;
    padding: 10px 12px 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    transition: color .15s;
}

.vca-map-popup-inner:hover .vca-map-popup-name { color: var(--vca-primary); }

.vca-map-popup-btn {
    display: block;
    margin: 0 12px 12px;
    padding: 8px 12px;
    background: var(--vca-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    transition: background .15s;
}

.vca-map-popup-inner:hover .vca-map-popup-btn { background: var(--vca-primary-hover); }

/* In fullscreen: popup verbergen (kaart heeft geen popup nodig) */
.vca-archive-wrap:fullscreen .leaflet-popup,
.vca-archive-wrap:-webkit-full-screen .leaflet-popup { display: none !important; }

/* Prijs-pin op de kaart */
.vca-map-pin {
    background: var(--vca-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    border: 2px solid #fff;
    transform: translateX(-50%);
    display: inline-block;
    cursor: pointer;
    transition: transform .1s;
}

.vca-map-pin:hover,
.vca-map-pin.is-hover {
    transform: translateX(-50%) scale(1.12);
    background: var(--vca-primary-dark, #148a94);
    z-index: 1000 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
}

/* Card highlight wanneer marker op kaart wordt geklikt */
.vca-card.is-map-active {
    border-color: var(--vca-primary);
    box-shadow: 0 0 0 2px var(--vca-primary), 0 8px 28px rgba(26,172,184,.22);
}

@media (max-width: 768px) {
    #vcaMap { height: 320px; }
    .vca-map-toggle-label { display: none; }
    .vca-map-toggle { padding: 7px 10px; }
}

/* ── Kaart fullscreen-knop ───────────────────────────────────────────────── */
.vca-map-fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 6px;
    padding: 7px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    color: #334155;
    transition: background .15s;
    line-height: 0;
}

.vca-map-fullscreen-btn:hover,
.vca-map-fullscreen-btn:focus {
    background: #f0ede6 !important;
    color: #334155 !important;
}

.vca-map-fullscreen-btn .icon-compress { display: none; }
.vca-map-fullscreen-btn.is-fullscreen .icon-expand  { display: none; }
.vca-map-fullscreen-btn.is-fullscreen .icon-compress { display: block; }

/* ── Fullscreen (Fullscreen API op .vca-archive-wrap) ────────────────────── */
.vca-archive-wrap:fullscreen,
.vca-archive-wrap:-webkit-full-screen {
    display:    flex;
    flex-direction: row;
    max-width:  none;
    width:      100vw;
    height:     100vh;
    margin:     0;
    padding:    0;
    gap:        0;
    background: #f4f1ea;
    overflow:   hidden;
    position:   relative;
}

/* Links: sidebar (filters) + cards — 25% breedte, scrollbaar */
.vca-archive-wrap:fullscreen .vca-sidebar,
.vca-archive-wrap:-webkit-full-screen .vca-sidebar {
    position:      static;
    flex:          0 0 25%;
    width:         25%;
    height:        100%;
    max-height:    100%;
    overflow-y:    auto;
    border-radius: 0;
    border:        none;
    border-right:  1px solid #ddd;
    box-shadow:    none;
    padding:       16px;
    align-self:    stretch;
    top:           auto;
    box-sizing:    border-box;
}

/* Rechts: .vca-main — 75% breedte, flex column */
.vca-archive-wrap:fullscreen .vca-main,
.vca-archive-wrap:-webkit-full-screen .vca-main {
    flex:           0 0 75%;
    width:          75%;
    height:         100%;
    display:        flex;
    flex-direction: column;
    min-height:     0;
    overflow:       hidden;
}

/* Results-bar: compact strookje bovenin */
.vca-archive-wrap:fullscreen .vca-results-bar,
.vca-archive-wrap:-webkit-full-screen .vca-results-bar {
    flex-shrink:   0;
    padding:       8px 52px 8px 16px; /* rechts ruimte voor ✕ knop */
    background:    #fff;
    border-bottom: 1px solid #eee;
}

/* Kaart-toggle verbergen in fullscreen (✕ sluit alles) */
.vca-archive-wrap:fullscreen #vcaMapToggle,
.vca-archive-wrap:-webkit-full-screen #vcaMapToggle {
    display: none;
}

/* Chips + fav-bar: verbergen (sidebar toont alle filters) */
.vca-archive-wrap:fullscreen .vca-filter-chips-bar,
.vca-archive-wrap:fullscreen .vca-fav-bar,
.vca-archive-wrap:-webkit-full-screen .vca-filter-chips-bar,
.vca-archive-wrap:-webkit-full-screen .vca-fav-bar {
    display: none;
}

/* Kaart: vult de resterende hoogte van .vca-main */
.vca-archive-wrap:fullscreen #vcaMapContainer,
.vca-archive-wrap:-webkit-full-screen #vcaMapContainer {
    display:       block !important;
    flex:          1 1 0%;
    min-height:    0;
    border-radius: 0;
    margin:        0;
    box-shadow:    none;
    overflow:      hidden;
}

.vca-archive-wrap:fullscreen #vcaMap,
.vca-archive-wrap:-webkit-full-screen #vcaMap {
    width:  100%;
    height: 100%;
}

/* Cards: initieel verborgen, schuift open bij popup-klik op marker */
.vca-archive-wrap:fullscreen #vcaCardsWrap,
.vca-archive-wrap:-webkit-full-screen #vcaCardsWrap {
    flex:       0 0 0%;
    min-height: 0;
    overflow:   hidden;
    padding:    0;
    background: #f4f1ea;
    border-top: 1px solid transparent;
    transition: flex-basis .3s ease, padding .3s ease, border-color .3s ease;
}

.vca-archive-wrap:fullscreen #vcaCardsWrap.is-open,
.vca-archive-wrap:-webkit-full-screen #vcaCardsWrap.is-open {
    flex:           0 0 33%;
    display:        flex;
    flex-direction: column;
    overflow:       hidden;
    border-color:   #ddd;
}

/* Scrollbare scroll-wrapper */
.vca-archive-wrap:fullscreen .vca-cards-scroll,
.vca-archive-wrap:-webkit-full-screen .vca-cards-scroll {
    flex:       1;
    min-height: 0;
    overflow-y: auto;
    padding:    12px 16px;
}

/* Sluitknop fullscreen */
#vcaFsClose {
    position:   absolute;
    top:        12px;
    right:      12px;
    z-index:    10000;
    background: rgba(0,0,0,.55);
    color:      #fff;
    border:     none;
    border-radius: 50%;
    width:      32px;
    height:     32px;
    font-size: 1.125rem;
    line-height: 1;
    cursor:     pointer;
    display:    none;
    align-items: center;
    justify-content: center;
}

.vca-archive-wrap:fullscreen #vcaFsClose,
.vca-archive-wrap:-webkit-full-screen #vcaFsClose {
    display: flex;
}

/* Header-balk cards-paneel */
.vca-cards-panel-bar {
    display:         none;
    align-items:     center;
    justify-content: flex-end;
    padding:         6px 12px;
    border-bottom:   1px solid #eee;
    background:      #fff;
    flex-shrink:     0;
}

.vca-archive-wrap:fullscreen #vcaCardsWrap.is-open .vca-cards-panel-bar,
.vca-archive-wrap:-webkit-full-screen #vcaCardsWrap.is-open .vca-cards-panel-bar {
    display: flex;
}

#vcaCardsPanelClose {
    background:  none;
    border:      none;
    font-size:   0.82rem;
    font-weight: 600;
    color:       #64748b;
    cursor:      pointer;
    padding:     4px 8px;
    border-radius: 4px;
}

#vcaCardsPanelClose:hover {
    background: #f1f5f9;
    color:      #334155;
}

@media (max-width: 768px) {
    .vca-map-fullscreen-btn { top: 8px; right: 8px; }
    /* Mobile fullscreen: column layout (action-bar bovenin, dan main met map) */
    .vca-archive-wrap:fullscreen,
    .vca-archive-wrap:-webkit-full-screen {
        flex-direction: column;
    }
    /* Sidebar blijft drawer (de mobile-rule op regel 1527 overschrijft :fullscreen position:static
       door specificity in cascade — borgen door fullscreen-specifieke drawer-rules). */
    .vca-archive-wrap:fullscreen .vca-sidebar,
    .vca-archive-wrap:-webkit-full-screen .vca-sidebar {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        width: 85%;
        max-width: 360px;
        height: 100%;
        flex: none;
        z-index: 10001;
        transform: translateX(-100%);
        border-right: none;
        padding: 16px;
    }
    .vca-archive-wrap:fullscreen .vca-sidebar.is-open,
    .vca-archive-wrap:-webkit-full-screen .vca-sidebar.is-open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,.25);
    }
    .vca-archive-wrap:fullscreen .vca-sidebar-overlay,
    .vca-archive-wrap:-webkit-full-screen .vca-sidebar-overlay { z-index: 10000; }
    .vca-archive-wrap:fullscreen .vca-main,
    .vca-archive-wrap:-webkit-full-screen .vca-main { flex: 1; width: 100%; }
    /* Mobile action-bar (Sorteren/Filters) inside fullscreen: compact strookje bovenin */
    .vca-archive-wrap:fullscreen .vca-mobile-action-bar,
    .vca-archive-wrap:-webkit-full-screen .vca-mobile-action-bar {
        flex-shrink: 0;
        padding: 8px 56px 8px 12px; /* rechts ruimte voor ✕ */
        background: #fff;
        border-bottom: 1px solid #eee;
    }
}

/* ======================================================================
   VCA v1.3.0 — Nieuwe features
   ====================================================================== */

/* ── Feature 1: Verlanglijst / Favorieten ────────────────────────────── */

/* Hart-knop bovenop de kaartafbeelding */
.vca-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
    transition: transform .15s;
}

.vca-fav-btn:hover {
    transform: scale(1.18);
}

.vca-fav-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

/* Outline = grijs standaard, gevuld = rood bij .is-fav */
.vca-fav-icon--outline { color: #999; }
.vca-fav-icon--filled  { color: #e63946; display: none; }

.vca-fav-btn.is-fav .vca-fav-icon--outline { display: none; }
.vca-fav-btn.is-fav .vca-fav-icon--filled  { display: block; }

.vca-fav-btn:hover .vca-fav-icon--outline { display: none; }
.vca-fav-btn:hover .vca-fav-icon--filled  { display: block; color: #e63946; }

/* Favorieten-balk boven de resultaten */
.vca-fav-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vca-fav-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f3;
    border: 1.5px solid #e05c7a;
    color: #c0395a;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.vca-fav-bar-btn:hover {
    background: #e05c7a;
    color: #fff;
}

.vca-fav-bar-reset {
    background: none;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 0;
}

.vca-fav-bar-reset:hover { color: #444; }

/* ── Feature 3: Weerwidget ───────────────────────────────────────────── */

.vca-weather {
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    overflow: hidden;
}

/* Sidebar locatiekaart */
.vca-sidebar-map {
    margin-top: 16px;
    border-radius: var(--vca-radius);
    overflow: hidden;
    border: 1px solid var(--vca-border);
}

/* In de sidebar: 2×2 grid, 4 dagen, geen horizontaal scrollen */
.vca-sidebar-weather {
    margin-top: 16px;
}

.vca-weather-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vca-weather-grid .vca-weather-day {
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 8px;
    min-width: 0;
}

.vca-weather-grid .vca-weather-day:nth-child(even) { border-right: none; }
.vca-weather-grid .vca-weather-day:nth-last-child(-n+2) { border-bottom: none; }

.vca-sidebar-weather .vca-weather-icon { font-size: 1.4rem; }
.vca-sidebar-weather .vca-weather-temp { font-size: 0.82rem; }
.vca-sidebar-weather .vca-weather-wind { font-size: 0.72rem; }

.vca-weather-strip {
    display: flex;
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.vca-weather-day {
    flex: 0 0 auto;
    min-width: 90px;
    padding: 14px 16px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.vca-weather-day:last-child { border-right: none; }

.vca-weather-day-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
    margin-bottom: 8px;
}

.vca-weather-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 8px;
}

.vca-weather-temp {
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.vca-weather-tmax {
    font-weight: 700;
    color: var(--vca-dark);
}

.vca-weather-tmin {
    color: #999;
    font-size: 0.8rem;
}

.vca-weather-wind {
    font-size: 0.75rem;
    color: #aaa;
}

.vca-weather-loading,
.vca-weather-error {
    padding: 16px 24px;
    color: #888;
    font-size: 0.9rem;
}

/* ── Feature 5: Sticky boekbalk ─────────────────────────────────────── */

.vca-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid var(--vca-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    transform: translateY(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
}

.vca-sticky-bar.is-visible { transform: translateY(0); }

.vca-sticky-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vca-sticky-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vca-sticky-bar-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vca-dark);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
}

.vca-sticky-bar-price {
    font-size: 0.82rem;
    color: #666;
}

.vca-sticky-bar-btn {
    display: inline-block;
    background: var(--vca-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--vca-radius);
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}

.vca-sticky-bar-btn:hover {
    background: var(--vca-primary-hover);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .vca-sticky-bar-name { font-size: 0.85rem; }
    .vca-sticky-bar-btn  { padding: 9px 14px; font-size: 0.82rem; }
    .vca-weather-day { min-width: 76px; padding: 10px 10px; }
}

/* ── Ferry widget ─────────────────────────────────────────────────────── */
.vca-ferry-widget {
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    padding: 16px;
    font-size: 0.88rem;
}

.vca-ferry-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.vca-ferry-header svg {
    width: 18px;
    height: 18px;
    color: var(--vca-primary);
    flex-shrink: 0;
}

.vca-ferry-from { color: #888; margin-bottom: 12px; }

.vca-ferry-times {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}

.vca-ferry-time {
    background: #f0fafa;
    border: 1px solid #c8eaed;
    color: var(--vca-primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.vca-ferry-note {
    color: #aaa;
    font-size: 0.75rem;
    margin: 0 0 12px;
}

.vca-ferry-no-data { color: #888; margin-bottom: 12px; }

.vca-ferry-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.vca-ferry-book,
.vca-ferry-book:hover,
.vca-ferry-book:visited {
    display: block;
    background: var(--vca-primary);
    color: #fff;
    text-align: center;
    padding: 9px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background .15s;
}
.vca-ferry-book:hover { background: var(--vca-primary-hover); }

.vca-ferry-info {
    display: block;
    text-align: center;
    color: var(--vca-primary);
    font-size: 0.82rem;
    text-decoration: none;
}
.vca-ferry-info:hover { text-decoration: underline; }

.vca-ferry-operator {
    color: #aaa;
    font-size: 0.75rem;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}


/* ======================================================================
   Landing grid — verticale kaartopmaak
   Overschrijft de horizontale .vca-card archief-stijlen via context-prefix
   ====================================================================== */

.vca-landing-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Kaart: verticaal */
.vca-landing-grid .vca-card {
    flex-direction: column;
    margin-bottom: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.vca-landing-grid .vca-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0,0,0,.05), 0 10px 40px rgba(0,0,0,.1);
}

/* Afbeeldingsvlak: volledige breedte + vaste hoogte via padding-bottom truc */
.vca-landing-grid .vca-card-image {
    flex: none;
    width: 100%;
    max-width: none;
    height: 0;
    padding-bottom: 64%;
    background: #e5e7eb;
}

/* Gallery vult het padded vlak via position:absolute */
.vca-landing-grid .vca-unit-gallery {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
}

.vca-landing-grid .vca-unit-gallery a {
    display: block;
    height: 100%;
}

.vca-landing-grid .vca-unit-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 0;
}

/* Hover zoom op afbeelding */
.vca-landing-grid .vca-card:hover .vca-unit-gallery img {
    transform: scale(1.04);
}
.vca-landing-grid .vca-unit-gallery img {
    transition: transform .4s ease;
}

/* Ribbon: absoluut badge op foto i.p.v. volledige-breedte balk */
.vca-landing-grid .vca-ribbon {
    flex: none;
    width: auto;
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 9999px;
    padding: 4px 12px;
    text-align: left;
    font-size: 0.72rem;
    z-index: 3;
}

/* Rating badge: rechtsonder op foto */
.vca-landing-grid .vca-card-rating {
    top: auto;
    left: auto;
    bottom: 12px;
    right: 12px;
    font-size: 0.82rem;
}

/* Featured card: horizontaal op desktop */
.vca-landing-grid .vca-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.vca-landing-grid .vca-card--featured .vca-card-image {
    flex: 0 0 420px;
    max-width: 420px;
    height: auto;
    padding-bottom: 0;
    min-height: 300px;
}

/* ── Card body (landing — gescoopt) ── */
.vca-landing-grid .vca-card-body {
    padding: 16px 18px 18px;
    gap: 12px;
}

.vca-landing-grid .vca-card--featured .vca-card-body {
    padding: 24px 28px;
    justify-content: space-between;
}

.vca-card-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.vca-landing-grid .vca-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.775rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.vca-landing-grid .vca-card-location svg { color: var(--vca-primary); }

.vca-landing-grid .vca-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.vca-landing-grid .vca-card-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-landing-grid .vca-card-title a:hover { color: var(--vca-primary); }

.vca-landing-grid .vca-card-excerpt {
    font-size: 0.845rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-landing-grid .vca-card-amenities {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vca-card-amenity-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.775rem;
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 3px 10px 3px 7px;
    line-height: 1.4;
}

.vca-amenity-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--vca-primary);
    display: flex;
    align-items: center;
}

.vca-amenity-icon svg { width: 14px; height: 14px; }

.vca-landing-grid .vca-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--vca-border);
}

.vca-landing-grid .vca-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vca-landing-grid .vca-card-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.vca-landing-grid .vca-card-price-label { font-size: 0.72rem; color: #6b7280; }
.vca-landing-grid .vca-card-price-amount { font-size: 1.1rem; font-weight: 700; color: #111827; }
.vca-landing-grid .vca-card-price-unit   { font-size: 0.72rem; color: #6b7280; }

.vca-landing-grid .vca-card-persons {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.775rem;
    color: #6b7280;
}

.vca-landing-grid .vca-card-persons svg { color: var(--vca-primary); }

.vca-landing-grid .vca-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.845rem;
    font-weight: 600;
    padding: 9px 16px;
}

.vca-landing-grid .vca-btn-primary:hover { text-decoration: none; }

@media (max-width: 1024px) {
    .vca-landing-grid { grid-template-columns: repeat(2, 1fr); }
    .vca-landing-grid .vca-card--featured { flex-direction: column; }
    .vca-landing-grid .vca-card--featured .vca-card-image {
        flex: none; max-width: none; width: 100%;
        height: 0; padding-bottom: 56%; min-height: 0;
    }
}


/* ======== Single Accommodation Unit ======== */

/* ======================================================================
   VCA Unit Single — met tabbladen voor Beschrijving & Faciliteiten
   ====================================================================== */
/* :root variabelen staan bovenaan het bestand — niet dupliceren */
/* --vca-green verwijderd: was ongebruikt, identiek aan --vca-primary */

/* ── Hero galerij ── */
.vca-hero-gallery-wrap { position: relative; }

/* Key facts strip zit direct onder de galerij; single-wrap krijgt zijn eigen margin */
.single-accommodation_unit .vca-hero-gallery-wrap { margin-bottom: 0; }

/* ── Key facts strip ── */
.vca-unit-key-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 100%;
    background: var(--vca-gray);
    border-top: 1px solid var(--vca-border);
    border-bottom: 1px solid var(--vca-border);
    margin-bottom: 32px;
}

.vca-key-fact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 0.9rem;
    color: var(--vca-dark);
    border-right: 1px solid var(--vca-border);
}

.vca-key-fact:last-child {
    border-right: none;
}

.vca-key-fact svg {
    flex-shrink: 0;
    color: var(--vca-primary);
}

.vca-key-fact span {
    white-space: nowrap;
}

.vca-hero-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 4px;
    max-height: 484px;
    overflow: hidden;
    background: #111;
}

.vca-hero-gallery a {
    display: block;
    overflow: hidden;
    background: #ddd;
}

.vca-hero-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.vca-hero-gallery a:hover img { transform: scale(1.04); }
.vca-hero-gallery a:first-child { grid-row: 1 / 3; }
.vca-hero-gallery a:nth-child(n+6) { display: none; }

.vca-hero-placeholder {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #ccc, #aaa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
}

.vca-gallery-all-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.vca-gallery-all-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

/* ── Lightbox ── */
.vca-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
}

.vca-lightbox.is-open { display: flex; }

.vca-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vca-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.vca-lightbox-counter { color: rgba(255,255,255,.6); font-size: 0.85rem; margin-top: 10px; }
.vca-lightbox-label { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.55); color: #fff; font-size: 0.75rem; padding: 3px 10px; border-radius: 4px; pointer-events: none; }

.vca-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
    padding: 4px 10px;
}

.vca-lightbox-close:hover { opacity: 1; }

.vca-lightbox-prev,
.vca-lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 16px 18px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    transition: background .2s;
}

.vca-lightbox-prev { left: 16px; }
.vca-lightbox-next { right: 16px; }
.vca-lightbox-prev:hover,
.vca-lightbox-next:hover { background: rgba(255,255,255,.3); }

/* Wrap */
.vca-single-wrap {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    align-items: flex-start;
}

/* Breadcrumb */
.vca-breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.vca-breadcrumb a { color: #888; text-decoration: none; }
.vca-breadcrumb a:hover { color: var(--vca-primary); }
.vca-breadcrumb .sep { color: #ccc; }
.vca-breadcrumb .current { color: var(--vca-primary); font-weight: 600; }

/* Content area */
.vca-single-content { flex: 1; min-width: 0; }

.vca-single-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 8px;
    line-height: 1.2;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

/* Park link */
.vca-unit-park-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--vca-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 14px;
    border: 1.5px solid var(--vca-primary);
    border-radius: var(--vca-radius);
    transition: background .2s, border-color .2s;
}

.vca-unit-park-link:hover {
    background: rgba(26, 172, 184, 0.08);
    text-decoration: none;
}

/* ======================================================================
   Tabbladen
   ====================================================================== */
.vca-tabs { margin-top: 8px; }

.vca-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--vca-border);
    margin-bottom: 0;
}

/* Specifieke selectors om thema-overschrijvingen van button-stijlen te voorkomen */
.vca-tab-nav .vca-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    margin-bottom: -2px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: color .2s, background .2s, border-color .2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    box-shadow: none;
}

.vca-tab-nav .vca-tab-btn:hover {
    color: var(--vca-primary);
    background: rgba(26, 172, 184, 0.06);
}

.vca-tab-nav .vca-tab-btn.is-active {
    color: var(--vca-primary);
    background: transparent;
    border-bottom-color: var(--vca-primary);
}

.vca-tab-count {
    background: var(--vca-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    line-height: 1.6;
}

.vca-tab-btn:not(.is-active) .vca-tab-count {
    background: #ccc;
}

/* Tab panels */
.vca-tab-panel {
    display: none;
    padding-top: 24px;
    animation: vcaFadeIn .2s ease;
}

.vca-tab-panel.is-active { display: block; }

@keyframes vcaFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Beschrijving tab */
.vca-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--vca-text);
}

.vca-description p { margin-bottom: 16px; }

/* ======================================================================
   Faciliteiten tab — gecategoriseerde amenities grid
   ====================================================================== */
.vca-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.vca-amenity-category {
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    padding: 16px 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.vca-amenity-cat-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--vca-primary);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--vca-border);
}

.vca-amenity-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vca-amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--vca-text);
    line-height: 1.4;
}

.vca-amenity-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--vca-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* Geen amenities */
.vca-amenities-empty {
    color: #999;
    font-style: italic;
    padding: 12px 0;
}

/* ======================================================================
   Park-faciliteiten blok (onderaan beschrijving)
   ====================================================================== */
.vca-park-amenities {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--vca-border);
}

.vca-park-amenities h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 14px;
}

.vca-park-amenities-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vca-park-amenity-pill {
    background: var(--vca-gray);
    color: var(--vca-text);
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--vca-border);
}

/* Sidebar */
.vca-single-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 24px;
}

.vca-price-box {
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.vca-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vca-border);
}

.vca-rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vca-dark);
    line-height: 1;
}

.vca-rating-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.vca-rating-label { font-size: 0.8rem; color: #888; }

.vca-price-box-label { font-size: 0.85rem; color: #888; margin-bottom: 6px; }

.vca-price-box-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--vca-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.vca-price-box-amount small { font-size: 1rem; color: #888; font-weight: 400; }

.vca-price-box-persons {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vca-border);
}

.vca-btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--vca-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px;
    border-radius: var(--vca-radius);
    border: 2px solid var(--vca-primary);
    text-decoration: none;
    transition: background .2s, color .2s;
    box-sizing: border-box;
}

.vca-btn-cta:hover {
    background: var(--vca-primary);
    color: #fff;
    text-decoration: none;
}

.vca-btn-back {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--vca-text);
    font-size: 0.875rem;
    text-decoration: none;
}

.vca-btn-back:hover { color: var(--vca-primary); }

.vca-price-box-empty {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Sidebar mini amenities (unit) */
.vca-sidebar-amenities {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--vca-border);
}

.vca-sidebar-amenities-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #aaa;
    margin: 0 0 10px;
}

.vca-sidebar-amenities ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vca-sidebar-amenities li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--vca-text);
}

.vca-sidebar-amenities li::before {
    content: '✓';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: var(--vca-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .vca-single-wrap { flex-direction: column; }
    .vca-single-sidebar { flex: none; width: 100%; position: static; }
    .vca-single-content h1 { font-size: 1.5rem; }
    .vca-hero-gallery { display: flex; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 4px; height: 240px; max-height: 240px; scrollbar-width: none; }
    .vca-hero-gallery::-webkit-scrollbar { display: none; }
    .vca-hero-gallery a { flex: 0 0 85%; scroll-snap-align: start; }
    .vca-hero-gallery a:first-child { grid-row: auto; }
    .vca-hero-gallery a:nth-child(n+2) { display: block; }
    .vca-hero-gallery a:nth-child(n+6) { display: none; }
    .vca-amenities-grid { grid-template-columns: 1fr 1fr; }
}

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


/* ======== Single Accommodation (Park) ======== */

/* ======================================================================
   VCA Single Accommodation — parkpagina met tabbladen
   ====================================================================== */
/* :root variabelen staan bovenaan het bestand — niet dupliceren */

/* ── Park-specifieke overrides (verschilt van unit-single) ── */
body.single-accommodation .vca-hero-gallery-wrap { margin-bottom: 32px; }
body.single-accommodation .vca-single-wrap { margin: 2px auto 32px; }

/* ── Kop + meta ── */
.vca-single-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 8px;
    line-height: 1.2;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-single-location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 14px;
}

.vca-single-location a {
    color: var(--vca-primary);
    text-decoration: none;
    font-weight: 600;
}

.vca-single-location a:hover { text-decoration: underline; }

.vca-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vca-tag {
    background: #f0f0f0;
    color: #555;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.vca-tag:hover { background: var(--vca-primary); color: #fff; }

/* ── Hoogtepunten strip (iconen boven de tabs) ── */
.vca-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--vca-gray);
    border-radius: var(--vca-radius);
    border: 1px solid var(--vca-border);
}

.vca-highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--vca-text);
    font-weight: 500;
}

.vca-highlight-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* ── Breadcrumb balk (boven navigatie) ── */
.vca-breadcrumb-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px 0;
}

/* ── Pagina-anker navigatie (vervangt tabs) ── */
.vca-page-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 2px solid var(--vca-border);
    margin-top: 45px;
    margin-bottom: 0;
}

.vca-page-nav {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.vca-page-nav::-webkit-scrollbar { display: none; }

.vca-page-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}

.vca-page-nav-link:hover { color: var(--vca-primary); text-decoration: none; }

.vca-page-nav-link.is-active {
    color: var(--vca-primary);
    border-bottom-color: var(--vca-primary);
}

.vca-nav-badge {
    background: var(--vca-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 20px;
    line-height: 1.6;
}

/* ── Inhoud secties ── */
.vca-section {
    scroll-margin-top: 56px;
    padding-top: 32px;
    padding-bottom: 8px;
}

.vca-section + .vca-section {
    border-top: 1px solid var(--vca-border);
    margin-top: 8px;
}

.vca-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 18px;
}

/* @keyframes vcaFadeIn staat in unit-single sectie — niet dupliceren */

/* ── Beschrijving ── */
/* ── Intro quote (excerpt als blockquote) ── */
.vca-intro-quote {
    border-left: 3px solid var(--vca-primary);
    margin: 0 0 22px;
    padding: 10px 18px;
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    line-height: 1.65;
    background: #f8fefe;
    border-radius: 0 var(--vca-radius) var(--vca-radius) 0;
}

/* .vca-description staat in unit-single sectie — niet dupliceren */

.vca-tax-section {
    border-top: 1px solid var(--vca-border);
    padding-top: 20px;
    margin-top: 24px;
}

.vca-tax-section h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #aaa;
    margin: 0 0 10px;
}

.vca-tax-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vca-tax-section li a {
    color: var(--vca-primary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.vca-tax-section li a:hover { text-decoration: underline; }

/* ── Faciliteiten grid ── */
.vca-amenities-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Amenities grid/items staan in unit-single sectie — park-specifieke overrides: */
body.single-accommodation .vca-amenities-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
body.single-accommodation .vca-amenity-cat-title { font-size: 0.76rem; letter-spacing: .06em; }
body.single-accommodation .vca-amenity-items { gap: 7px; }
body.single-accommodation .vca-amenity-item { font-size: 0.88rem; }
body.single-accommodation .vca-amenity-check { width: 17px; height: 17px; }

.vca-amenities-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: var(--vca-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.vca-amenities-toggle:hover { background: var(--vca-primary); filter: brightness(.85); }
.vca-amenities-toggle-chevron {
    width: 16px; height: 16px;
    transition: transform .2s;
}
#vca-amenities-collapsible .vca-amenities-grid { margin-top: 0; }

.vca-fac-tiles--main {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 16px;
}
.vca-fac-tiles--main .vca-fac-tile {
    padding: 14px 12px 12px;
}
.vca-fac-tiles--main .vca-fac-tile-icon svg {
    width: 26px; height: 26px;
}
.vca-fac-tiles--main .vca-fac-tile-name {
    font-size: 0.85rem;
}

/* ── Verblijven sectie (onder de tabs, full width) ── */
.vca-units-section {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 24px;
    scroll-margin-top: 32px;
}

.vca-units-section-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-top: 40px;
    margin-bottom: 8px;
    border-top: 2px solid var(--vca-border);
}

.vca-units-section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-units-section-count {
    font-size: 0.88rem;
    color: #999;
    font-weight: 400;
}

.vca-units-section-intro {
    font-size: 0.95rem;
    color: #777;
    margin: 0 0 24px;
    line-height: 1.5;
}

.vca-units-section .vca-units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.vca-unit-card {
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.vca-unit-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    transform: translateY(-2px);
    text-decoration: none;
}

.vca-unit-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #ddd;
    transition: transform .35s ease;
}

.vca-unit-card:hover .vca-unit-card-img { transform: scale(1.04); }

.vca-unit-card-img-wrap {
    overflow: hidden;
    height: 200px;
    background: #ddd;
    position: relative;
}

.vca-unit-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ddd, #bbb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: #fff;
}

/* ── Card image slider ── */
.vca-card-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vca-card-slider-track {
    display: flex;
    height: 100%;
    transition: transform .3s ease;
}

.vca-card-slide {
    flex: 0 0 100%;
    height: 100%;
}

.vca-card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vca-card-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.82);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
    z-index: 5;
    transition: background .15s, opacity .15s;
    opacity: 0;
}

.vca-unit-card:hover .vca-card-slider-btn { opacity: 1; }
.vca-card-slider-btn:hover { background: #fff; }
.vca-card-slider-btn.prev { left: 8px; }
.vca-card-slider-btn.next { right: 8px; }

.vca-card-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}

.vca-card-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background .2s, transform .2s;
}

.vca-card-slider-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

.vca-unit-card-price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,.93);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vca-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    line-height: 1.2;
}

.vca-unit-card-price-badge small {
    font-size: 0.72rem;
    color: #888;
    font-weight: 400;
    display: block;
}

.vca-unit-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vca-unit-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vca-dark);
    line-height: 1.3;
    margin: 0;
}

.vca-unit-card-excerpt {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-unit-card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.83rem;
    color: #777;
    flex-wrap: wrap;
    align-items: center;
}

.vca-unit-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.vca-unit-card-amenity-pill {
    background: #eef9fa;
    border: 1px solid #c4eaed;
    color: var(--vca-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 14px;
}

.vca-unit-card-price-inline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vca-primary);
}

.vca-unit-card-price-inline strong {
    font-size: 1.05rem;
}

.vca-unit-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vca-primary);
    margin-top: auto;
    padding-top: 4px;
}

.vca-unit-card-price small {
    font-size: 0.78rem;
    color: #999;
    font-weight: 400;
}

.vca-unit-card-btn,
.vca-unit-card-btn:hover,
.vca-unit-card-btn:visited {
    display: block;
    text-align: center;
    background: var(--vca-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px;
    border-radius: var(--vca-radius);
    border: none;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(26,172,184,.35);
}

.vca-unit-card-btn:hover {
    background: var(--vca-primary-hover);
    box-shadow: 0 4px 14px rgba(26,172,184,.45);
    text-decoration: none;
}

.vca-unit-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.vca-unit-card-btn-outline,
.vca-unit-card-btn-outline:visited {
    flex: 1;
    display: block;
    text-align: center;
    background: transparent;
    color: var(--vca-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 8px;
    border-radius: var(--vca-radius);
    border: 1.5px solid var(--vca-primary);
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.vca-unit-card-btn-outline:hover {
    background: #eef9fa;
    text-decoration: none;
    color: var(--vca-primary);
}

.vca-unit-card-actions .vca-unit-card-btn {
    flex: 2;
    margin-top: 0;
    font-size: 0.85rem;
    padding: 10px 8px;
    white-space: nowrap;
}

/* ── Lees meer toggle (description) ── */
.vca-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--vca-primary);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.vca-read-more-btn:hover { background: none; color: var(--vca-primary); text-decoration: underline; }
.vca-read-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform .2s;
    flex-shrink: 0;
}
.vca-read-more-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ── Unit filter sectie-box: filter + resultaten visueel één geheel ── */
.vca-uf-section-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 20px;
    margin-top: 20px;
}

/* ── Filterbar (vsb-container override voor full-width) ── */
.vca-uf-section-box .vsb-container {
    border-radius: 1rem;
    padding: 4px;
    box-shadow: 0 4px 12px -2px rgba(0,64,128,.1);
    margin-bottom: 16px;
}
.vca-uf-section-box .vsb-section { padding: 10px 16px; }
.vca-uf-section-box .vsb-icon { width: 34px; height: 34px; }

/* Laatste vsb-section rechts uitlijnen (paneel opent niet buiten scherm) */
.vca-uf-section-box .vsb-section--last .vsb-panel { left: auto; right: 0; }

/* ── Resultaten-balk boven het grid ── */
.vca-uf-results-meta {
    font-size: 0.82rem;
    color: #888;
    margin: 0 0 14px;
    padding: 0 2px;
}
/* [hidden] override — CSS display rules can override the browser default */
.vca-uf-modal-box[hidden],
.vca-uf-modal-backdrop[hidden],
.vca-uf-chips[hidden],
.vca-uf-empty[hidden] { display: none !important; }
.vca-uf-filter-summary {
    font-size: 0.87rem;
    color: var(--vca-dark);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vca-uf-filter-clear {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: none;
    background: #e8e8e8;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    line-height: 1;
    padding: 0;
}
.vca-uf-filter-clear:hover { background: #d8d8d8; }
/* Chips */
.vca-uf-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.vca-uf-chips-label { color: #888; font-weight: 500; white-space: nowrap; }
.vca-uf-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 12px;
    background: #edf9fa;
    border: 1px solid var(--vca-primary);
    border-radius: 9999px;
    font-size: 0.82rem;
    color: var(--vca-dark);
    cursor: pointer;
}
.vca-uf-chip:hover { background: #d9f2f4; }
.vca-uf-chip-x { font-size: 1rem; color: #888; line-height: 1; }
/* Badge op "Meer filters" sectie */
.vca-uf-modal-badge {
    background: #1a2b3c;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    flex-shrink: 0;
}
.vca-uf-modal-badge[hidden] { display: none !important; }
/* Modal */
.vca-uf-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 900;
}
.vca-uf-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 16px;
    width: min(560px, 95vw);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    z-index: 901;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.vca-uf-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--vca-border);
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vca-dark);
}
.vca-uf-modal-close {
    width: 32px; height: 32px;
    border: none !important; background: transparent !important; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #888 !important; flex-shrink: 0;
    transition: color .15s;
}
.vca-uf-modal-close:hover,
.vca-uf-modal-close:focus {
    background: transparent !important;
    color: var(--vca-dark) !important;
}
.vca-uf-modal-body { overflow-y: auto; flex: 1; padding: 0 24px; }
.vca-uf-modal-group { border-bottom: 1px solid var(--vca-border); }
.vca-uf-modal-group-head {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 0; cursor: pointer; user-select: none;
    border: none; background: none; font-size: 0.95rem; font-weight: 700;
    color: var(--vca-dark); text-align: left;
}
.vca-uf-modal-group:not(.is-open) .vca-uf-modal-group-head svg { transform: rotate(180deg); }
.vca-uf-modal-group-head:hover,
.vca-uf-modal-group-head:focus {
    background: transparent !important;
    color: var(--vca-dark) !important;
}
.vca-uf-modal-group-body {
    padding-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
}
.vca-uf-modal-group:not(.is-open) .vca-uf-modal-group-body { display: none; }
.vca-uf-modal-group--radio .vca-uf-modal-group-body { grid-template-columns: 1fr; }
.vca-uf-radio-label, .vca-uf-check-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: #444; cursor: pointer; padding: 5px 0;
}
.vca-uf-radio-label input, .vca-uf-check-label input {
    width: 18px; height: 18px; flex-shrink: 0;
    accent-color: var(--vca-primary); cursor: pointer;
}
.vca-uf-modal-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; border-top: 1px solid var(--vca-border); flex-shrink: 0;
}
.vca-uf-modal-clear {
    border: none; background: none; color: #666;
    font-size: 0.9rem; font-weight: 500; cursor: pointer;
    text-decoration: underline; padding: 8px 0;
}
.vca-uf-modal-clear:hover { color: var(--vca-dark); }
.vca-uf-modal-apply {
    background: var(--vca-primary); color: #fff; border: none;
    border-radius: 8px; padding: 12px 24px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: filter .15s;
}
.vca-uf-modal-apply:hover { filter: brightness(1.08); }
/* 3-kolom grid (full-width sectie) */
#vca-section-verblijven .vca-units-grid {
    grid-template-columns: repeat(3, 1fr);
}
/* Empty state */
.vca-uf-empty {
    text-align: center; padding: 48px 24px; color: #888;
}
.vca-uf-empty p { margin-bottom: 16px; font-size: 1rem; }
.vca-uf-empty button {
    background: none; border: 1px solid #ddd; border-radius: 6px;
    padding: 8px 20px; cursor: pointer; color: #555; font-size: 0.9rem;
}
.vca-uf-empty button:hover { border-color: var(--vca-primary); color: var(--vca-primary); }
@media (max-width: 900px) {
    #vca-section-verblijven .vca-units-grid { grid-template-columns: repeat(2, 1fr); }
    .vca-uf-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    #vca-section-verblijven .vca-units-grid { grid-template-columns: 1fr; }
    .vca-uf-row { grid-template-columns: 1fr; }
}

/* ── Sidebar ── */
/* .vca-single-sidebar staat in unit-single sectie — niet dupliceren */
body.single-accommodation .vca-price-box { padding: 20px; }

/* Prijs rij */
.vca-pb-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
}
.vca-pb-from {
    display: block;
    font-size: 0.78rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 2px;
}
.vca-pb-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vca-dark);
    line-height: 1;
}
.vca-pb-amount--empty {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    font-style: italic;
}
.vca-pb-per {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}
.vca-pb-capacity {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    font-size: 0.78rem;
    color: #888;
    text-align: right;
}
.vca-pb-capacity svg { width: 14px; height: 14px; stroke: #aaa; }

/* Primaire CTA — park-specifieke overrides */
body.single-accommodation .vca-btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border: none;
    transition: filter .2s, transform .1s;
    cursor: pointer;
}
.vca-btn-cta--filled,
.vca-btn-cta--filled:hover,
.vca-btn-cta--filled:visited {
    background: var(--vca-primary);
    color: #fff;
}
.vca-btn-cta--filled svg { width: 16px; height: 16px; stroke: #fff; flex-shrink: 0; }
.vca-btn-cta--filled:hover { filter: brightness(1.08); transform: translateY(-1px); text-decoration: none; }
.vca-btn-cta--filled:active { transform: translateY(0); }
.vca-btn-cta:focus-visible { outline: 2px solid var(--vca-primary); outline-offset: 3px; }

/* Trust rij */
.vca-pb-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--vca-border);
    border-bottom: 1px solid var(--vca-border);
    gap: 8px;
    flex-wrap: wrap;
}
.vca-pb-trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.vca-pb-trust-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 1px; }
.vca-pb-trust-score { font-size: 0.85rem; font-weight: 700; color: var(--vca-dark); }
.vca-pb-trust-count { font-size: 0.75rem; color: #aaa; }
.vca-pb-trust-units {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--vca-primary);
    font-weight: 600;
    text-decoration: none;
}
.vca-pb-trust-units svg { width: 13px; height: 13px; stroke: var(--vca-primary); }
.vca-pb-trust-units:hover { text-decoration: underline; }

/* Secundaire link — park override */
body.single-accommodation .vca-btn-back { color: #bbb; font-size: 0.8rem; }
body.single-accommodation .vca-btn-back:hover { color: var(--vca-primary); }

/* Sidebar – snelle amenity preview */
/* Sidebar amenities — park-specifieke overrides */
body.single-accommodation .vca-sidebar-amenities-title { font-size: 0.75rem; letter-spacing: .05em; }
body.single-accommodation .vca-sidebar-amenities ul { gap: 6px; }
body.single-accommodation .vca-sidebar-amenities li { font-size: 0.84rem; }

.vca-sidebar-more {
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
    margin-top: 8px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.vca-sidebar-more:hover { color: var(--vca-primary); }

/* ── Faciliteiten icon-tile widget (sidebar) ── */
.vca-fac-widget {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--vca-border);
}

.vca-fac-widget-header {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}

.vca-fac-widget-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #aaa;
}

.vca-fac-widget-count {
    font-size: 0.72rem;
    color: #bbb;
}

.vca-fac-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.vca-fac-tile {
    background: #f9fafa;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    padding: 10px 8px 9px;
    text-align: left;
}

.vca-fac-tile-icon {
    color: var(--vca-primary);
    margin-bottom: 5px;
}

.vca-fac-tile-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.vca-fac-tile-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vca-dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.vca-fac-tile-cat {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.2;
}

/* Uitklapbaar faciliteitenpaneel */
.vca-fac-dropdown {
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #fafafa;
}

.vca-fac-drop-group {
    margin-bottom: 10px;
}

.vca-fac-drop-group:last-child { margin-bottom: 0; }

.vca-fac-drop-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #aaa;
    margin-bottom: 4px;
    padding-bottom: 3px;
    border-bottom: 1px solid #eee;
}

.vca-fac-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vca-fac-dropdown li {
    font-size: 0.8rem;
    color: var(--vca-text);
    padding-left: 12px;
    position: relative;
}

.vca-fac-dropdown li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vca-primary);
    font-size: 0.65rem;
    top: 1px;
}

/* Toggle-knop */
.vca-fac-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid var(--vca-border);
    border-radius: var(--vca-radius);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vca-text);
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.vca-fac-toggle-btn:hover {
    border-color: var(--vca-primary);
    color: var(--vca-primary);
}

.vca-fac-toggle-chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .2s;
}

.vca-fac-toggle-btn[aria-expanded="true"] .vca-fac-toggle-chevron {
    transform: rotate(180deg);
}

/* ── Sidebar – blog artikelen ── */
.vca-sidebar-blog {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--vca-border);
}

.vca-sidebar-blog-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #aaa;
    margin: 0 0 12px;
}

.vca-sidebar-blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vca-sidebar-blog-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.vca-sidebar-blog-thumb {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 6px;
    object-fit: cover;
    background: #eee;
    display: block;
}

.vca-sidebar-blog-thumb-placeholder {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e0e0e0, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.vca-sidebar-blog-body { flex: 1; min-width: 0; }

.vca-sidebar-blog-link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--vca-dark);
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-sidebar-blog-link:hover { color: var(--vca-primary); }

.vca-sidebar-blog-date {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 3px;
}

/* ── Media sectie (YouTube + foto's) ── */
/* ── Ontdekken / Genieten — magazine editorial stijl ── */
.vca-discover-section {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 24px;
    scroll-margin-top: 56px;
}

/* Gecentreerde sectie header met amber kicker + decoratieve lijn */
.vca-section-header {
    text-align: center;
    margin-bottom: 56px;
    padding-top: 40px;
    border-top: 2px solid var(--vca-border);
}

.vca-section-kicker {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 10px;
}

.vca-section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0;
    line-height: 1.2;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-section-rule {
    width: 96px;
    height: 1px;
    background: #b45309;
    margin: 20px auto 0;
}

/* Hero uitgelicht artikel: groot beeld + overlappende witte kaart */
.vca-discover-hero {
    margin-bottom: 88px;
}

.vca-discover-hero-img {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.vca-discover-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.vca-discover-hero:hover .vca-discover-hero-img img {
    transform: scale(1.04);
}

.vca-discover-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 55%);
    pointer-events: none;
}

.vca-discover-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8d6e5, #a8b8c8);
}

/* Overlappende kaart (-mt-24 stijl) */
.vca-discover-hero-card {
    display: block;
    position: relative;
    z-index: 2;
    width: 68%;
    margin: -80px auto 0;
    background: #fff;
    padding: 40px 48px;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    text-decoration: none;
    color: inherit;
    transition: transform .3s;
}

.vca-discover-hero-card:hover {
    transform: translateY(-4px);
    color: inherit;
}

.vca-discover-cat {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 9999px;
    margin-bottom: 14px;
}

.vca-discover-hero-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0 0 14px;
    line-height: 1.25;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-discover-hero-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin: 0 0 20px;
    font-weight: 300;
}

.vca-discover-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: #b45309;
    transition: color .2s, gap .2s;
}

.vca-discover-hero-card:hover .vca-discover-hero-link {
    gap: 12px;
    color: #92400e;
}

/* Zigzag rijen: afbeelding links/rechts afwisselend */
.vca-discover-rows {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-top: 40px;
}

.vca-discover-row {
    display: flex;
    gap: 56px;
    align-items: center;
}

.vca-discover-row--reverse { flex-direction: row-reverse; }

.vca-discover-row-img {
    flex: 0 0 42%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.vca-discover-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.vca-discover-row:hover .vca-discover-row-img img { transform: scale(1.04); }

.vca-discover-row-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8d6e5, #a8b8c8);
}

.vca-discover-row-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vca-discover-row-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0;
    line-height: 1.25;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-discover-row-excerpt {
    font-size: .95rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}

.vca-discover-row-link {
    display: inline-block;
    align-self: flex-start;
    font-size: .9rem;
    font-weight: 600;
    color: var(--vca-dark);
    text-decoration: none;
    border-bottom: 2px solid #fde68a;
    padding-bottom: 2px;
    transition: border-color .2s;
}

.vca-discover-row-link:hover {
    border-color: #b45309;
    color: var(--vca-dark);
}

/* Decoratieve ornament-scheidingslijn */
.vca-section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 64px 0 0;
    opacity: .4;
}

.vca-section-ornament-line {
    width: 64px;
    height: 1px;
    background: #9ca3af;
}

.vca-section-ornament span { color: #9ca3af; font-size: .85rem; }

/* Genieten grid — 2 kolommen, ruime kaarten */
.vca-enjoy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.vca-enjoy-card { display: block; }

.vca-enjoy-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vca-enjoy-card-img {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.vca-enjoy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.vca-enjoy-card-inner:hover .vca-enjoy-card-img img { transform: scale(1.04); }

.vca-enjoy-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8d6e5, #a8b8c8);
}

.vca-enjoy-card-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.vca-enjoy-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0;
    line-height: 1.3;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
    transition: color .2s;
}

.vca-enjoy-card-inner:hover .vca-enjoy-card-title { color: #b45309; }

.vca-enjoy-card-badge {
    flex-shrink: 0;
    background: #f3f4f6;
    color: #4b5563;
    font-size: .7rem;
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    align-self: center;
}

.vca-enjoy-card-excerpt {
    font-size: .9rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 12px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-enjoy-card-link {
    font-size: .8rem;
    font-weight: 700;
    color: var(--vca-dark);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: color .2s;
}

.vca-enjoy-card-inner:hover .vca-enjoy-card-link { color: #b45309; }

.vca-media-section {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 24px;
    scroll-margin-top: 56px;
}

.vca-media-section-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-top: 40px;
    margin-bottom: 24px;
    border-top: 2px solid var(--vca-border);
}

.vca-media-section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-media-videos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.vca-media-video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.vca-media-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vca-media-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.vca-media-photo-link {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
    aspect-ratio: 4/3;
}

.vca-media-photo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    display: block;
}

.vca-media-photo-link:hover img { transform: scale(1.05); }

/* Sidebar – verblijven teller */
.vca-sidebar-units {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--vca-gray);
    border-radius: var(--vca-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--vca-text);
    cursor: pointer;
    border: 1px solid var(--vca-border);
    transition: border-color .2s;
}

.vca-sidebar-units:hover { border-color: var(--vca-primary); color: var(--vca-primary); }
.vca-sidebar-units-num { font-size: 1.3rem; font-weight: 700; color: var(--vca-primary); }

/* ── Vergelijkbare accommodaties ── */
.vca-similar-section {
    max-width: 1200px;
    margin: 0 auto 64px;
    padding: 0 24px;
    scroll-margin-top: 56px;
}

.vca-similar-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-top: 40px;
    margin-bottom: 8px;
    border-top: 2px solid var(--vca-border);
}

.vca-similar-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vca-dark);
    margin: 0;
    font-family: var(--vca-heading-font, 'Playfair Display', Georgia, serif);
}

.vca-similar-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 24px;
}

.vca-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vca-similar-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--vca-border);
    text-decoration: none;
    color: var(--vca-dark);
    transition: box-shadow .25s, transform .25s;
}

.vca-similar-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(-3px);
    color: var(--vca-dark);
}

.vca-similar-card-img {
    position: relative;
    width: 100%;
    padding-top: 62%;
    background: #e8e8e8;
    overflow: hidden;
    flex-shrink: 0;
}

.vca-similar-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.vca-similar-card:hover .vca-similar-card-img img { transform: scale(1.05); }

.vca-similar-card-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e8f7f8, #d0eff1);
}

.vca-similar-card-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}

.vca-similar-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vca-similar-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vca-similar-card-loc {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 12px;
}

.vca-similar-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 8px;
}

.vca-similar-card-price {
    font-size: 0.82rem;
    color: #888;
}

.vca-similar-card-price strong {
    font-size: 1rem;
    color: var(--vca-dark);
    font-weight: 700;
}

.vca-similar-card-persons {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.vca-similar-card-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: var(--vca-primary);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    transition: opacity .2s;
}

.vca-similar-card:hover .vca-similar-card-btn { opacity: .85; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .vca-single-wrap { flex-direction: column; }
    .vca-single-sidebar { flex: none; width: 100%; position: static; }
    .vca-single-content h1 { font-size: 1.5rem; }
    .vca-hero-gallery { display: flex; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 4px; height: 240px; max-height: 240px; scrollbar-width: none; }
    .vca-hero-gallery::-webkit-scrollbar { display: none; }
    .vca-hero-gallery a { flex: 0 0 85%; scroll-snap-align: start; }
    .vca-hero-gallery a:first-child { grid-row: auto; }
    .vca-hero-gallery a:nth-child(n+2) { display: block; }
    .vca-hero-gallery a:nth-child(n+6) { display: none; }
    .vca-amenities-grid { grid-template-columns: 1fr 1fr; }
    .vca-units-grid { grid-template-columns: 1fr 1fr; }
    .vca-page-nav-link { padding: 10px 14px; font-size: 0.85rem; }
    .vca-units-section { padding: 0 16px; }
    .vca-discover-section { padding: 0 16px; }
    .vca-section-header h2 { font-size: 1.75rem; }
    .vca-discover-hero-img { height: 300px; }
    .vca-discover-hero-card { width: 92%; margin-top: -60px; padding: 28px 28px; }
    .vca-discover-hero-title { font-size: 1.45rem; }
    .vca-discover-row { flex-direction: column; gap: 24px; }
    .vca-discover-row--reverse { flex-direction: column; }
    .vca-discover-row-img { flex: none; width: 100%; height: 240px; }
    .vca-discover-rows { gap: 48px; }
    .vca-enjoy-grid { grid-template-columns: 1fr; gap: 40px; }
    .vca-media-section { padding: 0 16px; }
    .vca-media-videos { grid-template-columns: 1fr; }
    .vca-back-top { bottom: 80px; right: 16px; }
    .vca-similar-section { padding: 0 16px; }
    .vca-similar-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .vca-amenities-grid, .vca-units-grid { grid-template-columns: 1fr; }
    .vca-highlights { gap: 8px; }
    .vca-discover-hero-img { height: 220px; }
    .vca-discover-hero-card { width: 96%; padding: 22px 22px; }
    .vca-discover-hero-title { font-size: 1.25rem; }
    .vca-similar-grid { grid-template-columns: 1fr; }
    .vca-media-photos { grid-template-columns: 1fr 1fr; }
}

/* ── Booking bar ── */
.vca-booking-bar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
    max-width: 980px;
    margin: -60px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 20;
}

.vca-booking-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 76px;
    flex-wrap: wrap;
}

.vca-booking-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 24px;
    cursor: default;
}

.vca-booking-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    margin-bottom: 2px;
}

.vca-booking-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--vca-dark);
    white-space: nowrap;
}

.vca-booking-value small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}

.vca-booking-price .vca-booking-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.vca-booking-title {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
}

.vca-booking-divider {
    width: 1px;
    height: 36px;
    background: var(--vca-border);
    flex-shrink: 0;
}

.vca-booking-cta {
    margin-left: auto;
    background: #e87040;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vca-booking-cta:hover {
    background: #d05e30;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .vca-booking-bar { margin: -20px 16px 0; border-radius: 12px; }
    .vca-booking-bar-inner { gap: 0; min-height: auto; padding: 8px 0; }
    .vca-booking-field { padding: 10px 16px; }
    .vca-booking-divider { height: 28px; }
    .vca-booking-cta { margin: 12px 16px; width: calc(100% - 32px); justify-content: center; border-radius: 8px; }
}

@media (max-width: 480px) {
    .vca-booking-field { padding: 8px 12px; }
    .vca-booking-value { font-size: 0.95rem; }
}

/* ── Card entrance animaties ─────────────────────────────────────────────── */
.vca-card--animate {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .42s ease, transform .42s ease;
    will-change: opacity, transform;
}
.vca-card--animate.vca-card--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Back-to-top knop ────────────────────────────────────────────────────── */
.vca-back-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vca-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background .2s;
    pointer-events: none;
    z-index: 999;
}
.vca-back-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.vca-back-top:hover {
    background: var(--vca-primary-hover);
    transform: translateY(-2px);
}

/* ── Skeleton loading cards ──────────────────────────────────────────────── */
.vca-skeleton {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.vca-skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: vca-shimmer 1.4s ease-in-out infinite;
}
.vca-skeleton-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vca-skeleton-line {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: vca-shimmer 1.4s ease-in-out infinite;
}
.vca-skeleton-line--title {
    width: 70%;
    height: 18px;
}
.vca-skeleton-line--text {
    width: 90%;
}
.vca-skeleton-line--short {
    width: 45%;
}
@keyframes vca-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Laatst bekeken strip ────────────────────────────────────────────────── */
.vca-recent-strip {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 24px 48px;
}
.vca-recent-heading {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--vca-text, #1a1a2e);
}
.vca-recent-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.12) transparent;
}
.vca-recent-scroll::-webkit-scrollbar { height: 4px; }
.vca-recent-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px; }

.vca-recent-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.08);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.vca-recent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.vca-recent-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
}
.vca-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vca-recent-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.vca-recent-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vca-recent-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vca-recent-location {
    font-size: 0.75rem;
    color: #888;
}
.vca-recent-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vca-primary, #2563eb);
    margin-top: 4px;
}

@media (max-width: 640px) {
    .vca-recent-card { flex: 0 0 160px; }
    .vca-recent-img  { height: 100px; }
    .vca-recent-strip { padding: 0 16px 32px; margin-top: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE UX FIXES
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1. Gallery/slider knoppen altijd zichtbaar op touch devices ────── */
@media (hover: none) {
    .vca-gallery-btn { opacity: .85; }
    .vca-card-slider-btn { opacity: .85; }
}

/* ── 2. Touch targets vergroten op mobiel ─────────────────────────── */
@media (max-width: 768px) {
    /* Favorieten knop: 32px → 44px */
    .vca-fav-btn { width: 44px; height: 44px; }
    .vca-fav-icon { width: 20px; height: 20px; }

    /* Paginering: 36px → 44px */
    .vca-pagination .page-numbers { width: 44px; height: 44px; font-size: 0.9rem; }

    /* Dag-opties refinement bar: meer padding */
    .vca-rfb-day-opt { padding: 10px 14px; font-size: 0.8rem; }

    /* +/- knoppen: 34px → 44px */
    .vsb-count-btn { width: 44px; height: 44px; font-size: 1.1rem; }

    /* Gallery all-button groter touch target */
    .vca-gallery-all-btn { padding: 10px 18px; }
}

/* ── 3. Refinement bar margin-bottom -66px corrigeren op mobiel ───── */
@media (max-width: 768px) {
    .vca-archive-hero .vca-rfb-outer { margin-bottom: 0; }
}

/* ── 4. Landing grid overflow fixen op kleine schermen ───────────── */
@media (max-width: 640px) {
    .vca-landing-grid { grid-template-columns: 1fr; }
}

/* ── 5. Card image vaste hoogte op mobiel ────────────────────────── */
@media (max-width: 768px) {
    .vca-card-image { height: 220px; }
    .vca-card-image img { min-height: 0; }
}

/* ── 6. Faciliteiten-grid 4→2 kolommen op mobiel ────────────────── */
@media (max-width: 768px) {
    .vca-fac-tiles,
    .vca-fac-tiles--main { grid-template-columns: repeat(2, 1fr); }
}

/* ── 7. Page nav scroll-indicator (fade rechts) ─────────────────── */
@media (max-width: 768px) {
    .vca-page-nav-wrap { position: relative; }
    .vca-page-nav-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 2px;
        width: 40px;
        background: linear-gradient(to right, transparent, #fff);
        pointer-events: none;
        z-index: 1;
    }
}

/* ── 8. Key-facts padding reduceren op mobiel ───────────────────── */
@media (max-width: 768px) {
    .vca-key-fact { padding: 10px 14px; font-size: 0.82rem; }
    .vca-key-fact svg { width: 16px; height: 16px; }
}

/* ── 9. iOS fullscreen kaart fallback (pseudo-fullscreen) ────────── */
.vca-archive-wrap.is-pseudo-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.vca-archive-wrap.is-pseudo-fullscreen #vcaMapContainer {
    display: flex !important;
    flex: 1 1 0%;
    min-height: 0;
    overflow: hidden;
}
.vca-archive-wrap.is-pseudo-fullscreen #vcaMap {
    width: 100%;
    height: 100%;
}
/* Sluitknop ook zichtbaar in pseudo-fullscreen */
.vca-archive-wrap.is-pseudo-fullscreen #vcaFsClose {
    display: flex;
}
@media (max-width: 768px) {
    /* Sidebar blijft slide-in drawer (i.p.v. display:none) zodat Filters bereikbaar zijn */
    .vca-archive-wrap.is-pseudo-fullscreen .vca-sidebar {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        width: 85%;
        max-width: 360px;
        height: 100%;
        flex: none;
        z-index: 10001;
        transform: translateX(-100%);
        border-right: none;
        padding: 16px;
    }
    .vca-archive-wrap.is-pseudo-fullscreen .vca-sidebar.is-open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,.25);
    }
    .vca-archive-wrap.is-pseudo-fullscreen .vca-sidebar-overlay { z-index: 10000; }
    .vca-archive-wrap.is-pseudo-fullscreen .vca-breadcrumbs,
    .vca-archive-wrap.is-pseudo-fullscreen .vca-archive-hero,
    .vca-archive-wrap.is-pseudo-fullscreen .vca-content-bg { display: none; }
    .vca-archive-wrap.is-pseudo-fullscreen .vca-main { flex: 1; width: 100%; min-height: 0; }
    /* Mobile action-bar inside pseudo-fullscreen: compact bovenin met ruimte voor ✕ */
    .vca-archive-wrap.is-pseudo-fullscreen .vca-mobile-action-bar {
        flex-shrink: 0;
        padding: 8px 56px 8px 12px;
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    /* Cards-paneel als bottom-sheet op mobile */
    .vca-archive-wrap.is-pseudo-fullscreen #vcaCardsWrap {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        max-height: 0;
        overflow: hidden;
        background: #f4f1ea;
        border-top: 1px solid #ddd;
        transition: max-height .3s ease;
    }
    .vca-archive-wrap.is-pseudo-fullscreen #vcaCardsWrap.is-open {
        max-height: 50vh;
        flex-basis: auto;
        display: flex;
        flex-direction: column;
    }
    .vca-archive-wrap.is-pseudo-fullscreen .vca-cards-scroll {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 16px;
    }
}
