/* Voyazu — custom stijlen bovenop Bootstrap 5
   Bestand: /public_html/css/voyazu.css
   Versie:  2.0 — 2026-04-11

   Design: warm, approachable travel planner
   Fonts:  DM Serif Display (headings) + Inter (body)
*/

/* ──────────────────────────────────────
   Design tokens
   ────────────────────────────────────── */
:root {
    /* Brand */
    --vz-green:        #1D9E75;
    --vz-green-dark:   #147A5A;
    --vz-green-mid:    #5DCAA5;
    --vz-green-light:  #E1F5EE;
    --vz-amber:        #BA7517;
    --vz-amber-light:  #FFF3E0;

    /* Warm neutrals */
    --vz-ink:          #2C2C2C;
    --vz-ink-light:    #6B6B6B;
    --vz-surface:      #FAF7F2;
    --vz-surface-warm: #F5F0E8;
    --vz-card:         #FFFFFF;
    --vz-border:       rgba(0,0,0,.08);
    --vz-border-warm:  rgba(180,160,130,.18);

    /* Misc */
    --vz-radius:       14px;
    --vz-radius-lg:    20px;
    --vz-shadow:       0 1px 3px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
    --vz-shadow-hover: 0 2px 6px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
    --vz-transition:   .2s ease;
}

/* ──────────────────────────────────────
   Base
   ────────────────────────────────────── */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--vz-surface);
    color: var(--vz-ink);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .vz-serif {
    font-family: 'DM Serif Display', Georgia, serif;
    letter-spacing: -.3px;
}

.fw-500 { font-weight: 500; }

/* ──────────────────────────────────────
   Topbar — icon-based centered nav
   ────────────────────────────────────── */
.vz-topbar {
    background: var(--vz-card);
    border-bottom: 1px solid var(--vz-border-warm);
    padding: .5rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.vz-topbar > .container {
    display: flex;
    align-items: center;
    min-height: 52px;
}

/* Brand */
.vz-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--vz-ink) !important;
    letter-spacing: -.5px;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.vz-logo-icon {
    width: 30px;
    height: 30px;
    background: var(--vz-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Centered icon navigation */
.vz-icon-nav {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.vz-icon-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: .35rem .85rem;
    font-size: .65rem;
    font-weight: 500;
    color: var(--vz-ink-light);
    text-decoration: none;
    border-radius: 10px;
    transition: color var(--vz-transition), background var(--vz-transition);
    letter-spacing: .2px;
    text-transform: uppercase;
}

.vz-icon-nav li a i {
    font-size: 1.15rem;
    line-height: 1;
}

.vz-icon-nav li a:hover {
    color: var(--vz-green);
    background: var(--vz-green-light);
}

.vz-icon-nav li a.active {
    color: var(--vz-green);
    background: var(--vz-green-light);
}

/* Right side */
.vz-topbar-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

/* Guest nav (non-logged-in topbar) */
.vz-guest-nav { gap: .5rem; margin-left: auto; }
.vz-guest-link {
    display: inline-flex;
    align-items: center;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--vz-muted);
    text-decoration: none;
    padding: .25rem .5rem;
    border-radius: var(--vz-radius);
    transition: color .15s;
}
.vz-guest-link:hover,
.vz-guest-link.active { color: var(--vz-green); }

.vz-lang-toggle {
    display: inline-flex;
    gap: .125rem;
    font-size: .75rem;
    font-weight: 600;
}
.vz-lang-toggle a {
    color: var(--vz-muted);
    text-decoration: none;
    padding: .2rem .35rem;
    border-radius: 4px;
    transition: color .15s, background .15s;
}
.vz-lang-toggle a:hover { color: var(--vz-text); }
.vz-lang-toggle a.active {
    color: var(--vz-green);
    background: var(--vz-green-tint);
}

.vz-btn-new-trip {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--vz-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--vz-transition), transform var(--vz-transition);
}

.vz-btn-new-trip:hover {
    background: var(--vz-green-dark);
    color: white;
    transform: scale(1.05);
}

/* Profile toggle */
.vz-profile-toggle {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--vz-ink);
    padding: .25rem;
    border-radius: 24px;
    transition: background var(--vz-transition);
}

.vz-profile-toggle:hover {
    background: var(--vz-surface-warm);
    color: var(--vz-ink);
}

.vz-profile-name {
    font-size: .85rem;
    font-weight: 500;
}

/* Avatar */
.vz-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vz-green), var(--vz-green-mid));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .5px;
    flex-shrink: 0;
}

.vz-avatar-sm {
    width: 28px;
    height: 28px;
    font-size: .6rem;
}

.vz-avatar-lg {
    width: 42px;
    height: 42px;
    font-size: .8rem;
}

/* Dropdown styling */
.vz-dropdown {
    border: 1px solid var(--vz-border-warm);
    border-radius: 12px;
    box-shadow: var(--vz-shadow-hover);
    padding: .5rem;
    margin-top: .5rem !important;
}

.vz-dropdown .dropdown-item {
    border-radius: 8px;
    font-size: .85rem;
    padding: .45rem .75rem;
}

.vz-dropdown .dropdown-item:hover {
    background: var(--vz-surface);
}

.vz-dropdown .dropdown-header {
    padding: .35rem .75rem;
}

.vz-dropdown .dropdown-divider {
    margin: .35rem 0;
    border-color: var(--vz-border-warm);
}

/* ──────────────────────────────────────
   Bottom tab bar (mobile only)
   ────────────────────────────────────── */
.vz-bottombar {
    display: none;
}

.vz-more-sheet {
    display: none;
}

/* ──────────────────────────────────────
   Layout — flex wrapper + sidebar
   ────────────────────────────────────── */
.vz-layout {
    display: flex;
    min-height: calc(100vh - 53px);
}

.vz-layout .vz-main {
    flex: 1;
    min-width: 0;
}

/* Sidebar — trip navigation (desktop only, >768px) */
.vz-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--vz-card);
    border-right: 1px solid var(--vz-border-warm);
    padding: 1.25rem 0;
    position: sticky;
    top: 53px;
    height: calc(100vh - 53px);
    overflow-y: auto;
}

.vz-sidebar-header {
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--vz-border-warm);
    margin-bottom: .75rem;
}

.vz-sidebar-flags {
    font-size: 1.25rem;
    display: block;
    margin-bottom: .25rem;
}

.vz-sidebar-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    margin: 0;
    color: var(--vz-ink);
    line-height: 1.3;
}

.vz-sidebar-dates {
    color: var(--vz-ink-light);
    display: block;
    margin-top: .25rem;
    font-size: .78rem;
}

.vz-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 .5rem;
}

