/* Scoped reset — bez :where() aby mali vyššiu specificitu ako WordPress téma */
.fi-vf-search-card *, .fi-vf-search-card *::before, .fi-vf-search-card *::after,
#sw-overlays *, #sw-overlays *::before, #sw-overlays *::after,
.fi-vf-sw-hero *, .fi-vf-sw-hero *::before, .fi-vf-sw-hero *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: normal;
    text-decoration: none;
    text-align: left;
    list-style: none;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}
.fi-vf-search-card input,
.fi-vf-search-card input[type=text],
.fi-vf-search-card input[type=search],
.fi-vf-search-card input[type=tel],
.fi-vf-search-card input[type=url],
.fi-vf-search-card input[type=email],
#sw-overlays input,
#sw-overlays input[type=text],
#sw-overlays input[type=search],
#sw-overlays input[type=tel],
#sw-overlays input[type=url],
#sw-overlays input[type=email],
.fi-vf-sw-hero input,
.fi-vf-sw-hero input[type=text],
.fi-vf-sw-hero input[type=search],
.fi-vf-sw-hero input[type=tel],
.fi-vf-sw-hero input[type=url],
.fi-vf-sw-hero input[type=email] {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: 1 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    outline: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    color: inherit !important;
}
.fi-vf-search-card button,
#sw-overlays button,
.fi-vf-sw-hero button {
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    border: none;
    line-height: normal;
    -webkit-appearance: none;
    appearance: none;
}
/* background: none cez :where() — nulová specificita, komponenty ju ľahko prepíšu */
:where(.fi-vf-search-card button, #sw-overlays button, .fi-vf-sw-hero button) {
    background: none;
}
/* iOS Safari explicitný reset — ignoruje globálny wildcard reset na button elementoch */
.fi-vf-tab-btn,
.fi-vf-mobile-overlay-back,
.fi-vf-mobile-overlay-close,
.fi-vf-zj-multiselect-item,
.fi-vf-mobile-zj-preset-btn,
.fi-vf-mobile-zj-confirm-btn,
.fi-vf-mobile-calendar-confirm,
.fi-vf-mobile-calendar-tab,
.fi-vf-mobile-passengers-confirm,
.fi-vf-mobile-passenger-btn,
.fi-vf-mobile-age-sub-btn,
.fi-vf-calendar-nav-btn,
.fi-vf-calendar-confirm-btn,
.fi-vf-calendar-tab,
.fi-vf-passenger-btn,
.fi-vf-age-sub-btn,
.fi-vf-zj-preset-btn,
.fi-vf-zj-dropdown-confirm-btn,
.fi-vf-passengers-done-btn,
.fi-vf-search-btn {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
}
.fi-vf-search-card a,
#sw-overlays a,
.fi-vf-sw-hero a {
    color: inherit;
    text-decoration: none;
}
.fi-vf-search-card img,
#sw-overlays img,
.fi-vf-sw-hero img {
    max-width: none;
    height: auto;
    display: block;
}
.fi-vf-sw-hero {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #191c1d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

:root {
    --fi-vf-primary: #ED1870;
    --fi-vf-primary-dark: #b70053;
    --fi-vf-primary-container: #e30769;
    --fi-vf-on-surface: #191c1d;
    --fi-vf-on-surface-variant: #5b3f45;
    --fi-vf-surface: #f8fafb;
    --fi-vf-surface-container-low: #f2f4f5;
    --fi-vf-surface-container: #eceeef;
    --fi-vf-surface-container-high: #e6e8e9;
    --fi-vf-surface-container-lowest: #ffffff;
}

.fi-vf-search-card {
    background: #fff;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(25,28,29,0.15);
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.fi-vf-tabs {
    display: flex;
    gap: 8px;
    padding: 8px;
    margin-bottom: 4px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}
.fi-vf-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s;
    color: var(--fi-vf-on-surface-variant);
}
@media (max-width: 767px) {
    .fi-vf-tab-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
}
.fi-vf-tab-btn:hover {
    background: var(--fi-vf-surface-container-high);
}
.fi-vf-tab-btn.fi-vf-active {
    background: rgba(237,24,112,0.1);
    color: var(--fi-vf-primary);
}
.fi-vf-tab-btn .material-symbols-outlined {
    font-size: 20px;
}

.fi-vf-search-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px;
}
@media (min-width: 768px) {
    .fi-vf-search-fields {
        grid-template-columns: 3fr 3fr 3fr 2fr auto;
    }
}
.fi-vf-field-group {
    position: relative;
}
.fi-vf-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--fi-vf-surface-container-high);
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
    user-select: none;
    line-height: 1;
    text-align: left;
}
.fi-vf-field:hover {
    background: var(--fi-vf-surface-container);
}
.fi-vf-field.fi-vf-active {
    background: #fff;
    box-shadow: 0 0 0 2px var(--fi-vf-primary), 0 4px 16px rgba(237,24,112,0.1);
    z-index: 20;
    position: relative;
}
.fi-vf-field-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--fi-vf-on-surface-variant);
    margin-bottom: 4px;
    transition: color 0.2s;
}
.fi-vf-field.fi-vf-active .fi-vf-field-label {
    color: var(--fi-vf-primary);
}
.fi-vf-field-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fi-vf-field-input-row .material-symbols-outlined {
    color: var(--fi-vf-on-surface-variant);
    font-size: 20px;
    flex-shrink: 0;
}
.fi-vf-field.fi-vf-active .fi-vf-field-input-row .material-symbols-outlined {
    color: var(--fi-vf-primary);
}
.fi-vf-field-input {
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 700;
    color: var(--fi-vf-on-surface);
    font-size: 0.875rem;
    line-height: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.fi-vf-field-input::placeholder {
    color: rgba(91,63,69,0.5);
    font-weight: 700;
}
.fi-vf-field-input:focus {
    outline: none;
}

.fi-vf-search-btn {
    background: linear-gradient(135deg, var(--fi-vf-primary) 0%, var(--fi-vf-primary-container) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(237,24,112,0.25);
    transition: all 0.2s;
}
@media (min-width: 768px) {
    .fi-vf-search-btn { width: 56px; height: 100%; }
}
.fi-vf-search-btn:hover {
    transform: scale(1.02);
}
.fi-vf-search-btn:active {
    transform: scale(0.95);
}
.fi-vf-search-btn .material-symbols-outlined {
    font-size: 28px;
}

.fi-vf-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(25,28,29,0.15);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    z-index: 100;
    min-width: 320px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.fi-vf-dropdown.fi-vf-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.fi-vf-dropdown-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    padding: 12px 16px 8px;
}
.fi-vf-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    margin: 0 4px;
    width: calc(100% - 8px);
    transition: background 0.15s;
}
.fi-vf-dropdown-item:hover {
    background: var(--fi-vf-surface-container-low);
}
.fi-vf-dropdown-item .material-symbols-outlined {
    color: var(--fi-vf-on-surface-variant);
    font-size: 20px;
}
.fi-vf-dropdown-item:hover .material-symbols-outlined {
    color: var(--fi-vf-primary);
}
.fi-vf-dropdown-item-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--fi-vf-on-surface);
}
.fi-vf-dropdown-item-sub {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
}
.fi-vf-dropdown-item-code {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fi-vf-primary);
    background: rgba(237,24,112,0.08);
    padding: 2px 8px;
    border-radius: 6px;
}
.fi-vf-dropdown-item.trending .material-symbols-outlined {
    color: var(--fi-vf-primary);
}
.fi-vf-dropdown-content {
    padding: 8px;
}

