/* ─── BV Destinations ─── */
.bvd {
    --giallo: #F5B400;
    --giallo-soft: #FFF6D8;
    --giallo-pallido: #FFFBEC;
    --crema: #FAF7F2;
    --bianco: #FFFFFF;
    --testo: #2C2520;
    --testo-soft: #1a1a1a;
    --bordo: #E8E2D8;
    --accento-scuro: #1F1B17;

    font-family: inherit;
    color: var(--testo);
    line-height: 1.7;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.bvd *, .bvd *::before, .bvd *::after {
    box-sizing: border-box;
}

.bvd h1, .bvd h2, .bvd h3, .bvd h4, .bvd h5 {
    font-family: inherit;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
}

.bvd p { margin: 0; padding: 0; }
.bvd a { color: inherit; }
.bvd ul { list-style: none; margin: 0; padding: 0; }

/* ─── HEADER ─── */
.bvd-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--bordo);
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bvd-topbar .bvd-logo {
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    color: var(--testo);
}
.bvd-topbar .bvd-logo span { color: var(--giallo); }
.bvd-topbar nav { display: flex; gap: 28px; align-items: center; }
.bvd-topbar nav a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--testo-soft);
    transition: color .2s;
}
.bvd-topbar nav a:hover { color: var(--giallo); }
.bvd-topbar .bvd-cta-mini {
    background: var(--giallo);
    color: var(--accento-scuro);
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.bvd-topbar .bvd-cta-mini:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245,180,0,0.3);
}

/* ─── HERO ─── */
.bvd-hero {
    min-height: clamp(340px, 50vh, 500px);
    background-color: var(--accento-scuro);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 72px 24px;
    color: white;
}
.bvd-hero .bvd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    font-weight: 500;
}
.bvd-hero .bvd-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.15s;
}
.bvd-hero .bvd-breadcrumb a:hover { color: #fff; }
.bvd-bc-sep { opacity: 0.45; font-style: normal; }
.bvd-bc-home { display: inline-flex; align-items: center; }
.bvd-hero .bvd-breadcrumb-bar {
    background: transparent;
    padding: 0 0 16px;
    align-self: center;
}
.bvd-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    color: white;
    margin-bottom: 24px;
    max-width: 920px;
    font-weight: 600;
}
.bvd-hero .bvd-subtitle {
    font-family: inherit;
    font-style: italic;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    max-width: 740px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.bvd-hero .bvd-hero-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.bvd-hero .bvd-hero-meta .bvd-chip {
    color: var(--testo);
    font-size: 12px;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: 50px;
    background: #fff;
}
.bvd-hero .bvd-hero-meta .bvd-chip strong { color: var(--accento-scuro); font-weight: 700; }
.bvd-hero-trustpilot {
    margin-top: 20px;
    width: 100%;
    max-width: 360px;
}
.bvd-hero .bvd-ctas-hero {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.bvd-hero .bvd-ctas-hero a,
.bvd-hero .bvd-ctas-hero button {
    padding: 16px 32px;
    border-radius: 50px;
    border: 0;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.bvd-hero .bvd-ctas-hero .bvd-primary {
    background: var(--giallo);
    color: var(--accento-scuro);
}
.bvd-hero .bvd-ctas-hero .bvd-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,180,0,0.4);
}
.bvd-hero .bvd-ctas-hero .bvd-secondary {
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}
.bvd-hero .bvd-ctas-hero .bvd-secondary:hover {
    background: white;
    color: var(--testo);
}

/* ─── SEZIONI ─── */
.bvd-section { padding: 100px 24px; }
.bvd-section.bvd-compact { padding: 70px 24px; }
.bvd-container { max-width: 1100px; margin: 0 auto; }
.bvd-container-narrow { max-width: 820px; margin: 0 auto; }
.bvd-section.bvd-crema { background: var(--crema); }
.bvd-section.bvd-giallo-soft { background: var(--giallo-pallido); }
.bvd-section.bvd-scura { background: var(--accento-scuro); color: white; }

h2.bvd-section-title {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 20px;
    color: var(--testo);
}
h2.bvd-section-title.bvd-center { text-align: center; }
.bvd-section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.bvd-section-intro p { color: var(--testo-soft); font-size: 14px; }
.bvd-section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--testo-soft);
    margin-bottom: 10px;
}
.bvd-section-intro--wide { max-width: 860px; }

/* ─── FILTRI ─── */
.bvd-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.bvd-filters .bvd-chip {
    padding: 9px 18px;
    border: 1px solid var(--bordo);
    border-radius: 50px;
    background: white;
    font-size: 11px;
    color: var(--testo-soft);
    cursor: pointer;
    transition: all .2s;
    font-weight: 500;
}
.bvd-filters .bvd-chip.active, .bvd-filters .bvd-chip:hover {
    background: var(--accento-scuro);
    color: white;
    border-color: var(--accento-scuro);
}
.bvd-filters .bvd-chip.bvd-giallo.active, .bvd-filters .bvd-chip.bvd-giallo:hover {
    background: var(--giallo);
    color: var(--accento-scuro);
    border-color: var(--giallo);
}

/* ─── MOSTRA ALTRE ─── */
.bvd-mostra-altre-wrap { text-align: center; margin-top: 32px; }
.bvd-mostra-altre {
    display: inline-block;
    background: var(--accento-scuro);
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}
.bvd-mostra-altre:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,27,23,0.25);
}

/* ─── MODAL ─── */
.bvd-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.bvd-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.bvd-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.bvd-modal-panel {
    position: relative;
    background: #fff;
    width: 90vw;
    max-width: 1200px;
    height: 85vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform .3s;
}
.bvd-modal.is-open .bvd-modal-panel {
    transform: translateY(0);
}
.bvd-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--bordo);
    flex-shrink: 0;
}
.bvd-modal-header h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}
.bvd-modal-count {
    font-weight: 400;
    color: var(--testo-soft);
    font-size: 14px;
}
.bvd-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--testo-soft);
    border-radius: 50%;
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bvd-modal-close:hover {
    background: var(--crema);
    color: var(--testo);
}
.bvd-modal-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 24px 28px;
    -webkit-overflow-scrolling: touch;
}