.vz-sidebar-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .75rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--vz-ink-light);
    text-decoration: none;
    border-radius: 10px;
    transition: color var(--vz-transition), background var(--vz-transition);
}

.vz-sidebar-link i {
    font-size: 1.05rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

.vz-sidebar-link:hover {
    color: var(--vz-green);
    background: var(--vz-green-light);
}

.vz-sidebar-link.active {
    color: var(--vz-green);
    background: var(--vz-green-light);
    font-weight: 600;
}

/* ──────────────────────────────────────
   Buttons
   ────────────────────────────────────── */
.vz-btn-primary {
    background: var(--vz-green);
    border: none;
    color: white;
    font-size: .85rem;
    font-weight: 500;
    border-radius: 10px;
    padding: .45rem 1.1rem;
    transition: all var(--vz-transition);
    box-shadow: 0 1px 3px rgba(29,158,117,.25);
}

.vz-btn-primary:hover {
    background: var(--vz-green-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(29,158,117,.3);
}

.btn-vz-outline {
    border: 1.5px solid var(--vz-border-warm);
    color: var(--vz-ink-light);
    background: transparent;
    border-radius: 10px;
    font-size: .85rem;
    padding: .4rem 1rem;
    transition: all var(--vz-transition);
}

.btn-vz-outline:hover {
    border-color: var(--vz-green);
    color: var(--vz-green);
    background: var(--vz-green-light);
}

/* ──────────────────────────────────────
   Main content
   ────────────────────────────────────── */
.vz-main {
    padding: 1.5rem 0 3rem;
    flex: 1;
    min-width: 0;
}

/* ──────────────────────────────────────
   Cards — warm, rounded, soft shadow
   ────────────────────────────────────── */
.vz-card {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: var(--vz-radius);
    padding: 1.25rem;
    box-shadow: var(--vz-shadow);
    transition: box-shadow var(--vz-transition), transform var(--vz-transition);
}

a.vz-card {
    color: var(--vz-ink);
}

a.vz-card:hover,
.vz-card-hover:hover {
    box-shadow: var(--vz-shadow-hover);
    transform: translateY(-2px);
    color: var(--vz-ink);
}

.vz-card-header {
    border-bottom: 1px solid var(--vz-border-warm);
    padding-bottom: .75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

/* ──────────────────────────────────────
   Trip kaarten — dashboard overzicht
   ────────────────────────────────────── */
.vz-trip-card {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: var(--vz-radius-lg);
    overflow: hidden;
    transition: all var(--vz-transition);
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: var(--vz-shadow);
}

.vz-trip-card:hover {
    box-shadow: var(--vz-shadow-hover);
    transform: translateY(-3px);
    color: inherit;
}

.vz-trip-card-header {
    height: 110px;
    background: linear-gradient(135deg, var(--vz-green), var(--vz-green-mid));
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: .7rem 1rem;
}

.vz-trip-card-header.completed {
    background: linear-gradient(135deg, #888, #aaa);
}

.vz-trip-card-cover {
    background-size: cover;
    background-position: center;
}
.vz-trip-card-cover .vz-badge-status {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    color: var(--vz-ink);
}

.vz-trip-flags {
    font-size: 1.8rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
    position: absolute;
    top: .6rem;
    right: .7rem;
}
.vz-trip-card-cover .vz-trip-flags {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    padding: .15rem .45rem;
    border-radius: 6px;
    filter: none;
}

.vz-trip-card-body {
    padding: 1rem;
}

.vz-trip-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--vz-ink);
    margin-bottom: .25rem;
}

.vz-trip-meta {
    font-size: .78rem;
    color: var(--vz-ink-light);
}

/* ──────────────────────────────────────
   Badges
   ────────────────────────────────────── */
.vz-badge-status {
    font-size: .68rem;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-weight: 500;
    background: rgba(255,255,255,.22);
    color: white;
    backdrop-filter: blur(4px);
}

.vz-badge-stay     { background: var(--vz-green-light); color: var(--vz-green-dark); }
.vz-badge-travel   { background: var(--vz-amber-light); color: var(--vz-amber); }
.vz-badge-booked,
.vz-badge-option,
.vz-badge-idea {
    font-size: .7rem;
    padding: .2rem .55rem;
    border-radius: 6px;
    font-weight: 500;
    white-space: nowrap;
}
.vz-badge-booked   { background: var(--vz-green-light); color: var(--vz-green-dark); }
.vz-badge-option   { background: #fff3cd; color: #856404; }
.vz-badge-idea     { background: #f0ece4; color: #7a7060; }

/* ──────────────────────────────────────
   Calendar
   ────────────────────────────────────── */
.vz-calendar {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: var(--vz-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--vz-shadow);
}

.vz-cal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.vz-cal-nav-month {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--vz-ink);
    min-width: 160px;
    text-align: center;
}

.vz-cal-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--vz-border-warm);
    background: var(--vz-card);
    color: var(--vz-ink-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .15s ease;
    font-size: .8rem;
}

.vz-cal-nav-btn:hover {
    background: var(--vz-surface-warm);
    color: var(--vz-ink);
    border-color: rgba(180,160,130,.35);
}

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

.vz-cal-dow {
    text-align: center;
    font-size: .65rem;
    font-weight: 600;
    color: var(--vz-ink-light);
    padding: .4rem 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.vz-cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: .85rem;
    border-radius: 10px;
    cursor: pointer;
    color: var(--vz-ink-light);
    text-decoration: none;
    transition: all .15s ease;
    gap: 2px;
    line-height: 1;
    font-weight: 500;
    background: var(--vz-surface);
    border: 1px solid transparent;
    position: relative;
    padding: .5rem .2rem .35rem;
    min-height: 62px;
    overflow: hidden;
}

.vz-cal-day:hover                  { background: var(--vz-surface-warm); color: var(--vz-ink); transform: scale(1.06); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.vz-cal-day.other-month             { pointer-events: auto; }
.vz-cal-day.other-month:not(.is-stay):not(.is-travel):not(.is-free) { background: var(--vz-surface); }
.vz-cal-day.prev-month             { background: transparent; color: #d5d0c8; pointer-events: none; }
.vz-cal-day.is-stay                { background: var(--vz-green-light); color: var(--vz-green-dark); font-weight: 600; border-color: var(--vz-green-mid); }
.vz-cal-day.is-stay:hover          { background: #c8eddf; }
.vz-cal-day.is-travel              { background: #E8F0FE; color: #1A56DB; font-weight: 600; border-color: #A4C2F4; }
.vz-cal-day.is-travel:hover        { background: #d4e4fc; }
.vz-cal-day.is-free                { background: #FFF9E6; color: #856404; font-weight: 600; border-color: #FFE08A; }
.vz-cal-day.is-free:hover          { background: #fff3cc; }
.vz-cal-day.is-today               { border: 2px solid var(--vz-green); color: var(--vz-green-dark); font-weight: 700; box-shadow: 0 0 0 2px rgba(29,158,117,.15); }

.vz-cal-icon {
    font-size: .55rem;
    opacity: .5;
    position: absolute;
    top: 4px;
    right: 5px;
    line-height: 1;
}

.vz-cal-day.is-travel .vz-cal-icon { opacity: .6; color: #1A56DB; }
.vz-cal-day.is-stay .vz-cal-icon   { opacity: .45; color: var(--vz-green-dark); }

.vz-cal-loc {
    font-size: .55rem;
    opacity: .7;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    padding: 0 2px;
    font-weight: 400;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: center;
    word-break: break-word;
    margin-top: 1px;
}

.vz-cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vz-border-warm);
}

.vz-cal-legend-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    color: var(--vz-ink-light);
}

.vz-cal-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.vz-cal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 1rem;
}

.vz-cal-stat {
    background: var(--vz-surface);
    border-radius: 12px;
    padding: .65rem .75rem;
    text-align: center;
}

.vz-cal-stat-label {
    font-size: .65rem;
    font-weight: 500;
    color: var(--vz-ink-light);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.vz-cal-stat-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--vz-ink);
}

.vz-cal-month-divider {
    font-size: .7rem;
    font-weight: 600;
    color: var(--vz-ink-light);
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    padding: .6rem 0 .35rem;
}
.vz-cal-month-divider:first-child { padding-top: 0; }

/* ──────────────────────────────────────
   Day blocks
   ────────────────────────────────────── */
.vz-day-block {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: 12px;
    padding: .85rem 1rem;
    display: flex;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--vz-shadow);
    transition: box-shadow var(--vz-transition);
}
.vz-day-block:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.vz-day-block-accent {
    width: 3px;
    border-radius: 3px 0 0 3px;
    flex-shrink: 0;
    margin: -.85rem 0 -.85rem -1rem;
    margin-right: .75rem;
}

.vz-day-block-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    margin-right: .75rem;
}
.vz-day-block-icon-stay   { background: var(--vz-green-light); color: var(--vz-green); }
.vz-day-block-icon-travel { background: #EBF0FF; color: #1A56DB; }
.vz-day-block-icon-act    { background: #F0EEFF; color: #7F77DD; }

.vz-day-block-body {
    flex: 1;
    min-width: 0;
}

.vz-day-block-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .15rem .75rem;
    margin-top: .25rem;
    font-size: .8rem;
    color: var(--vz-ink-light);
}
.vz-day-block-meta i { margin-right: .2rem; }
.vz-day-block-meta a { font-size: .8rem; }

.vz-day-block-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .75rem;
    margin-top: .4rem;
    padding-top: .4rem;
    border-top: 1px solid var(--vz-border-warm);
    font-size: .8rem;
}

.vz-day-block-price {
    font-weight: 500;
    color: var(--vz-ink);
    font-size: .85rem;
}

.vz-block-stay   .vz-day-block-accent { background: var(--vz-green); }
.vz-block-travel .vz-day-block-accent { background: #1A56DB; }
.vz-block-act    .vz-day-block-accent { background: #7F77DD; }

.vz-day-cost-strip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--vz-green-light);
    color: var(--vz-green);
    padding: .35rem .85rem;
    border-radius: 20px;
    font-size: .85rem;
}
.vz-day-cost-strip .fw-500 { color: var(--vz-ink); }

.vz-add-block {
    border: 2px dashed var(--vz-border-warm);
    border-radius: 12px;
    padding: .7rem 1rem;
    font-size: .85rem;
    color: #bbb;
    text-align: center;
    cursor: pointer;
    transition: all var(--vz-transition);
    background: none;
    width: 100%;
}

.vz-add-block:hover {
    border-color: var(--vz-green-mid);
    color: var(--vz-green);
    background: var(--vz-green-light);
}

/* ──────────────────────────────────────
   Stat cards
   ────────────────────────────────────── */
.vz-stat {
    background: var(--vz-surface-warm);
    border-radius: 12px;
    padding: .75rem 1rem;
}

.vz-stat-label {
    font-size: .7rem;
    font-weight: 500;
    color: var(--vz-ink-light);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.vz-stat-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--vz-ink);
    margin-top: 2px;
}

/* ──────────────────────────────────────
   Alerts
   ────────────────────────────────────── */
.vz-alert-unplanned {
    background: #FFF9E6;
    border: 1px solid #FFE08A;
    border-radius: 12px;
    padding: .85rem 1.1rem;
}

.vz-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
}

/* ──────────────────────────────────────
   Footer
   ────────────────────────────────────── */
.vz-footer {
    border-top: 1px solid var(--vz-border-warm);
    padding: 1.25rem 0;
    background: var(--vz-card);
}

/* ──────────────────────────────────────
   Budget bar
   ────────────────────────────────────── */
.vz-budget-bar {
    height: 5px;
    background: var(--vz-surface-warm);
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.vz-budget-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--vz-green);
    transition: width .4s ease;
}