.fi-vf-calendar-dropdown {
    min-width: 600px;
    padding: 24px;
}
@media (max-width: 767px) {
    .fi-vf-calendar-dropdown { min-width: auto; }
}
.fi-vf-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.fi-vf-calendar-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fi-vf-on-surface-variant);
    transition: all 0.15s;
}
.fi-vf-calendar-nav-btn:hover:not(:disabled) {
    background: var(--fi-vf-surface-container-high);
    color: var(--fi-vf-on-surface);
}
.fi-vf-calendar-nav-btn:disabled {
    opacity: 0.25;
    cursor: default;
}
.fi-vf-calendar-nav-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--fi-vf-on-surface);
}
.fi-vf-calendar-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    background: var(--fi-vf-surface-container-high);
    border-radius: 9999px;
    padding: 4px;
}
.fi-vf-calendar-tab {
    flex: 1;
    padding: 10px 16px;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--fi-vf-on-surface-variant);
    transition: all 0.2s;
    text-align: center;
}
.fi-vf-calendar-tab.fi-vf-active {
    background: #fff;
    color: var(--fi-vf-on-surface);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.fi-vf-calendar-months {
}
.fi-vf-calendar-month-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fi-vf-on-surface);
    margin-bottom: 16px;
    text-align: center;
}
.fi-vf-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 8px;
}
.fi-vf-calendar-weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--fi-vf-on-surface-variant);
    padding: 4px 0;
    text-transform: uppercase;
}
.fi-vf-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.fi-vf-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50%;
    border: none;
    background: transparent;
    transition: all 0.15s;
    color: var(--fi-vf-on-surface);
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}
.fi-vf-calendar-day:hover:not(.fi-vf-empty):not(.fi-vf-disabled):not(.fi-vf-selected-start):not(.fi-vf-selected-end):not(.fi-vf-selected-single) {
    background: rgba(237,24,112,0.1);
}
.fi-vf-calendar-day.fi-vf-empty {
    cursor: default;
}
.fi-vf-calendar-day.fi-vf-disabled {
    color: #d1d5db;
    cursor: default;
}
.fi-vf-calendar-day.fi-vf-selected-start,
.fi-vf-calendar-day.fi-vf-selected-end {
    background: var(--fi-vf-primary);
    color: #fff;
    font-weight: 700;
}
.fi-vf-calendar-day.fi-vf-in-range {
    background: rgba(237,24,112,0.1);
    border-radius: 0;
}
.fi-vf-calendar-day.fi-vf-selected-start {
    border-radius: 50% 0 0 50%;
}
.fi-vf-calendar-day.fi-vf-selected-end {
    border-radius: 0 50% 50% 0;
}
.fi-vf-calendar-day.fi-vf-selected-start.fi-vf-selected-end,
.fi-vf-calendar-day.fi-vf-selected-single {
    border-radius: 50%;
}
.fi-vf-calendar-day.fi-vf-selected-single {
    background: var(--fi-vf-primary);
    color: #fff;
    font-weight: 700;
}
.fi-vf-calendar-day.fi-vf-preview-in-range {
    background: rgba(237,24,112,0.1);
    border-radius: 0;
}
.fi-vf-calendar-day.fi-vf-preview-end {
    background: rgba(237,24,112,0.1);
    border-radius: 0 50% 50% 0;
}
.fi-vf-calendar-day.fi-vf-selected-single.fi-vf-preview-start-cap {
    border-radius: 50% 0 0 50%;
}
.fi-vf-calendar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
}
.fi-vf-calendar-info {
    font-size: 0.8rem;
    color: var(--fi-vf-on-surface-variant);
}
.fi-vf-calendar-info strong {
    color: var(--fi-vf-on-surface);
    font-weight: 700;
}
.fi-vf-calendar-confirm-btn {
    background: linear-gradient(135deg, var(--fi-vf-primary) 0%, var(--fi-vf-primary-container) 100%);
    color: #fff;
    padding: 12px 32px;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(237,24,112,0.25);
    transition: all 0.2s;
}
.fi-vf-calendar-confirm-btn:hover { opacity: 0.9; }

