/* ================================================================
   VI Travel – Frontend Styles
   Gebaseerd op vi-travel.nl design
   ================================================================ */

:root {
    --vit-rood:    #d10f21;
    --vit-donker:  #111827;
    --vit-grijs:   #6b7280;
    --vit-licht:   #f9fafb;
    --vit-grens:   #e5e7eb;
    --vit-groen:   #059669;
    --vit-oranje:  #d97706;
    --vit-blauw:   #2563eb;
    --vit-radius:  10px;
    --vit-shadow:  0 2px 12px rgba(0,0,0,.08);
    --vit-shadow-hover: 0 8px 28px rgba(0,0,0,.14);
}

/* ── Utility ─────────────────────────────────────────────────── */
.vit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .18s, transform .12s, box-shadow .18s;
    line-height: 1;
}
.vit-btn:active { transform: scale(.97); }

.vit-btn--primary {
    background: var(--vit-rood);
    color: #fff;
    border-color: var(--vit-rood);
}
.vit-btn--primary:hover {
    background: #b50d1c;
    border-color: #b50d1c;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(209,15,33,.3);
}
.vit-btn--ghost {
    background: transparent;
    color: var(--vit-grijs);
    border-color: var(--vit-grens);
}
.vit-btn--ghost:hover {
    background: var(--vit-licht);
    color: var(--vit-donker);
}
.vit-btn--sm  { padding: 7px 14px; font-size: .82rem; }
.vit-btn--lg  { padding: 14px 28px; font-size: 1rem; }
.vit-btn--full { width: 100%; justify-content: center; }

/* ── Badges ──────────────────────────────────────────────────── */
.vit-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.vit-badge--bevestigd { background: #dcfce7; color: #166534; }
.vit-badge--schaars   { background: #fff7ed; color: #9a3412; }

.vit-meta-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    background: #f3f4f6;
    color: var(--vit-grijs);
    margin-right: 4px;
}
.vit-meta-tag--competitie { background: #eff6ff; color: #1d4ed8; }
.vit-meta-tag--premium    { background: #fefce8; color: #854d0e; }
.vit-meta-tag--vip        { background: #faf5ff; color: #6b21a8; }

/* ── Hero ────────────────────────────────────────────────────── */
.vit-hero {
    background: var(--vit-donker);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vit-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(209,15,33,.35) 0%, transparent 70%);
    pointer-events: none;
}
.vit-hero__inner { position: relative; max-width: 720px; margin: 0 auto; }
.vit-hero__label {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
}
.vit-hero__titel {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    color: #fff;
}
.vit-hero__subtitel {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    margin: 0 0 32px;
}

/* ── USPs ────────────────────────────────────────────────────── */
.vit-usps { padding: 48px 24px; background: #fff; }
.vit-usps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.vit-usp-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    transition: box-shadow .2s;
}
.vit-usp-card:hover { box-shadow: var(--vit-shadow-hover); }
.vit-usp-card__icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.vit-usp-card__titel { font-size: 1rem; font-weight: 700; margin: 0 0 8px; color: var(--vit-donker); }
.vit-usp-card__tekst { font-size: .88rem; color: var(--vit-grijs); margin: 0; line-height: 1.55; }

/* ── Filter bar ──────────────────────────────────────────────── */
.vit-filterbar {
    background: #fff;
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    padding: 20px;
    margin-bottom: 28px;
    box-shadow: var(--vit-shadow);
}
.vit-filterbar__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}
.vit-filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
.vit-filter-label { font-size: .78rem; font-weight: 600; color: var(--vit-donker); }
.vit-select {
    padding: 9px 12px;
    border: 1px solid var(--vit-grens);
    border-radius: 6px;
    font-size: .9rem;
    color: var(--vit-donker);
    background: #fff;
    cursor: pointer;
}
.vit-select:focus { outline: 2px solid var(--vit-rood); outline-offset: 2px; border-color: transparent; }

/* ── Grid ────────────────────────────────────────────────────── */
.vit-overzicht { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.vit-resultaten-count { font-size: .9rem; color: var(--vit-grijs); margin-bottom: 20px; }
.vit-resultaten-count strong { color: var(--vit-donker); }

.vit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* ── Card ────────────────────────────────────────────────────── */
.vit-card {
    background: #fff;
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    overflow: hidden;
    box-shadow: var(--vit-shadow);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.vit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vit-shadow-hover);
}
.vit-card--last-chance { border-color: #fca5a5; }
.vit-card .vit-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.vit-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: #f3f4f6; }
.vit-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.vit-card:hover .vit-card__thumb img { transform: scale(1.04); }
.vit-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}
.vit-thumb-icon { font-size: 3rem; opacity: .3; }

.vit-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.vit-card__meta { margin-bottom: 10px; }
.vit-card__titel { font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; line-height: 1.35; color: var(--vit-donker); }
.vit-card__titel a { color: inherit; text-decoration: none; }
.vit-card__titel a:hover { color: var(--vit-rood); }
.vit-card__datum { display: flex; align-items: center; gap: 6px; font-size: .83rem; color: var(--vit-grijs); margin-bottom: 10px; }
.vit-card__excerpt { font-size: .87rem; color: var(--vit-grijs); line-height: 1.55; margin: 0 0 16px; flex: 1; }

.vit-card__footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--vit-grens); padding-top: 14px; margin-top: auto; }
.vit-card__prijs { display: flex; align-items: baseline; gap: 4px; }
.vit-prijs-vanaf { font-size: .75rem; color: var(--vit-grijs); }
.vit-prijs-bedrag { font-size: 1.5rem; font-weight: 800; color: var(--vit-rood); }
.vit-prijs-pp { font-size: .75rem; color: var(--vit-grijs); }