.vz-budget-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.vz-budget-items {
    display: flex;
    flex-direction: column;
}

.vz-budget-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--vz-border-warm);
}
.vz-budget-item:last-child { border-bottom: none; }
.vz-budget-item-total {
    border-top: 2px solid var(--vz-border-warm);
    border-bottom: none;
    padding-top: .65rem;
}

.vz-budget-item-name {
    flex: 1;
    min-width: 0;
}

.vz-budget-item-amount {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.vz-budget-item-action {
    flex-shrink: 0;
}

/* ──────────────────────────────────────
   Avatar stack
   ────────────────────────────────────── */
.vz-av-stack { display: flex; }
.vz-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 600;
    color: white;
    border: 2px solid white;
    margin-left: -6px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--vz-green), var(--vz-green-mid));
}
.vz-av:first-child { margin-left: 0; }

/* ──────────────────────────────────────
   Forms
   ────────────────────────────────────── */
.vz-form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--vz-ink-light);
    margin-bottom: .35rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border-color: var(--vz-border-warm);
    font-size: .9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--vz-green-mid);
    box-shadow: 0 0 0 3px rgba(29,158,117,.12);
}

/* ──────────────────────────────────────
   Landenkiezer
   ────────────────────────────────────── */
.vz-country-selector {
    position: relative;
}
.vz-country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .4rem;
    min-height: 0;
}
.vz-country-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--vz-surface);
    border: 1px solid var(--vz-border-warm);
    border-radius: 8px;
    padding: .2rem .55rem;
    font-size: .82rem;
    line-height: 1.4;
}
.vz-country-tag-remove {
    background: none;
    border: none;
    color: var(--vz-ink-light);
    font-size: 1rem;
    line-height: 1;
    padding: 0 0 0 .15rem;
    cursor: pointer;
    opacity: .5;
}
.vz-country-tag-remove:hover {
    opacity: 1;
    color: #c00;
}
.vz-country-dropdown-wrap {
    position: relative;
}
.vz-country-search {
    border-radius: 10px;
}
.vz-country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid var(--vz-border-warm);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.vz-country-dropdown.open {
    display: block;
}
.vz-country-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    cursor: pointer;
    font-size: .85rem;
    transition: background .1s;
    margin: 0;
}
.vz-country-option:hover {
    background: var(--vz-surface);
}
.vz-country-option.selected {
    background: rgba(29,158,117,.06);
}
.vz-country-option-flag {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.vz-country-option-name {
    flex: 1;
}
.vz-country-option-check {
    color: var(--vz-green);
    font-weight: 600;
    width: 1rem;
    text-align: center;
}

/* ──────────────────────────────────────
   Breadcrumb
   ────────────────────────────────────── */
.breadcrumb {
    font-size: .82rem;
}

.breadcrumb-item a {
    color: var(--vz-ink-light);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--vz-green);
}