.fi-vf-passengers-dropdown {
    min-width: 280px;
    padding: 24px;
    right: 0;
    left: auto;
}
.fi-vf-passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}
.fi-vf-passenger-row + .fi-vf-passenger-row {
    margin-top: 12px;
}
.fi-vf-passenger-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--fi-vf-on-surface);
}
.fi-vf-passenger-age {
    font-size: 10px;
    color: var(--fi-vf-on-surface-variant);
    font-weight: 500;
}
.fi-vf-passenger-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.fi-vf-passenger-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s;
}
.fi-vf-passenger-btn:hover:not(:disabled) {
    border-color: var(--fi-vf-primary);
    color: var(--fi-vf-primary);
}
.fi-vf-passenger-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.fi-vf-passenger-btn .material-symbols-outlined {
    font-size: 18px;
}
.fi-vf-passenger-count {
    font-weight: 700;
    width: 16px;
    text-align: center;
    font-size: 0.875rem;
}
.fi-vf-passengers-done-btn {
    width: 100%;
    background: var(--fi-vf-primary);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(237,24,112,0.2);
    transition: opacity 0.2s;
}
.fi-vf-passengers-done-btn:hover { opacity: 0.9; }

.fi-vf-age-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0 6px 20px;
}
.fi-vf-age-sub-label {
    font-size: 0.8rem;
    color: var(--fi-vf-on-surface-variant);
    font-weight: 500;
}
.fi-vf-age-sub-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fi-vf-age-sub-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s;
}
.fi-vf-age-sub-btn:hover:not(:disabled) {
    border-color: var(--fi-vf-primary);
    color: var(--fi-vf-primary);
}
.fi-vf-age-sub-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.fi-vf-age-sub-btn .material-symbols-outlined {
    font-size: 16px;
}
.fi-vf-age-sub-value {
    font-weight: 700;
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

.fi-vf-mobile-age-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 24px;
}
.fi-vf-mobile-age-sub-label {
    font-size: 0.85rem;
    color: var(--fi-vf-on-surface-variant);
    font-weight: 500;
}
.fi-vf-mobile-age-sub-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.fi-vf-mobile-age-sub-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s;
}
.fi-vf-mobile-age-sub-btn:hover:not(:disabled) {
    border-color: var(--fi-vf-primary);
    color: var(--fi-vf-primary);
}
.fi-vf-mobile-age-sub-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.fi-vf-mobile-age-sub-btn .material-symbols-outlined {
    font-size: 16px;
}
.fi-vf-mobile-age-sub-value {
    font-weight: 700;
    font-size: 0.95rem;
    width: 24px;
    text-align: center;
}