/* Mobile: full-screen modal */
@media (max-width: 700px) {
    .bvd-modal-panel {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }
    .bvd-modal-close {
        width: 44px;
        height: 44px;
    }
    .bvd-modal-header {
        padding: 16px 20px;
    }
    .bvd-modal-header h3 { font-size: 14px; }
    .bvd-modal-body { padding: 16px 20px; }
}

/* ─── PARTENZE LIST ─── */
.bvd-partenze-list { display: flex; flex-direction: column; gap: 24px; }

.bvd-part-row {
    background: white;
    border: 1px solid var(--bordo);
    border-radius: 10px;
    overflow: hidden;
    transition: all .25s;
}
.bvd-part-row:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

/* ─── Row top: dates+info left, price+cta right ─── */
.bvd-row-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 24px;
}

.bvd-row-left { flex: 1; }

.bvd-row-dates {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
}
.bvd-date-group { display: flex; flex-direction: column; }
.bvd-date-num { display: flex; align-items: baseline; gap: 6px; }
.bvd-row-d { font-size: 24px; font-weight: 700; color: var(--testo); line-height: 1; }
.bvd-row-m { font-size: 12px; color: var(--testo-soft); text-transform: capitalize; }
.bvd-row-sep { font-size: 17px; color: var(--testo-soft); margin: 0 4px; padding-top: 4px; }
.bvd-row-dates .bvd-transport-icon { margin-left: 8px; align-self: center; }
.bvd-row-dow { font-size: 11px; color: var(--testo-soft); margin-top: 3px; }

.bvd-row-tag {
    display: inline-block;
    background: #f7f7f7;
    color: #000;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.bvd-row-days { font-size: 12px; color: var(--testo-soft); }

/* ─── Transport info ─── */
.bvd-transport-info {
    margin-top: 12px;
    font-size: 11px;
    color: var(--testo-soft);
    line-height: 1.5;
}
.bvd-ti-line1 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.bvd-ti-numero {
    font-weight: 600;
    color: var(--testo);
}
.bvd-ti-compagnia { color: var(--testo-soft); }
.bvd-ti-route {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.bvd-ti-leg { margin-bottom: 6px; }
.bvd-ti-leg:last-child { margin-bottom: 0; }
.bvd-ti-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--giallo);
}
.bvd-ti-arrow { color: var(--giallo); font-weight: 600; }
.bvd-ti-time { font-weight: 600; color: var(--testo); }

.bvd-row-right {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    min-width: 190px;
}

.bvd-row-cta-completo { display: block; text-align: center; padding: 10px 16px; border-radius: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; background: #e5e7eb; color: #9ca3af; cursor: default; }
.bvd-stock-chip { display: inline-block; background: #fef2f2; color: #c0392b; border: 1px solid #fecaca; border-radius: 4px; font-size: 11px; font-weight: 700; padding: 3px 8px; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.bvd-row-price-label { font-size: 11px; color: var(--testo-soft); display: block; opacity: .6; }
.bvd-row-price-value { font-size: 24px; font-weight: 700; color: var(--testo); }
.bvd-row-supplemento { font-size: 11px; color: var(--testo-soft); margin-top: 2px; }
.bvd-scalapay-box { background: #fde8ed; border-radius: 8px; padding: 9px 12px; }
.bvd-scalapay-top { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--testo); }
.bvd-scalapay-badge { background: #e8003d; color: #fff; border-radius: 4px; font-size: 10px; font-weight: 700; padding: 2px 7px; letter-spacing: 0.03em; flex-shrink: 0; }
.bvd-scalapay-sub { font-size: 12px; color: #666; margin-top: 4px; }

.bvd-row-cta {
    display: block;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    transition: all .2s;
    box-sizing: border-box;
}
.bvd a.bvd-row-cta-prenota,
.bvd a.bvd-row-cta-prenota:hover,
.bvd a.bvd-row-cta-prenota:visited {
    background: var(--giallo);
    color: var(--accento-scuro);
}
.bvd a.bvd-row-cta-prenota:hover { box-shadow: 0 4px 14px rgba(245,180,0,0.4); }
.bvd a.bvd-row-cta-preventivo,
.bvd a.bvd-row-cta-preventivo:hover,
.bvd a.bvd-row-cta-preventivo:visited {
    display: block;
    padding: 11px 22px;
    border-radius: 4px;
    border: 1.5px solid var(--accento-scuro);
    background: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accento-scuro);
    text-decoration: none;
    transition: background .2s;
    box-sizing: border-box;
}
.bvd a.bvd-row-cta-preventivo:hover { background: #f5f3f0; }

/* ─── Row bottom: admin tools + program link ─── */
.bvd-row-bottom {
    border-top: 1px solid var(--bordo);
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bvd-row-admin { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

.bvd-admin-chip {
    display: inline-block;
    background: var(--giallo);
    color: var(--accento-scuro);
    font-size: 9px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s;
}
.bvd-admin-chip:hover { opacity: 0.85; }

/* ─── Toggle ─── */
.bvd-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin-left: 8px;
}
.bvd-toggle input { opacity: 0; width: 0; height: 0; }
.bvd-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 24px;
    transition: .3s;
}
.bvd-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: .3s;
}
.bvd-toggle input:checked + .bvd-toggle-slider { background: #4CD964; }
.bvd-toggle input:checked + .bvd-toggle-slider::before { transform: translateX(20px); }

.bvd-toggle-label { font-size: 11px; color: var(--testo-soft); margin-left: 6px; }

.bvd-row-links { margin-left: auto; }

.bvd-row-program {
    font-size: 11px;
    font-weight: 600;
    color: var(--testo);
    text-decoration: none;
    font-style: italic;
    letter-spacing: 0.03em;
}
.bvd-row-program:hover { color: var(--giallo); }

@media (max-width: 900px) {
    .bvd-row-top { flex-direction: column; }
    .bvd-row-right { align-items: stretch; text-align: left; min-width: 0; width: 100%; }
    .bvd-row-bottom { flex-direction: column; align-items: flex-start; }
    .bvd-row-links { margin-left: 0; }
}

/* ─── MODAL: filter row (fixed, sits below header, above scrolling body) ─── */
.bvd-modal-filters {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 28px;
    border-bottom: 1px solid var(--bordo);
    background: #fff;
}
.bvd-modal-filters .bvd-chip {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    padding: 8px 16px;
    border: 1px solid var(--bordo);
    border-radius: 50px;
    background: #fff;
    font-size: 11px;
    color: var(--testo-soft);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    font-weight: 500;
    line-height: 1;
}
.bvd-modal-filters .bvd-chip:hover {
    border-color: var(--accento-scuro);
    color: var(--accento-scuro);
}
.bvd-modal-filters .bvd-chip.active {
    background: var(--accento-scuro);
    color: #fff;
    border-color: var(--accento-scuro);
}
.bvd-modal-filters .bvd-chip.bvd-giallo.active {
    background: var(--giallo);
    color: var(--accento-scuro);
    border-color: var(--giallo);
}
.bvd-modal-filters.is-loading { opacity: 0.6; pointer-events: none; }

/* Options that would yield zero results under the current combination. */
.bvd-modal-filters .bvd-chip:disabled,
.bvd-sheet-option:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.bvd-modal-filters .bvd-chip:disabled:hover {
    background: #fff;
    color: var(--testo-soft);
    border-color: var(--bordo);
}
.bvd-sheet-option:disabled:hover { background: #fff; }

.bvd-modal-filters .bvd-chip-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 12px;
}
.bvd-modal-filters .bvd-chip-group .bvd-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--accento-scuro);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}
/* Empty (no selection): white fill with dark border */
.bvd-modal-filters .bvd-chip-group .bvd-chip-count:empty { display: none; }
.bvd-modal-filters .bvd-chip-group.active .bvd-chip-count {
    background: #fff;
    color: var(--accento-scuro);
    border: none;
}
.bvd-modal-filters .bvd-chip-group .bvd-chip-chev {
    opacity: 0.6;
    transition: transform .2s;
}
.bvd-modal-filters .bvd-chip-group[aria-expanded="true"] .bvd-chip-chev {
    transform: rotate(180deg);
}

.bvd-modal-filters .bvd-filters-reset {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: var(--accento-scuro);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.bvd-modal-filters .bvd-filters-reset:hover { text-decoration: underline; }
.bvd-modal-filters .bvd-filters-reset[hidden] { display: none; }

@media (max-width: 700px) {
    .bvd-modal-filters {
        padding: 10px 16px;
        gap: 8px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .bvd-modal-filters .bvd-chip { width: 100%; }
    .bvd-modal-filters .bvd-chip-group .bvd-chip-chev { margin-left: auto; }
    .bvd-modal-filters .bvd-filters-reset {
        grid-column: 1 / -1;
        margin-left: 0;
        justify-self: end;
    }
}

/* ─── MODAL: drill-down sheet (for multi-select filter groups) ─── */
.bvd-sheet {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .28s ease;
    will-change: transform;
}
.bvd-sheet[hidden] { display: none; }
.bvd-sheet.is-open { transform: translateY(0); }

.bvd-sheet-header {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--bordo);
    min-height: 56px;
}
.bvd-sheet-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--testo);
    text-align: center;
}
.bvd-sheet-back {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--testo);
    border-radius: 50%;
    padding: 0;
}
.bvd-sheet-back:hover { background: var(--crema); }
.bvd-sheet-reset {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: var(--accento-scuro);
    padding: 10px 12px;
    font-family: inherit;
}
.bvd-sheet-reset:hover { text-decoration: underline; }