.breadcrumb-item.active {
    color: var(--vz-ink);
}

/* ──────────────────────────────────────
   Profile avatars (large)
   ────────────────────────────────────── */
.vz-avatar-profile {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.vz-avatar-profile.vz-avatar-initials {
    background: linear-gradient(135deg, var(--vz-green), var(--vz-green-mid));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Navbar avatar with uploaded image */
.vz-avatar-img {
    object-fit: cover;
    background: none;
}

/* Traveller card avatar */
.vz-avatar-trav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.vz-avatar-trav.vz-avatar-initials {
    background: linear-gradient(135deg, var(--vz-green), var(--vz-green-mid));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

/* ──────────────────────────────────────
   Progress bars (Bootstrap override)
   ────────────────────────────────────── */
.progress {
    border-radius: 6px;
    background: var(--vz-surface-warm);
}

/* ──────────────────────────────────────
   Responsive
   ────────────────────────────────────── */
@media (max-width: 768px) {
    /* Hide topbar icon nav — use bottom bar instead */
    .vz-icon-nav { display: none !important; }

    /* Hide sidebar — use bottom bar for trip nav */
    .vz-sidebar { display: none; }
    .vz-layout  { display: block; min-height: auto; }

    .vz-topbar > .container { min-height: 44px; }
    .vz-topbar-right { margin-left: auto; }
    .vz-profile-name { display: none !important; }
    .vz-topbar-right .bi-chevron-down { display: none !important; }

    .vz-main { padding: 1rem 0 2rem; padding-bottom: calc(4rem + env(safe-area-inset-bottom)); }

    /* Bottom tab bar */
    .vz-bottombar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        background: var(--vz-card);
        border-top: 1px solid var(--vz-border-warm);
        padding: .35rem 0 calc(.35rem + env(safe-area-inset-bottom));
        justify-content: space-around;
        align-items: center;
    }

    .vz-bottombar-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: .25rem .5rem;
        font-size: .6rem;
        font-weight: 500;
        color: var(--vz-ink-light);
        text-decoration: none;
        border: none;
        background: none;
        text-transform: uppercase;
        letter-spacing: .2px;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    .vz-bottombar-tab i {
        font-size: 1.25rem;
        line-height: 1;
    }

    .vz-bottombar-tab.active {
        color: var(--vz-green);
    }

    /* More sheet */
    .vz-more-sheet.is-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1039;
        background: rgba(0,0,0,.3);
    }

    .vz-more-sheet-inner {
        position: absolute;
        bottom: calc(3.5rem + env(safe-area-inset-bottom));
        left: .75rem;
        right: .75rem;
        background: var(--vz-card);
        border-radius: var(--vz-radius);
        box-shadow: var(--vz-shadow-hover);
        padding: .5rem;
        display: flex;
        flex-direction: column;
    }

    .vz-more-item {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: .75rem 1rem;
        font-size: .9rem;
        font-weight: 500;
        color: var(--vz-ink);
        text-decoration: none;
        border-radius: 10px;
        transition: background var(--vz-transition);
    }

    .vz-more-item:hover,
    .vz-more-item:active {
        background: var(--vz-green-light);
    }

    .vz-more-item.active {
        color: var(--vz-green);
        background: var(--vz-green-light);
    }
}

@media (max-width: 576px) {
    .vz-cal-day { font-size: .8rem; min-height: 42px; padding: .4rem .15rem; }
    .vz-cal-loc { display: none; }

    .vz-stay-image { height: 120px; }

    .vz-more-item i {
        font-size: 1.15rem;
        width: 1.5rem;
        text-align: center;
    }

    .vz-footer {
        padding-bottom: calc(4rem + env(safe-area-inset-bottom));
    }
}

/* ──────────────────────────────────────
   Stay cards — afbeelding en layout
   ────────────────────────────────────── */
.vz-stay-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.vz-stay-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vz-surface);
    color: var(--vz-ink-faint);
    font-size: 2.5rem;
    opacity: .3;
}

/* ──────────────────────────────────────
   Stay detail page
   ────────────────────────────────────── */
.vz-stay-detail-hero {
    border-radius: 12px;
    overflow: hidden;
    max-height: 300px;
}
.vz-stay-detail-hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ──────────────────────────────────────
   Dashboard hero & cards
   ────────────────────────────────────── */
.vz-dash-hero {
    background: linear-gradient(135deg, var(--vz-green) 0%, #14B885 50%, #0EA5A0 100%);
    border-radius: var(--vz-radius-lg);
    padding: 1.75rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.vz-dash-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}
.vz-dash-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
}
.vz-dash-hero-cover {
    background-size: cover;
    background-position: center;
}
.vz-dash-hero-cover .vz-dash-hero-content {
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.vz-dash-hero-cover::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.4) 100%);
}
.vz-dash-hero-cover::after {
    display: none;
}
.vz-dash-hero-content {
    position: relative;
    z-index: 1;
}
.vz-dash-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: #fff;
    letter-spacing: -.3px;
}
.vz-dash-destination {
    font-size: .9rem;
    opacity: .9;
}
.vz-dash-edit-btn {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    font-size: .8rem;
    backdrop-filter: blur(4px);
    transition: background var(--vz-transition);
}
.vz-dash-edit-btn:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
}
.vz-dash-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.15);
    gap: 1rem;
    flex-wrap: wrap;
}
.vz-dash-dates {
    font-size: .85rem;
    opacity: .9;
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}
.vz-dash-meta-sep {
    opacity: .5;
}
.vz-dash-countdown {
    display: flex;
    align-items: baseline;
    gap: .5rem;
}
.vz-dash-countdown-num {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: normal;
}
.vz-dash-countdown-label {
    font-size: .8rem;
    opacity: .85;
}
.vz-dash-countdown-badge {
    background: rgba(255,255,255,.15);
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .8rem;
    backdrop-filter: blur(4px);
}
.vz-dash-itinerary-link {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    background: rgba(255,255,255,.12);
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: .8rem;
    transition: background var(--vz-transition);
}
.vz-dash-itinerary-link:hover {
    color: #fff;
    background: rgba(255,255,255,.22);
}