.fi-vf-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999999;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.fi-vf-mobile-overlay.fi-vf-open {
    display: flex;
}
@media (min-width: 768px) {
    .fi-vf-mobile-overlay { display: none !important; }
}
.fi-vf-mobile-overlay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.fi-vf-mobile-overlay-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.15s;
}
.fi-vf-mobile-overlay-back:hover {
    background: var(--fi-vf-surface-container-high);
}
.fi-vf-mobile-overlay-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--fi-vf-on-surface);
}
.fi-vf-mobile-overlay-close {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--fi-vf-primary);
    font-weight: 600;
}
.fi-vf-mobile-search-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 20px 16px;
    background: var(--fi-vf-surface-container-high);
    border-radius: 12px;
    padding: 14px 16px;
}
.fi-vf-mobile-search-input .material-symbols-outlined {
    color: var(--fi-vf-primary);
    font-size: 20px;
}
.fi-vf-mobile-search-input input {
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fi-vf-on-surface);
    width: 100%;
}
.fi-vf-mobile-search-input input::placeholder {
    color: rgba(91,63,69,0.5);
}
.fi-vf-mobile-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    padding: 8px 20px;
}
.fi-vf-mobile-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    width: 100%;
    text-align: left;
    transition: background 0.15s;
    border: none;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}