.bvd-sheet-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
}
.bvd-sheet-option {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid var(--bordo);
    background: #fff;
    text-align: left;
    font-size: 13px;
    color: var(--testo);
    cursor: pointer;
    transition: background .15s;
}
.bvd-sheet-option:last-child { border-bottom: none; }
.bvd-sheet-option:hover { background: var(--crema); }
.bvd-sheet-option:active { background: var(--bordo); }
.bvd-sheet-option .bvd-sheet-check {
    opacity: 0;
    color: var(--accento-scuro);
    transform: scale(0.7);
    transition: opacity .15s, transform .15s;
}
.bvd-sheet-option[aria-pressed="true"] {
    background: var(--giallo-soft);
    font-weight: 600;
}
.bvd-sheet-option[aria-pressed="true"] .bvd-sheet-check {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 700px) {
    .bvd-sheet-option { padding: 16px 20px; min-height: 56px; font-size: 14px; }
}

/* ─── MODAL: list loading state (shown while filter refetches) ─── */
.bvd-modal-list { position: relative; min-height: 120px; }

.bvd-modal-list[aria-busy="true"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: bvd-fade-in 0.2s ease 0.15s forwards;
}

.bvd-modal-list[aria-busy="true"]::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--accento-scuro);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: bvd-fade-in 0.2s ease 0.15s forwards, bvd-spin 0.8s linear infinite;
}

@keyframes bvd-spin  { to { transform: rotate(360deg); } }
@keyframes bvd-fade-in { to { opacity: 1; } }