/* Stat cards (Calendar, Budget) */
.vz-dash-stat-card {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: var(--vz-radius);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--vz-shadow);
    transition: box-shadow var(--vz-transition), transform var(--vz-transition);
    color: var(--vz-ink);
}
.vz-dash-stat-card:hover {
    box-shadow: var(--vz-shadow-hover);
    transform: translateY(-2px);
    color: var(--vz-ink);
}
.vz-dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.vz-dash-stat-body {
    flex: 1;
    min-width: 0;
}
.vz-dash-stat-label {
    font-size: .8rem;
    color: var(--vz-ink-light);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
    margin-bottom: .25rem;
}
.vz-dash-stat-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: .5rem;
}
.vz-dash-stat-of {
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    color: var(--vz-ink-light);
    margin-left: .25rem;
}
.vz-dash-stat-bar {
    height: 6px;
    background: var(--vz-surface-warm);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: .4rem;
}
.vz-dash-stat-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .4s ease;
}
.vz-dash-stat-sub {
    font-size: .78rem;
    color: var(--vz-ink-light);
}

/* Section cards (Stays, Travellers, etc.) */
.vz-dash-section-card {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: var(--vz-radius);
    padding: 1.25rem;
    box-shadow: var(--vz-shadow);
    transition: box-shadow var(--vz-transition), transform var(--vz-transition);
    color: var(--vz-ink);
}
.vz-dash-section-card:hover {
    box-shadow: var(--vz-shadow-hover);
    transform: translateY(-2px);
    color: var(--vz-ink);
}
.vz-dash-section-icon {
    font-size: 1.5rem;
    color: var(--vz-green);
    margin-bottom: .5rem;
}
.vz-dash-section-title {
    font-weight: 500;
    font-size: .95rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.vz-dash-section-count {
    background: var(--vz-green-light);
    color: var(--vz-green);
    font-size: .7rem;
    font-weight: 600;
    padding: .1rem .5rem;
    border-radius: 10px;
}
.vz-dash-section-detail {
    font-size: .82rem;
    color: var(--vz-ink-light);
    line-height: 1.5;
}
.vz-dash-section-date {
    opacity: .6;
    margin-left: .15rem;
}
.vz-dash-section-dot {
    margin: 0 .3rem;
    opacity: .4;
}
.vz-dash-section-empty {
    font-size: .82rem;
    color: var(--vz-ink-light);
    opacity: .7;
}
.vz-dash-section-progress {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.vz-dash-section-progress .vz-dash-stat-bar {
    flex: 1;
}
.vz-dash-section-progress-text {
    font-size: .78rem;
    color: var(--vz-ink-light);
    white-space: nowrap;
}

@media (max-width: 576px) {
    .vz-dash-hero { padding: 1.25rem; }
    .vz-dash-title { font-size: 1.15rem; }
    .vz-dash-edit-btn { font-size: .72rem; padding: .25rem .5rem; }
    .vz-dash-destination { font-size: .82rem; }
    .vz-dash-meta { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .vz-dash-dates { font-size: .78rem; }
    .vz-dash-countdown { margin-top: .25rem; }
    .vz-dash-countdown-num { font-size: 1.5rem; }
    .vz-dash-countdown-label { font-size: .75rem; }
    .vz-dash-itinerary-link { font-size: .72rem; padding: .15rem .5rem; }
    .vz-dash-stat-card { padding: 1rem; }
    .vz-dash-stat-value { font-size: 1.15rem; }
}

/* ──────────────────────────────────────
   File list (stay documents)
   ────────────────────────────────────── */
.vz-file-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.vz-file-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    background: var(--vz-surface);
    transition: background var(--vz-transition);
}
.vz-file-item:hover {
    background: var(--vz-surface-warm);
}
.vz-file-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--vz-green-light);
    color: var(--vz-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.vz-file-info {
    flex: 1;
    min-width: 0;
}
.vz-file-name {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--vz-ink);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vz-file-name:hover {
    color: var(--vz-green);
}
.vz-file-meta {
    font-size: .75rem;
    color: var(--vz-ink-light);
}
.vz-file-action {
    flex-shrink: 0;
}

/* File viewer (in-app PDF/image viewer) */
.vz-file-viewer {
    border-radius: var(--vz-radius);
    overflow: hidden;
    border: 1px solid var(--vz-border-warm);
    box-shadow: var(--vz-shadow);
    margin-bottom: 1.5rem;
}
.vz-file-viewer-frame {
    width: 100%;
    height: calc(100vh - 220px);
    min-height: 500px;
    border: 0;
    display: block;
}
.vz-file-viewer-image {
    border-radius: var(--vz-radius);
    overflow: hidden;
    border: 1px solid var(--vz-border-warm);
    box-shadow: var(--vz-shadow);
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--vz-surface-warm);
    padding: 1rem;
}
.vz-file-viewer-image img {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    border-radius: 8px;
    object-fit: contain;
}

/* Share page */
.vz-share-member-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.vz-share-member {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .75rem;
    border-radius: 10px;
    transition: background var(--vz-transition);
}
.vz-share-member:hover {
    background: var(--vz-surface);
}
.vz-share-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vz-green-light);
    color: var(--vz-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}