/* ── Pagination ──────────────────────────────────────────────── */
.vit-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.vit-page-btn {
    width: 38px; height: 38px;
    border: 1px solid var(--vit-grens);
    border-radius: 6px;
    background: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    font-weight: 500;
}
.vit-page-btn:hover { background: var(--vit-licht); }
.vit-page-btn.is-active { background: var(--vit-rood); color: #fff; border-color: var(--vit-rood); }

/* ── No results ──────────────────────────────────────────────── */
.vit-geen-resultaten { grid-column: 1/-1; text-align: center; padding: 48px 24px; color: var(--vit-grijs); }

/* ── Detail page ─────────────────────────────────────────────── */
.vit-detail { max-width: 1100px; margin: 0 auto; padding: 32px 16px; }
.vit-detail__header { margin-bottom: 24px; }
.vit-detail__titel { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--vit-donker); margin: 12px 0 16px; }
.vit-detail__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.vit-detail__layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .vit-detail__layout { grid-template-columns: 1fr; } }

.vit-detail__image { border-radius: var(--vit-radius); overflow: hidden; margin-bottom: 24px; }
.vit-detail__image img { width: 100%; display: block; }
.vit-detail__content { font-size: 1rem; line-height: 1.75; color: #374151; }

/* Sidebar box */
.vit-sidebar-box {
    background: #fff;
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    padding: 24px;
    box-shadow: var(--vit-shadow);
    position: sticky;
    top: 24px;
}
.vit-sidebar-prijs { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--vit-grens); margin-bottom: 20px; }
.vit-sidebar-prijs span { display: block; font-size: .85rem; color: var(--vit-grijs); }
.vit-sidebar-prijs strong { font-size: 2.5rem; font-weight: 800; color: var(--vit-rood); display: block; line-height: 1.1; }

.vit-detail-facts { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vit-detail-facts li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--vit-donker); }
.vit-detail-facts li svg { flex-shrink: 0; stroke: var(--vit-grijs); }