/* ─── MODAL: tighter card typography (scoped to .bvd-modal only) ─── */
.bvd-modal .bvd-partenze-list { gap: 16px; }
.bvd-modal .bvd-row-top { padding: 20px 24px; gap: 20px; }
.bvd-modal .bvd-row-dates { margin-bottom: 12px; }
.bvd-modal .bvd-row-d { font-size: 19px; }
.bvd-modal .bvd-row-m { font-size: 11px; }
.bvd-modal .bvd-row-sep { font-size: 14px; }
.bvd-modal .bvd-row-tag { font-size: 9px; padding: 4px 12px; }
.bvd-modal .bvd-row-dow { font-size: 10px; margin-top: 2px; }
.bvd-modal .bvd-row-days { font-size: 11px; }
.bvd-modal .bvd-transport-info { font-size: 10px; margin-top: 10px; }
.bvd-modal .bvd-row-price-value { font-size: 19px; }
.bvd-modal .bvd-row-price-label { font-size: 10px; }
.bvd-modal .bvd-scalapay-top { font-size: 12px; }
.bvd-modal .bvd-scalapay-sub { font-size: 11px; }
.bvd-modal .bvd-row-cta { padding: 9px 18px; font-size: 12px; }
.bvd-modal .bvd-row-bottom { padding: 12px 24px; }
.bvd-modal .bvd-modal-body { background: #EEE8DB; }
.bvd-modal .bvd-part-row {
    border-color: #cfc7b8;
    border-width: 2px;
}

/* ─── MODAL: "Mostra altre" load-more button ─── */
.bvd-modal-loadmore-wrap {
    text-align: center;
    padding: 24px 0 8px;
}
.bvd-modal-loadmore {
    background: var(--accento-scuro);
    color: #fff;
    border: none;
    cursor: pointer;
    height: 40px;
    padding: 0 28px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: opacity .2s, transform .2s;
}
.bvd-modal-loadmore:hover { opacity: 0.92; }
.bvd-modal-loadmore.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ─── INCLUDE BOX (1-livello sidebar) ─── */
.bvd-include-box {
    background: var(--giallo-soft);
    border: 1px solid var(--giallo);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 32px;
    margin-bottom: 32px;
}
.bvd-include-box h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--testo);
    margin: 0 0 14px;
}
.bvd-include-box p {
    font-size: 13px;
    color: var(--testo-soft);
    margin: 0 0 14px;
    line-height: 1.55;
}
.bvd-include-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bvd-include-box ul li {
    font-size: 13px;
    color: var(--testo);
    padding-left: 18px;
    position: relative;
}
.bvd-include-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--giallo);
    font-weight: 700;
}

/* ─── QUOTA BLOCK (include + non incluso) ─── */
.bvd-quota-block {
    background: #fff;
    border: 1px solid var(--bordo);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.bvd-quota-section {
    flex: 1;
    padding: 22px 28px;
}
.bvd-quota-section + .bvd-quota-section {
    border-left: 1px solid var(--bordo);
}
.bvd-quota-section h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--testo-soft);
    margin-bottom: 14px;
}
.bvd-incl-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bvd-quota-block .bvd-incl-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--testo);
}
.bvd-quota-block .bvd-incl-item svg { flex-shrink: 0; display: block; }
.bvd-quota-block .bvd-incl-item .bvd-icon { fill: var(--testo); }
.bvd-excl-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bvd-quota-block .bvd-excl-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--testo-soft);
}
.bvd-quota-block .bvd-excl-item svg { flex-shrink: 0; display: block; }
.bvd-incl-sub {
    margin-top: 14px;
    padding-top: 4px;
}
.bvd-incl-sub-title {
    font-size: 11px;
    font-weight: 500;
    font-style: italic;
    color: #A09488;
    margin: 0 0 14px;
    letter-spacing: 0;
    text-transform: none;
}

/* ─── DUE STRADE ─── */
.bvd-due-strade { display: grid; gap: 32px; margin-top: 16px; grid-template-columns: repeat(2, 1fr); }
.bvd-due-strade--1 { grid-template-columns: minmax(0, 540px); justify-content: center; }
.bvd-due-strade--2 { grid-template-columns: repeat(2, 1fr); }
.bvd-due-strade--3 { grid-template-columns: repeat(3, 1fr); }
.bvd-due-strade--4 { grid-template-columns: repeat(4, 1fr); }
.bvd-strada-card {
    background: white;
    border: 1px solid var(--bordo);
    border-radius: 8px;
    overflow: hidden;
    transition: all .25s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.bvd-strada-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.bvd-strada-card .bvd-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.bvd-strada-card .bvd-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,27,23,0.4), transparent);
}
.bvd-strada-card .bvd-img .bvd-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: var(--giallo);
    color: var(--accento-scuro);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.bvd-strada-card .bvd-content { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.bvd-strada-card .bvd-link-arrow { margin-top: auto; }
.bvd-strada-card h3 { font-size: 15px; margin-bottom: 12px; }
.bvd-strada-card h3 a { color: inherit; text-decoration: none; }
.bvd-strada-card h3 a:hover { text-decoration: underline; text-decoration-color: var(--giallo); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.bvd-strada-card p { color: var(--testo-soft); font-size: 13px; margin-bottom: 18px; }
.bvd-strada-card .bvd-specs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-size: 11px;
    color: var(--testo-soft);
}
.bvd-strada-card .bvd-specs span { display: inline-flex; align-items: center; gap: 6px; }
.bvd-strada-card .bvd-specs span::before { content: '\00B7'; color: var(--giallo); font-weight: 700; }
.bvd-strada-card .bvd-link-arrow {
    color: var(--testo);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--giallo);
    padding-bottom: 2px;
}