.vz-share-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vz-share-avatar-pending {
    background: var(--vz-amber-light);
    color: var(--vz-amber);
}
.vz-share-member-info {
    flex: 1;
    min-width: 0;
}
.vz-share-member-name {
    font-weight: 500;
    font-size: .9rem;
}
.vz-share-you {
    font-weight: 400;
    font-size: .78rem;
    color: var(--vz-ink-light);
    margin-left: .25rem;
}
.vz-share-member-email {
    font-size: .78rem;
    color: var(--vz-ink-light);
}
.vz-share-member-role {
    flex-shrink: 0;
}
.vz-share-role-select {
    width: auto;
    min-width: 7rem;
    font-size: .8rem;
    padding: .2rem 1.8rem .2rem .5rem;
}
.vz-share-role-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 500;
    padding: .2rem .6rem;
    border-radius: 6px;
}
.vz-share-role-owner {
    background: var(--vz-green-light);
    color: var(--vz-green-dark);
}
.vz-share-role-editor {
    background: var(--vz-surface-warm);
    color: var(--vz-ink-light);
}
.vz-share-member-action {
    flex-shrink: 0;
}
.vz-share-link-box {
    display: flex;
    gap: .5rem;
    align-items: stretch;
}
.vz-share-link-box input {
    background: var(--vz-surface) !important;
    font-size: .82rem;
}
.vz-share-link-actions {
    display: flex;
    gap: .25rem;
    flex-shrink: 0;
}
@media (max-width: 576px) {
    .vz-share-link-box {
        flex-direction: column;
    }
    .vz-share-link-actions {
        justify-content: flex-start;
    }
    .vz-file-viewer-frame {
        height: calc(100vh - 260px);
        min-height: 400px;
    }
}

.vz-link-truncate {
    max-width: min(300px, 60vw);
}

.vz-map-iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}
@media (max-width: 576px) {
    .vz-stay-detail-hero img { height: auto; max-height: 200px; aspect-ratio: 16/9; }
    .vz-map-iframe { height: 180px; }
}

/* ──────────────────────────────────────
   Verification banner
   ────────────────────────────────────── */
.vz-verify-banner {
    background: var(--vz-amber-light);
    border-bottom: 1px solid rgba(186,117,23,.2);
    padding: .6rem 0;
    font-size: .85rem;
    color: #7a5c1a;
}

.vz-verify-banner .btn-outline-dark {
    font-size: .75rem;
    border-radius: 8px;
    padding: .25rem .75rem;
}

/* ──────────────────────────────────────
   Landing page
   ────────────────────────────────────── */
.vz-landing {
    background: var(--vz-surface);
}

.vz-landing-topbar {
    background: var(--vz-card);
    border-bottom: 1px solid var(--vz-border-warm);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.fw-600 { font-weight: 600; }

/* ── Hero ── */
.vz-hero {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(180deg, var(--vz-surface) 0%, var(--vz-surface-warm) 100%);
    position: relative;
    overflow: hidden;
}

/* Mobile hero background image — hidden on desktop (desktop uses side image) */
.vz-hero-bg-mobile {
    display: none;
}

.vz-hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3.2rem;
    line-height: 1.12;
    color: var(--vz-ink);
    letter-spacing: -.5px;
    margin-bottom: 1.25rem;
}

.vz-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--vz-ink-light);
    max-width: 480px;
}

.vz-hero-cta-sub {
    font-size: .8rem;
    color: var(--vz-ink-light);
    margin-top: .75rem;
    margin-bottom: 0;
    opacity: .7;
}

.vz-btn-hero {
    padding: .7rem 1.8rem;
    font-size: .95rem;
    border-radius: 12px;
    font-weight: 500;
}

/* Hero visual v2 */
.vz-hero-visual-v2 {
    position: relative;
    padding-left: 2rem;
}

.vz-hero-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--vz-shadow-hover);
    aspect-ratio: 4/3;
    background: var(--vz-surface-warm);
}
.vz-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vz-hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--vz-ink-light);
    background: linear-gradient(135deg, var(--vz-green-light) 0%, var(--vz-surface-warm) 50%, var(--vz-amber-light) 100%);
    font-size: .85rem;
}
.vz-hero-img-placeholder i {
    font-size: 2.5rem;
    opacity: .3;
}

/* Floating planner mockup */
.vz-hero-mockup {
    position: absolute;
    bottom: -1rem;
    left: 0;
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: 14px;
    padding: .8rem 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    min-width: 180px;
    z-index: 2;
}
.vz-hero-mockup-bar {
    display: flex;
    gap: 5px;
    margin-bottom: .6rem;
}
.vz-hero-mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.vz-hero-mockup-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 4px;
}
.vz-hero-mockup-label {
    font-size: .6rem;
    color: var(--vz-ink-light);
    min-width: 30px;
}
.vz-hero-mockup-block {
    height: 8px;
    border-radius: 4px;
    flex: 1;
}
.vz-mock-stay { background: var(--vz-green-mid); }
.vz-mock-travel { background: var(--vz-amber); }

/* ── Social proof strip ── */
.vz-proof-strip {
    background: var(--vz-card);
    border-top: 1px solid var(--vz-border);
    border-bottom: 1px solid var(--vz-border);
    padding: 1.1rem 0;
}
.vz-proof-items {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.vz-proof-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .85rem;
    color: var(--vz-ink-light);
    font-weight: 500;
}
.vz-proof-item i {
    color: var(--vz-green);
    font-size: .95rem;
}

/* ── Sections ── */
.vz-section {
    padding: 5rem 0;
}

.vz-section-alt {
    background: var(--vz-card);
}

.vz-section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.1rem;
    color: var(--vz-ink);
}

/* ── Benefit cards (features v2) ── */
.vz-benefit-card {
    background: var(--vz-card);
    border: 1px solid var(--vz-border-warm);
    border-radius: var(--vz-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: all var(--vz-transition);
}
.vz-benefit-card:hover {
    box-shadow: var(--vz-shadow-hover);
    transform: translateY(-2px);
}
.vz-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--vz-green-light);
    color: var(--vz-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.vz-benefit-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--vz-ink);
}
.vz-benefit-desc {
    font-size: .88rem;
    line-height: 1.65;
    color: var(--vz-ink-light);
    margin-bottom: 0;
}

/* Feature cards (about page) */
.vz-feature-card {
    padding: 2rem 1.25rem;
}

.vz-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--vz-green-light);
    color: var(--vz-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.vz-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--vz-ink);
}

.vz-feature-desc {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--vz-ink-light);
    margin-bottom: 0;
}

/* ── Step cards ── */
.vz-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.vz-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vz-green);
    color: white;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.vz-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--vz-ink);
}

.vz-step-desc {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--vz-ink-light);
    margin-bottom: 0;
}

/* ── Destination cards ── */
.vz-dest-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
}
.vz-dest-card {
    flex: 0 0 auto;
    width: 160px;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    transition: transform var(--vz-transition);
}
.vz-dest-card:hover {
    transform: translateY(-3px);
    color: inherit;
}
.vz-dest-thumb {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    position: relative;
    overflow: hidden;
}
.vz-dest-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, rgba(0,0,0,.1) 100%);
}
.vz-dest-flag {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.vz-dest-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--vz-ink);
    display: block;
    text-align: center;
}