.fi-vf-mobile-list-item:hover {
    background: var(--fi-vf-surface-container-low);
}
.fi-vf-mobile-list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--fi-vf-surface-container-low);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fi-vf-mobile-list-item-icon .material-symbols-outlined {
    font-size: 20px;
    color: var(--fi-vf-on-surface-variant);
}
.fi-vf-mobile-list-item-text {
    flex: 1;
}
.fi-vf-mobile-list-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--fi-vf-on-surface);
}
.fi-vf-mobile-list-item-detail {
    font-size: 0.8rem;
    color: #9ca3af;
}
.fi-vf-mobile-list-item-code {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fi-vf-primary);
    background: rgba(237,24,112,0.08);
    padding: 3px 10px;
    border-radius: 6px;
}

.fi-vf-mobile-dest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 8px 20px;
}
.fi-vf-mobile-dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.fi-vf-mobile-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fi-vf-mobile-dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.fi-vf-mobile-dest-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px;
    z-index: 2;
}
.fi-vf-mobile-dest-card-name {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}
.fi-vf-mobile-dest-card-code {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}
.fi-vf-mobile-dest-card-badge {
    position: absolute;
    bottom: 12px;
    left: 80px;
    background: var(--fi-vf-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 9999px;
    z-index: 3;
    text-transform: uppercase;
}

.fi-vf-mobile-calendar-content {
    padding: 0 20px 100px;
}
.fi-vf-mobile-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.fi-vf-mobile-calendar-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fi-vf-primary);
}
.fi-vf-mobile-calendar-tabs {
    display: flex;
    gap: 0;
    margin: 0 20px 20px;
    background: var(--fi-vf-surface-container-high);
    border-radius: 9999px;
    padding: 4px;
}
.fi-vf-mobile-calendar-tab {
    flex: 1;
    padding: 10px 16px;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--fi-vf-on-surface-variant);
    transition: all 0.2s;
    text-align: center;
}
.fi-vf-mobile-calendar-tab.fi-vf-active {
    background: #fff;
    color: var(--fi-vf-on-surface);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.fi-vf-mobile-calendar-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    z-index: 20;
}
.fi-vf-mobile-calendar-footer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: var(--fi-vf-on-surface-variant);
}
.fi-vf-mobile-calendar-footer-info strong {
    color: var(--fi-vf-on-surface);
}
.fi-vf-mobile-calendar-confirm {
    width: 100%;
    background: linear-gradient(135deg, var(--fi-vf-primary) 0%, var(--fi-vf-primary-container) 100%);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(237,24,112,0.25);
}

.fi-vf-mobile-passengers-content {
    padding: 20px;
}
.fi-vf-mobile-passenger-row {
    padding: 20px 0;
}
.fi-vf-mobile-passenger-row + .fi-vf-mobile-passenger-row {
    border-top: 1px solid var(--fi-vf-surface-container-high);
}
.fi-vf-mobile-passenger-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}
.fi-vf-mobile-passenger-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fi-vf-on-surface);
}
.fi-vf-mobile-passenger-age {
    font-size: 0.8rem;
    color: var(--fi-vf-on-surface-variant);
}
.fi-vf-mobile-passenger-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}
.fi-vf-mobile-passenger-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s;
}
.fi-vf-mobile-passenger-btn:hover:not(:disabled) {
    border-color: var(--fi-vf-primary);
    color: var(--fi-vf-primary);
}
.fi-vf-mobile-passenger-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.fi-vf-mobile-passenger-count {
    font-weight: 700;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}
.fi-vf-mobile-passengers-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    z-index: 20;
}
.fi-vf-mobile-passengers-confirm {
    width: 100%;
    background: linear-gradient(135deg, var(--fi-vf-primary) 0%, var(--fi-vf-primary-container) 100%);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(237,24,112,0.25);
}

@media (max-width: 767px) {
    .fi-vf-search-fields {
        grid-template-columns: 3fr 1fr;
    }
    .fi-vf-field-group:nth-child(1),
    .fi-vf-field-group:nth-child(2) {
        grid-column: 1 / -1;
    }
    .fi-vf-field-group:nth-child(5) {
        grid-column: 1 / -1;
    }
    .fi-vf-search-btn {
        height: 52px;
    }
    .fi-vf-dropdown {
        display: none !important;
    }
    .fi-vf-field-input {
        font-size: 0.8rem;
    }
}