/* ─── HUB GRID ─── */
.bvd-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bvd-hub-grid--1 { grid-template-columns: minmax(0, 300px); justify-content: center; }
.bvd-hub-grid--2 { grid-template-columns: repeat(2, minmax(0, 300px)); justify-content: center; }
.bvd-hub-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bvd-hub-grid--4 { grid-template-columns: repeat(4, 1fr); }
.bvd-hub-card {
    background: white;
    border: 1px solid var(--bordo);
    border-radius: 8px;
    overflow: hidden;
    color: inherit;
    display: block;
}
.bvd-hub-card .bvd-hub-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.bvd-hub-img--placeholder {
    background: linear-gradient(135deg, var(--crema) 0%, #e8e0d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bvd-hub-img--placeholder::after {
    content: '';
    width: 32px;
    height: 32px;
    opacity: 0.25;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C2520'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bvd-hub-card .bvd-hub-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.bvd-hub-card { display: flex; flex-direction: column; }
.bvd-hub-card .bvd-city {
    font-size: 14px;
    font-weight: 600;
    color: var(--testo);
    margin-bottom: 2px;
}
.bvd-hub-card .bvd-dest { font-size: 11px; color: var(--testo-soft); margin-bottom: 12px; }
.bvd-transport-icon { color: var(--testo-soft); flex-shrink: 0; vertical-align: middle; }
.bvd-hub-card .bvd-from { font-size: 11px; color: var(--testo-soft); line-height: 1.4; margin-top: auto; }
.bvd-hub-card .bvd-from strong {
    display: block;
    color: var(--testo);
    font-size: 19px;
    font-weight: 700;
    margin-top: 2px;
}
.bvd-hub-cta {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 14px;
    background: #f0f0f0;
    color: #000;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s;
}
.bvd-hub-cta:hover { background: #e4e4e4; }
.bvd-hub-cta-scopri { background: #fff; border-color: #d8d2c6; margin-top: 14px; }
.bvd-hub-cta-scopri:hover { background: #faf7f2; }
.bvd-hub-card .bvd-city a { color: inherit; text-decoration: none; }

/* Hub grid — collapsed state hides cards past the first row at each breakpoint. */
.bvd-hub-grid--collapsed > .bvd-hub-card:nth-child(n+5) { display: none; }
@media (max-width: 900px) {
    .bvd-hub-grid--collapsed > .bvd-hub-card:nth-child(n+3) { display: none; }
}
@media (max-width: 700px) {
    .bvd-hub-grid--collapsed > .bvd-hub-card:nth-child(n+2) { display: none; }
}

/* "Mostra altre città" button — shown only at breakpoints that actually clip. */
.bvd-hub-more-wrap { margin-top: 28px; text-align: center; }
.bvd-hub-more {
    display: none;
    appearance: none;
    border: 1px solid var(--bordo);
    background: #fff;
    color: var(--testo);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.bvd-hub-more:hover { background: var(--crema); border-color: #d8d2c6; }
@media (min-width: 901px) {
    .bvd-hub-more--desktop { display: inline-block; }
}
@media (min-width: 701px) and (max-width: 900px) {
    .bvd-hub-more--tablet { display: inline-block; }
}
@media (max-width: 700px) {
    .bvd-hub-more--mobile { display: inline-block; }
}
.bvd-hub-more[hidden] { display: none !important; }

/* ─── PRINCIPI / RAGIONI ─── */
.bvd-principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 56px; margin-top: 24px; }
.bvd-principle-num { display: flex; gap: 20px; align-items: flex-start; }
.bvd-principle-num .bvd-n {
    font-family: inherit;
    font-size: 27px;
    font-weight: 600;
    color: var(--giallo);
    min-width: 44px;
    line-height: 1;
}
.bvd-principle-num h4 { font-size: 16px; margin-bottom: 6px; }
.bvd-principle-num p { color: var(--testo-soft); font-size: 13px; }

/* ─── PERCHÉ NOI: split image + paragraph ─── */
.bvd-perche-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 32px;
}
.bvd-perche-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.bvd-perche-text p {
    color: var(--testo-soft);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.bvd-perche-text p:last-child { margin-bottom: 0; }

@media (max-width: 800px) {
    .bvd-perche-split { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
    .bvd-perche-img { display: none; }
}

/* ─── PROGRAMMA TABS ─── */
.bvd-programma-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.bvd-programma-tabs .bvd-t {
    padding: 11px 22px;
    border: 1px solid var(--bordo);
    border-radius: 50px;
    background: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.bvd-programma-tabs .bvd-t.active {
    background: var(--accento-scuro);
    color: white;
    border-color: var(--accento-scuro);
}

.bvd-giorno-block {
    background: white;
    border: 1px solid var(--bordo);
    border-radius: 8px;
    padding: 36px 40px;
    margin-bottom: 20px;
}
.bvd-giorno-block .bvd-num {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--giallo);
    font-weight: 600;
    margin-bottom: 8px;
}
.bvd-giorno-block h3 { font-size: 20px; margin-bottom: 18px; }
.bvd-giorno-block .bvd-moments { display: grid; gap: 18px; }
.bvd-giorno-block .bvd-moment h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--testo);
}
.bvd-giorno-block .bvd-moment h4::before {
    content: '•';
    color: var(--giallo);
    font-weight: 700;
    margin-right: 8px;
}
.bvd-giorno-block .bvd-moment p {
    color: var(--testo-soft);
    font-size: 13px;
}

/* ─── PROGRAMMA GRID ─── */
.bvd-programma-grid { display: grid; gap: 28px; }
.bvd-programma-grid--2 { grid-template-columns: 1fr 1fr; }
.bvd-programma-grid .bvd-giorno-block { margin-bottom: 0; }
@media (max-width: 768px) {
    .bvd-programma-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .bvd-giorno-block {
        background: transparent;
        border: none;
        padding: 0;
    }
}

/* ─── GUIDE / APPROFONDIMENTI ─── */
.bvd-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bvd-guida-card {
    background: white;
    border: 1px solid var(--bordo);
    border-radius: 8px;
    overflow: hidden;
    transition: all .25s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bvd-guida-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.bvd-guida-card .bvd-img { height: 180px; background-size: cover; background-position: center; }
.bvd-guida-card .bvd-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.bvd-guida-card .bvd-tag {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--giallo);
    font-weight: 600;
    margin-bottom: 10px;
}
.bvd-guida-card h3 { font-size: 16px; margin-bottom: 10px; }
.bvd-guida-card p { color: var(--testo-soft); font-size: 12px; margin-bottom: 16px; }
.bvd-guida-card .bvd-more { color: var(--testo); font-weight: 600; font-size: 12px; margin-top: auto; }
.bvd-guida-card .bvd-more::after { content: ' \2192'; color: var(--giallo); }

/* ─── ALLOGGI / Dove alloggerai ─── */
.bvd-alloggi-grid {
    display: grid;
    gap: 24px;
    margin-top: 16px;
    /* Seven rows shared by every card row — media, h3, p, h4, ul, h4, ul —
       so subgrid can align matching rows across cards in the same row. */
    grid-auto-rows: auto;
    grid-template-rows: auto auto auto auto auto auto auto;
}
.bvd-alloggi-grid--1 { grid-template-columns: minmax(0, 540px); justify-content: center; grid-template-rows: auto; }
.bvd-alloggi-grid--1 .bvd-alloggio-card { grid-row: auto; grid-template-rows: auto; }
.bvd-alloggi-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bvd-alloggi-grid--3 { grid-template-columns: repeat(3, 1fr); }

.bvd-alloggio-card {
    display: grid;
    grid-row: span 7;
    grid-template-rows: subgrid;
    background: #fff;
    border: 1px solid var(--bordo);
    border-radius: 10px;
    overflow: hidden;
    padding: 0 24px 26px;
}
.bvd-alloggio-media { margin: 0 -24px; }
.bvd-alloggio-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: block;
    cursor: pointer;
    text-decoration: none;
}
.bvd-alloggio-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31,27,23,0.35) 0%, transparent 40%);
    pointer-events: none;
}
.bvd-alloggio-stars {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(31,27,23,0.72);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}
.bvd-alloggio-stars-glyphs { color: var(--giallo); letter-spacing: 2px; font-size: 11px; }
.bvd-alloggio-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
}
.bvd-alloggio-thumb {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    display: block;
    cursor: pointer;
    transition: filter .2s;
}
.bvd-alloggio-thumb:hover,
.bvd-alloggio-hero:hover { filter: brightness(1.05); }