/* ── Bottom CTA ── */
.vz-cta-bottom {
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, var(--vz-surface) 0%, var(--vz-green-light) 100%);
}

.vz-cta-text {
    font-size: 1.05rem;
    color: var(--vz-ink-light);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.vz-cta-proof {
    font-size: .78rem;
    color: var(--vz-ink-light);
    margin-top: 1rem;
    opacity: .6;
}

/* ── Landing responsive ── */
@media (max-width: 991px) {
    /* Show hero background image on tablet + mobile (desktop uses the side column) */
    .vz-hero {
        background: none;
    }
    .vz-hero-bg-mobile {
        display: block;
        position: absolute;
        inset: 0;
        background: var(--hero-bg) center/cover no-repeat;
        z-index: 0;
    }
    .vz-hero-bg-mobile::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(255,255,255,.88) 0%,
            rgba(255,255,255,.82) 50%,
            rgba(255,255,255,.92) 100%
        );
    }
    .vz-hero-title,
    .vz-hero-subtitle { position: relative; z-index: 1; }
    .vz-hero .container { position: relative; z-index: 1; }
}

@media (max-width: 768px) {
    .vz-hero { padding: 3rem 0 2.5rem; }
    .vz-hero-title { font-size: 2.4rem; }
    .vz-hero-subtitle { font-size: 1rem; }
    .vz-section { padding: 3.5rem 0; }
    .vz-section-title { font-size: 1.6rem; }
    .vz-proof-items { gap: 1.2rem; }
    .vz-dest-card { width: 140px; }
}

@media (max-width: 576px) {
    .vz-hero { padding: 2.5rem 0 2rem; }
    .vz-hero-title { font-size: 1.9rem; }
    .vz-hero-subtitle { max-width: 100%; }
    .vz-btn-hero { font-size: .85rem; padding: .55rem 1.2rem; width: 100%; text-align: center; }
    .vz-proof-items { gap: .8rem; justify-content: flex-start; }
    .vz-proof-item { font-size: .75rem; }
    .vz-benefit-card { padding: 1.25rem; }
    .vz-dest-card { width: 130px; }
    /* Slightly stronger overlay on small screens for readability */
    .vz-hero-bg-mobile::after {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,.92) 0%,
            rgba(255,255,255,.85) 50%,
            rgba(255,255,255,.95) 100%
        );
    }
}

/* ──────────────────────────────────────
   Itinerary timeline
   ────────────────────────────────────── */
.vz-itinerary {
    padding: 0 0 2rem;
}

.vz-it-day {
    display: flex;
    gap: .75rem;
    min-height: 48px;
}

.vz-it-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 16px;
}

.vz-it-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--vz-border-warm);
    background: var(--vz-surface-warm);
    flex-shrink: 0;
    margin-top: 6px;
}

.vz-it-line {
    width: 2px;
    flex: 1;
    background: var(--vz-border-warm);
    margin: 4px 0;
}

/* Dot kleuren per dagtype */
.vz-it-stay .vz-it-dot    { background: var(--vz-green-light); border-color: var(--vz-green); }
.vz-it-travel .vz-it-dot  { background: #E8F0FE; border-color: #1A56DB; }
.vz-it-mixed .vz-it-dot   { background: var(--vz-green-light); border-color: var(--vz-green); }
.vz-it-activity .vz-it-dot{ background: #FFF3E0; border-color: #E65100; }
.vz-it-free .vz-it-dot    { background: #f5f0e8; border-color: #d5d0c8; }

.vz-it-content {
    flex: 1;
    padding-bottom: 1.25rem;
}

.vz-it-daynum {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--vz-green);
}

.vz-it-date {
    font-size: .78rem;
    color: var(--vz-ink-light);
}

.vz-it-blocks {
    margin-top: .25rem;
}

.vz-it-block {
    font-size: .82rem;
    padding: .35rem .6rem;
    border-radius: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.vz-it-block i:first-child {
    font-size: .7rem;
    opacity: .6;
}

.vz-it-block-stay {
    background: var(--vz-green-light);
    color: var(--vz-ink);
}

a.vz-it-block-stay:hover {
    background: #c8ece0;
    color: var(--vz-ink);
}

.vz-it-block-travel {
    background: #E8F0FE;
    color: var(--vz-ink);
}

.vz-it-block-activity {
    background: #FFF3E0;
    color: var(--vz-ink);
}

.vz-it-block-note {
    background: var(--vz-surface-warm);
    color: var(--vz-ink-light);
    font-size: .78rem;
}

.vz-it-empty .vz-it-content {
    padding-bottom: .75rem;
}

/* Print styles */
@media print {
    .vz-no-print, .vz-topbar, .vz-bottombar, .vz-more-sheet, .vz-sidebar, .vz-footer, .breadcrumb { display: none !important; }
    .vz-layout { display: block; }
    .vz-main { padding-top: 0; }
    .vz-it-block { break-inside: avoid; }
    .vz-it-day { break-inside: avoid; }
}

/* ──────────────────────────────────────
   Checklists
   ────────────────────────────────────── */
.vz-checklist-item {
    border-bottom: 1px solid var(--vz-border-warm);
    transition: opacity .2s ease;
}

.vz-checklist-item:last-child {
    border-bottom: none;
}

.vz-checklist-item.is-checked {
    opacity: .55;
}

.vz-check-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 1.1rem;
    color: var(--vz-ink-faint);
    cursor: pointer;
    line-height: 1;
    transition: color .15s ease;
}

.vz-check-btn:hover {
    color: var(--vz-green);
}

.vz-check-btn.checked {
    color: var(--vz-green);
}

.vz-inline-form summary {
    list-style: none;
    user-select: none;
}

.vz-inline-form summary::-webkit-details-marker {
    display: none;
}

.vz-inline-form summary::marker {
    display: none;
    content: '';
}

/* ──────────────────────────────────────
   Public share page
   ────────────────────────────────────── */
.vz-share-hero {
    background: linear-gradient(135deg, var(--vz-green), var(--vz-green-mid));
    border-radius: 0 0 var(--vz-radius-lg) var(--vz-radius-lg);
    padding: 3rem 1rem 4rem;
    margin: -1.5rem -12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vz-share-hero-img {
    background-size: cover;
    background-position: center;
}
.vz-share-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.5) 100%);
}
.vz-share-hero-img .vz-share-hero-inner {
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.vz-share-hero-inner { color: white; position: relative; z-index: 1; }

.vz-share-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.vz-share-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: .25rem;
}

.vz-share-dest  { font-size: 1rem; opacity: .9; }
.vz-share-dates { font-size: .85rem; opacity: .8; }