.vit-inclusief { margin: 20px 0; padding: 16px; background: #f0fdf4; border-radius: 8px; border: 1px solid #bbf7d0; }
.vit-inclusief strong { font-size: .88rem; font-weight: 700; color: #166534; display: block; margin-bottom: 8px; }
.vit-inclusief ul { margin: 0; padding: 0; list-style: none; }
.vit-inclusief li { font-size: .88rem; color: #15803d; padding: 3px 0; }

.vit-uitverkocht { text-align: center; font-weight: 600; color: var(--vit-grijs); padding: 12px; }
.vit-sidebar-contact { text-align: center; font-size: .82rem; color: var(--vit-grijs); margin: 12px 0 0; }

/* ── Booking form ────────────────────────────────────────────── */
.vit-boekform-wrap { max-width: 680px; margin: 0 auto; }
.vit-boek-reis-info {
    background: var(--vit-licht);
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.vit-boek-reis-info h3 { margin: 0 0 4px; font-size: 1.05rem; }
.vit-boek-reis-info p  { margin: 0; font-size: .88rem; color: var(--vit-grijs); }

.vit-notice { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: .93rem; }
.vit-notice--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.vit-notice--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.vit-notice--info    { background: #eff6ff; border: 1px solid #93c5fd; color: #1e40af; }

.vit-boekform { display: flex; flex-direction: column; gap: 20px; }
.vit-form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.vit-form-row--2col > .vit-field { flex: 1; min-width: 200px; }

.vit-field { display: flex; flex-direction: column; gap: 6px; }
.vit-field label { font-size: .88rem; font-weight: 600; color: var(--vit-donker); }
.vit-req { color: var(--vit-rood); }

.vit-field input[type="text"],
.vit-field input[type="email"],
.vit-field input[type="tel"],
.vit-field select,
.vit-field textarea {
    padding: 10px 14px;
    border: 1px solid var(--vit-grens);
    border-radius: 6px;
    font-size: .95rem;
    color: var(--vit-donker);
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .15s;
}
.vit-field input:focus,
.vit-field select:focus,
.vit-field textarea:focus {
    outline: none;
    border-color: var(--vit-rood);
    box-shadow: 0 0 0 3px rgba(209,15,33,.1);
}
.vit-field textarea { resize: vertical; min-height: 96px; }

.vit-field--akkoord label { display: flex; align-items: center; gap: 10px; font-weight: 400; cursor: pointer; }
.vit-field--akkoord a { color: var(--vit-rood); }

.vit-prijsoverzicht {
    background: var(--vit-licht);
    border: 1px solid var(--vit-grens);
    border-radius: 8px;
    padding: 16px 20px;
}
.vit-prijs-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.vit-prijs-omschrijving { font-size: .9rem; color: var(--vit-grijs); }
.vit-prijs-totaal { font-size: 1.4rem; font-weight: 800; color: var(--vit-rood); }
.vit-prijs-note { font-size: .8rem; color: var(--vit-grijs); margin: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
    .vit-hero { padding: 56px 16px; }
    .vit-filterbar__row { flex-direction: column; }
    .vit-filter-group { flex: unset; width: 100%; }
    .vit-grid { grid-template-columns: 1fr; }
    .vit-form-row { flex-direction: column; }
}

/* ── Loading skeleton ────────────────────────────────────────── */
@keyframes vit-shimmer {
    0%   { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}
.vit-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: vit-shimmer 1.2s infinite;
    border-radius: 6px;
}


/* ================================================================
   VI Travel – Boekingspagina (2-staps flow)
   ================================================================ */

/* ── Extra button grootte ────────────────────────────────────── */
.vit-btn--xl {
    padding: 16px 32px;
    font-size: 1.05rem;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.vit-breadcrumb {
    font-size: .85rem;
    color: var(--vit-grijs);
    margin-bottom: 24px;
}
.vit-breadcrumb a {
    color: var(--vit-rood);
    text-decoration: none;
    font-weight: 500;
}
.vit-breadcrumb a:hover { text-decoration: underline; }

/* ── Stap-indicator ──────────────────────────────────────────── */
.vit-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    max-width: 420px;
}
.vit-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vit-grijs);
}
.vit-step__nr {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--vit-grens);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
    background: #fff;
    transition: background .2s, border-color .2s, color .2s;
}
.vit-step__label { font-size: .88rem; font-weight: 500; white-space: nowrap; }
.vit-step--active .vit-step__nr  { background: var(--vit-rood); border-color: var(--vit-rood); color: #fff; }
.vit-step--active .vit-step__label { color: var(--vit-donker); font-weight: 700; }
.vit-step--done .vit-step__nr    { background: var(--vit-groen); border-color: var(--vit-groen); color: #fff; }
.vit-step--done .vit-step__label { color: var(--vit-groen); }
.vit-steps__line {
    flex: 1;
    height: 2px;
    background: var(--vit-grens);
    margin: 0 12px;
    max-width: 80px;
}

/* ── Boek page wrapper ───────────────────────────────────────── */
.vit-boek-page { max-width: 1100px; margin: 0 auto; padding: 32px 16px 64px; }

/* ── Twee-kolom layout: formulier + sidebar ──────────────────── */
.vit-boek-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .vit-boek-layout { grid-template-columns: 1fr; }
    .vit-boek-sidebar { order: -1; }
}

/* ── Formulier secties ───────────────────────────────────────── */
.vit-boek-sectie-titel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vit-donker);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--vit-grens);
}
.vit-boek-sectie-titel--mt { margin-top: 36px; }
.vit-boek-sectie-titel svg { stroke: var(--vit-rood); }