.bvd-alloggio-title { font-size: 17px; margin: 22px 0 10px; color: var(--testo); }
.bvd-alloggio-desc  { color: var(--testo-soft); font-size: 13px; line-height: 1.55; margin: 0 0 8px; }
.bvd-alloggio-media + .bvd-alloggio-desc { margin-top: 22px; }
.bvd-alloggio-heading {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--giallo);
    font-weight: 600;
    margin: 18px 0 10px;
}
.bvd-alloggio-list { list-style: none; padding: 0; margin: 0; }
.bvd-alloggio-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--testo-soft);
    line-height: 1.5;
}
.bvd-alloggio-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 2px;
    background: var(--giallo);
}

/* ─── LE NOSTRE GUIDE (team) ─── */
.bvd-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 28px;
    margin-top: 24px;
}
.bvd-team-member {
    flex: 0 0 150px;
    margin: 0;
    text-align: center;
}
.bvd-team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
}
.bvd-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bvd-team-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--testo);
    line-height: 1.3;
}
@media (max-width: 500px) {
    .bvd-team-grid { gap: 24px 16px; }
    .bvd-team-member { flex: 0 0 120px; }
    .bvd-team-avatar { width: 120px; height: 120px; }
}

/* ─── FAQ ─── */
.bvd-faq-list { margin-top: 16px; }
.bvd-faq-item { border-bottom: 1px solid var(--bordo); padding: 22px 0; }
.bvd-faq-item summary {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--testo);
}
.bvd-faq-item summary::-webkit-details-marker { display: none; }
.bvd-faq-item summary::after {
    content: '+';
    color: var(--giallo);
    font-size: 24px;
    font-weight: 400;
    transition: transform .2s;
}
.bvd-faq-item[open] summary::after { transform: rotate(45deg); }
.bvd-faq-item .bvd-answer { padding-top: 14px; color: var(--testo-soft); font-size: 14px; }
.bvd h3.bvd-faq-subheading {
    margin-top: 40px;
    margin-bottom: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--bordo);
    font-size: 20px;
    font-weight: 700;
    color: var(--testo);
}
.bvd h3.bvd-faq-subheading + .bvd-faq-item { border-top: 0; }

/* ─── CTA FINALE ─── */
.bvd-final-cta {
    text-align: center;
}
.bvd-final-cta h2 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 24px;
}
.bvd-final-cta .bvd-lead {
    font-family: inherit;
    font-style: italic;
    font-size: 19px;
    color: var(--testo-soft);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.bvd-final-cta .bvd-ctas {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}
.bvd-final-cta .bvd-ctas a,
.bvd-final-cta .bvd-ctas button {
    padding: 18px 36px;
    border: 0;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.bvd-final-cta .bvd-ctas .bvd-wa {
    background: #25D366;
    color: #fff;
    border: 0;
}
.bvd-final-cta .bvd-ctas .bvd-wa:hover {
    background: #1fb955;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.bvd-final-cta .bvd-ctas .bvd-wa svg { flex-shrink: 0; }
.bvd-final-cta .bvd-ctas .bvd-primary { background: var(--giallo); color: var(--accento-scuro); }
.bvd-final-cta .bvd-ctas .bvd-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,180,0,0.4);
}
.bvd-final-cta .bvd-ctas .bvd-secondary {
    background: transparent;
    color: var(--testo);
    border: 1px solid var(--bordo);
}
.bvd-final-cta .bvd-ctas .bvd-secondary:hover {
    background: var(--testo);
    color: #fff;
    border-color: var(--testo);
}
.bvd-final-cta .bvd-signature {
    font-family: inherit;
    font-style: italic;
    color: var(--giallo);
    font-size: 15px;
}

/* ─── WHATSAPP ─── */

/* ─── I NOSTRI PULLMAN ─── */
.bvd-pullman-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 16px;
}
.bvd-pullman-media {
    border: 1px solid var(--bordo);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.bvd-pullman-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: filter .2s;
}
.bvd-pullman-hero:hover { filter: brightness(1.05); }
.bvd-pullman-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31,27,23,0.35) 0%, transparent 40%);
    pointer-events: none;
}
.bvd-pullman-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--giallo);
    color: var(--accento-scuro);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.bvd-pullman-text { padding-top: 8px; }