/* Timeline */
.vz-share-timeline {
    position: relative;
    padding-left: 24px;
}

.vz-share-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--vz-border-warm);
}

.vz-tl-item {
    position: relative;
    padding: .5rem 0 .5rem .75rem;
}

.vz-tl-dot {
    position: absolute;
    left: -20px;
    top: .7rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--vz-surface-warm);
    border: 2px solid var(--vz-border-warm);
}

.vz-tl-stay .vz-tl-dot   { background: var(--vz-green-light); border-color: var(--vz-green); }
.vz-tl-travel .vz-tl-dot { background: #E8F0FE; border-color: #1A56DB; }
.vz-tl-free .vz-tl-dot   { background: #f5f0e8; border-color: #d5d0c8; }

.vz-tl-day {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--vz-ink-light);
}

.vz-tl-date {
    font-size: .75rem;
    color: var(--vz-ink-light);
}

.vz-tl-location {
    font-size: .85rem;
    color: var(--vz-ink);
    margin-top: 2px;
}

@media (max-width: 576px) {
    .vz-share-hero { padding: 2rem 1rem 3rem; }
    .vz-share-title { font-size: 1.4rem; }
    .vz-calendar { padding: 1rem; }
    .vz-cal-grid { gap: 3px; }
    .vz-cal-day { font-size: .75rem; border-radius: 8px; min-height: 38px; padding: .35rem .1rem; }
    .vz-cal-loc { font-size: .48rem; }
    .vz-cal-icon { font-size: .5rem; top: 3px; right: 3px; }
    .vz-cal-nav-month { font-size: 1rem; min-width: 130px; }
    .vz-cal-stat-value { font-size: 1.1rem; }
}

/* ──────────────────────────────────────
   About & Contact pages
   ────────────────────────────────────── */
.vz-page-hero {
    background: linear-gradient(135deg, var(--vz-green-light) 0%, var(--vz-surface) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}
.vz-page-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--vz-ink);
    margin-bottom: .5rem;
}
.vz-page-hero-subtitle {
    color: var(--vz-ink-light);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

.vz-about-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--vz-ink);
}

.vz-about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.vz-about-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.vz-about-point-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--vz-green-light);
    color: var(--vz-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.vz-about-point-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: var(--vz-ink);
}
.vz-about-point-desc {
    font-size: .9rem;
    color: var(--vz-ink-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.vz-audience-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    background: var(--vz-surface-warm);
    color: var(--vz-ink);
    font-size: .9rem;
    font-weight: 500;
}
.vz-audience-pill i {
    color: var(--vz-green);
    font-size: .85rem;
}

@media (max-width: 576px) {
    .vz-page-hero { padding: 2.5rem 1rem 2rem; }
    .vz-page-hero-title { font-size: 1.6rem; }
}

/* ──────────────────────────────────────
   Wishlist
   ────────────────────────────────────── */
.vz-fav-card .vz-card {
    transition: box-shadow var(--vz-transition), transform var(--vz-transition);
}
.vz-fav-card:hover .vz-card {
    box-shadow: var(--vz-shadow-hover);
    transform: translateY(-2px);
}

.vz-fav-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: var(--vz-radius) var(--vz-radius) 0 0;
}

/* Favorieten hero header */
.vz-fav-hero {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: var(--vz-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.vz-fav-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.vz-fav-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 1.25rem 1.5rem;
    color: #fff;
}
.vz-fav-hero-content h1 {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.vz-fav-hero-content p {
    color: rgba(255,255,255,.85);
    text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* Favorieten lijst-kaart met cover */
.vz-fav-card-cover {
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: var(--vz-radius) var(--vz-radius) 0 0;
}
.vz-fav-card-cover-empty {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vz-green-light) 0%, #e8f5f0 100%);
    border-radius: var(--vz-radius) var(--vz-radius) 0 0;
    font-size: 2rem;
    color: var(--vz-green-mid);
}

@media (max-width: 576px) {
    .vz-fav-hero { height: 180px; }
}

/* Filter pills */
.vz-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: .35rem .85rem;
    border: 1px solid var(--vz-border-warm);
    border-radius: 50px;
    background: var(--vz-card);
    color: var(--vz-ink-light);
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--vz-transition);
}
.vz-filter-pill:hover {
    border-color: var(--vz-green-mid);
    color: var(--vz-green);
}
.vz-filter-pill.active {
    background: var(--vz-green);
    border-color: var(--vz-green);
    color: #fff;
}

/* ──────────────────────────────────────
   Globaal dashboard
   ────────────────────────────────────── */

/* Spotlight reis */
.vz-dashboard-spotlight {
    overflow: hidden;
}
.vz-dashboard-spotlight-img {
    height: 100%;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: var(--vz-radius) 0 0 var(--vz-radius);
}
.vz-dashboard-countdown {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--vz-amber);
}

/* Reis-rij in dashboard */
.vz-dashboard-trip-row {
    transition: box-shadow var(--vz-transition);
    overflow: hidden;
}
.vz-dashboard-trip-row:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.vz-dashboard-trip-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.vz-dashboard-trip-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vz-surface-warm);
    color: var(--vz-ink-light);
    font-size: 1.2rem;
}

/* Status badges */
.vz-badge-planning {
    background: var(--vz-amber-light);
    color: var(--vz-amber);
    font-size: .7rem;
    font-weight: 500;
}
.vz-badge-active {
    background: var(--vz-green-light);
    color: var(--vz-green);
    font-size: .7rem;
    font-weight: 500;
}
.vz-badge-completed {
    background: var(--vz-surface-warm);
    color: var(--vz-ink-light);
    font-size: .7rem;
    font-weight: 500;
}

/* Favoriete items in dashboard */
.vz-dashboard-fav-item {
    overflow: hidden;
}
.vz-dashboard-fav-img {
    height: 100px;
    background-size: cover;
    background-position: center;
}
.vz-dashboard-fav-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vz-surface-warm);
    color: var(--vz-ink-light);
    font-size: 1.5rem;
}

@media (max-width: 576px) {
    .vz-dashboard-spotlight-img {
        border-radius: var(--vz-radius) var(--vz-radius) 0 0;
        min-height: 140px;
    }
    .vz-dashboard-fav-img {
        height: 80px;
    }
}

/* ──────────────────────────────────────
   Discover page
   ────────────────────────────────────── */
.vz-discover-card {
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vz-discover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.vz-discover-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.vz-discover-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vz-green-light);
    color: var(--vz-green);
}
.vz-avatar-sm {
    width: 24px;
    height: 24px;
    font-size: .65rem;
    line-height: 24px;
}

@media (max-width: 576px) {
    .vz-discover-img {
        height: 120px;
    }
}