.fi-vf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.fi-vf-zj-search-fields {
    grid-template-columns: 1fr 1fr !important;
}
@media (max-width: 767px) {
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(1),
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(2),
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(3) {
        grid-column: 1 / -1;
    }
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(4) {
        grid-column: 1 / -1;
    }
}
@media (min-width: 768px) {
    .fi-vf-zj-search-fields {
        grid-template-columns: 3fr 3fr 3fr auto !important;
    }
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(1),
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(2),
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(3),
    .fi-vf-zj-search-fields .fi-vf-field-group:nth-child(4) {
        grid-column: auto;
    }
}

.fi-vf-zj-termin-dropdown {
    min-width: 620px;
    left: auto;
    right: 0;
}
@media (max-width: 767px) {
    .fi-vf-zj-termin-dropdown { min-width: auto; }
}
.fi-vf-zj-termin-panel {
    display: flex;
    gap: 32px;
    padding: 24px;
}
.fi-vf-zj-calendar-col {
    flex: 1;
    min-width: 0;
}
.fi-vf-zj-duration-col {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.fi-vf-zj-duration-col h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fi-vf-on-surface);
    margin-bottom: 16px;
}
.fi-vf-zj-nights-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.fi-vf-zj-nights-range span:first-child {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--fi-vf-on-surface);
}
.fi-vf-zj-nights-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--fi-vf-primary);
}
.fi-vf-zj-range-wrapper {
    position: relative;
    height: 20px;
    margin-bottom: 20px;
}
.fi-vf-zj-range-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; right: 0;
    height: 4px;
    border-radius: 4px;
    background: var(--fi-vf-surface-container-high);
    pointer-events: none;
}
.fi-vf-zj-range-fill {
    position: absolute;
    top: 0; height: 100%;
    background: var(--fi-vf-primary);
    border-radius: 4px;
}
.fi-vf-zj-nights-slider {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    height: 20px;
    outline: none;
    margin: 0;
}
.fi-vf-zj-nights-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fi-vf-primary);
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(237,24,112,0.3);
}
.fi-vf-zj-nights-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fi-vf-primary);
    cursor: pointer;
    pointer-events: all;
    border: none;
    box-shadow: 0 2px 8px rgba(237,24,112,0.3);
}
.fi-vf-zj-presets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.fi-vf-zj-preset-btn {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--fi-vf-on-surface);
    text-align: left;
    transition: all 0.2s;
}
.fi-vf-zj-preset-btn:hover {
    border-color: var(--fi-vf-primary);
    color: var(--fi-vf-primary);
}
.fi-vf-zj-preset-btn.fi-vf-active {
    border-width: 2px;
    border-color: var(--fi-vf-primary);
    background: rgba(237,24,112,0.05);
    color: var(--fi-vf-primary);
}
.fi-vf-zj-duration-footer {
    margin-top: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

.fi-vf-zj-dropdown-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 8px 4px;
    background: var(--fi-vf-surface-container-high);
    border-radius: 10px;
    padding: 10px 12px;
}
.fi-vf-zj-dropdown-search .material-symbols-outlined {
    color: var(--fi-vf-primary);
    font-size: 18px;
    flex-shrink: 0;
}
.fi-vf-zj-dropdown-search input {
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fi-vf-on-surface);
    width: 100%;
    font-family: inherit;
}
.fi-vf-zj-dropdown-search input::placeholder {
    color: rgba(91,63,69,0.45);
}