.bvd-pullman-text p {
    color: var(--testo-soft);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.bvd-pullman-text p:last-child { margin-bottom: 0; }

/* ─── 2-LIVELLO ORIGIN / TRANSPORT VARIANTS ─── */

/* ── Includes strip — white bar with 6 "cosa include" items ── */
.bvd-includes-strip {
    background: #fff;
    padding: 28px 24px;
}
.bvd-includes-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
}
@media (min-width: 768px) {
    .bvd-includes-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0 24px;
    }
    .bvd-includes-item + .bvd-includes-item {
        border-left: 1px solid var(--bordo);
        padding-left: 24px;
    }
}
.bvd-includes-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.bvd-includes-item span {
    color: var(--testo);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.bvd-is-icon {
    flex-shrink: 0;
}
.bvd-incl-toggle-row {
    text-align: center;
    padding-top: 24px;
}
.bvd-incl-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #6d665c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 0;
    border-bottom: 1px solid var(--bordo);
    transition: color 0.15s, border-color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bvd-incl-toggle:hover { color: var(--testo); border-color: #6d665c; }
.bvd-incl-toggle-arrow { display: inline-block; transition: transform 0.3s ease; }
.bvd-incl-toggle[aria-expanded="true"] .bvd-incl-toggle-arrow { transform: rotate(90deg); }
.bvd-incl-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}
.bvd-incl-panel.is-open { grid-template-rows: 1fr; }
.bvd-incl-panel-inner {
    overflow: hidden;
    background: #fff;
}
.bvd-incl-panel-inner > .bvd-container {
    padding-top: 24px;
    padding-bottom: 56px;
}
.bvd-incl-panel .bvd-section-intro {
    text-align: center;
    margin-bottom: 40px;
}
.bvd-incl-panel .bvd-section-title { font-size: 22px; margin-bottom: 8px; }
.bvd-incl-panel .bvd-section-intro p { color: var(--testo-soft); font-size: 15px; }

/* Thin breadcrumb strip rendered immediately under the hero on every
 * variant. Kept visually light (centered, muted) so it doesn't compete
 * with the page title above. */
.bvd-breadcrumb-bar {
    padding: 12px 24px;
    background: var(--crema);
}
.bvd-breadcrumb-bar + .bvd-section { padding-top: 40px; }
.bvd-breadcrumb-bar .bvd-breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

/* Body prose in the intro section. */
.bvd-body-text p {
    margin-bottom: 16px;
    color: var(--testo-soft);
    font-size: 15px;
    line-height: 1.7;
}
.bvd-body-text p:last-child { margin-bottom: 0; }
.bvd-body-text strong { color: var(--testo); font-weight: 600; }

/* 3-up info cards ("Prima di scegliere una data" etc.). */
.bvd-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.bvd-info-card {
    background: #fff;
    border: 1px solid var(--bordo);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all .2s;
}
.bvd-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.bvd-info-num {
    font-size: 12px;
    font-weight: 600;
    color: var(--giallo);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.bvd-info-card h3 { font-size: 17px; margin-bottom: 12px; }
.bvd-info-card p {
    color: var(--testo-soft);
    font-size: 13px;
    line-height: 1.65;
}
.bvd-info-card p strong { color: var(--testo); font-weight: 600; }

/* Yellow strip CTA linking 2-livello pages to their parent. */
.bvd-strip-cta {
    background: var(--giallo);
    padding: 48px 24px;
    text-align: center;
}
.bvd-strip-cta .bvd-container { max-width: 760px; }
.bvd-strip-cta p {
    font-size: 18px;
    font-style: italic;
    margin: 0 0 22px;
    color: var(--accento-scuro);
    line-height: 1.55;
}
.bvd-strip-cta-btn {
    display: inline-block;
    background: var(--accento-scuro);
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s;
}
.bvd-strip-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
}

/* Origins / regions grid on transport pages. */
.bvd-origin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}
.bvd-origin-card {
    background: #fff;
    border: 1px solid var(--bordo);
    border-radius: 8px;
    padding: 24px 26px;
    transition: all .2s;
}
.bvd-origin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    border-color: var(--giallo);
}
.bvd-origin-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--giallo);
    font-weight: 600;
    margin-bottom: 8px;
}
.bvd-origin-card h3 { font-size: 18px; margin: 0; color: var(--testo); }

/* Voyage steps timeline ("Come si viaggia"). */
.bvd-voyage-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 24px;
    position: relative;
}
.bvd-voyage-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--bordo);
    z-index: 0;
}
.bvd-voyage-step { text-align: center; position: relative; z-index: 1; }
.bvd-voyage-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--giallo);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accento-scuro);
    font-weight: 700;
    font-size: 16px;
    border: 4px solid var(--crema);
}
.bvd-voyage-step h3 { font-size: 16px; margin-bottom: 8px; color: var(--testo); }
.bvd-voyage-step p {
    color: var(--testo-soft);
    font-size: 13px;
    line-height: 1.55;
    padding: 0 6px;
}

/* "Pullman o Aereo?" compare grid. */
.bvd-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.bvd-compare-card {
    background: #fff;
    border: 1px solid var(--bordo);
    border-radius: 10px;
    padding: 32px 32px 28px;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.bvd-compare-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.bvd-compare-card--alt:hover { border-color: var(--giallo); }
.bvd-compare-badge {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.bvd-compare-badge--current {
    background: var(--giallo);
    color: var(--accento-scuro);
}
.bvd-compare-badge--alt {
    background: var(--accento-scuro);
    color: #fff;
}
.bvd-compare-card h3 { font-size: 19px; margin-bottom: 14px; }
.bvd-compare-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.bvd-compare-card li {
    font-size: 13px;
    color: var(--testo);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid var(--bordo);
}
.bvd-compare-card li:last-child { border-bottom: none; }
.bvd-compare-card li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--giallo);
    font-weight: 700;
}
.bvd-compare-link {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: var(--testo);
}
.bvd-compare-card--alt:hover .bvd-compare-link {
    color: var(--giallo);
}

/* Cluster grid (other 2-livello siblings). */
.bvd-cluster-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.bvd-cluster-card {
    background: #fff;
    border: 1px solid var(--bordo);
    border-radius: 20px;
    padding: 7px 18px;
    text-align: center;
}
.bvd-cluster-card:hover {
    border-color: var(--giallo);
}
.bvd-cluster-card h3 {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    color: var(--testo);
}
.bvd-cluster-card h3 a {
    color: inherit;
    text-decoration: none;
}
.bvd-cluster-card h3 a:hover { color: var(--testo); }


/* ─── INLINE FILTERABLE DEPARTURES ─── */

/* Wrapper: needs position:relative so .bvd-sheet (absolute) is contained,
   and overflow:hidden to clip sheets while they're below the fold. */