/* ── Radio groep (vertrekplaats) ─────────────────────────────── */
.vit-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vit-radio-label {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: .9rem;
    padding: 8px 14px;
    border: 1px solid var(--vit-grens);
    border-radius: 6px;
    background: #fff;
    transition: border-color .15s, background .15s;
    user-select: none;
}
.vit-radio-label:hover { border-color: var(--vit-rood); background: #fff5f5; }
.vit-radio-label input { accent-color: var(--vit-rood); }
.vit-radio-label:has(input:checked) {
    border-color: var(--vit-rood);
    background: #fff0f1;
    font-weight: 600 !important;
}

/* ── Prijsoverzicht ──────────────────────────────────────────── */
.vit-prijsoverzicht {
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    overflow: hidden;
    margin: 8px 0;
}
.vit-prijs-header {
    background: var(--vit-donker);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: 10px 18px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.vit-prijs-rijen { padding: 14px 18px; border-bottom: 1px solid var(--vit-grens); }
.vit-prijs-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; padding: 4px 0; color: var(--vit-donker); }
.vit-prijs-row--klein { color: var(--vit-grijs); font-size: .82rem; }
.vit-prijs-totaalrij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #fafafa;
    font-weight: 700;
    font-size: 1rem;
    color: var(--vit-donker);
}
.vit-prijs-totaal { font-size: 1.4rem; font-weight: 800; color: var(--vit-rood); }
.vit-prijs-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: .78rem;
    color: var(--vit-grijs);
    margin: 0;
    padding: 10px 18px;
    background: #f9fafb;
    border-top: 1px solid var(--vit-grens);
    line-height: 1.5;
}
.vit-prijs-note svg { flex-shrink: 0; margin-top: 1px; }

/* ── Akkoord checkbox ────────────────────────────────────────── */
.vit-akkoord-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px;
    font-weight: 400 !important;
    font-size: .9rem !important;
    cursor: pointer;
    line-height: 1.5;
}
.vit-akkoord-label input { margin-top: 3px; flex-shrink: 0; accent-color: var(--vit-rood); width: 16px; height: 16px; }
.vit-akkoord-label a { color: var(--vit-rood); }

/* ── Submit knop extras ──────────────────────────────────────── */
.vit-spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vit-spin .7s linear infinite;
    vertical-align: middle;
}
@keyframes vit-spin { to { transform: rotate(360deg); } }

.vit-boek-veiligheid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--vit-grijs);
    margin: 8px 0 0;
}
.vit-boek-veiligheid svg { stroke: var(--vit-groen); flex-shrink: 0; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.vit-boek-sidebar__sticky { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 16px; }

.vit-boek-reis-card {
    border: 1px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--vit-shadow);
}
.vit-boek-reis-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--vit-licht); position: relative; }
.vit-boek-reis-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vit-boek-reis-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    aspect-ratio: 16/9;
}
.vit-boek-reis-card__body { padding: 18px 18px 0; }
.vit-boek-reis-card__titel {
    font-size: .97rem;
    font-weight: 700;
    color: var(--vit-donker);
    margin: 8px 0 14px;
    line-height: 1.35;
}