.fi-vf-zj-multiselect-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    width: calc(100% - 8px);
    margin: 0 4px;
    border-radius: 8px;
    text-align: left;
    transition: background 0.15s;
    cursor: pointer;
}
.fi-vf-zj-multiselect-item:hover { background: var(--fi-vf-surface-container-low); }
.fi-vf-zj-multiselect-item .material-symbols-outlined {
    color: var(--fi-vf-on-surface-variant);
    font-size: 20px;
}
.fi-vf-zj-check-icon {
    margin-left: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: transparent;
    transition: all 0.2s;
}
.fi-vf-zj-multiselect-item.fi-vf-selected .fi-vf-zj-check-icon {
    background: var(--fi-vf-primary);
    border-color: var(--fi-vf-primary);
    color: #fff;
}
.fi-vf-zj-multiselect-item.fi-vf-selected .material-symbols-outlined { color: var(--fi-vf-primary); }
.fi-vf-zj-dropdown-footer {
    padding: 8px 12px 12px;
    border-top: 1px solid var(--fi-vf-surface-container-high);
    margin-top: 4px;
}
.fi-vf-zj-dropdown-confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--fi-vf-primary) 0%, var(--fi-vf-primary-container) 100%);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}
.fi-vf-zj-dropdown-confirm-btn:hover { opacity: 0.9; }
.fi-vf-mobile-zjto-results .fi-vf-mobile-list-item,
.fi-vf-mobile-zjfrom-results .fi-vf-mobile-list-item {
    position: relative;
}
.fi-vf-mobile-zj-check {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: transparent;
    transition: all 0.2s;
}
.fi-vf-mobile-list-item.fi-vf-selected .fi-vf-mobile-zj-check {
    background: var(--fi-vf-primary);
    border-color: var(--fi-vf-primary);
    color: #fff;
}
.fi-vf-mobile-list-item.fi-vf-selected .fi-vf-mobile-list-item-icon .material-symbols-outlined { color: var(--fi-vf-primary); }
.fi-vf-mobile-zj-overlay-footer {
    padding: 16px 20px 28px;
    position: sticky;
    bottom: 0;
    background: #fff;
}

.fi-vf-mobile-zj-termin {
    padding: 0 20px 24px;
}
.fi-vf-mobile-zj-termin h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fi-vf-on-surface);
    margin: 20px 0 12px;
}
.fi-vf-mobile-zj-nights-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 700;
}
.fi-vf-mobile-zj-nights-value { color: var(--fi-vf-primary); }
.fi-vf-mobile-zj-presets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 24px;
}
.fi-vf-mobile-zj-preset-btn {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--fi-vf-on-surface);
    text-align: left;
    transition: all 0.2s;
}
.fi-vf-mobile-zj-preset-btn.fi-vf-active {
    border-width: 2px;
    border-color: var(--fi-vf-primary);
    background: rgba(237,24,112,0.05);
    color: var(--fi-vf-primary);
}
.fi-vf-mobile-zj-confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--fi-vf-primary) 0%, var(--fi-vf-primary-container) 100%);
    color: #fff;
    padding: 16px;
    border-radius: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(237,24,112,0.25);
    transition: opacity 0.2s;
}
.fi-vf-mobile-zj-confirm-btn:hover { opacity: 0.9; }

/* ===== Hero Wrapper (data-bg-image / data-title) ===== */
.fi-vf-sw-hero {
    position: relative;
    min-height: 500px;
    max-height: var(--fi-vf-hero-max-h-mobile, none);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 40px 12px;
    width: 100%;
    max-width: 100%;
}
/* Ak je max-height nastavené cez data-atribút, min-height nesmie ho prepisovať */
.fi-vf-sw-hero[style*="--fi-vf-hero-max-h-mobile"] {
    min-height: 0;
}
@media (max-width: 767px) {
    .fi-vf-sw-hero {
        overflow-x: hidden;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: 0;
    }
}
@media (min-width: 768px) {
    .fi-vf-sw-hero {
        min-height: var(--fi-vf-hero-max-h-pc, 600px);
        max-height: var(--fi-vf-hero-max-h-pc, 600px);
    }
}
.fi-vf-sw-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.fi-vf-sw-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fi-vf-sw-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(25,28,29,0.45) 0%, transparent 70%);
}
.fi-vf-sw-hero--color .fi-vf-sw-hero-bg::after {
    display: none;
}
.fi-vf-sw-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
}
.fi-vf-sw-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
}
@media (min-width: 768px) {
    .fi-vf-sw-title { font-size: 4.25rem; }
}