.bvd-inline-dep {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.bvd-inline-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.bvd-inline-filters .bvd-chip {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    padding: 8px 16px;
    border: 1px solid var(--bordo);
    border-radius: 50px;
    background: #fff;
    font-size: 11px;
    color: var(--testo-soft);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    font-weight: 500;
    line-height: 1;
}
.bvd-inline-filters .bvd-chip:hover {
    border-color: var(--accento-scuro);
    color: var(--accento-scuro);
}
.bvd-inline-filters .bvd-chip.active {
    background: var(--accento-scuro);
    color: #fff;
    border-color: var(--accento-scuro);
}
.bvd-inline-filters .bvd-chip:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.bvd-inline-filters.is-loading { opacity: 0.6; pointer-events: none; }

.bvd-inline-filters .bvd-chip-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 12px;
}
.bvd-inline-filters .bvd-chip-group .bvd-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--accento-scuro);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}
.bvd-inline-filters .bvd-chip-group .bvd-chip-count:empty { display: none; }
.bvd-inline-filters .bvd-chip-group.active .bvd-chip-count {
    background: #fff;
    color: var(--accento-scuro);
}
.bvd-inline-filters .bvd-chip-group .bvd-chip-chev {
    opacity: 0.6;
    transition: transform .2s;
}
.bvd-inline-filters .bvd-chip-group[aria-expanded="true"] .bvd-chip-chev {
    transform: rotate(180deg);
}
.bvd-inline-filters .bvd-filters-reset {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: var(--accento-scuro);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.bvd-inline-filters .bvd-filters-reset:hover { text-decoration: underline; }
.bvd-inline-filters .bvd-filters-reset[hidden] { display: none; }

/* Loading spinner mirrors .bvd-modal-list */
.bvd-inline-list { position: relative; min-height: 120px; }
.bvd-inline-list[aria-busy="true"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: bvd-fade-in 0.2s ease 0.15s forwards;
}
.bvd-inline-list[aria-busy="true"]::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--accento-scuro);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: bvd-fade-in 0.2s ease 0.15s forwards, bvd-spin 0.8s linear infinite;
}

.bvd-inline-loadmore-wrap {
    text-align: center;
    padding: 24px 0 8px;
}
.bvd-inline-loadmore {
    background: var(--accento-scuro);
    color: #fff;
    border: none;
    cursor: pointer;
    height: 40px;
    padding: 0 28px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-family: inherit;
    transition: opacity .2s, transform .2s;
}
.bvd-inline-loadmore:hover { opacity: 0.92; }
.bvd-inline-loadmore.is-loading { opacity: 0.6; pointer-events: none; }

@media (max-width: 700px) {
    .bvd-inline-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .bvd-inline-filters .bvd-chip { width: 100%; }
    .bvd-inline-filters .bvd-chip-group .bvd-chip-chev { margin-left: auto; }
    .bvd-inline-filters .bvd-filters-reset {
        grid-column: 1 / -1;
        margin-left: 0;
        justify-self: end;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .bvd-topbar nav { display: none; }
    .bvd-due-strade,
    .bvd-due-strade--2,
    .bvd-due-strade--3,
    .bvd-due-strade--4 { grid-template-columns: 1fr; }
    .bvd-hub-grid,
    .bvd-hub-grid--3,
    .bvd-hub-grid--4 { grid-template-columns: repeat(2, 1fr); justify-content: stretch; }
    .bvd-pullman-split { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 900px) {
    /* 3-col alloggi goes straight to 1-col on smaller screens (skip 2-col). */
    .bvd-alloggi-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .bvd-info-grid { grid-template-columns: 1fr; }
    .bvd-cluster-grid { gap: 8px; }
    .bvd-origin-grid { grid-template-columns: repeat(2, 1fr); }
    .bvd-voyage-steps { grid-template-columns: repeat(2, 1fr); }
    .bvd-voyage-steps::before { display: none; }
    .bvd-compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .bvd-hub-grid,
    .bvd-hub-grid--1,
    .bvd-hub-grid--2,
    .bvd-hub-grid--3,
    .bvd-hub-grid--4 { grid-template-columns: 1fr; justify-content: stretch; }
    .bvd-alloggi-grid--2 { grid-template-columns: 1fr; }
    .bvd-alloggio-hero { height: 240px; }
    .bvd-pullman-hero { height: 240px; }
    .bvd-principles { grid-template-columns: 1fr; gap: 28px; }
    .bvd-guide-grid { grid-template-columns: 1fr; }
    .bvd-quota-block { flex-direction: column; }
    .bvd-quota-section + .bvd-quota-section { border-left: none; border-top: 1px solid var(--bordo); }
    .bvd-quota-section { padding: 18px 20px; }
    .bvd-section { padding: 70px 20px; }
    .bvd-cluster-grid { gap: 6px; }
    .bvd-info-card { padding: 26px 22px; }
    .bvd-origin-grid { grid-template-columns: 1fr; }
    .bvd-compare-card { padding: 26px 22px 22px; }
}

/* ── Mobile font-size boost ── */
@media (max-width: 700px) {
    .bvd                        { font-size: 15px; }
    .bvd-section-intro p,
    .bvd-body-text p            { font-size: 15px; }
    .bvd-hero .bvd-subtitle p   { font-size: 14px; }
    /* Departure row labels */
    .bvd-row-m                  { font-size: 14px; }
    .bvd-row-days               { font-size: 13px; }
    .bvd-row-tag                { font-size: 11px; }
    .bvd-row-price-label        { font-size: 13px; }
    .bvd-row-cta                { font-size: 12px; }
    /* Chips */
    .bvd-hero .bvd-hero-meta .bvd-chip { font-size: 13px; }
    /* Includes strip */
    .bvd-includes-item span     { font-size: 13px; }
    .bvd-incl-toggle            { font-size: 15px; }
    /* Quota block */
    .bvd-incl-item span,
    .bvd-excl-item span         { font-size: 13px; }
    .bvd-incl-sub-title         { font-size: 13px; }
    /* FAQ */
    .bvd-faq-item .bvd-answer   { font-size: 15px; }
    /* Principle / voyage cards */
    .bvd-principle-num p,
    .bvd-voyage-step p          { font-size: 14px; }
    /* Hub / guide cards */
    .bvd-hub-card .bvd-from,
    .bvd-guida-card p           { font-size: 13px; }
}