.vit-boek-reis-card__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vit-boek-reis-card__facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: var(--vit-grijs);
}
.vit-boek-reis-card__facts li svg { flex-shrink: 0; stroke: var(--vit-grijs); }
.vit-fact--schaars { color: #9a3412 !important; font-weight: 600; }

.vit-boek-reis-card__prijs {
    padding: 16px 18px;
    border-top: 1px solid var(--vit-grens);
    margin-top: 16px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}
.vit-boek-prijs-display { display: flex; align-items: baseline; justify-content: space-between; }
.vit-boek-prijs-label { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 500; }
.vit-boek-prijs-bedrag { font-size: 1.8rem; font-weight: 800; color: #fff; }

/* ── Inclusief in sidebar ────────────────────────────────────── */
.vit-boek-inclusief {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    border-radius: var(--vit-radius);
    padding: 16px 18px;
}
.vit-boek-inclusief strong {
    font-size: .82rem;
    font-weight: 700;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: block;
    margin-bottom: 10px;
}
.vit-boek-inclusief ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.vit-boek-inclusief li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #15803d; }
.vit-boek-inclusief li svg { stroke: var(--vit-groen); flex-shrink: 0; }

/* ── Contact sidebar box ─────────────────────────────────────── */
.vit-boek-contact {
    border: 1px solid var(--vit-grens);
    background: #fff;
    border-radius: var(--vit-radius);
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .85rem;
    color: var(--vit-donker);
    line-height: 1.5;
}
.vit-boek-contact svg { stroke: var(--vit-rood); flex-shrink: 0; margin-top: 2px; }
.vit-boek-contact strong { color: var(--vit-donker); }
.vit-boek-contact span { color: var(--vit-grijs); font-size: .78rem; }

/* ── Stap 1: Reis-selectie grid ──────────────────────────────── */
.vit-boek-page--selectie { max-width: 1100px; }
.vit-selectie-header { margin-bottom: 28px; }
.vit-selectie-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--vit-donker); margin: 0 0 6px; }
.vit-selectie-header p  { color: var(--vit-grijs); margin: 0; }

.vit-selectie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.vit-selectie-card {
    position: relative;
    background: #fff;
    border: 2px solid var(--vit-grens);
    border-radius: var(--vit-radius);
    overflow: hidden;
    box-shadow: var(--vit-shadow);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    cursor: pointer;
}
.vit-selectie-card:hover {
    border-color: var(--vit-rood);
    transform: translateY(-3px);
    box-shadow: var(--vit-shadow-hover);
    text-decoration: none;
    color: inherit;
}
.vit-selectie-card--uitverkocht {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

.vit-selectie-card > .vit-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.vit-selectie-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--vit-licht);
}
.vit-selectie-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.vit-selectie-card:hover .vit-selectie-card__thumb img { transform: scale(1.05); }
.vit-selectie-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    aspect-ratio: 16/9;
}

.vit-selectie-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.vit-selectie-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vit-selectie-card__titel { font-size: .97rem; font-weight: 700; color: var(--vit-donker); margin: 0; line-height: 1.35; }
.vit-selectie-card__datum { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--vit-grijs); margin: 0; }
.vit-selectie-card__datum svg { flex-shrink: 0; }
.vit-selectie-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--vit-grens);
    padding-top: 12px;
    margin-top: auto;
}
.vit-selectie-card__prijs { display: flex; align-items: baseline; gap: 4px; }
.vit-selectie-card__prijs span { font-size: .75rem; color: var(--vit-grijs); }
.vit-selectie-card__prijs strong { font-size: 1.4rem; font-weight: 800; color: var(--vit-rood); }
.vit-selectie-card__cta { font-size: .82rem; font-weight: 700; color: var(--vit-rood); }

/* ── Uitverkocht badge ───────────────────────────────────────── */
.vit-badge--uitverkocht { background: #f3f4f6; color: #9ca3af; }
.vit-badge--sm { font-size: .68rem; padding: 2px 8px; }

/* ── Responsief formulier ────────────────────────────────────── */
@media (max-width: 600px) {
    .vit-boek-layout { gap: 24px; }
    .vit-steps { max-width: 100%; }
    .vit-step__label { font-size: .78rem; }
    .vit-steps__line { max-width: 40px; }
    .vit-selectie-grid { grid-template-columns: 1fr; }
    .vit-btn--xl { padding: 14px 20px; }
}

/* ── Succesmelding ───────────────────────────────────────────── */
.vit-success-inner {
    text-align: center;
    padding: 8px 0;
}
.vit-success-icon {
    width: 56px; height: 56px;
    background: var(--vit-groen);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 16px;
}
.vit-success-inner h3 { font-size: 1.25rem; margin: 0 0 8px; color: #166534; }
.vit-success-inner p  { font-size: .9rem; color: #15803d; margin: 0 0 6px; }
.vit-success-nr strong { font-family: monospace; font-size: 1rem; letter-spacing: .05em; }
.vit-success-tip { font-size: .82rem !important; color: var(--vit-grijs) !important; }
