.pro-header {
    --hdr-border: rgba(var(--theme-primary-rgb), 0.12);
    --hdr-shadow: 0 18px 44px rgba(var(--theme-primary-dark-rgb), 0.1);
}

.home-2026 .home-quick-nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.home-2026 .home-quick-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 12px 24px rgba(var(--theme-primary-dark-rgb), 0.06);
    color: var(--theme-text);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.home-2026 .home-quick-nav a:hover,
.home-2026 .home-quick-nav a:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-primary-rgb), 0.26);
    box-shadow: 0 16px 30px rgba(var(--theme-primary-dark-rgb), 0.1);
    text-decoration: none;
}

.home-2026 .home-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-2026 .home-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    padding: 18px 16px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 18px;
    background:
        radial-gradient(120% 120% at 100% 0, rgba(var(--theme-accent-rgb), 0.14), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    box-shadow: 0 16px 32px rgba(var(--theme-primary-dark-rgb), 0.08);
    text-align: center;
}

.home-2026 .home-trust-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--theme-primary);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.home-2026 .home-trust-item span {
    display: block;
    color: var(--theme-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .home-2026 .home-quick-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-2026 .home-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-2026 .home-quick-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-2026 .home-quick-nav a {
        min-height: 48px;
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 13px;
    }

    .home-2026 .home-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-2026 .home-trust-item {
        min-height: 88px;
        padding: 14px 12px;
        border-radius: 16px;
    }

    .home-2026 .home-trust-item strong {
        font-size: 24px;
    }

    .home-2026 .home-trust-item span {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    #mainHeader .header-logo img {
        height: 56px !important;
        max-height: 96px !important;
        min-width: auto !important;
        width: auto !important;
        margin-top: 0 !important;
    }

    #mainHeader .header-utility-dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    #mainHeader .header-utility-dropdown__trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        padding: 4px 10px;
        border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(var(--theme-primary-rgb), 0.06));
        box-shadow: 0 10px 22px rgba(var(--theme-primary-dark-rgb), 0.08);
        color: var(--theme-text);
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    #mainHeader .header-utility-dropdown__trigger:hover {
        transform: translateY(-1px);
        border-color: rgba(var(--theme-primary-rgb), 0.28);
        box-shadow: 0 12px 28px rgba(var(--theme-primary-dark-rgb), 0.14);
    }

    #mainHeader .header-utility-dropdown__trigger:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb), 0.22), 0 12px 28px rgba(var(--theme-primary-dark-rgb), 0.14);
    }

    #mainHeader .header-utility-dropdown__label {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: 0 7px;
        border-radius: 999px;
        background: rgba(var(--theme-primary-rgb), 0.08);
        color: var(--theme-primary);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    #mainHeader .header-utility-dropdown__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--theme-primary);
        font-size: 13px;
    }

    #mainHeader .header-utility-dropdown__chevron {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: var(--theme-muted);
        transition: transform 0.2s ease, color 0.2s ease;
    }

    #mainHeader .header-utility-dropdown__icon svg {
        width: 16px;
        height: 16px;
        display: block;
    }

    #mainHeader .header-utility-dropdown__chevron svg {
        width: 14px;
        height: 14px;
        display: block;
    }

    #mainHeader .header-utility-dropdown.is-open .header-utility-dropdown__chevron {
        transform: rotate(180deg);
        color: var(--theme-primary);
    }

    #mainHeader .header-utility-dropdown__panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: none;
        min-width: 300px;
        padding: 14px;
        border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--theme-primary-rgb), 0.04));
        box-shadow: 0 18px 40px rgba(var(--theme-primary-dark-rgb), 0.14);
        z-index: 40;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    #mainHeader .header-utility-dropdown.is-open .header-utility-dropdown__panel {
        display: block;
    }

    #mainHeader .header-utility-dropdown__panel-inner {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    #mainHeader .header-utility-dropdown__row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #mainHeader .header-utility-dropdown__panel .custom-select,
    #mainHeader .header-utility-dropdown__panel .lang-select-visible,
    #mainHeader .header-utility-dropdown__panel .guest-favorites-toggle,
    #mainHeader .header-utility-dropdown__panel .header-reserv-link {
        min-height: 40px;
    }

    #mainHeader .header-utility-dropdown__panel .custom-select {
        flex: 1 1 auto;
        padding-left: 10px;
        padding-right: 28px;
        font-size: 12px;
    }

    #mainHeader .header-utility-dropdown__panel .lang-select-wrapper {
        width: 100%;
    }

    #mainHeader .header-utility-dropdown__panel .lang-select-visible {
        width: 100%;
        justify-content: center;
        padding: 0 10px;
        font-size: 12px;
    }

    #mainHeader .header-utility-dropdown__panel .guest-favorites-wrap,
    #mainHeader .header-utility-dropdown__panel .header-reserv-link {
        width: 100%;
    }

    #mainHeader .header-utility-dropdown__panel .header-reserv-link {
        display: inline-flex !important;
        justify-content: center;
    }

    #mainHeader .header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "logo nav utilities";
        align-items: center;
        gap: 12px 18px;
    }

    #mainHeader .header-logo {
        grid-area: logo;
    }

    #mainHeader .header-nav {
        grid-area: nav;
        min-width: 0;
    }

    #mainHeader .header-utilities {
        grid-area: utilities;
    }

    #mainHeader.pro-header--classic .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "logo nav utilities";
    }

    #mainHeader.pro-header--split {
        background:
            radial-gradient(circle at 12% -30%, rgba(var(--theme-accent-rgb), 0.22), transparent 36%),
            radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.16), transparent 30%),
            linear-gradient(135deg, rgba(var(--theme-primary-dark-rgb), 0.08), rgba(255, 255, 255, 0.98) 38%, rgba(var(--theme-secondary-rgb), 0.08) 100%);
        box-shadow: var(--hdr-shadow);
    }

    #mainHeader.pro-header--split .header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-areas: "nav logo utilities";
    }

    #mainHeader.pro-header--split .header-nav .nav-list {
        justify-content: flex-start;
    }

    #mainHeader.pro-header--split .header-logo {
        justify-self: center;
    }

    #mainHeader.pro-header--split .header-logo img {
        height: 66px !important;
        max-height: 104px !important;
        min-width: auto !important;
        margin-top: 0 !important;
    }

    #mainHeader.pro-header--stacked {
        background:
            radial-gradient(circle at 96% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 30%),
            linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
        box-shadow: 0 20px 48px rgba(var(--theme-primary-dark-rgb), 0.08);
    }

    #mainHeader.pro-header--stacked .header-inner {
        min-height: 84px;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo utilities"
            "nav nav";
        gap: 10px 20px;
        padding: 8px 0 12px;
    }

    #mainHeader.pro-header--stacked .header-nav {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    }

    #mainHeader.pro-header--stacked .header-nav .nav-list {
        justify-content: flex-start;
        gap: 10px;
    }

    #mainHeader.pro-header--stacked .header-logo img {
        height: 72px !important;
        max-height: 112px !important;
        min-width: auto !important;
        margin-top: 0 !important;
    }

    #mainHeader.pro-header--topbar {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
        box-shadow: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.08);
    }

    #mainHeader.pro-header--topbar .header-inner {
        min-height: 92px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "logo topline topline"
            "logo nav utilities";
        align-items: center;
        gap: 8px 16px;
        padding: 8px 0 10px;
    }

    #mainHeader.pro-header--topbar .header-nav {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(var(--theme-primary-rgb), 0.10);
        padding-left: 30px;
    }

    #mainHeader.pro-header--topbar .header-nav .nav-list {
        justify-content: flex-start;
        gap: 16px;
    }

    #mainHeader.pro-header--topbar .header-logo img {
        height: 72px !important;
        max-height: 104px !important;
        min-width: auto !important;
        margin-top: 0 !important;
    }

    #mainHeader.pro-header--topbar .header-utilities {
        align-self: end;
        justify-content: flex-end;
        gap: 10px;
    }

    #mainHeader.pro-header--topbar .header-utility-group {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #mainHeader.pro-header--topbar .header-utility-group__items {
        gap: 10px;
    }

    #mainHeader.pro-header--topbar .custom-select,
    #mainHeader.pro-header--topbar .lang-select-visible,
    #mainHeader.pro-header--topbar .guest-favorites-toggle,
    #mainHeader.pro-header--topbar .header-reserv-link {
        min-height: 34px;
        border-radius: 999px;
        border-width: 1px;
        box-shadow: none;
    }

    #mainHeader.pro-header--topbar .guest-favorites-toggle,
    #mainHeader.pro-header--topbar .header-reserv-link {
        font-size: 12px;
        padding: 0 13px;
    }

    #mainHeader.pro-header--topbar .nav-list > li > a,
    #mainHeader.pro-header--topbar .nav-list > li > .header-nav-trigger {
        min-height: 38px;
        font-size: 16px;
        font-weight: 700;
        color: #18395b;
    }

    #mainHeader.pro-header--topbar .nav-list > li > a:hover,
    #mainHeader.pro-header--topbar .nav-list > li.active > a,
    #mainHeader.pro-header--topbar .nav-list > li > .header-nav-trigger:hover,
    #mainHeader.pro-header--topbar .nav-list > li.has-dropdown:hover > .header-nav-trigger,
    #mainHeader.pro-header--topbar .nav-list > li > .header-nav-trigger:focus-visible {
        color: #d91f2f;
        background: rgba(217, 31, 47, 0.06);
    }

    #mainHeader .header-utilities.header-utilities-inline,
    #mainHeader .header-utilities.header-utilities-stacked {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    #mainHeader .pro-header-layout-badge {
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid rgba(var(--theme-primary-rgb), 0.18);
        background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.1), rgba(var(--theme-secondary-rgb), 0.12));
        color: var(--theme-primary);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    #mainHeader .header-utilities.header-utilities-two-rows .header-utility-dropdown--actions {
        grid-column: 1;
        grid-row: 1;
    }

    #mainHeader .header-utilities.header-utilities-two-rows .header-utility-dropdown--selectors {
        grid-column: 1;
        grid-row: 2;
    }
}

@media (max-width: 991px) {
    #mainHeader .header-logo img {
        height: 107px !important;
        max-height: 125px !important;
        min-width: auto !important;
        width: auto !important;
        margin-top: 17px !important;
    }
}

.home-2026 {
    --fbx-radius-lg: 28px;
    --fbx-radius-md: 22px;
    --fbx-radius-sm: 16px;
    --fbx-shadow-soft: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.11);
    --fbx-shadow-strong: 0 24px 54px rgba(var(--theme-primary-dark-rgb), 0.16);
}

.home-2026 .fbx-section-head,
.home-2026 .header-section.fbx-section-head {
    position: relative;
    margin: 0 auto 18px;
    padding: 20px 22px 18px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: var(--fbx-radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 34%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: var(--fbx-shadow-soft);
    overflow: hidden;
}

.home-2026 .fbx-section-head::before,
.home-2026 .header-section.fbx-section-head::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-success));
}

.home-2026 .fbx-section-head .header-section__title,
.home-2026 .header-section.fbx-section-head .header-section__title,
.home-2026 .fbx-title {
    margin: 0;
    color: var(--theme-text);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-2026 .fbx-section-head .header-section__title-accent,
.home-2026 .header-section.fbx-section-head .header-section__title-accent,
.home-2026 .fbx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 8px 6px 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-text-fill-color: currentColor;
}

.home-2026 .fbx-section-head .header-section__title-accent::after,
.home-2026 .header-section.fbx-section-head .header-section__title-accent::after,
.home-2026 .fbx-kicker::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--theme-accent);
    box-shadow: 0 0 0 5px rgba(var(--theme-accent-rgb), 0.16);
}

.home-2026 .fbx-section-head .header-section__subtitle,
.home-2026 .header-section.fbx-section-head .header-section__subtitle,
.home-2026 .fbx-subtitle {
    display: none;
}

.home-2026 .fbx-section-head .villa-side-text,
.home-2026 .header-section.fbx-section-head .villa-side-text {
    max-width: 820px;
    margin: 10px auto 0;
    padding: 12px 14px;
    border-radius: 16px;
}

.home-2026 .fbx-section-head .villa-side-text h3,
.home-2026 .header-section.fbx-section-head .villa-side-text h3 {
    margin: 0 0 6px;
    font-size: clamp(16px, 1.6vw, 20px);
}

.home-2026 .fbx-section-head .villa-side-text p,
.home-2026 .header-section.fbx-section-head .villa-side-text p {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.5;
}

.home-2026 .home-module-grid--villa,
.home-2026 .home-module-grid--gulet,
.home-2026 .home-module-grid--cabin,
.home-2026 .home-module-grid--transfer {
    background: linear-gradient(180deg, #f8fcff 0%, #f2f8ff 100%);
    padding: 8px 0 14px;
}

.home-2026 .home-module-grid--tour,
.home-2026 .home-module-grid--hotel,
.home-2026 .home-module-grid--rentacar {
    background: #fff;
    padding: 8px 0 14px;
}

.home-2026 .home-tour-grid {
    background: #fff;
    padding: 8px 0 14px;
}

.home-2026 .tour-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-2026 .tur-card .tur-card-media {
    height: 176px;
    overflow: hidden;
    position: relative;
}

.home-2026 .tour-home-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-2026 .tour-home-grid--after {
    margin-top: 20px;
}

.home-2026 .tour-grid-editorial,
.home-2026 .tour-grid-spotlight {
    display: grid;
    gap: 20px;
    align-items: start;
}

.home-2026 .tour-grid-editorial {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
}

.home-2026 .tour-grid-editorial__side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.home-2026 .tour-grid-spotlight {
    grid-template-columns: minmax(0, 1.24fr) minmax(320px, .92fr);
}

.home-2026 .tour-grid-spotlight__rail {
    display: grid;
    gap: 16px;
}

.home-2026 .tour-collection-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 22px;
    align-items: stretch;
}

.home-2026 .tour-collection-shell__featured,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight {
    height: 100%;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 92, 146, .16);
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    box-shadow: 0 24px 54px rgba(0, 48, 112, .18);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-card-media {
    height: 320px;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-card-media img {
    transition: transform .56s ease, filter .36s ease;
    transform-origin: center center;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 24, 43, .08) 0%, rgba(3, 24, 43, 0) 36%, rgba(3, 24, 43, .52) 100%);
    pointer-events: none;
    transition: opacity .32s ease, background .32s ease;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-badge-stack,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight .villa-favorite,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-location,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight .villa-price {
    z-index: 2;
    transition: transform .28s ease, opacity .28s ease, box-shadow .28s ease, background .28s ease;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-card-body {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 24px 24px 22px;
    border-top: 1px solid rgba(201, 225, 243, .9);
    border-radius: 0 0 26px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, #f7fbff 100%);
    box-shadow: none;
    backdrop-filter: none;
    transition: background .32s ease, border-color .32s ease;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .villa-title {
    font-size: clamp(26px, 2.3vw, 34px);
    line-height: 1.12;
    transition: color .28s ease, transform .28s ease;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .tur-features--spotlight {
    gap: 12px 16px;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .featuretur-item--spotlight {
    padding: 8px 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
    border: 1px solid rgba(192, 220, 241, .9);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight .villa-btn {
    min-height: 48px;
    box-shadow: 0 12px 24px rgba(0, 48, 112, .22);
    transition: transform .26s ease, box-shadow .26s ease, background .26s ease;
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within {
    transform: translateY(-6px);
    border-color: rgba(var(--theme-primary-rgb), .3);
    box-shadow: 0 34px 72px rgba(0, 48, 112, .22);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .tur-card-media img,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .tur-card-media img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .tur-card-media::after,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .tur-card-media::after {
    background:
        linear-gradient(180deg, rgba(3, 24, 43, .04) 0%, rgba(3, 24, 43, 0) 32%, rgba(3, 24, 43, .62) 100%);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .tur-badge-stack,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .villa-favorite,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .tur-location,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .villa-price,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .tur-badge-stack,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .villa-favorite,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .tur-location,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .villa-price {
    transform: translateY(-2px);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .villa-price,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .villa-price {
    box-shadow: 0 22px 36px rgba(0, 48, 112, .2);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .tur-card-body,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .tur-card-body {
    border-top-color: rgba(var(--theme-primary-rgb), .2);
    background: linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, #f1f8ff 100%);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .villa-title,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .villa-title {
    color: var(--theme-primary);
    transform: translateY(-1px);
}

.home-2026 .tour-collection-shell__featured .tur-card--spotlight:hover .villa-btn,
.home-2026 .tour-collection-shell__featured .tur-card--spotlight:focus-within .villa-btn {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(0, 48, 112, .24);
}

.home-2026 .tour-collection-shell__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-2026 .tour-collection-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 220px;
    padding: 18px;
    overflow: hidden;
    border-radius: 22px;
    isolation: isolate;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 16px 32px rgba(0, 48, 112, .18);
    text-decoration: none;
}

.home-2026 .tour-collection-tile__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.home-2026 .tour-collection-tile__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-2026 .tour-collection-tile__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 24, 43, .08) 0%, rgba(3, 24, 43, .82) 100%);
}

.home-2026 .tour-collection-tile__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
    color: #fff;
}

.home-2026 .tour-collection-tile__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-2026 .tour-collection-tile__title {
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 800;
}

.home-2026 .tour-collection-tile__desc {
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.5;
}

.home-2026 .tour-collection-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #fff2a8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home-2026 .tur-features--spotlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 10px;
}

.home-2026 .tur-features--spotlight .featuretur-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
    min-width: 0;
}

.home-2026 .tur-features--spotlight .featuretur-item i {
    color: var(--theme-primary);
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 3px;
    margin-right: 0;
    width: 16px;
}

.home-2026 .tur-features--spotlight .featuretur-item span {
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
}

.home-2026 .tur-card--featured .tur-card-media img,
.home-2026 .tur-card--spotlight .tur-card-media img {
    height: 360px;
}

.home-2026 .tour-grid-spotlight__hero .tur-card--spotlight .tur-card-media,
.home-2026 .tour-grid-spotlight__hero .tur-card--spotlight .tur-card-media img {
    height: 346px;
}

.home-2026 .tur-card--featured .villa-title,
.home-2026 .tur-card--spotlight .villa-title {
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.18;
}

.home-2026 .tur-card--featured .tur-card-body,
.home-2026 .tur-card--spotlight .tur-card-body {
    padding: 24px;
}

.home-2026 .tur-card--editorial-side .tur-card-media img {
    height: 178px;
}

.home-2026 .tur-card--editorial-side .tur-card-body {
    padding: 1px 16px;
}

.home-2026 .tur-card--editorial-side .villa-title {
    font-size: 18px;
    line-height: 1.24;
    margin-bottom: 8px;
}

.home-2026 .tur-card--editorial-side .tur-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.home-2026 .tur-card--editorial-side .featuretur-item {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 0 1 auto;
    white-space: nowrap;
}

.home-2026 .tur-card--editorial-side .featuretur-item span {
    display: inline;
    white-space: nowrap;
}

.home-2026 .tur-card--editorial-side .featuretur-item i {
    margin-right: 0;
    flex-shrink: 0;
}

.home-2026 .tur-card--editorial-side .featuretur-item span span {
    display: inline;
    white-space: nowrap;
}

.home-2026 .tur-card--editorial-side hr.my-4 {
    display: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.home-2026 .tur-card--editorial-side .tur-features {
    gap: 8px;
}

.home-2026 .tur-card .tur-features {
    margin-top: -15px;
}

.home-2026 .tur-card--editorial-side .featuretur-item {
    font-size: 12px;
}

.home-2026 .tur-card--editorial-side .villa-btn {
    margin-top: 10px;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
}

.home-2026 .tur-card--compact .tur-card-media img {
    height: 176px;
}

.home-2026 .tur-card--compact .tur-card-body {
    padding: 14px;
}

.home-2026 .tur-card--compact .villa-title {
    font-size: 18px;
    line-height: 1.3;
}

.home-2026 .tur-card--compact .tur-features {
    gap: 8px;
}

.home-2026 .tour-grid-spotlight__rail .tur-card--compact .tur-features,
.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .tur-features {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.home-2026 .tour-grid-spotlight__rail .tur-card--compact .featuretur-item,
.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .featuretur-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 0 1 auto;
    white-space: nowrap;
}

.home-2026 .tour-grid-spotlight__rail .tur-card--compact .featuretur-item i,
.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .featuretur-item i {
    margin-right: 0;
    flex-shrink: 0;
}

.home-2026 .tour-grid-spotlight__rail .tur-card--compact .featuretur-item span,
.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .featuretur-item span,
.home-2026 .tour-grid-spotlight__rail .tur-card--compact .featuretur-item span span,
.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .featuretur-item span span {
    display: inline;
    white-space: nowrap;
}

.home-2026 .tur-card--compact .featuretur-item {
    font-size: 13px;
}

.home-2026 .tur-card--compact .featuretur-item i {
    margin-right: 10px;
}

.home-2026 .tur-card--compact .tur-badge-stack {
    gap: 6px;
}

.home-2026 .tur-card--compact hr.my-4 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

.home-2026 .tur-card--compact .tour-card-route {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--theme-muted);
    font-size: 13px;
}

.home-2026 .tur-card--compact .tour-card-route__label {
    color: var(--theme-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-2026 .tur-card--compact .villa-btn {
    min-height: 42px;
    font-size: 13px;
}

.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .villa-price {
    top: auto;
    bottom: 12px;
    left: auto;
    right: 12px;
    border-top-left-radius: 20px;
    border-radius: 16px 0 16px 0;
    min-width: 112px;
    max-width: 128px;
    padding: 8px 12px;
    text-align: right;
    z-index: 2;
}

.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .villa-price__label {
    font-size: 8px;
    margin-bottom: 1px;
}

.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .villa-price .price {
    font-size: 15px;
    line-height: 1.05;
    white-space: nowrap;
}

.home-2026 .tour-grid-editorial__side .tur-card--editorial-side .tur-location {
    display: block;
    left: 12px;
    right: auto;
    bottom: 12px;
    width: calc(40% - 152px);
    max-width: calc(100% - 152px);
    min-height: 32px;
    border-radius: 0 12px 12px 0;
    font-size: 11px;
    line-height: 1.2;
    padding: 7px 11px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
}

.home-2026 .tour-grid-editorial__lead .tur-card--featured {
    min-height: 100%;
}

.home-2026 .tour-grid-editorial__lead .tur-card--featured .tur-card-body {
    min-height: 260px;
}

.home-2026 .home-villa-grid .villa-home-grid {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.home-2026 .home-villa-grid .villa-home-grid__item {
    min-width: 0;
}

.home-2026 .home-villa-grid .villa-home-grid .villa-card--home-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-2026 .home-villa-grid .villa-home-grid .villa-card--home-layout .villa-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.home-2026 .home-villa-grid .villa-home-grid .villa-card--home-layout .villa-btn {
    margin-top: auto;
}

.home-2026 .home-villa-grid .villa-panorama-lead {
    margin: 10px 0 0;
    color: var(--theme-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.home-2026 .home-villa-grid .villa-features--panorama-expanded {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 12px;
}

@media (max-width: 1199px) {
    .home-2026 .tour-home-grid--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-2026 .tour-grid-editorial,
    .home-2026 .tour-grid-spotlight,
    .home-2026 .tour-collection-shell {
        grid-template-columns: 1fr;
    }

    .home-2026 .tour-grid-spotlight__rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-2026 .tour-grid-editorial__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-2026 .tour-collection-shell__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-2026 .tour-home-grid,
    .home-2026 .tour-home-grid--compact,
    .home-2026 .tour-grid-editorial__side,
    .home-2026 .tour-grid-spotlight__rail,
    .home-2026 .tour-collection-shell__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-2026 .tur-card--featured .tur-card-media img,
    .home-2026 .tur-card--spotlight .tur-card-media img {
        height: 260px;
    }

    .home-2026 .tur-card--editorial-side .tur-card-media img {
        height: 166px;
    }

    .home-2026 .tur-features--spotlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-2026 .tour-home-grid,
    .home-2026 .tour-home-grid--compact,
    .home-2026 .tour-grid-editorial__side,
    .home-2026 .tour-grid-spotlight__rail,
    .home-2026 .tour-collection-shell__tiles {
        grid-template-columns: 1fr;
    }

    .home-2026 .tour-grid-editorial__lead .tur-card--featured .tur-card-body {
        min-height: 0;
    }
}

.home-2026 .home-villa-grid .villa-features--panorama-expanded .feature-item {
    min-height: 44px;
}

.home-2026 .home-villa-grid .villa-features--panorama-expanded .feature-item .value {
    font-size: 0.88rem;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-featured .villa-panorama-lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid,
.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.home-2026 .home-villa-grid.home-villa-grid--compact .villa-home-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item {
    grid-column: span 4;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item.is-featured {
    grid-column: span 4;
    grid-row: span 2;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item.is-featured .villa-card-media {
    height: 320px;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-card-media {
    height: 190px;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-card-body {
    padding: 14px 14px 16px;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-title {
    font-size: 1rem;
    line-height: 1.3;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-badge-stack,
.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-badge-stack {
    display: none;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 4px;
    overflow: hidden;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary .feature-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    min-width: 0;
    color: var(--theme-text);
    font-size: 0.88rem;
    font-weight: 800;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary .feature-item:hover {
    transform: none;
    box-shadow: none;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary .feature-item .label {
    display: none;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary .feature-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    color: var(--theme-primary);
    font-size: 0.82rem;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary .feature-item:nth-child(n + 5) i {
    display: none;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-features--editorial-secondary .feature-item .value {
    color: inherit;
    font-weight: inherit;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) hr {
    margin: 0 !important;
}

.home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item:not(.is-featured) .villa-btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.82rem;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item {
    grid-column: span 4;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-featured {
    grid-column: span 6;
    grid-row: span 2;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-featured .villa-card-media {
    height: 320px;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon {
    grid-column: span 3;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-card-media {
    height: 146px;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-card-body {
    padding: 12px 13px 14px;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-title {
    font-size: 0.96rem;
    line-height: 1.28;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-badge-stack,
.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-location {
    display: none;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-features {
    gap: 8px 10px;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-features .feature-item:nth-child(n + 5) {
    display: none;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon hr {
    margin: 7px 0 !important;
}

.home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon .villa-btn {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 0.78rem;
}

.home-2026 .home-villa-grid .villa-collection-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 22px;
    margin-top: 24px;
}

.home-2026 .home-villa-grid .villa-collection-shell__featured,
.home-2026 .home-villa-grid .villa-collection-shell__featured .villa-home-grid__item,
.home-2026 .home-villa-grid .villa-collection-shell__featured .villa-card--home-layout {
    height: 100%;
}

.home-2026 .home-villa-grid .villa-collection-hero {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: var(--fbx-shadow-soft);
}

.home-2026 .home-villa-grid .villa-collection-hero__media {
    position: relative;
    min-height: 360px;
}

.home-2026 .home-villa-grid .villa-collection-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-2026 .home-villa-grid .villa-collection-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 33, 0.08) 0%, rgba(7, 18, 36, 0.76) 100%),
        radial-gradient(circle at 82% 18%, rgba(var(--theme-accent-rgb), 0.26), transparent 34%);
}

.home-2026 .home-villa-grid .villa-collection-hero__chips {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 1;
}

.home-2026 .home-villa-grid .villa-collection-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 18, 33, 0.66);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.home-2026 .home-villa-grid .villa-collection-hero__chip--soft {
    background: rgba(255, 255, 255, 0.18);
}

.home-2026 .home-villa-grid .villa-collection-hero__price {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(8, 18, 33, 0.78);
    color: #fff;
    box-shadow: 0 18px 36px rgba(8, 18, 33, 0.22);
    backdrop-filter: blur(12px);
}

.home-2026 .home-villa-grid .villa-collection-hero__price-label,
.home-2026 .home-villa-grid .villa-collection-hero__price-currency {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
}

.home-2026 .home-villa-grid .villa-collection-hero__price strong {
    font-size: 1.25rem;
    line-height: 1;
    color: #fff;
}

.home-2026 .home-villa-grid .villa-collection-hero__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 24px;
}

.home-2026 .home-villa-grid .villa-collection-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-2026 .home-villa-grid .villa-collection-hero__title {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.12;
    font-weight: 800;
}

.home-2026 .home-villa-grid .villa-collection-hero__title a {
    color: var(--theme-text);
    text-decoration: none;
}

.home-2026 .home-villa-grid .villa-collection-hero__desc {
    margin: 0;
    color: var(--theme-muted);
    font-size: 0.98rem;
    line-height: 1.72;
}

.home-2026 .home-villa-grid .villa-collection-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.home-2026 .home-villa-grid .villa-collection-hero__stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-text);
    font-size: 0.88rem;
    font-weight: 700;
}

.home-2026 .home-villa-grid .villa-collection-hero__stats i {
    color: var(--theme-primary);
}

.home-2026 .home-villa-grid .villa-collection-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.home-2026 .home-villa-grid .villa-collection-hero__actions .fbx-btn {
    min-height: 44px;
}

.home-2026 .home-villa-grid .villa-collection-shell__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-2026 .home-villa-grid .villa-collection-tile {
    position: relative;
    display: flex;
    min-height: 210px;
    border-radius: 24px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    text-decoration: none;
    box-shadow: var(--fbx-shadow-soft);
    isolation: isolate;
}

.home-2026 .home-villa-grid .villa-collection-tile__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 15, 31, 0.12) 0%, rgba(5, 17, 35, 0.88) 100%),
        linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.14), rgba(var(--theme-accent-rgb), 0.2));
    z-index: 0;
}

.home-2026 .home-villa-grid .villa-collection-tile__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    padding: 18px;
    color: #fff;
}

.home-2026 .home-villa-grid .villa-collection-tile__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-2026 .home-villa-grid .villa-collection-tile__title {
    display: block;
    font-size: 1.18rem;
    line-height: 1.18;
    font-weight: 800;
}

.home-2026 .home-villa-grid .villa-collection-tile__desc {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.5;
}

.home-2026 .home-villa-grid .villa-collection-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 2px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--theme-primary);
    font-size: 0.78rem;
    font-weight: 800;
}

.home-2026 .home-villa-grid.home-villa-grid--compact .villa-card--home-layout .villa-card-media {
    height: 180px;
}

.home-2026 .home-villa-grid.home-villa-grid--compact .villa-card--home-layout .villa-card-body {
    padding: 16px;
}

.home-2026 .home-villa-grid.home-villa-grid--compact .villa-card--home-layout .villa-title {
    font-size: 1.05rem;
}

.home-2026 .home-villa-grid.home-villa-grid--compact .villa-card--home-layout .villa-features .feature-item:nth-child(n + 5) {
    display: none;
}

@media (max-width: 1199px) {
    .home-2026 .home-villa-grid.home-villa-grid--compact .villa-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-2026 .home-villa-grid .villa-collection-shell {
        grid-template-columns: 1fr;
    }

    .home-2026 .home-villa-grid .villa-collection-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid,
    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item,
    .home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item.is-featured,
    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item,
    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item,
    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-ribbon {
        grid-column: span 1;
    }

    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-featured {
        grid-column: span 2;
    }

    .home-2026 .home-villa-grid .villa-features--panorama-expanded {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-2026 .home-villa-grid .villa-collection-shell__tiles {
        grid-template-columns: 1fr;
    }

    .home-2026 .home-villa-grid .villa-collection-hero__media {
        min-height: 280px;
    }

    .home-2026 .home-villa-grid .villa-collection-hero__body {
        padding: 18px 18px 20px;
    }

    .home-2026 .home-villa-grid .villa-collection-hero__title {
        font-size: 1.28rem;
    }

    .home-2026 .home-villa-grid .villa-collection-hero__actions {
        flex-direction: column;
    }

    .home-2026 .home-villa-grid .villa-home-grid,
    .home-2026 .home-villa-grid.home-villa-grid--compact .villa-home-grid,
    .home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid,
    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid {
        grid-template-columns: 1fr;
    }

    .home-2026 .home-villa-grid.home-villa-grid--editorial .villa-home-grid__item.is-featured .villa-card-media,
    .home-2026 .home-villa-grid.home-villa-grid--showcase .villa-home-grid__item.is-featured .villa-card-media {
        height: 240px;
    }

    .home-2026 .home-villa-grid .villa-features--panorama-expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-2026 .fbx-card,
.home-2026 .fbx-surface-card {
    position: relative;
    height: 100%;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: var(--fbx-radius-md);
    background:
        radial-gradient(circle at 100% -10%, rgba(var(--theme-secondary-rgb), 0.12), transparent 40%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: var(--fbx-shadow-soft);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-2026 .fbx-card::before,
.home-2026 .fbx-surface-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.home-2026 .fbx-card:hover,
.home-2026 .fbx-surface-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--theme-primary-rgb), 0.22);
    box-shadow: var(--fbx-shadow-strong);
}

.home-2026 .fbx-card__body,
.home-2026 .fbx-surface-card__body {
    position: relative;
    padding: 24px 22px 22px;
}

.home-2026 .fbx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-2026 .fbx-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--theme-accent);
}

.home-2026 .fbx-card__title,
.home-2026 .fbx-surface-card__title {
    margin: 0 0 10px;
    color: var(--theme-text);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 900;
    line-height: 1.22;
}

.home-2026 .fbx-card__text,
.home-2026 .fbx-surface-card__text {
    margin: 0 0 18px;
    color: var(--theme-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-2026 .fbx-btn,
.home-2026 a.fbx-btn,
.home-2026 button.fbx-btn,
.home-2026 .villa-btn.fbx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.home-2026 .fbx-btn:hover,
.home-2026 a.fbx-btn:hover,
.home-2026 button.fbx-btn:hover,
.home-2026 .villa-btn.fbx-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.home-2026 .fbx-btn--primary,
.home-2026 .villa-btn.fbx-btn.fbx-btn--primary {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    box-shadow: 0 14px 28px rgba(var(--theme-primary-rgb), 0.24);
}

.home-2026 .fbx-btn--primary:hover,
.home-2026 .villa-btn.fbx-btn.fbx-btn--primary:hover {
    color: #fff;
    box-shadow: 0 18px 34px rgba(var(--theme-primary-rgb), 0.3);
}

.home-2026 .fbx-btn--ghost {
    background: rgba(var(--theme-primary-rgb), 0.05);
    border-color: rgba(var(--theme-primary-rgb), 0.18);
    color: var(--theme-primary);
}

.home-2026 .fbx-btn--ghost:hover {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 30px rgba(var(--theme-primary-rgb), 0.24);
}

.home-2026 .fbx-btn--light {
    background: #fff;
    color: var(--theme-primary-dark);
    box-shadow: 0 14px 28px rgba(8, 22, 42, 0.14);
}

.home-2026 .fbx-btn--light:hover {
    background: var(--theme-accent);
    color: var(--theme-text);
}

.home-2026 .fbx-btn--outline-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
}

.home-2026 .fbx-btn--outline-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--theme-primary-dark);
}

.home-2026 .fbx-cta,
.home-2026 .home-final-cta.fbx-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.18);
    border-radius: var(--fbx-radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.28), transparent 36%),
        linear-gradient(130deg, var(--theme-primary-dark), var(--theme-primary));
    box-shadow: 0 24px 48px rgba(var(--theme-primary-dark-rgb), 0.24);
    color: #fff;
    overflow: hidden;
}

.home-2026 .fbx-cta::before,
.home-2026 .home-final-cta.fbx-cta::before {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(var(--theme-accent-rgb), 0.18);
    filter: blur(12px);
}

.home-2026 .fbx-cta__content,
.home-2026 .home-final-cta__content.fbx-cta__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.home-2026 .fbx-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-2026 .fbx-cta__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--theme-accent);
}

.home-2026 .fbx-cta__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 900;
    line-height: 1.14;
}

.home-2026 .fbx-cta__text {
    margin: 0;
    color: rgba(241, 247, 255, 0.92);
    font-size: 0.96rem;
    line-height: 1.72;
}

.home-2026 .fbx-cta__actions,
.home-2026 .home-final-cta__actions.fbx-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-2026 #home-content-block .fbx-surface-card {
    max-width: 1120px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .home-2026 .fbx-section-head,
    .home-2026 .header-section.fbx-section-head,
    .home-2026 .fbx-cta,
    .home-2026 .home-final-cta.fbx-cta {
        padding: 18px 18px;
        border-radius: 22px;
    }

    .home-2026 .fbx-cta,
    .home-2026 .home-final-cta.fbx-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .home-2026 .fbx-section-head,
    .home-2026 .header-section.fbx-section-head {
        padding: 14px 14px;
        margin-bottom: 14px;
    }

    .home-2026 .fbx-card__body,
    .home-2026 .fbx-surface-card__body {
        padding: 18px 16px 16px;
    }

    .home-2026 .fbx-btn,
    .home-2026 a.fbx-btn,
    .home-2026 button.fbx-btn,
    .home-2026 .villa-btn.fbx-btn {
        width: 100%;
    }
}

.home-2026 .fbx-search-shell {
    position: relative;
    z-index: 8;
}

.home-2026 .fbx-search-card,
.home-2026 .search-card.fbx-search-card {
    overflow: visible;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.16);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 30%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 24px 52px rgba(var(--theme-primary-dark-rgb), 0.16);
}

.home-2026 .fbx-search-header {
    padding: 16px 16px 0;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.04), rgba(255, 255, 255, 0));
}

.home-2026 .fbx-search-tabs,
.home-2026 .pro-search-tabs.fbx-search-tabs {
    gap: 10px;
    margin-bottom: 0;
}

.home-2026 .fbx-search-tabs .nav-item {
    min-width: 0;
}

.home-2026 .fbx-search-tab,
.home-2026 .pro-search-tabs .nav-link.fbx-search-tab {
    position: relative;
    min-height: 82px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.78);
    color: var(--theme-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.home-2026 .fbx-search-tab:hover {
    border-color: rgba(var(--theme-secondary-rgb), 0.32);
    background: rgba(var(--theme-secondary-rgb), 0.06);
}

.home-2026 .fbx-search-tab.active {
    border-color: rgba(var(--theme-primary-rgb), 0.18);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.22), transparent 46%),
        linear-gradient(135deg, var(--theme-primary-dark), var(--theme-primary));
    box-shadow: 0 16px 28px rgba(var(--theme-primary-dark-rgb), 0.2);
}

.home-2026 .fbx-search-tab__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.home-2026 .fbx-search-tab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    font-size: 1.1rem;
}

.home-2026 .fbx-search-tab.active .fbx-search-tab__icon {
    background: rgba(255, 255, 255, 0.14);
}

.home-2026 .fbx-search-tab__text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.home-2026 .fbx-search-tab.active .fbx-search-tab__text,
.home-2026 .fbx-search-tab.active .fbx-search-tab__icon {
    color: #fff;
}

.home-2026 .fbx-search-indicator {
    width: calc(100% - 28px);
    left: 14px;
    right: 14px;
    bottom: 10px;
    border-radius: 999px;
    opacity: 0.92;
}

.home-2026 .fbx-search-body {
    padding: 18px 18px 16px;
    background: transparent;
}

.home-2026 #home-search.home-search--split,
.home-2026 #home-search.home-search--compact,
.home-2026 #home-search.home-search--split_hero {
    position: relative;
}

.home-2026 .fbx-search-shell--compact .fbx-search-card,
.home-2026 .fbx-search-card--compact {
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 38px rgba(var(--theme-primary-dark-rgb), 0.12);
}

.home-2026 .fbx-search-shell--compact .fbx-search-header {
    padding: 14px 14px 0;
    border-bottom: 0;
    background: transparent;
}

.home-2026 .fbx-search-shell--compact .fbx-search-tabs,
.home-2026 .fbx-search-shell--compact .pro-search-tabs.fbx-search-tabs {
    gap: 8px;
}

.home-2026 .fbx-search-shell--compact .fbx-search-tab,
.home-2026 .fbx-search-shell--compact .pro-search-tabs .nav-link.fbx-search-tab {
    min-height: 62px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    box-shadow: none;
}

.home-2026 .fbx-search-shell--compact .fbx-search-tab__inner {
    gap: 5px;
}

.home-2026 .fbx-search-shell--compact .fbx-search-tab__icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
}

.home-2026 .fbx-search-shell--compact .fbx-search-tab__text {
    font-size: 0.8rem;
}

.home-2026 .fbx-search-shell--compact .fbx-search-indicator {
    bottom: 7px;
    width: calc(100% - 22px);
    left: 11px;
    right: 11px;
}

.home-2026 .fbx-search-shell--compact .fbx-search-body {
    padding: 14px 14px 14px;
}

.home-2026 .fbx-search-shell--compact .fbx-field,
.home-2026 .fbx-search-shell--compact .form-floating-pro.fbx-field {
    min-height: 60px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(var(--theme-primary-dark-rgb), 0.07);
}

.home-2026 .fbx-search-shell--compact .fbx-field .form-control-pro,
.home-2026 .fbx-search-shell--compact .fbx-field .form-select-pro {
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 999px;
}

.home-2026 .fbx-search-shell--compact .fbx-submit,
.home-2026 .fbx-search-shell--compact .searchbutton.fbx-submit,
.home-2026 .fbx-search-shell--compact .fbx-submit button,
.home-2026 .fbx-search-shell--compact .fbx-submit .btn {
    min-height: 60px;
    border-radius: 999px;
}

.home-2026 .fbx-search-split-grid {
    display: grid;
    gap: 16px;
}

.home-2026 .fbx-search-split-main {
    min-width: 0;
}

.home-2026 .fbx-search-split-promo {
    min-width: 0;
}

.home-2026 .fbx-search-split-promo__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background:
        radial-gradient(circle at top right, rgba(var(--theme-secondary-rgb), 0.28), transparent 26%),
        linear-gradient(145deg, var(--theme-primary-dark) 0%, var(--theme-primary) 62%, var(--theme-secondary) 100%);
    box-shadow: 0 18px 34px rgba(var(--theme-primary-dark-rgb), 0.18);
}

.home-2026 .fbx-search-split-promo__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 21, 38, 0.04), rgba(6, 21, 38, 0.42));
    pointer-events: none;
}

.home-2026 .fbx-search-split-promo__media {
    position: absolute;
    inset: 0;
}

.home-2026 .fbx-search-split-promo__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-2026 .fbx-search-split-promo__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    color: #fff;
}

.home-2026 .fbx-search-split-promo__title {
    display: block;
    font-size: 1.55rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

.home-2026 .fbx-search-split-promo__desc {
    display: block;
    max-width: 34ch;
    color: rgba(255,255,255,.88);
    font-size: 0.98rem;
    line-height: 1.7;
}

.home-2026 .fbx-search-split-promo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.home-2026 .fbx-search-split-hero {
    min-width: 0;
    min-height: var(--fbx-split-hero-height, 420px);
}

.home-2026 .fbx-search-split-hero__slider,
.home-2026 .fbx-search-split-hero__slider.owl-carousel {
    height: 100%;
    min-height: var(--fbx-split-hero-height, 420px);
}

.home-2026 .fbx-search-split-hero__item {
    height: 100%;
}

.home-2026 .fbx-search-split-hero__inner {
    position: relative;
    display: block;
    min-height: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(145deg, var(--theme-primary-dark) 0%, var(--theme-primary) 62%, var(--theme-secondary) 100%);
    box-shadow: 0 18px 34px rgba(var(--theme-primary-dark-rgb), 0.18);
}

.home-2026 .fbx-search-split-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-2026 .fbx-search-split-hero__media--fallback {
    background: linear-gradient(145deg, var(--theme-primary-dark) 0%, var(--theme-primary) 62%, var(--theme-secondary) 100%);
}

.home-2026 .fbx-search-split-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 21, 38, 0.06), rgba(6, 21, 38, 0.56));
}

.home-2026 .fbx-search-split-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    gap: 12px;
    padding: 24px;
    color: #fff;
}

.home-2026 .fbx-search-split-hero__title {
    display: block;
    font-size: 1.45rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

.home-2026 .fbx-search-split-hero__desc {
    display: block;
    max-width: 32ch;
    color: rgba(255,255,255,.88);
    font-size: 0.95rem;
    line-height: 1.65;
}

.home-2026 .fbx-search-split-hero__slider .owl-nav {
    position: absolute;
    inset: 0;
    display: block !important;
    pointer-events: none;
    z-index: 4;
}

.home-2026 .fbx-search-split-hero__slider .owl-nav button {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.26) !important;
    background: linear-gradient(180deg, rgba(10, 24, 46, 0.74), rgba(10, 24, 46, 0.48)) !important;
    color: #fff !important;
    pointer-events: auto;
    transform: translateY(-50%);
    box-shadow: 0 14px 30px rgba(6, 18, 34, 0.28);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.home-2026 .fbx-search-split-hero__slider .owl-nav button.owl-prev {
    left: 14px;
}

.home-2026 .fbx-search-split-hero__slider .owl-nav button.owl-next {
    right: 14px;
}

.home-2026 .fbx-search-split-hero__slider .owl-nav button:hover {
    background: linear-gradient(180deg, rgba(var(--theme-primary-dark-rgb), 0.94), rgba(var(--theme-primary-rgb), 0.82)) !important;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 18px 34px rgba(var(--theme-primary-dark-rgb), 0.34);
}

.home-2026 .fbx-search-split-hero__slider .owl-nav button.disabled,
.home-2026 .fbx-search-split-hero__slider .owl-nav.disabled button {
    opacity: .42 !important;
    cursor: not-allowed !important;
    box-shadow: none;
}

.home-2026 .fbx-search-split-hero__slider .owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    line-height: 1;
}

.home-2026 .fbx-search-split-hero__slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
}

.home-2026 .fbx-search-hero-layout {
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .home-2026 .fbx-search-shell--split .fbx-search-card,
    .home-2026 .fbx-search-card--split {
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr);
        align-items: stretch;
        overflow: hidden;
    }

    .home-2026 .fbx-search-shell--split_hero .fbx-search-card,
    .home-2026 .fbx-search-card--split_hero {
        display: grid;
        grid-template-columns: minmax(220px, 4fr) minmax(0, 8fr);
        align-items: stretch;
        overflow: hidden;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-header,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-header {
        padding: 18px;
        border-right: 1px solid rgba(var(--theme-primary-rgb), 0.1);
        border-bottom: 0;
        background:
            linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.07), rgba(var(--theme-primary-rgb), 0.02));
    }

    .home-2026 .fbx-search-shell--split .fbx-search-tabs,
    .home-2026 .fbx-search-shell--split .pro-search-tabs.fbx-search-tabs,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-tabs,
    .home-2026 .fbx-search-shell--split_hero .pro-search-tabs.fbx-search-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-tab,
    .home-2026 .fbx-search-shell--split .pro-search-tabs .nav-link.fbx-search-tab,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-tab,
    .home-2026 .fbx-search-shell--split_hero .pro-search-tabs .nav-link.fbx-search-tab {
        min-height: 72px;
        border-radius: 18px;
        text-align: left;
    }

    .home-2026 .fbx-search-shell--split_hero .pro-search-tabs .nav-link {
        justify-content: flex-start;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-tab__inner,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-tab__inner {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-indicator,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-indicator {
        display: none;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-tab.active,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-tab.active {
        border-color: rgba(var(--theme-primary-rgb), 0.14);
        box-shadow: 0 18px 28px rgba(var(--theme-primary-dark-rgb), 0.18);
    }

    .home-2026 .fbx-search-shell--split .fbx-search-body,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-body {
        padding: 20px;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-split-grid,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .home-2026 .fbx-search-shell--split_hero .fbx-search-hero-layout {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    }

    .home-2026 .fbx-search-shell--split_hero .fbx-search-card,
    .home-2026 .fbx-search-card--split_hero,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-split-hero {
        height: 100%;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-row,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0.9rem;
    }

    .home-2026 .fbx-search-shell--split .fbx-search-row > [class*="col-"],
    .home-2026 .fbx-search-shell--split .fbx-search-row > .fbx-field-col,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-row > [class*="col-"],
    .home-2026 .fbx-search-shell--split_hero .fbx-search-row > .fbx-field-col {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .home-2026 .fbx-search-shell--split .fbx-submit,
    .home-2026 .fbx-search-shell--split .searchbutton.fbx-submit,
    .home-2026 .fbx-search-shell--split .fbx-submit button,
    .home-2026 .fbx-search-shell--split .fbx-submit .btn,
    .home-2026 .fbx-search-shell--split_hero .fbx-submit,
    .home-2026 .fbx-search-shell--split_hero .searchbutton.fbx-submit,
    .home-2026 .fbx-search-shell--split_hero .fbx-submit button,
    .home-2026 .fbx-search-shell--split_hero .fbx-submit .btn {
        width: 100%;
    }

    .home-2026 .fbx-search-shell--split_hero .fbx-search-split-hero,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-split-hero__slider,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-split-hero__slider .owl-stage-outer,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-split-hero__slider .owl-stage,
    .home-2026 .fbx-search-shell--split_hero .fbx-search-split-hero__slider .owl-item {
        height: 100%;
        min-height: var(--fbx-split-hero-height, 420px);
    }

    .home-2026 .fbx-search-shell--compact .fbx-search-card,
    .home-2026 .fbx-search-card--compact {
        padding: 6px;
    }
}

@media (max-width: 991px) {
    .home-2026 .fbx-search-split-promo__inner {
        min-height: 280px;
    }

    .home-2026 .fbx-search-split-hero__inner {
        min-height: 280px;
    }
}

.home-2026 .fbx-search-pane {
    padding: 2px 0 0;
}

.home-2026 .fbx-search-form {
    padding: 0;
}

.home-2026 .fbx-search-row {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
}

.home-2026 .fbx-field-col {
    min-width: 0;
}

.home-2026 .fbx-field,
.home-2026 .form-floating-pro.fbx-field {
    position: relative;
    height: auto;
    min-height: 66px;
    margin-bottom: 0;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 10px 24px rgba(var(--theme-primary-dark-rgb), 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-2026 .fbx-field:hover,
.home-2026 .form-floating-pro.fbx-field:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-secondary-rgb), 0.32);
    background: linear-gradient(180deg, #fff 0%, var(--theme-surface) 100%);
    box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.12);
}

.home-2026 .fbx-field:focus-within,
.home-2026 .form-floating-pro.fbx-field:focus-within {
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 4px rgba(var(--theme-secondary-rgb), 0.12), 0 18px 34px rgba(var(--theme-primary-dark-rgb), 0.12);
}

.home-2026 .fbx-field .form-control-pro,
.home-2026 .fbx-field .form-select-pro {
    height: 66px;
    padding: 8px 18px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: var(--theme-text);
    font-weight: 700;
    box-shadow: none;
}

.home-2026 .fbx-field .form-control-pro::placeholder {
    color: var(--theme-muted);
    opacity: 1;
    font-weight: 600;
}

.home-2026 .fbx-field .chevron-icon {
    right: 16px;
    color: var(--theme-primary);
}

.fbx-date-field {
    flex: 1 1 auto;
}

.fbx-date-field .capitalize {
    width: 100%;
}

.fbx-date-input {
    cursor: pointer;
}

.fbx-clickable {
    cursor: pointer;
}

.fbx-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fbx-max-720 {
    max-width: 720px;
}

.fbx-m-0 {
    margin: 0;
}

.fbx-reserve-btn--visible {
    display: block !important;
    width: 100%;
    margin-top: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.fbx-section-gap-lg {
    margin-top: 60px;
}

.fbx-article-signoff {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9rem;
}

.hero-bg-image {
    overflow: hidden;
    background: none !important;
    animation: none !important;
}

.hero-bg-image__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: kenBurns 20s linear infinite alternate;
}

.hero-slide-item,
.hero-slider-area {
    height: 100vh;
    min-height: 524px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.home-2026 #home-hero {
    position: relative;
}

.home-2026 #home-hero .hero-bg-image--fallback {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 194, 77, 0.26), transparent 24%),
        linear-gradient(135deg, #0c487b 0%, #0d67a8 52%, #0aa4c8 100%);
}

.home-2026 #home-hero .hero-kicker2 {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-2026 #home-hero .hero-slider-area .owl-carousel {
    position: relative;
}

.home-2026 #home-hero .hero-slider-area .owl-nav {
    position: absolute;
    inset: 0;
    margin: 0;
    pointer-events: none;
    z-index: 30;
}

.home-2026 #home-hero .hero-slider-area .owl-nav button.owl-prev,
.home-2026 #home-hero .hero-slider-area .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    background: rgba(8, 50, 86, 0.84) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem !important;
    line-height: 1 !important;
    box-shadow: 0 12px 26px rgba(4, 28, 47, 0.22);
    pointer-events: auto;
    z-index: 35;
}

.home-2026 #home-hero .hero-slider-area .owl-nav button.owl-prev {
    left: 12px;
}

.home-2026 #home-hero .hero-slider-area .owl-nav button.owl-next {
    right: 12px;
}

.home-2026 #home-hero .hero-slider-area .owl-nav button span {
    display: block;
    transform: translateY(-1px);
}

.home-2026 #home-hero.home-hero--slider .hero-slider-area,
.home-2026 #home-hero.home-hero--slider .hero-slide-item {
    min-height: 620px;
    height: min(82vh, 760px);
}

.home-2026 #home-hero.home-hero--slider .hero-content2 {
    max-width: 640px;
}

.home-2026 #home-hero.home-hero--slider .hero-btn-group {
    margin-top: 20px;
}

.home-2026 #home-hero.home-hero--spotlight .hero-slider-area,
.home-2026 #home-hero.home-hero--spotlight .hero-slide-item {
    min-height: 620px;
    height: min(82vh, 760px);
}

.home-2026 #home-hero.home-hero--spotlight .hero-overlay--spotlight {
    background:
        linear-gradient(90deg, rgba(6, 23, 38, 0.62) 0%, rgba(8, 37, 62, 0.4) 42%, rgba(8, 37, 62, 0.16) 72%, rgba(8, 37, 62, 0.44) 100%);
}

.home-2026 #home-hero .hero-spotlight {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
    gap: 28px;
    align-items: center;
    min-height: inherit;
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-2026 #home-hero .hero-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-2026 #home-hero .hero-spotlight__title {
    margin: 18px 0 10px;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.home-2026 #home-hero .hero-spotlight__desc {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.home-2026 #home-hero .hero-spotlight__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.home-2026 #home-hero .hero-spotlight__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.home-2026 #home-hero .hero-spotlight__btn--primary {
    background: linear-gradient(135deg, var(--theme-accent, #ffc24d), #ffd98a);
    color: #143655;
    box-shadow: 0 14px 30px rgba(255, 194, 77, 0.3);
}

.home-2026 #home-hero .hero-spotlight__btn--ghost {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

.home-2026 #home-hero .hero-spotlight__btn:hover {
    transform: translateY(-1px);
}

.home-2026 #home-hero .hero-spotlight__aside {
    display: grid;
    gap: 12px;
}

.home-2026 #home-hero .hero-spotlight__panel,
.home-2026 #home-hero .hero-spotlight__mini-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(10, 27, 44, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 38px rgba(4, 18, 31, 0.16);
}

.home-2026 #home-hero .hero-spotlight__panel {
    padding: 20px;
}

.home-2026 #home-hero .hero-spotlight__panel-kicker {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-2026 #home-hero .hero-spotlight__panel strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.home-2026 #home-hero .hero-spotlight__panel span:last-child {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    line-height: 1.6;
}

.home-2026 #home-hero .hero-spotlight__mini-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
}

.home-2026 #home-hero .hero-spotlight__mini-card.is-active {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(13, 34, 55, 0.48);
}

.home-2026 #home-hero .hero-spotlight__mini-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
}

.home-2026 #home-hero .hero-spotlight__mini-card strong {
    display: block;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.35;
}

.home-2026 #home-hero .hero-spotlight__mini-card span:last-child {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    line-height: 1.55;
}

.home-2026 #home-hero.home-hero--editorial {
    padding-top: 24px;
    padding-bottom: 10px;
}

.home-2026 #home-hero.home-hero--quad {
    padding-top: 8px;
    padding-bottom: 8px;
}

.home-2026 #home-hero .hero-slider-area--quad {
    background: transparent;
    height: auto;
    min-height: 0;
    padding: 0 10px;
}

.home-2026 #home-hero.home-hero--quad .hero-slider-area,
.home-2026 #home-hero.home-hero--quad .hero-slider-area .owl-stage-outer,
.home-2026 #home-hero.home-hero--quad .hero-slider-area .owl-stage,
.home-2026 #home-hero.home-hero--quad .hero-slider-area .owl-item {
    height: auto;
    min-height: 0;
}

.home-2026 #home-hero .hero-slider-area--quad .owl-stage-outer {
    padding: 0 0 6px;
}

.home-2026 #home-hero .hero-slider-area--quad .owl-nav {
    inset: 0;
}

.home-2026 #home-hero .hero-slider-area--quad .owl-nav button.owl-prev,
.home-2026 #home-hero .hero-slider-area--quad .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    background: rgba(6, 71, 122, 0.86) !important;
}

.home-2026 #home-hero .hero-slider-area--quad .owl-nav button.owl-prev {
    left: 8px;
}

.home-2026 #home-hero .hero-slider-area--quad .owl-nav button.owl-next {
    right: 8px;
}

.home-2026 #home-hero .hero-quad-card {
    height: 100%;
}

.home-2026 #home-hero .hero-quad-card__inner {
    position: relative;
    display: block;
    min-height: 510px;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c487b 0%, #0d67a8 52%, #0aa4c8 100%);
    box-shadow: 0 20px 40px rgba(8, 31, 52, 0.16);
    text-decoration: none;
}

.home-2026 #home-hero .hero-quad-card__media,
.home-2026 #home-hero .hero-quad-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-2026 #home-hero .hero-quad-card__placeholder {
    background:
        radial-gradient(circle at top right, rgba(255, 194, 77, 0.24), transparent 24%),
        linear-gradient(135deg, #0c487b 0%, #0d67a8 52%, #0aa4c8 100%);
}

.home-2026 #home-hero .hero-quad-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 20, 34, 0.08) 0%, rgba(5, 20, 34, 0.18) 42%, rgba(5, 20, 34, 0.72) 100%);
}

.home-2026 #home-hero .hero-quad-card__content {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 34px;
    z-index: 2;
    padding: 18px 20px 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(11, 30, 52, 0.62) 0%, rgba(11, 30, 52, 0.84) 100%);
    border-top: 4px solid #f6c100;
    box-shadow: 0 16px 32px rgba(3, 14, 25, 0.26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-2026 #home-hero .hero-quad-card__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.home-2026 #home-hero .hero-quad-card__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.55;
}

.home-2026 #home-hero .hero-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .9fr);
    gap: 16px;
}

.home-2026 #home-hero .hero-editorial__stack {
    display: grid;
    gap: 16px;
}

.home-2026 #home-hero .hero-editorial__card {
    position: relative;
    min-height: 290px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c487b 0%, #0d67a8 52%, #0aa4c8 100%);
    box-shadow: 0 24px 44px rgba(8, 31, 52, 0.16);
}

.home-2026 #home-hero .hero-editorial__card--primary {
    min-height: 596px;
}

.home-2026 #home-hero .hero-editorial__media,
.home-2026 #home-hero .hero-editorial__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-2026 #home-hero .hero-editorial__placeholder {
    background:
        radial-gradient(circle at top right, rgba(255, 194, 77, 0.24), transparent 24%),
        linear-gradient(135deg, #0c487b 0%, #0d67a8 52%, #0aa4c8 100%);
}

.home-2026 #home-hero .hero-editorial__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 34, 0.08) 0%, rgba(5, 20, 34, 0.64) 100%);
}

.home-2026 #home-hero .hero-editorial__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 26px 24px 24px;
}

.home-2026 #home-hero .hero-editorial__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-2026 #home-hero .hero-editorial__title {
    margin: 14px 0 8px;
    color: #fff;
    font-size: clamp(1.55rem, 2.7vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home-2026 #home-hero .hero-editorial__card--secondary .hero-editorial__title {
    font-size: 1.4rem;
}

.home-2026 #home-hero .hero-editorial__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.7;
}

.home-2026 #home-hero .hero-editorial__actions {
    margin-top: 16px;
}

.home-2026 #home-hero .hero-editorial__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.home-2026 #home-hero .hero-editorial__btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .home-2026 #home-hero .hero-spotlight {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 991px) {
    .home-2026 #home-hero.home-hero--slider .hero-slider-area,
    .home-2026 #home-hero.home-hero--slider .hero-slide-item,
    .home-2026 #home-hero.home-hero--spotlight .hero-slider-area,
    .home-2026 #home-hero.home-hero--spotlight .hero-slide-item {
        height: auto;
        min-height: 540px;
    }

    .home-2026 #home-hero .hero-spotlight {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .home-2026 #home-hero .hero-spotlight__aside {
        grid-template-columns: 1fr;
    }

    .home-2026 #home-hero .hero-editorial {
        grid-template-columns: 1fr;
    }

    .home-2026 #home-hero .hero-quad-card__inner {
        min-height: 400px;
    }

    .home-2026 #home-hero .hero-editorial__card--primary {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .home-2026 #home-hero.home-hero--slider .hero-slider-area,
    .home-2026 #home-hero.home-hero--slider .hero-slide-item,
    .home-2026 #home-hero.home-hero--spotlight .hero-slider-area,
    .home-2026 #home-hero.home-hero--spotlight .hero-slide-item {
        min-height: 460px;
    }

    .home-2026 #home-hero .hero-kicker2,
    .home-2026 #home-hero .hero-spotlight__eyebrow,
    .home-2026 #home-hero .hero-editorial__kicker {
        min-height: 28px;
        font-size: 0.62rem;
        padding: 4px 10px;
    }

    .home-2026 #home-hero .hero-spotlight__title {
        font-size: 2.05rem;
    }

    .home-2026 #home-hero .hero-spotlight__desc,
    .home-2026 #home-hero .hero-editorial__desc {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .home-2026 #home-hero .hero-spotlight__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-2026 #home-hero .hero-spotlight__btn,
    .home-2026 #home-hero .hero-editorial__btn {
        width: 100%;
    }

    .home-2026 #home-hero .hero-editorial__card,
    .home-2026 #home-hero .hero-editorial__card--primary {
        min-height: 320px;
        border-radius: 24px;
    }

    .home-2026 #home-hero .hero-quad-card__desc {
        font-size: 0.84rem;
        line-height: 1.62;
    }

    .home-2026 #home-hero .hero-quad-card__inner {
        min-height: 340px;
        border-radius: 22px;
    }

    .home-2026 #home-hero .hero-slider-area--quad .owl-nav button.owl-prev,
    .home-2026 #home-hero .hero-slider-area--quad .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem !important;
    }

    .home-2026 #home-hero .hero-quad-card__content {
        left: 10px;
        right: 10px;
        bottom: 18px;
        padding: 14px 16px;
    }

    .home-2026 #home-hero .hero-quad-card__title {
        font-size: 1rem;
    }

    .home-2026 #home-hero .hero-editorial__content {
        padding: 20px 18px 18px;
    }
}

.blog-heroblog__bg,
.kurumsal-heroblog__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-2026 .fbx-field--guest .form-control-pro {
    padding-right: 42px;
}

.home-2026 .fbx-transfer-switch {
    min-height: 66px;
}

.home-2026 .fbx-submit,
.home-2026 .btn-search-pro.fbx-submit {
    width: 100%;
    min-height: 66px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    border-radius: 18px;
}

.home-2026 .fbx-submit .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.home-2026 .guest-dropdown-content {
    border-radius: 20px;
}

.home-2026 .fbx-search-shell .transfer-section {
    min-height: 100%;
}

@media (max-width: 991px) {
    .home-2026 .fbx-search-header {
        padding: 14px 14px 0;
    }

    .home-2026 .fbx-search-body {
        padding: 16px 14px 14px;
    }

    .home-2026 .fbx-search-tabs .nav-item {
        flex: 1 1 calc(50% - 10px);
    }

    .home-2026 .fbx-search-tab {
        min-height: 72px;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .home-2026 .fbx-search-card,
    .home-2026 .search-card.fbx-search-card {
        border-radius: 22px;
    }

    .home-2026 .fbx-search-tabs,
    .home-2026 .pro-search-tabs.fbx-search-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .home-2026 .fbx-search-tabs .nav-item {
        display: block !important;
        flex: none;
        min-width: 0;
    }

    .home-2026 .fbx-search-tab,
    .home-2026 .pro-search-tabs .nav-link.fbx-search-tab {
        min-height: 68px;
        padding: 10px 6px;
        border-radius: 16px;
    }

    .home-2026 .fbx-search-tab__inner {
        gap: 5px;
    }

    .home-2026 .fbx-search-tab__icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .home-2026 .fbx-search-tab__text {
        font-size: 0.72rem;
        line-height: 1.15;
        text-align: center;
    }

    .home-2026 .fbx-search-indicator {
        width: calc(100% - 18px);
        left: 9px;
        right: 9px;
        bottom: 7px;
    }

    .home-2026 .fbx-field,
    .home-2026 .form-floating-pro.fbx-field,
    .home-2026 .fbx-submit,
    .home-2026 .btn-search-pro.fbx-submit {
        min-height: 60px;
    }

    .home-2026 .fbx-field .form-control-pro,
    .home-2026 .fbx-field .form-select-pro {
        height: 60px;
    }

    .tur-results-2026 .tur2026-card__buttons,
    .rentacar-results-2026 .rc2026-card__buttons,
    .villa-result-2026 .vrs-card__buttons,
    .transfer-results-2026 .ts-card__buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tur-results-2026 .tur2026-btn,
    .rentacar-results-2026 .rc2026-btn,
    .villa-result-2026 .vrs-btn,
    .transfer-results-2026 .ts-btn {
        min-height: 44px;
        width: 100%;
    }

    .transfer-results-2026 .transfer-card-modern .ts-card__action-col {
        padding-top: 14px;
    }

    .transfer-results-2026,
    .rentacar-results-2026 {
        margin-top: 0.75rem !important;
    }

    .transfer-results-2026 .results-hero,
    .rentacar-results-2026 .rc2026-results-hero {
        margin-bottom: 12px;
        padding: 14px 14px 12px;
        border-radius: 16px;
    }

    .transfer-results-2026 .result-title,
    .rentacar-results-2026 .rc2026-results-hero h2 {
        font-size: 1.18rem;
        line-height: 1.2;
    }

    .transfer-results-2026 .results-subtitle,
    .rentacar-results-2026 .rc2026-results-sub {
        font-size: 0.8rem;
        line-height: 1.52;
    }

    .transfer-results-2026 .results-count,
    .rentacar-results-2026 .rc2026-results-count {
        min-height: 30px;
        padding: 6px 10px;
        gap: 6px;
        font-size: 0.68rem;
    }

    .transfer-results-2026 .results-count {
        align-self: flex-start;
    }

    .fbx-empty-results {
        min-height: 104px;
        margin-bottom: 0;
        padding: 16px 12px;
        border-radius: 16px;
        font-size: 0.86rem;
        line-height: 1.48;
    }

    .fbx-empty-results.alert-warning::before {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

.fbx-empty-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 128px;
    text-align: center;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.34);
    background: linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(255, 252, 245, 0.96));
    box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.08);
    color: var(--theme-text);
    font-weight: 700;
}

.fbx-empty-results.alert-warning::before {
    content: "\f071";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 999px;
    background: rgba(var(--theme-accent-rgb), 0.12);
    color: #d68a00;
    font-family: "Font Awesome 5 Free";
    font-size: 1.15rem;
    font-weight: 900;
    flex-shrink: 0;
}

.fbx-sidebar-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
}

.fbx-sidebar-toggle__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fbx-sidebar-toggle__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.fbx-sidebar-toggle.is-open .fbx-sidebar-toggle__icon {
    transform: rotate(180deg);
    background: rgba(var(--theme-secondary-rgb), 0.14);
}

.fbx-sidebar-mobile-body {
    position: relative;
    z-index: 1;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.15);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 34%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 20px 40px rgba(var(--theme-primary-dark-rgb), 0.14);
}

.tur-results-2026 .solsearch {
    top: -19px;
}

.tur-results-2026 .sonucbaslik.tur2026-results-hero {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 20px;
    align-items: end !important;
    padding: 20px 22px !important;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(15, 112, 197, 0.16), transparent 28%),
        radial-gradient(circle at 100% 0, rgba(26, 174, 188, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 56%, #eef6ff 100%) !important;
    border: 1px solid rgba(12, 76, 122, 0.12);
    box-shadow: 0 22px 44px rgba(12, 39, 61, 0.10) !important;
}

.tur-results-2026 .sonucbaslik.tur2026-results-hero::before {
    content: "";
    position: absolute;
    inset: auto -40px -52px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 112, 197, 0.16), transparent 68%);
    pointer-events: none;
}

.tur-results-2026 .sonucbaslik.tur2026-results-hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f70c5, #11a8c8, #ffb648);
}

.tur-results-2026 .tur2026-results-hero__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.tur-results-2026 .tur2026-results-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 12px;
    border: 1px solid rgba(15, 112, 197, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    color: #17507a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tur-results-2026 .tur2026-results-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f70c5, #11a8c8);
    box-shadow: 0 0 0 5px rgba(15, 112, 197, 0.12);
}

.tur-results-2026 .tur2026-results-hero h2 {
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.tur-results-2026 .tur2026-results-sub {
    max-width: 720px;
    line-height: 1.6;
    margin-top: 8px !important;
}

.tur-results-2026 .tur2026-results-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.tur-results-2026 .tur2026-results-hero__fact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(15, 112, 197, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: #264f74;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(12, 39, 61, 0.06);
}

.tur-results-2026 .tur2026-results-hero__fact i {
    color: #0f70c5;
}

.tur-results-2026 .tur2026-results-hero__aside {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    justify-items: end;
    min-width: 160px;
}

.tur-results-2026 .sonucbaslik.tur2026-results-hero .tur2026-results-count {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    margin-left: 0 !important;
    min-height: 52px;
    padding: 0 16px 0 14px !important;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f4670, #0f70c5) !important;
    box-shadow: 0 16px 26px rgba(15, 70, 112, 0.24);
    font-size: 13px !important;
    font-weight: 800;
}

.tur-results-2026 .tur2026-results-hero__note {
    max-width: 180px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 112, 197, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: #58728b;
    font-size: 12px;
    line-height: 1.45;
    text-align: right;
}

@media (max-width: 768px) {
    .tur-results-2026 .sonucbaslik.tur2026-results-hero {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
    }

    .tur-results-2026 .tur2026-results-hero h2 {
        font-size: 22px !important;
    }

    .tur-results-2026 .tur2026-results-hero__aside {
        justify-items: start;
        min-width: 0;
    }

    .tur-results-2026 .tur2026-results-hero__note {
        max-width: none;
        text-align: left;
    }
}

.tur-results-2026 .tur2026-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d9e7f5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    padding: 10px;
    margin: 0 0 12px;
    box-shadow: 0 10px 20px rgba(13, 56, 96, 0.08);
}

.tur-results-2026 .tur2026-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tur-results-2026 .tur2026-filter-field {
    position: relative;
    display: flex;
    align-items: center;
}

.tur-results-2026 .tur2026-filter-field i {
    position: absolute;
    left: 12px;
    color: #5f7f9c;
    font-size: 0.78rem;
    pointer-events: none;
}

.tur-results-2026 .tur2026-filter-field input,
.tur-results-2026 .tur2026-filter-field select {
    min-width: 210px;
    min-height: 40px;
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #fff;
    color: #224b70;
    padding: 0 12px 0 34px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(11, 50, 84, 0.05);
}

.tur-results-2026 .tur2026-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #fff;
    color: #234c71;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.tur-results-2026 .tur2026-filter-check input {
    margin: 0;
}

.tur-results-2026 .tur2026-filter-reset {
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #eef5fc;
    color: #285174;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
}

.tur-results-2026 .tur2026-filter-reset:hover {
    background: #e5f0fb;
    border-color: #c4d8ec;
}

.tur-results-2026 .tur2026-filter-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0f4670;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.tur-results-2026 .tur2026-filter-empty {
    padding-top: 6px;
}

.rentacar-results-2026 .rc2026-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d9e7f5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    padding: 10px;
    margin: 0 0 12px;
    box-shadow: 0 10px 20px rgba(13, 56, 96, 0.08);
}

.rentacar-results-2026 .rc2026-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.rentacar-results-2026 .rc2026-filter-field {
    position: relative;
    display: flex;
    align-items: center;
}

.rentacar-results-2026 .rc2026-filter-field i {
    position: absolute;
    left: 12px;
    color: #5f7f9c;
    font-size: 0.78rem;
    pointer-events: none;
}

.rentacar-results-2026 .rc2026-filter-field input,
.rentacar-results-2026 .rc2026-filter-field select {
    min-width: 210px;
    min-height: 40px;
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #fff;
    color: #224b70;
    padding: 0 12px 0 34px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(11, 50, 84, 0.05);
}

.rentacar-results-2026 .rc2026-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #fff;
    color: #234c71;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.rentacar-results-2026 .rc2026-filter-check input {
    margin: 0;
}

.rentacar-results-2026 .rc2026-filter-reset {
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #eef5fc;
    color: #285174;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
}

.rentacar-results-2026 .rc2026-filter-reset:hover {
    background: #e5f0fb;
    border-color: #c4d8ec;
}

.rentacar-results-2026 .rc2026-filter-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0f4670;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .tur-results-2026 .tur2026-filter-bar {
        padding: 8px;
    }

    .tur-results-2026 .tur2026-filter-group {
        width: 100%;
    }

    .tur-results-2026 .tur2026-filter-field,
    .tur-results-2026 .tur2026-filter-check,
    .tur-results-2026 .tur2026-filter-reset {
        width: 100%;
    }

    .tur-results-2026 .tur2026-filter-field input,
    .tur-results-2026 .tur2026-filter-field select {
        width: 100%;
        min-width: 0;
    }

    .rentacar-results-2026 .rc2026-filter-bar {
        padding: 8px;
    }

    .rentacar-results-2026 .rc2026-filter-group {
        width: 100%;
    }

    .rentacar-results-2026 .rc2026-filter-field,
    .rentacar-results-2026 .rc2026-filter-check,
    .rentacar-results-2026 .rc2026-filter-reset {
        width: 100%;
    }

    .rentacar-results-2026 .rc2026-filter-field input,
    .rentacar-results-2026 .rc2026-filter-field select {
        width: 100%;
        min-width: 0;
    }
}

.tur-results-2026--editorial .sonucbaslik.tur2026-results-hero {
    padding: 24px 26px !important;
    border-radius: 26px;
    box-shadow: 0 26px 48px rgba(12, 39, 61, 0.12) !important;
}

.tur-results-2026--editorial .tur2026-filter-bar {
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(13, 56, 96, 0.10);
}

.tur-results-2026--editorial .tur2026-card {
    grid-template-columns: minmax(280px, 34%) minmax(0, 41%) minmax(240px, 25%);
    border-radius: 26px;
    box-shadow: 0 24px 44px rgba(12, 38, 60, 0.12);
}

.tur-results-2026--editorial .tur2026-card__image-wrap {
    min-height: 270px;
}

.tur-results-2026--editorial .tur2026-card__content-col {
    padding: 18px 20px;
}

.tur-results-2026--editorial .tur2026-card__title h2 {
    font-size: 23px;
}

.tur-results-2026--editorial .tur2026-card__action-col {
    padding: 18px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(239, 247, 255, 0.98));
}

.tur-results-2026--editorial .tur2026-price-box {
    border-radius: 16px;
}

.tur-results-2026--compact .tur2026-results-grid {
    row-gap: 16px;
}

.tur-results-2026--compact .tur2026-results-grid > .tur2026-result-item {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
}

.tur-results-2026--compact .tur2026-card {
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
        "image"
        "content"
        "action"
        "details";
    border-radius: 20px;
}

.tur-results-2026--compact .tur2026-card__image-col {
    grid-area: image;
}

.tur-results-2026--compact .tur2026-card__content-col {
    grid-area: content;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 12px 13px 10px;
}

.tur-results-2026--compact .tur2026-card__action-col {
    grid-area: action;
    padding: 10px 13px 13px;
}

.tur-results-2026--compact .tur2026-card__details {
    grid-area: details;
}

.tur-results-2026--compact .tur2026-card__image-wrap {
    min-height: 160px;
}

.tur-results-2026--compact .tur2026-card__title h2 {
    font-size: 17px;
    line-height: 1.25;
}

.tur-results-2026--compact .tur2026-card__meta-grid {
    grid-template-columns: 1fr;
    gap: 7px;
}

.tur-results-2026--compact .tur2026-meta-item {
    min-height: 40px;
    padding: 9px 10px 9px 34px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.tur-results-2026--compact .tur2026-meta-item span {
    margin-top: 0;
    display: inline;
    font-size: 12px;
    color: #0f3f68;
    line-height: 1.2;
}

.tur-results-2026--compact .tur2026-meta-item i {
    font-size: 12px;
    line-height: 1;
}

.tur-results-2026--compact .tur2026-card__buttons {
    flex-direction: row;
    gap: 8px;
    margin-top: 10px;
}

.tur-results-2026--compact .tur2026-btn {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
}

.tur-results-2026--compact .tur2026-card__form {
    gap: 8px;
}

.tur-results-2026--compact .tur2026-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
}

.tur-results-2026--compact .tur2026-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    font-size: 10px;
}

.tur-results-2026--compact .tur2026-price-box__value {
    margin-top: 0;
    margin-left: auto;
}

.tur-results-2026--compact .tur2026-price-box__amount {
    white-space: nowrap;
    font-size: 20px;
}

.tur-results-2026--compact .tur2026-card__date {
    margin-top: 10px;
    padding: 6px 9px;
    font-size: 11px;
}

.tur-results-2026--panel .tur2026-card {
    grid-template-columns: minmax(250px, 30%) minmax(0, 1fr);
    grid-template-areas:
        "image content"
        "image action"
        "details details";
    border-radius: 24px;
}

.tur-results-2026--panel .tur2026-card__image-col {
    grid-area: image;
}

.tur-results-2026--panel .tur2026-card__content-col {
    grid-area: content;
    border-left: 1px solid #e4edf5;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 18px 20px 14px;
}

.tur-results-2026--panel .tur2026-card__action-col {
    grid-area: action;
    padding: 14px 20px 18px;
}

.tur-results-2026--panel .tur2026-card__details {
    grid-area: details;
}

.tur-results-2026--panel .tur2026-card__image-wrap {
    min-height: 100%;
}

.tur-results-2026--panel .tur2026-card__form {
    gap: 10px;
}

.tur-results-2026--panel .tur2026-card__buttons {
    flex-direction: row;
}

.tur-results-2026--panel .tur2026-price-box {
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tur-results-2026--panel .tur2026-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
}

.tur-results-2026--panel .tur2026-price-box__value {
    margin-top: 0;
    margin-left: auto;
}

.tur-results-2026--panel .tur2026-price-box__amount {
    white-space: nowrap;
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .category-shell__hero {
    padding: 24px 26px;
    border-radius: 26px;
    box-shadow: 0 26px 48px rgba(12, 39, 61, 0.12);
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .tur2026-card {
    grid-template-columns: minmax(280px, 34%) minmax(0, 41%) minmax(240px, 25%);
    border-radius: 26px;
    box-shadow: 0 24px 44px rgba(12, 38, 60, 0.12);
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .tur2026-card__image-wrap {
    min-height: 270px;
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .tur2026-card__content-col {
    padding: 18px 20px;
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .tur2026-card__title h2 {
    font-size: 23px;
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .tur2026-card__action-col {
    padding: 18px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(239, 247, 255, 0.98));
}

:is(.charter-results-2026--editorial, .hotel-results-2026--editorial) .tur2026-price-box {
    border-radius: 16px;
}

.rentacar-results-2026--editorial .rc2026-filter-bar {
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(13, 56, 96, 0.10);
}

.rentacar-results-2026--editorial .rc2026-results-hero {
    padding: 22px 24px;
    border-radius: 24px;
    box-shadow: 0 24px 44px rgba(12, 38, 60, 0.12);
}

.rentacar-results-2026--editorial .rc2026-card__shell {
    display: grid;
    grid-template-columns: minmax(280px, 34%) minmax(0, 41%) minmax(240px, 25%);
}

.rentacar-results-2026--editorial .rc2026-card__shell > .rc2026-card__image-col,
.rentacar-results-2026--editorial .rc2026-card__shell > .rc2026-card__content-col,
.rentacar-results-2026--editorial .rc2026-card__shell > .rc2026-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.rentacar-results-2026--editorial .rc2026-card {
    border-radius: 26px !important;
    box-shadow: 0 24px 44px rgba(12, 38, 60, 0.12) !important;
}

.rentacar-results-2026--editorial .rc2026-card__image-wrap {
    min-height: 270px;
}

.rentacar-results-2026--editorial .rc2026-card__content-col {
    padding: 18px 20px;
}

.rentacar-results-2026--editorial .rc2026-card__title h2 {
    font-size: 23px;
}

.rentacar-results-2026--editorial .rc2026-card__action-col {
    padding: 18px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(239, 247, 255, 0.98));
}

.rentacar-results-2026--editorial .rc2026-price-box {
    border-radius: 16px;
}

.rentacar-results-2026--compact .rc2026-results-grid {
    row-gap: 16px;
}

.rentacar-results-2026--compact .rc2026-results-grid > .rc2026-result-item {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 16px;
}

.rentacar-results-2026--compact .rc2026-card {
    height: 100%;
    border-radius: 20px !important;
}

.rentacar-results-2026--compact .rc2026-card__shell {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "image"
        "content"
        "action"
        "details";
    height: 100%;
}

.rentacar-results-2026--compact .rc2026-card__shell > .rc2026-card__image-col,
.rentacar-results-2026--compact .rc2026-card__shell > .rc2026-card__content-col,
.rentacar-results-2026--compact .rc2026-card__shell > .rc2026-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.rentacar-results-2026--compact .rc2026-card__image-col { grid-area: image; }
.rentacar-results-2026--compact .rc2026-card__content-col {
    grid-area: content;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 12px 13px 10px;
}
.rentacar-results-2026--compact .rc2026-card__action-col {
    grid-area: action;
    padding: 10px 13px 13px;
}
.rentacar-results-2026--compact .rc2026-card__details { grid-area: details; }
.rentacar-results-2026--compact .rc2026-card__image-wrap { min-height: 170px; }
.rentacar-results-2026 .rc2026-card__title {
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.rentacar-results-2026 .rc2026-card__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
    box-shadow: 0 8px 18px rgba(var(--theme-primary-rgb), 0.18);
}

.rentacar-results-2026 .rc2026-card__title h2 {
    margin: 0;
    color: var(--theme-text);
    font-size: clamp(1.24rem, 1.45vw, 1.56rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.rentacar-results-2026--compact .rc2026-card__title h2 {
    font-size: 18px;
    line-height: 1.16;
}

.rentacar-results-2026--compact .rc2026-card__title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.rentacar-results-2026--compact .rc2026-card__title::after {
    width: 56px;
    height: 3px;
}
.rentacar-results-2026--compact .rc2026-card__meta-grid {
    grid-template-columns: 1fr;
    gap: 7px;
}
.rentacar-results-2026--compact .rc2026-meta-item {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.2;
}
.rentacar-results-2026--compact .rc2026-meta-item span {
    font-size: 12px;
}
.rentacar-results-2026--compact .rc2026-card__buttons {
    flex-direction: row;
    gap: 8px;
    margin-top: 10px;
}
.rentacar-results-2026--compact .rc2026-btn {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
}
.rentacar-results-2026--compact .rc2026-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
}
.rentacar-results-2026--compact .rc2026-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    font-size: 10px;
}
.rentacar-results-2026--compact .rc2026-price-box__value {
    margin-top: 0;
    margin-left: auto;
}
.rentacar-results-2026--compact .rc2026-price-box__amount {
    white-space: nowrap;
    font-size: 20px;
}
.rentacar-results-2026--compact .rc2026-price-box__avg {
    display: none;
}

.rentacar-results-2026--panel .rc2026-card {
    border-radius: 24px !important;
}

.rentacar-results-2026--panel .rc2026-card__shell {
    display: grid;
    grid-template-columns: minmax(250px, 30%) minmax(0, 1fr);
    grid-template-areas:
        "image content"
        "image action"
        "details details";
}

.rentacar-results-2026--panel .rc2026-card__shell > .rc2026-card__image-col,
.rentacar-results-2026--panel .rc2026-card__shell > .rc2026-card__content-col,
.rentacar-results-2026--panel .rc2026-card__shell > .rc2026-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.rentacar-results-2026--panel .rc2026-card__image-col { grid-area: image; }
.rentacar-results-2026--panel .rc2026-card__content-col {
    grid-area: content;
    border-left: 1px solid #e4edf5;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 18px 20px 14px;
}
.rentacar-results-2026--panel .rc2026-card__action-col {
    grid-area: action;
    padding: 14px 20px 18px;
}
.rentacar-results-2026--panel .rc2026-card__details { grid-area: details; }
.rentacar-results-2026--panel .rc2026-card__image-wrap { min-height: 100%; }
.rentacar-results-2026--panel .rc2026-card__form { gap: 10px; }
.rentacar-results-2026--panel .rc2026-card__buttons { flex-direction: row; }
.rentacar-results-2026--panel .rc2026-price-box {
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.rentacar-results-2026--panel .rc2026-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
}
.rentacar-results-2026--panel .rc2026-price-box__value {
    margin-top: 0;
    margin-left: auto;
}
.rentacar-results-2026--panel .rc2026-price-box__amount { white-space: nowrap; }

@media (max-width: 1199.98px) {
    .rentacar-results-2026--compact .rc2026-result-item {
        width: 50%;
        max-width: 50%;
        flex-basis: 50%;
    }
}

@media (max-width: 767.98px) {
    .rentacar-results-2026--compact .rc2026-result-item {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 991.98px) {
    .rentacar-results-2026--panel .rc2026-card__shell {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "action"
            "details";
    }

    .rentacar-results-2026--panel .rc2026-card__content-col {
        border-left: none;
        border-right: none;
    }
}

.charter-results-2026--compact .charter2026-result-item {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 16px;
}

.hotel-results-2026--compact .hotel2026-result-item {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 16px;
}

:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card {
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
        "image"
        "content"
        "action"
        "details";
    border-radius: 20px;
}

:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__image-col { grid-area: image; }
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__content-col {
    grid-area: content;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 12px 13px 10px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__action-col {
    grid-area: action;
    padding: 10px 13px 13px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__details { grid-area: details; }
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__image-wrap { min-height: 160px; }
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__title h2 {
    font-size: 17px;
    line-height: 1.25;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__meta-grid {
    grid-template-columns: 1fr;
    gap: 7px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-meta-item {
    min-height: 40px;
    padding: 9px 10px 9px 34px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-meta-item span {
    margin-top: 0;
    display: inline;
    font-size: 12px;
    color: #0f3f68;
    line-height: 1.2;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-meta-item i {
    font-size: 12px;
    line-height: 1;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__buttons {
    flex-direction: row;
    gap: 8px;
    margin-top: 10px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-btn {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-card__form { gap: 8px; }
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    font-size: 10px;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-price-box__value {
    margin-top: 0;
    margin-left: auto;
}
:is(.charter-results-2026--compact, .hotel-results-2026--compact) .tur2026-price-box__amount {
    white-space: nowrap;
    font-size: 20px;
}

:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card {
    grid-template-columns: minmax(250px, 30%) minmax(0, 1fr);
    grid-template-areas:
        "image content"
        "image action"
        "details details";
    border-radius: 24px;
}

:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__image-col { grid-area: image; }
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__content-col {
    grid-area: content;
    border-left: 1px solid #e4edf5;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 18px 20px 14px;
}
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__action-col {
    grid-area: action;
    padding: 14px 20px 18px;
}
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__details { grid-area: details; }
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__image-wrap { min-height: 100%; }
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__form { gap: 10px; }
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-card__buttons { flex-direction: row; }
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-price-box {
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
}
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-price-box__value {
    margin-top: 0;
    margin-left: auto;
}
:is(.charter-results-2026--panel, .hotel-results-2026--panel) .tur2026-price-box__amount { white-space: nowrap; }

.fbx-detail-modal-open {
    overflow: hidden;
}

.fbx-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    isolation: isolate;
    perspective: 1200px;
}

.fbx-detail-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0, rgba(var(--theme-secondary-rgb), 0.22), transparent 26%),
        radial-gradient(circle at 100% 20%, rgba(var(--theme-primary-rgb), 0.16), transparent 28%),
        linear-gradient(180deg, rgba(5, 12, 24, 0.58), rgba(8, 15, 28, 0.82));
    backdrop-filter: blur(18px) saturate(1.15);
}

.fbx-detail-modal__dialog {
    position: relative;
    width: min(980px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.92)),
        radial-gradient(circle at top right, rgba(var(--theme-secondary-rgb), 0.18), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 40px 120px rgba(8, 15, 28, 0.38),
        0 14px 42px rgba(var(--theme-primary-dark-rgb), 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateY(0) scale(1);
}

.fbx-detail-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
    z-index: 1;
}

.fbx-detail-modal__dialog::after {
    content: "";
    position: absolute;
    inset: auto -120px -160px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--theme-secondary-rgb), 0.16), transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.fbx-detail-modal__header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 20px 24px 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    background:
        linear-gradient(180deg, rgba(252, 254, 255, 0.94), rgba(255, 255, 255, 0.86));
    backdrop-filter: blur(24px) saturate(1.1);
    box-shadow: 0 10px 28px rgba(var(--theme-primary-dark-rgb), 0.06);
}

.fbx-detail-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    background:
        linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.08), rgba(var(--theme-secondary-rgb), 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--theme-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.fbx-detail-modal__title {
    margin: 0;
    max-width: calc(100% - 64px);
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    line-height: 1.08;
    color: var(--theme-text);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.fbx-detail-modal__body {
    padding: 0;
    overflow: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 250, 255, 0.92) 100%);
    scrollbar-gutter: stable both-edges;
}

.fbx-detail-modal__body .tur2026-detail-inner,
.fbx-detail-modal__body .rc2026-detail-inner,
.fbx-detail-modal__body .ts-detail-inner,
.fbx-detail-modal__body .vrs-detail-inner {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.fbx-detail-modal__body .rc2026-card__details {
    display: block !important;
    padding: 0;
    background: transparent;
}

.fbx-detail-modal__body .rc2026-card__details > .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.fbx-detail-modal__body .rc2026-detail-col {
    padding: 0 !important;
    background: transparent;
    border-right: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.fbx-detail-modal__body .rc2026-detail-col:last-child {
    border-right: 0;
}

.fbx-detail-modal__body .rc2026-detail-inner {
    min-height: 100%;
    padding: 18px 14px;
}

.fbx-detail-modal__body .rc2026-detail-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--theme-text);
    font-size: 0.94rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fbx-detail-modal__body .rc2026-detail-title i {
    color: var(--theme-primary);
    font-size: 0.98rem;
}

.fbx-detail-modal__body .rc2026-price-summary {
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94));
    box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.08);
}

.fbx-detail-modal__body .rc2026-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    color: var(--theme-text);
    font-size: 0.88rem;
}

.fbx-detail-modal__body .rc2026-price-row span:first-child {
    color: var(--theme-muted);
    font-weight: 700;
}

.fbx-detail-modal__body .rc2026-price-row span:last-child {
    text-align: right;
    font-weight: 800;
    white-space: nowrap;
}

.fbx-detail-modal__body .rc2026-price-row:last-of-type {
    border-bottom: 0;
}

.fbx-detail-modal__body .rc2026-price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    box-shadow: 0 18px 32px rgba(var(--theme-primary-rgb), 0.22);
}

.fbx-detail-modal__body .rc2026-price-total .rc2026-total-label,
.fbx-detail-modal__body .rc2026-price-total .rc2026-total-amount {
    color: #fff;
    font-weight: 900;
}

.fbx-detail-modal__body .rc2026-price-total .rc2026-total-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fbx-detail-modal__body .rc2026-price-total .rc2026-total-amount {
    white-space: nowrap;
    font-size: clamp(1rem, 1.3vw, 1.28rem);
}

.fbx-detail-modal__body .rc2026-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 11px 13px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 13px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94));
    box-shadow: 0 12px 24px rgba(var(--theme-primary-dark-rgb), 0.06);
}

.fbx-detail-modal__body .rc2026-mini-feature i {
    width: 24px;
    text-align: center;
    color: var(--theme-primary) !important;
    font-size: 0.92rem;
}

.fbx-detail-modal__body .rc2026-mini-feature-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    font-weight: 800;
    color: var(--theme-text);
}

.fbx-detail-modal__body .rc2026-mini-feature-content > span,
.fbx-detail-modal__body .rc2026-mini-feature-content .rc2026-mini-val {
    display: block;
    color: var(--theme-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.1;
}

.fbx-detail-modal__body .rc2026-mini-feature-content .rc2026-mini-label {
    color: var(--theme-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fbx-detail-modal__body .rc2026-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.fbx-detail-modal__body .rc2026-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94));
    color: var(--theme-text);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(var(--theme-primary-dark-rgb), 0.06);
}

.fbx-detail-modal__body .rc2026-tag-pill i {
    color: var(--theme-primary);
}

.fbx-detail-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
    color: var(--theme-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(var(--theme-primary-dark-rgb), 0.1);
    z-index: 3;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.fbx-detail-modal__close:hover {
    transform: translateY(-1px) scale(1.03);
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(var(--theme-primary-rgb), 0.24);
}

.fbx-detail-modal__body::-webkit-scrollbar {
    width: 10px;
}

.fbx-detail-modal__body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.35), rgba(var(--theme-secondary-rgb), 0.35));
}

.fbx-detail-modal__body::-webkit-scrollbar-track {
    background: rgba(var(--theme-primary-rgb), 0.05);
}

@media (max-width: 1199px) {
    .tur-results-2026--compact .tur2026-results-grid > .tur2026-result-item {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }

    .tur-results-2026--compact .tur2026-card__meta-grid {
        grid-template-columns: 1fr;
    }

    .hotel-results-2026--compact .hotel2026-result-item {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .tur-results-2026--compact .tur2026-results-grid > .tur2026-result-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .tur-results-2026--editorial .tur2026-card,
    .tur-results-2026--panel .tur2026-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "action"
            "details";
    }

    .tur-results-2026--panel .tur2026-card__content-col {
        border-left: none;
    }

    .hotel-results-2026--compact .hotel2026-result-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .hotel-results-2026--editorial .tur2026-card,
    .hotel-results-2026--panel .tur2026-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "action"
            "details";
    }

    .hotel-results-2026--panel .tur2026-card__content-col {
        border-left: none;
    }

    .fbx-detail-modal__dialog {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        margin: 10px auto;
        border-radius: 18px;
    }

    .fbx-detail-modal__header {
        padding: 16px 16px 12px;
    }

    .fbx-detail-modal__title {
        font-size: 18px;
        max-width: calc(100% - 56px);
    }

    .fbx-detail-modal__body .tur2026-detail-inner,
    .fbx-detail-modal__body .rc2026-detail-inner,
    .fbx-detail-modal__body .ts-detail-inner,
    .fbx-detail-modal__body .vrs-detail-inner {
        padding: 14px;
    }

    .fbx-detail-modal__body .rc2026-card__details > .row {
        grid-template-columns: 1fr;
    }

    .fbx-detail-modal__body .rc2026-detail-col {
        border-right: 0;
        border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    }

    .fbx-detail-modal__body .rc2026-detail-col:last-child {
        border-bottom: 0;
    }

    .fbx-detail-modal__close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767.98px) {
    .tur-results-2026--compact .tur2026-card__meta-grid {
        grid-template-columns: 1fr;
    }

    .tur-results-2026--compact .tur2026-card__buttons,
    .tur-results-2026--panel .tur2026-card__buttons {
        flex-direction: column;
    }

    .hotel-results-2026--compact .tur2026-card__meta-grid {
        grid-template-columns: 1fr;
    }

    .hotel-results-2026--compact .tur2026-card__buttons,
    .hotel-results-2026--panel .tur2026-card__buttons {
        flex-direction: column;
    }
}

.tur-results-2026 .tur2026-card__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tur-results-2026 .tur2026-meta-item {
    position: relative;
    display: block;
    min-height: 56px;
    padding: 10px 12px 10px 40px;
    border: 1px solid #deebf6;
    border-radius: 12px;
    background: #fff;
    color: #5f7891;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
}

.tur-results-2026 .tur2026-meta-item i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    text-align: center;
    color: #0b7797;
    margin-right: 0;
}

.tur-results-2026 .tur2026-meta-item span {
    display: block;
    margin-top: 4px;
    color: #0f3f68;
    font-weight: 800;
    line-height: 1.25;
}

.tur-results-2026--compact .tur2026-meta-item {
    min-height: 52px;
}

.tur-results-2026--compact .tur2026-card__meta-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
    width: 100% !important;
}

.tur-results-2026--compact .tur2026-card__meta-grid > .tur2026-meta-item--guests {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    display: flex !important;
    align-self: stretch;
    justify-self: stretch;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    white-space: nowrap;
}

.tur-results-2026--compact .tur2026-card__meta-grid > .tur2026-meta-item--guests span {
    display: inline !important;
    margin-top: 0 !important;
}

@media (max-width: 575.98px) {
    .tur-results-2026 .tur2026-card__meta-grid {
        grid-template-columns: 1fr;
    }
}


:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search h2 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-text);
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search h2::before {
    background: var(--theme-accent);
    box-shadow: 0 0 0 6px rgba(var(--theme-accent-rgb), 0.12);
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-sidebar-subtitle {
    position: relative;
    z-index: 1;
    margin: 6px 0 14px;
    color: var(--theme-muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-stack-form {
    position: relative;
    z-index: 1;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-stack-row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-stack-col {
    min-width: 0;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .form-floating-pro.fbx-field {
    position: relative;
    margin-bottom: 0;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 15px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 10px 20px rgba(var(--theme-primary-dark-rgb), 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .form-floating-pro.fbx-field:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-secondary-rgb), 0.28);
    box-shadow: 0 14px 24px rgba(var(--theme-primary-dark-rgb), 0.11);
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .form-floating-pro.fbx-field:focus-within {
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 4px rgba(var(--theme-secondary-rgb), 0.12), 0 16px 26px rgba(var(--theme-primary-dark-rgb), 0.12);
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field .form-control-pro,
:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field .form-select-pro,
:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field .custom-date-input {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 15px;
    background: transparent;
    box-shadow: none;
    color: var(--theme-text);
    font-weight: 700;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field .custom-date-input {
    padding: 12px 14px;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field label {
    color: var(--theme-muted);
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field label i,
:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field .chevron-icon {
    color: var(--theme-primary);
}

.rentacar-results-2026 .solsearch.fbx-sidebar-search .fbx-field label {
    display: none;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .fbx-field--guest .form-control-pro {
    padding-right: 42px;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .btn-search-pro.fbx-submit {
    min-height: 50px;
    width: 100%;
    border-radius: 15px;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .btn-search-pro.fbx-submit .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

:is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .guest-dropdown-content {
    border-radius: 16px;
}

@media (max-width: 767px) {
    :is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search {
        border-radius: 18px;
        padding: 14px;
        box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.1);
    }

    :is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search h2 {
        margin-bottom: 0;
    }

    :is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search .fbx-sidebar-mobile-body {
        margin-top: 14px;
    }

    :is(.tur-results-2026, .villa-result-2026, .rentacar-results-2026, .tk26-page, .category-shell) .solsearch.fbx-sidebar-search.is-mobile-collapsed .fbx-sidebar-mobile-body {
        display: none;
    }
}

.fbx-detail-shell {
    position: relative;
}

.fbx-detail-sidebar {
    position: relative;
    margin-bottom: 18px;
    padding: 20px 22px 18px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 36%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 40px rgba(var(--theme-primary-dark-rgb), 0.14);
    overflow: hidden;
}

.fbx-detail-sidebar::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.fbx-detail-sidebar__location {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.fbx-detail-sidebar__title {
    position: relative;
    z-index: 1;
    margin: 14px 0 10px;
    color: var(--theme-text);
}

.fbx-detail-sidebar__separator {
    position: relative;
    z-index: 1;
    width: 72px;
    max-width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

@media (max-width: 575.98px) {
    .charter-detail-2026 .charter-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .charter-detail-2026 .charter-gallery-item:first-child {
        grid-column: 1 / -1;
    }

    .charter-detail-2026 .charter-gallery-item img {
        height: 118px !important;
    }

    .charter-detail-2026 .charter-gallery-item:first-child img {
        height: 196px !important;
    }
}

.booking-card.fbx-detail-card,
.booking-card.fbx-price-card,
.tur-result-details.fbx-price-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.15);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.13), transparent 34%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 22px 48px rgba(var(--theme-primary-dark-rgb), 0.14);
}

.booking-card.fbx-detail-card::before,
.booking-card.fbx-price-card::before,
.tur-result-details.fbx-price-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.fbx-detail-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.fbx-detail-card__title {
    margin: 0;
    color: var(--theme-text);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 900;
    line-height: 1.2;
}

.fbx-detail-card__subtitle {
    margin: 4px 0 0;
    color: var(--theme-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.fbx-detail-form {
    position: relative;
    z-index: 1;
}

.fbx-detail-form__row {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
}

.fbx-detail-field-col {
    min-width: 0;
}

.form-floating-pro.fbx-detail-field {
    position: relative;
    margin-bottom: 0;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 10px 24px rgba(var(--theme-primary-dark-rgb), 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-floating-pro.fbx-detail-field:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-secondary-rgb), 0.28);
    box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.12);
}

.form-floating-pro.fbx-detail-field:focus-within {
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 4px rgba(var(--theme-secondary-rgb), 0.12), 0 16px 30px rgba(var(--theme-primary-dark-rgb), 0.12);
}

.fbx-detail-field .form-control-pro,
.fbx-detail-field .form-select-pro {
    width: 100%;
    min-height: 62px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    color: var(--theme-text);
    font-weight: 700;
}

.fbx-detail-field label {
    color: var(--theme-muted);
}

.fbx-detail-field label i,
.fbx-detail-field .chevron-icon {
    color: var(--theme-primary);
}

.fbx-detail-field.fbx-field--guest .form-control-pro {
    padding-right: 42px;
}

.fbx-detail-guest .guest-dropdown-content {
    border-radius: 18px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    box-shadow: 0 18px 38px rgba(var(--theme-primary-dark-rgb), 0.16);
}

.btn-search-pro.fbx-detail-submit {
    width: 100%;
    min-height: 62px;
    border-radius: 18px;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.btn-search-pro.fbx-detail-submit .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.fbx-detail-result {
    margin-top: 16px;
}

.booking-card.fbx-price-card,
.tur-result-details.fbx-price-card {
    margin-top: 4px;
    padding: 20px;
}

.fbx-summary-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.fbx-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    color: var(--theme-text);
}

.fbx-summary-item i {
    color: var(--theme-primary);
}

.fbx-price-card .booking-divider {
    border-color: rgba(var(--theme-primary-rgb), 0.1);
}

.fbx-breakdown {
    display: grid;
    gap: 12px;
}

.fbx-breakdown-row {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(var(--theme-primary-rgb), 0.12);
}

.fbx-breakdown-row:last-child {
    border-bottom: 0;
}

.fbx-price-card .item-name,
.fbx-price-card .item-desc,
.fbx-price-card .item-value {
    color: var(--theme-text);
}

.fbx-price-card .item-desc {
    color: var(--theme-muted);
}

.fbx-price-card .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    margin-right: 8px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-weight: 800;
}

.fbx-inline-badge,
.fbx-price-card .badge-prepayment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-accent));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.fbx-result-meta {
    margin-top: 4px;
    color: var(--theme-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.fbx-total-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.08), rgba(var(--theme-secondary-rgb), 0.12));
}

.fbx-total-box .total-label {
    color: var(--theme-text);
    font-weight: 800;
}

.fbx-total-box .total-amount,
.fbx-total-box .total-value {
    color: var(--theme-primary-dark);
    font-size: 1.18rem;
    font-weight: 900;
}

.fbx-prepay-box {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(var(--theme-success-rgb), 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(var(--theme-success-rgb), 0.08), rgba(var(--theme-accent-rgb), 0.08));
}

.fbx-prepay-box .prepayment-label,
.fbx-prepay-box .prepayment-amount,
.fbx-prepay-box .prepayment-note {
    color: var(--theme-text);
}

.fbx-prepay-box .prepayment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 800;
}

.fbx-prepay-box .prepayment-label i {
    color: var(--theme-success);
}

.fbx-prepay-box .prepayment-amount {
    margin-top: 10px;
    color: var(--theme-primary-dark);
    font-size: 1.15rem;
    font-weight: 900;
}

.fbx-prepay-box .prepayment-note {
    margin-top: 8px;
    color: var(--theme-muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

.fbx-inline-reservation {
    margin-top: 18px;
}

.btn_1.fbx-reserve-btn,
.btn-reservation.fbx-reserve-btn {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 18px 34px rgba(var(--theme-primary-rgb), 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn_1.fbx-reserve-btn:hover,
.btn-reservation.fbx-reserve-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 22px 40px rgba(var(--theme-primary-rgb), 0.28);
    filter: saturate(1.04);
}

.fbx-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--theme-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.fbx-secure-note i {
    color: var(--theme-success);
}

@media (max-width: 767px) {
    .fbx-detail-sidebar,
    .booking-card.fbx-detail-card,
    .booking-card.fbx-price-card,
    .tur-result-details.fbx-price-card {
        border-radius: 20px;
    }

    .fbx-detail-sidebar {
        padding: 18px 16px 16px;
    }

    .booking-card.fbx-price-card,
    .tur-result-details.fbx-price-card {
        padding: 16px;
    }

    .fbx-total-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

.reservation-container[class*="process-2026"] {
    --fbx-process-radius-lg: 24px;
    --fbx-process-radius-md: 18px;
    --fbx-process-radius-sm: 14px;
    --fbx-process-shadow: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.14);
}

.reservation-container[class*="process-2026"] .reservation-hero2026 {
    position: relative;
    overflow: hidden;
    border-radius: var(--fbx-process-radius-lg);
    border: 1px solid rgba(var(--theme-primary-rgb), 0.16);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.2), transparent 34%),
        linear-gradient(135deg, var(--theme-primary-dark), var(--theme-primary));
    box-shadow: 0 24px 48px rgba(var(--theme-primary-dark-rgb), 0.22);
}

.reservation-container[class*="process-2026"] .reservation-hero2026::before {
    content: "";
    position: absolute;
    inset: auto -70px -100px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(var(--theme-accent-rgb), 0.16);
    filter: blur(10px);
}

.fbx-process-form .form-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: var(--fbx-process-radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 38%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: var(--fbx-process-shadow);
}

.fbx-process-form .form-box::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.fbx-process-form .form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.fbx-process-form .form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--theme-text);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 900;
    line-height: 1.25;
}

.fbx-process-form .form-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
}

.fbx-process-form .form-group {
    margin-bottom: 14px;
}

.fbx-process-form .form-label,
.fbx-process-form .form-label-pro,
.fbx-process-form .form-group > label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--theme-text);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.4;
}

.fbx-process-form .form-control-custom {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: var(--fbx-process-radius-sm);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--theme-surface-soft));
    box-shadow: 0 8px 18px rgba(var(--theme-primary-dark-rgb), 0.08);
    color: var(--theme-text);
    font-weight: 700;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fbx-process-form textarea.form-control-custom {
    min-height: 110px;
    resize: vertical;
}

.fbx-process-form .form-control-custom:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-secondary-rgb), 0.3);
}

.fbx-process-form .form-control-custom:focus {
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 4px rgba(var(--theme-secondary-rgb), 0.12), 0 14px 26px rgba(var(--theme-primary-dark-rgb), 0.12);
    outline: none;
}

.fbx-process-form .passenger-item {
    position: relative;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: var(--fbx-process-radius-md);
    background: rgba(var(--theme-primary-rgb), 0.03);
}

.fbx-process-form .passenger-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.fbx-process-form .time-select {
    position: relative;
}

.fbx-process-form .time-select__icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--theme-primary);
    pointer-events: none;
}

.fbx-process-form .time-select__control {
    padding-left: 42px;
}

.fbx-process-form .time-info,
.reservation-container[class*="process-2026"] .time-preview,
.fbx-process-form .rez-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: var(--fbx-process-radius-sm);
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.fbx-process-summary {
    position: sticky;
    top: 20px;
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.15);
    border-radius: var(--fbx-process-radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 36%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 24px 52px rgba(var(--theme-primary-dark-rgb), 0.16);
}

.fbx-process-summary .summary-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.fbx-process-summary .summary-body {
    padding: 20px;
    background: transparent;
}

.fbx-process-summary .summary-title {
    margin: 0 0 12px;
    color: var(--theme-text);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 900;
    line-height: 1.25;
}

.fbx-process-summary .summary-date,
.fbx-process-summary .summary-row,
.fbx-process-summary .ts-price-row,
.fbx-process-summary .summary-route,
.fbx-process-summary .summary-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 10px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: var(--fbx-process-radius-sm);
    background: rgba(var(--theme-primary-rgb), 0.04);
    color: var(--theme-text);
}

.fbx-process-summary .summary-date i,
.fbx-process-summary .summary-route__pin,
.fbx-process-summary .summary-row__label i {
    color: var(--theme-primary);
}

.fbx-process-summary .summary-route {
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.fbx-process-summary .summary-route__from,
.fbx-process-summary .summary-route__to {
    font-weight: 800;
}

.fbx-process-summary .summary-route__arrow {
    color: var(--theme-secondary);
}

.fbx-process-summary .summary-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.fbx-process-summary .summary-metric {
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
}

.fbx-process-summary .summary-metric__label {
    color: var(--theme-muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fbx-process-summary .summary-metric__value {
    color: var(--theme-text);
    font-size: 0.98rem;
    font-weight: 900;
}

.fbx-process-summary .summary-cabin-box {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: var(--fbx-process-radius-md);
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.04), rgba(var(--theme-secondary-rgb), 0.06));
}

.fbx-process-summary .summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: var(--fbx-process-radius-md);
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.08), rgba(var(--theme-secondary-rgb), 0.12));
}

.fbx-process-summary .summary-total span:first-child {
    color: var(--theme-text);
    font-weight: 800;
}

.fbx-process-summary .summary-total .price {
    color: var(--theme-primary-dark);
    font-size: 1.2rem;
    font-weight: 900;
}

.fbx-process-summary .summary-prepayment {
    margin-top: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(var(--theme-success-rgb), 0.18);
    border-radius: var(--fbx-process-radius-md);
    background: linear-gradient(180deg, rgba(var(--theme-success-rgb), 0.08), rgba(var(--theme-accent-rgb), 0.08));
}

.fbx-process-summary .summary-prepayment__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.fbx-process-summary .summary-prepayment__label {
    color: var(--theme-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.fbx-process-summary .summary-prepayment__percent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-accent));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.fbx-process-summary .summary-prepayment__value .price {
    color: var(--theme-primary-dark);
    font-size: 1.16rem;
    font-weight: 900;
}

.fbx-process-summary .summary-prepayment__note {
    margin-top: 8px;
    color: var(--theme-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.fbx-process-summary .summary-row--kalan {
    margin-top: 12px;
    border-top: 1px dashed rgba(var(--theme-primary-rgb), 0.16);
}

.fbx-process-summary .summary-row--kalan strong,
.fbx-process-summary .summary-row--kalan .price {
    color: var(--theme-text);
    font-size: 1rem;
    font-weight: 900;
}

.btn-complete.fbx-process-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: var(--fbx-process-radius-md);
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 18px 34px rgba(var(--theme-primary-rgb), 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-complete.fbx-process-submit:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 22px 42px rgba(var(--theme-primary-rgb), 0.28);
    filter: saturate(1.04);
}

.reservation-container[class*="process-2026"] .rez-message {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: var(--fbx-process-radius-sm);
}

@media (max-width: 991px) {
    .fbx-process-summary {
        position: static;
        margin-top: 4px;
    }

    .reservation-container[class*="process-2026"] .reservation-hero2026 {
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .fbx-process-form .form-box,
    .fbx-process-summary {
        border-radius: 18px;
    }

    .fbx-process-form .form-box {
        padding: 18px 16px;
    }

    .fbx-process-summary .summary-body {
        padding: 16px;
    }

    .fbx-process-summary .summary-date,
    .fbx-process-summary .summary-row,
    .fbx-process-summary .ts-price-row,
    .fbx-process-summary .summary-route,
    .fbx-process-summary .summary-total {
        padding: 12px;
    }

    .fbx-process-summary .summary-metrics {
        grid-template-columns: 1fr;
    }
}

.ts-sidecard,
.ts-inc-box,
.availability-calendar,
.cabin-tabs-wrap .feature-section,
.ozel-faq-wrap,
.rentacar-faq-widget,
.car-info-bar {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 38%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.13);
}

.ts-sidecard::before,
.ts-inc-box::before,
.availability-calendar::before,
.cabin-tabs-wrap .feature-section::before,
.ozel-faq-wrap::before,
.rentacar-faq-widget::before,
.car-info-bar::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.ts-sidecard {
    padding: 20px;
}

.ts-sidecard__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.ts-sidecard__head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-sidecard__icon,
.ts-inc-box .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 1.05rem;
}

.ts-sidecard__title strong,
.ts-inc-box .title {
    display: block;
    margin: 0;
    color: var(--theme-text);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.24;
}

.ts-sidecard__title small {
    display: block;
    margin-top: 4px;
    color: var(--theme-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.ts-sidecard__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-accent));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.ts-sidecard__body {
    display: grid;
    gap: 10px;
}

.ts-side-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.ts-side-row .k {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-text);
    font-weight: 800;
}

.ts-side-row .k i {
    color: var(--theme-primary);
}

.ts-side-row .v {
    color: var(--theme-text);
    font-weight: 800;
    text-align: right;
}

.ts-side-sep {
    height: 1px;
    margin: 4px 0;
    background: rgba(var(--theme-primary-rgb), 0.1);
}

.ts-inc-box {
    padding: 20px;
}

.ts-inc-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.ts-inc-content {
    color: var(--theme-muted);
    font-size: 0.95rem;
    line-height: 1.78;
}

.availability-calendar {
    padding: 20px;
}

.availability-calendar h2 {
    margin: 0 0 14px;
    color: var(--theme-text);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    font-weight: 900;
}

.availability-calendar .legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.availability-calendar .legend > span,
.availability-calendar .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.06);
    color: var(--theme-text);
    font-size: 0.8rem;
    font-weight: 700;
}

.availability-calendar .legend-item--hidden {
    display: none;
}

.availability-calendar .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.availability-calendar .prev-month,
.availability-calendar .next-month {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.06);
    color: var(--theme-primary);
    font-weight: 900;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.availability-calendar .prev-month:hover,
.availability-calendar .next-month:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-secondary-rgb), 0.3);
    background: rgba(var(--theme-secondary-rgb), 0.1);
}

.availability-calendar .month-year {
    color: var(--theme-text);
    font-size: 0.94rem;
    font-weight: 900;
}

.availability-calendar .calendar-table {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.availability-calendar .calendar-table th {
    color: var(--theme-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cabin-tabs-wrap {
    display: grid;
    gap: 16px;
}

.cabin-tabs-wrap .feature-section {
    padding: 20px;
}

.cabin-tabs-wrap .feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--theme-text);
    font-size: 1rem;
    font-weight: 900;
}

.cabin-tabs-wrap .feature-title i {
    color: var(--theme-primary);
}

.cabin-tabs-wrap .feature-item,
.rentacar-feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    color: var(--theme-text);
}

.cabin-tabs-wrap .feature-item i,
.rentacar-feature-list .feature-item i {
    color: var(--theme-primary);
}

.cabin-tabs-wrap .alert-empty {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-muted);
}

.car-info-bar {
    padding: 18px;
}

.car-info-bar .info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.car-info-bar .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
}

.car-info-bar .info-title {
    display: block;
    color: var(--theme-muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.car-info-bar .info-value {
    display: block;
    margin-top: 4px;
    color: var(--theme-text);
    font-weight: 900;
}

.ozel-faq-wrap,
.rentacar-faq-widget {
    padding: 0;
}

.ozel-faq-wrap__head,
.rentacar-faq-widget .ozel-widget-title {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.ozel-faq-wrap__head-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ozel-faq-accent {
    width: 10px;
    min-width: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--theme-primary), var(--theme-accent));
}

.ozel-faq-headings h2,
.ozel-faq-wrap__head .t,
.rentacar-faq-widget .ozel-widget-title {
    color: var(--theme-text);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: 900;
    line-height: 1.25;
}

.ozel-faq-headings p,
.ozel-faq-wrap__sub,
.rentacar-faq-widget__sub {
    display: block;
    margin-top: 6px;
    color: var(--theme-muted);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.6;
}

.ozel-faq-wrap__body,
.rentacar-faq-widget .recent-post-item {
    padding: 18px 20px 20px;
}

.ozel-faq-container {
    display: grid;
    gap: 12px;
}

.ozel-faq-card {
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ozel-faq-card:hover,
.ozel-faq-card.active {
    border-color: rgba(var(--theme-secondary-rgb), 0.24);
    box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.1);
    transform: translateY(-1px);
}

.ozel-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
}

.ozel-faq-title {
    color: var(--theme-text);
    font-weight: 800;
    line-height: 1.5;
}

.ozel-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    flex-shrink: 0;
}

.ozel-faq-card.active .ozel-faq-icon {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
}

.ozel-faq-body {
    padding: 0 18px 16px;
}

.ozel-faq-content {
    color: var(--theme-muted);
    font-size: 0.92rem;
    line-height: 1.74;
}

.ozel-faq-empty {
    margin: 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-muted);
}

@media (max-width: 767px) {
    .ts-sidecard,
    .ts-inc-box,
    .availability-calendar,
    .cabin-tabs-wrap .feature-section,
    .ozel-faq-wrap,
    .rentacar-faq-widget,
    .car-info-bar {
        border-radius: 20px;
    }

    .ts-sidecard,
    .ts-inc-box,
    .availability-calendar,
    .cabin-tabs-wrap .feature-section,
    .car-info-bar {
        padding: 14px;
    }

    .ts-sidecard__head,
    .ts-inc-header {
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .ts-sidecard__head-left {
        align-items: flex-start;
        gap: 10px;
    }

    .ts-sidecard__icon,
    .ts-inc-box .icon-box {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .ts-sidecard__title strong,
    .ts-inc-box .title {
        font-size: 0.94rem;
    }

    .ts-sidecard__title small {
        font-size: 0.74rem;
    }

    .ts-sidecard__badge {
        min-height: 28px;
        padding: 4px 8px;
        font-size: 0.68rem;
    }

    .ts-inc-content {
        font-size: 0.88rem;
        line-height: 1.68;
    }

    .ozel-faq-wrap__head,
    .rentacar-faq-widget .ozel-widget-title,
    .ozel-faq-wrap__body,
    .rentacar-faq-widget .recent-post-item {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ts-side-row,
    .availability-calendar .legend > span,
    .availability-calendar .legend-item,
    .cabin-tabs-wrap .feature-item,
    .rentacar-feature-list .feature-item,
    .car-info-bar .info-box,
    .ozel-faq-header {
        padding: 12px;
    }

    .ts-side-row {
        align-items: flex-start;
        gap: 10px;
    }

    .ts-side-row .k,
    .ts-side-row .v {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .ozel-faq-wrap__head-left {
        align-items: flex-start;
    }

    .ozel-faq-accent {
        width: 8px;
        min-width: 8px;
    }

    .ozel-faq-headings p,
    .ozel-faq-wrap__sub,
    .rentacar-faq-widget__sub {
        margin-top: 4px;
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .ozel-faq-container {
        gap: 10px;
    }

    .ozel-faq-card {
        border-radius: 16px;
    }

    .ozel-faq-header {
        align-items: flex-start;
        gap: 10px;
    }

    .ozel-faq-title {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .ozel-faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.82rem;
    }

    .ozel-faq-content {
        font-size: 0.85rem;
        line-height: 1.68;
    }
}

.tour-detail-2026 .tour-highlight-text,
.villa-detail-2026 .tour-highlight-text,
.charter-detail-2026 .tour-highlight-text,
.rentacar-detail-legacy .tour-highlight-text {
    position: relative;
    overflow: hidden;
    padding: 22px 22px 20px 72px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 38%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 40px rgba(var(--theme-primary-dark-rgb), 0.13);
    color: var(--theme-text);
    line-height: 1.8;
}

.tour-detail-2026 .tour-highlight-text::before,
.villa-detail-2026 .tour-highlight-text::before,
.charter-detail-2026 .tour-highlight-text::before,
.rentacar-detail-legacy .tour-highlight-text::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.tour-detail-2026 .tour-highlight-text .quote-icon,
.rentacar-detail-legacy .tour-highlight-text .quote-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
}

.tour-detail-2026 .tour-highlight-text .desc-content,
.rentacar-detail-legacy .tour-highlight-text .desc-content {
    color: var(--theme-muted);
    line-height: 1.78;
}

.tour-detail-2026 .tour-description-wrapper,
.villa-detail-2026 .tour-description-wrapper,
.charter-detail-2026 .tour-description-wrapper {
    position: relative;
    overflow: hidden;
    padding: 24px 24px 22px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.12);
    color: var(--theme-muted);
    font-size: 0.96rem;
    line-height: 1.84;
}

.tour-detail-2026 .tour-description-wrapper > :first-child,
.villa-detail-2026 .tour-description-wrapper > :first-child,
.charter-detail-2026 .tour-description-wrapper > :first-child {
    margin-top: 0;
}

.tour-detail-2026 .tour-description-wrapper > :last-child,
.villa-detail-2026 .tour-description-wrapper > :last-child,
.charter-detail-2026 .tour-description-wrapper > :last-child {
    margin-bottom: 0;
}

.tour-detail-2026 .tour-description-wrapper p,
.villa-detail-2026 .tour-description-wrapper p,
.charter-detail-2026 .tour-description-wrapper p {
    margin-bottom: 1rem;
}

.tour-detail-2026 .tour-description-wrapper ul,
.tour-detail-2026 .tour-description-wrapper ol,
.villa-detail-2026 .tour-description-wrapper ul,
.villa-detail-2026 .tour-description-wrapper ol,
.charter-detail-2026 .tour-description-wrapper ul,
.charter-detail-2026 .tour-description-wrapper ol {
    padding-left: 1.25rem;
}

.tour-detail-2026 .tour-description-wrapper h1,
.tour-detail-2026 .tour-description-wrapper h2,
.tour-detail-2026 .tour-description-wrapper h3,
.villa-detail-2026 .tour-description-wrapper h1,
.villa-detail-2026 .tour-description-wrapper h2,
.villa-detail-2026 .tour-description-wrapper h3,
.charter-detail-2026 .tour-description-wrapper h1,
.charter-detail-2026 .tour-description-wrapper h2,
.charter-detail-2026 .tour-description-wrapper h3 {
    color: var(--theme-text);
    font-weight: 900;
    line-height: 1.28;
}

.villa-reviews,
.external-reviews,
.review-form {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    padding: 20px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 38%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.13);
}

.villa-reviews::before,
.external-reviews::before,
.review-form::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.villa-reviews h3,
.external-reviews h3,
.review-form__head h3 {
    margin: 0;
    color: var(--theme-text);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: 900;
    line-height: 1.25;
}

.review-form__head p,
.external-reviews .sub {
    margin: 8px 0 0;
    color: var(--theme-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.review-card {
    margin-top: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.review-header strong {
    color: var(--theme-text);
    font-weight: 900;
}

.review-card .stars {
    color: #f5b11e;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
}

.review-card p {
    margin: 0 0 10px;
    color: var(--theme-muted);
    line-height: 1.72;
}

.review-card small {
    color: var(--theme-muted);
    font-weight: 700;
}

.no-review,
.review-message,
.review-alert,
.ext-loading {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
}

.no-review,
.ext-loading {
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-muted);
}

.review-message.error {
    border: 1px solid rgba(205, 71, 71, 0.18);
    background: rgba(205, 71, 71, 0.08);
    color: #8a2f2f;
}

.review-alert {
    border: 1px solid rgba(var(--theme-success-rgb), 0.18);
    background: linear-gradient(180deg, rgba(var(--theme-success-rgb), 0.08), rgba(var(--theme-accent-rgb), 0.08));
    color: var(--theme-text);
}

.review-alert strong {
    display: block;
    margin-bottom: 6px;
}

.review-alert p {
    margin: 0 0 10px;
    color: var(--theme-muted);
}

.review-alert .js-alert-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-weight: 800;
}

.review-form__head {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.review-form__grid {
    display: grid;
    gap: 14px;
}

.review-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.review-field label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--theme-text);
    font-size: 0.85rem;
    font-weight: 800;
}

.review-field label i {
    color: var(--theme-primary);
}

.review-field input,
.review-field select,
.review-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--theme-surface-soft));
    box-shadow: 0 8px 18px rgba(var(--theme-primary-dark-rgb), 0.08);
    color: var(--theme-text);
    font-weight: 700;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.review-field textarea {
    min-height: 132px;
    resize: vertical;
}

.review-field input:focus,
.review-field select:focus,
.review-field textarea:focus {
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 4px rgba(var(--theme-secondary-rgb), 0.12), 0 14px 26px rgba(var(--theme-primary-dark-rgb), 0.12);
    outline: none;
}

.review-submit-wrap {
    margin-top: 4px;
}

.fbx-review-submit,
.review-submit-wrap button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 18px 34px rgba(var(--theme-primary-rgb), 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.fbx-review-submit:hover,
.review-submit-wrap button:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 22px 40px rgba(var(--theme-primary-rgb), 0.28);
    filter: saturate(1.04);
}

.review-hp {
    display: none;
}

.ext-google-meta,
.ext-tripadvisor {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.ext-tripadvisor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ext-tripadvisor span {
    color: var(--theme-muted);
    font-weight: 700;
}

.ext-tripadvisor a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-weight: 800;
    text-decoration: none;
}

.ext-tripadvisor a:hover {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .tour-detail-2026 .tour-highlight-text,
    .villa-detail-2026 .tour-highlight-text,
    .charter-detail-2026 .tour-highlight-text,
    .rentacar-detail-legacy .tour-highlight-text,
    .tour-detail-2026 .tour-description-wrapper,
    .villa-detail-2026 .tour-description-wrapper,
    .charter-detail-2026 .tour-description-wrapper,
    .villa-reviews,
    .external-reviews,
    .review-form {
        border-radius: 20px;
    }

    .tour-detail-2026 .tour-highlight-text,
    .villa-detail-2026 .tour-highlight-text,
    .charter-detail-2026 .tour-highlight-text,
    .rentacar-detail-legacy .tour-highlight-text {
        padding: 18px 16px 16px 58px;
    }

    .tour-detail-2026 .tour-highlight-text .quote-icon,
    .rentacar-detail-legacy .tour-highlight-text .quote-icon {
        top: 18px;
        left: 16px;
        width: 32px;
        height: 32px;
    }

    .tour-detail-2026 .tour-description-wrapper,
    .villa-detail-2026 .tour-description-wrapper,
    .charter-detail-2026 .tour-description-wrapper,
    .villa-reviews,
    .external-reviews,
    .review-form {
        padding: 16px;
    }

    .review-grid-2 {
        grid-template-columns: 1fr;
    }

    .review-form__head p,
    .external-reviews .sub {
        margin-top: 6px;
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .review-card {
        margin-top: 12px;
        padding: 12px;
    }

    .review-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 8px;
    }

    .review-card .stars {
        font-size: 0.86rem;
    }

    .review-card p {
        margin-bottom: 8px;
        font-size: 0.88rem;
        line-height: 1.66;
    }

    .review-card small {
        font-size: 0.76rem;
    }

    .no-review,
    .review-message,
    .review-alert,
    .ext-loading {
        padding: 12px 14px;
        border-radius: 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .ts-sidecard__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ts-sidecard__badge {
        align-self: flex-start;
    }

    .ts-side-row {
        flex-direction: column;
    }

    .ts-side-row .v {
        width: 100%;
        text-align: left;
    }
}

.tour-program-sidebar,
.season-price-header,
.season-card,
.rentacar-detail-legacy .rentacar-feature-list,
.rentacar-detail-legacy .modern-gallery-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 38%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 42px rgba(var(--theme-primary-dark-rgb), 0.13);
}

.rentacar-detail-legacy .rentacar-gallery-swiper-theme {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.tour-program-sidebar::before,
.season-price-header::before,
.season-card::before,
.rentacar-detail-legacy .rentacar-feature-list::before,
.rentacar-detail-legacy .modern-gallery-wrapper::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.tour-program-sidebar {
    padding: 20px;
}

.program-main-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    color: var(--theme-text);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    font-weight: 900;
    line-height: 1.24;
}

.program-main-title i {
    color: var(--theme-primary);
}

.ky-timeline-wrapper {
    display: grid;
    gap: 14px;
}

.ky-timeline-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
}

.ky-timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
}

.ky-time-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(var(--theme-primary-rgb), 0.24);
}

.ky-line {
    position: absolute;
    top: 42px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.34), rgba(var(--theme-secondary-rgb), 0.08));
}

.ky-timeline-item.last-item .ky-line {
    display: none;
}

.ky-timeline-content {
    padding: 16px 18px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.ky-activity-title {
    margin: 0 0 10px;
    color: var(--theme-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.45;
}

.ky-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.78rem;
    font-weight: 800;
}

.program-empty-alert {
    margin: 0;
    padding: 14px 16px;
    border: 0;
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-muted);
}

.season-price-header {
    margin-bottom: 16px;
    padding: 20px;
}

.season-price-header h2 {
    margin: 0;
    color: var(--theme-text);
    font-size: clamp(1.08rem, 1.6vw, 1.24rem);
    font-weight: 900;
    line-height: 1.25;
}

.season-price-header p {
    margin: 8px 0 0;
    color: var(--theme-muted);
    line-height: 1.68;
}

.season-price-list {
    display: grid;
    gap: 14px;
}

.season-card {
    padding: 18px;
}

.season-card.is-current {
    border-color: rgba(var(--theme-secondary-rgb), 0.24);
}

.season-card.is-best {
    border-color: rgba(var(--theme-accent-rgb), 0.24);
}

.season-dates {
    color: var(--theme-text);
    font-size: 0.9rem;
    font-weight: 800;
}

.season-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
}

.season-price .price-value {
    color: var(--theme-primary-dark);
    font-size: 1.28rem;
    font-weight: 900;
}

.season-price .price-currency {
    color: var(--theme-muted);
    font-weight: 700;
}

.season-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.badge-best,
.badge-current {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.badge-best {
    background: linear-gradient(135deg, var(--theme-accent), var(--theme-secondary));
    color: #fff;
}

.badge-current {
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
}

.rentacar-detail-legacy .modern-gallery-wrapper {
    padding: 16px;
}

.rentacar-detail-legacy .mainSlider,
.rentacar-detail-legacy .thumbSlider {
    overflow: hidden;
    border-radius: 18px;
}

.rentacar-detail-legacy .thumbSlider {
    margin-top: 12px;
}

.rentacar-detail-legacy .thumbSlider .swiper-slide {
    opacity: 0.74;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.rentacar-detail-legacy .thumbSlider .swiper-slide-thumb-active,
.rentacar-detail-legacy .thumbSlider .swiper-slide:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.rentacar-detail-legacy .gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.rentacar-detail-legacy .gallery-link img,
.rentacar-detail-legacy .thumbSlider img {
    width: 100%;
    object-fit: cover;
}

.rentacar-detail-legacy .zoom-icon {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rentacar-detail-legacy .rentacar-feature-list {
    margin-top: 16px;
    padding: 20px;
}

.rentacar-detail-legacy .feature-list-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--theme-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}

.rentacar-detail-legacy .feature-list-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--theme-accent);
    box-shadow: 0 0 0 6px rgba(var(--theme-accent-rgb), 0.16);
}

.rentacar-detail-legacy .feature-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
}

.rentacar-detail-legacy .feature-icons-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 100%;
    padding: 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.rentacar-detail-legacy .feature-icons-grid .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    flex-shrink: 0;
}

.rentacar-detail-legacy .feature-icons-grid .feature-text {
    color: var(--theme-muted);
    font-weight: 700;
    line-height: 1.55;
}

.rentacar-detail-legacy .feature-icons-grid .feature-text strong {
    color: var(--theme-text);
    font-weight: 900;
}

@media (max-width: 767px) {
    .tour-program-sidebar,
    .season-price-header,
    .season-card,
    .rentacar-detail-legacy .rentacar-feature-list,
    .rentacar-detail-legacy .modern-gallery-wrapper {
        border-radius: 20px;
    }

    .tour-program-sidebar,
    .season-price-header,
    .season-card,
    .rentacar-detail-legacy .rentacar-feature-list,
    .rentacar-detail-legacy .modern-gallery-wrapper {
        padding: 16px;
    }

    .ky-timeline-item {
        grid-template-columns: 1fr;
    }

    .ky-timeline-marker {
        justify-content: flex-start;
    }

    .ky-line {
        left: 30px;
    }

    .rentacar-detail-legacy .feature-icons-grid {
        grid-template-columns: 1fr;
    }
}

.charter-detail-2026 .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--theme-surface-soft));
    color: var(--theme-text);
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.2;
}

.charter-detail-2026 .section-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--theme-accent);
    box-shadow: 0 0 0 6px rgba(var(--theme-accent-rgb), 0.16);
}

.charter-detail-2026 .section-title::after {
    display: none;
}

.charter-detail-2026 .hotel-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.charter-detail-2026 .hotel-features-grid--stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.charter-detail-2026 .hotel-feature-chip,
.charter-detail-2026 .hotel-feature-item {
    min-height: 100%;
    padding: 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.charter-detail-2026 .hotel-feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
}

.charter-detail-2026 .hotel-feature-chip i,
.charter-detail-2026 .hotel-feature-item i {
    color: var(--theme-primary);
}

.charter-detail-2026 .hotel-feature-chip span,
.charter-detail-2026 .hotel-feature-item__label {
    color: var(--theme-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.charter-detail-2026 .hotel-feature-chip strong,
.charter-detail-2026 .hotel-feature-item__value {
    color: var(--theme-text);
    font-size: 0.92rem;
    font-weight: 900;
}

.charter-detail-2026 .hotel-feature-chip strong {
    margin-left: auto;
}

.charter-detail-2026 .hotel-feature-item__value {
    display: block;
    margin-top: 6px;
}

.charter-detail-2026 .hotel-amenity-list,
.charter-detail-2026 .charter-feature-cloud,
.charter-detail-2026 .cabin-item__features,
.charter-detail-2026 .cabin-item__feature-tags,
.charter-detail-2026 .gulet-cabin-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.charter-detail-2026 .hotel-amenity-pill,
.charter-detail-2026 .charter-feature-chip,
.charter-detail-2026 .cabin-item__feature-chip,
.charter-detail-2026 .cabin-item__feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.charter-detail-2026 .charter-feature-chip i,
.charter-detail-2026 .hotel-amenity-pill i {
    color: var(--theme-primary);
}

.charter-detail-2026 .charter-program-acc {
    display: grid;
    gap: 12px;
}

.charter-detail-2026 .charter-program-item {
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.charter-detail-2026 .charter-program-item:hover,
.charter-detail-2026 .charter-program-item.is-open {
    border-color: rgba(var(--theme-secondary-rgb), 0.24);
    box-shadow: 0 14px 30px rgba(var(--theme-primary-dark-rgb), 0.1);
    transform: translateY(-1px);
}

.charter-detail-2026 .charter-program-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    text-align: left;
}

.charter-detail-2026 .charter-program-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.charter-detail-2026 .charter-program-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
}

.charter-detail-2026 .charter-program-mekan {
    color: var(--theme-text);
    font-weight: 900;
    line-height: 1.4;
}

.charter-detail-2026 .charter-program-time,
.charter-detail-2026 .charter-program-sure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--theme-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.charter-detail-2026 .charter-program-head > i {
    color: var(--theme-primary);
    transition: transform 0.18s ease;
}

.charter-detail-2026 .charter-program-item.is-open .charter-program-head > i {
    transform: rotate(180deg);
}

.charter-detail-2026 .charter-program-body {
    padding: 0 18px 18px;
}

.charter-detail-2026 .charter-program-aktivite {
    color: var(--theme-muted);
    line-height: 1.75;
}

.charter-detail-2026 .charter-program-empty,
.charter-detail-2026 .charter-price-empty,
.charter-detail-2026 .charter-empty {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-muted);
}

.charter-detail-2026 .charter-price-tabs {
    display: grid;
    gap: 16px;
}

.charter-detail-2026 .charter-price-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.charter-detail-2026 .charter-price-tabs__btn {
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-text);
    font-size: 0.82rem;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.charter-detail-2026 .charter-price-tabs__btn:hover,
.charter-detail-2026 .charter-price-tabs__btn.is-active {
    transform: translateY(-1px);
    border-color: rgba(var(--theme-secondary-rgb), 0.3);
}

.charter-detail-2026 .charter-price-tabs__btn.is-active {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
}

.fbx-hidden-gallery {
    display: none;
}

.fbx-inline-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fbx-card-top-gap {
    margin-top: 10px;
}

.fbx-summary-item--wide {
    flex-basis: 100%;
    justify-content: flex-start;
}

.fbx-price-old {
    color: #9ca3af;
    font-size: 12px;
    text-decoration: line-through;
}

.fbx-price-current {
    font-size: 16px;
    font-weight: 600;
}

.fbx-price-avg {
    margin-top: 5px;
    color: #9ca3af;
    font-size: 10px;
}

.fbx-daily-breakdown {
    font-size: 13px;
}

.fbx-dashed-row {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.fbx-meta-subnote,
.ts-meta-item__hint {
    margin-left: 4px;
    color: #64748b;
    font-size: 0.85em;
}

.fbx-meta-subnote {
    margin-top: 2px;
    margin-left: 0;
    color: #999;
    font-size: 10px;
}

.css2026-input--stacked {
    margin-bottom: 8px;
}

.charter-detail-2026 .charter-price-cabin,
.charter-detail-2026 .gulet-price-2026,
.charter-detail-2026 .gulet-cabin-2026 {
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 20px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.charter-detail-2026 .charter-price-cabin__head,
.charter-detail-2026 .gulet-price-2026__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.charter-detail-2026 .charter-price-cabin__title,
.charter-detail-2026 .gulet-price-2026__title,
.charter-detail-2026 .gulet-cabin-2026__title {
    color: var(--theme-text);
    font-size: 0.96rem;
    font-weight: 900;
}

.charter-detail-2026 .gulet-price-2026__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.74rem;
    font-weight: 800;
}

.charter-detail-2026 .charter-price-table-wrap {
    padding: 16px 18px 18px;
}

.charter-detail-2026 .charter-price-table {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.charter-detail-2026 .charter-price-table th,
.charter-detail-2026 .charter-price-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.08);
}

.charter-detail-2026 .charter-price-table th {
    color: var(--theme-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.charter-detail-2026 .charter-price-table td {
    color: var(--theme-text);
    font-weight: 700;
}

.charter-detail-2026 .charter-price-table tr.is-active td {
    background: rgba(var(--theme-secondary-rgb), 0.08);
}

.charter-detail-2026 .charter-price-date {
    color: var(--theme-text);
    font-weight: 800;
}

.charter-detail-2026 .gulet-price-2026__chips,
.charter-detail-2026 .gulet-price-2026__formula,
.charter-detail-2026 .gulet-cabin-feature-list {
    display: grid;
    gap: 12px;
    padding: 16px 18px;
}

.charter-detail-2026 .gulet-price-2026__chip,
.charter-detail-2026 .gulet-price-2026__formula {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-text);
    font-weight: 800;
}

.charter-detail-2026 .gulet-price-2026__formula-label {
    color: var(--theme-muted);
}

.charter-detail-2026 .gulet-price-2026__total {
    color: var(--theme-primary-dark);
    font-size: 1.08rem;
    font-weight: 900;
}

.charter-detail-2026 .gulet-cabin-feature-item {
    padding: 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 18px;
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.charter-detail-2026 .gulet-cabin-feature-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--theme-text);
    font-weight: 900;
}

.charter-detail-2026 .cabin-list {
    display: grid;
    gap: 14px;
}

.charter-detail-2026 .cabin-item {
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 20px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.charter-detail-2026 .cabin-item:hover,
.charter-detail-2026 .cabin-item.is-selected {
    border-color: rgba(var(--theme-secondary-rgb), 0.28);
    box-shadow: 0 16px 32px rgba(var(--theme-primary-dark-rgb), 0.1);
    transform: translateY(-1px);
}

.charter-detail-2026 .cabin-item.is-closed {
    background: rgba(190, 55, 55, 0.05);
    border-color: rgba(190, 55, 55, 0.14);
}

.charter-detail-2026 .cabin-item__layout {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
}

.charter-detail-2026 .cabin-item__media {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.06);
}

.charter-detail-2026 .cabin-item__media-link,
.charter-detail-2026 .cabin-item__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.charter-detail-2026 .cabin-item__media img {
    min-height: 128px;
    object-fit: cover;
}

.charter-detail-2026 .cabin-item__media-badge,
.charter-detail-2026 .chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.charter-detail-2026 .cabin-item__media-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(8, 22, 42, 0.64);
    color: #fff;
}

.charter-detail-2026 .chip-closed {
    background: rgba(190, 55, 55, 0.12);
    color: #8f2f2f;
}

.charter-detail-2026 .chip-muted {
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
}

.charter-detail-2026 .chip-price {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
}

.charter-detail-2026 .cabin-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.charter-detail-2026 .cabin-item__head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.charter-detail-2026 .cabin-item__head-left strong {
    color: var(--theme-text);
    font-weight: 900;
}

.charter-detail-2026 .cabin-radio {
    width: 18px;
    height: 18px;
    accent-color: var(--theme-primary);
}

.charter-detail-2026 .cabin-item__meta,
.charter-detail-2026 .cabin-item__distribution {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.charter-detail-2026 .cabin-item__meta span,
.charter-detail-2026 .cabin-item__distribution div,
.charter-detail-2026 .cabin-item__distribution--warn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(var(--theme-primary-rgb), 0.06);
    color: var(--theme-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.charter-detail-2026 .cabin-item__distribution--warn {
    color: #8f4c1f;
    background: rgba(245, 158, 11, 0.1);
}

.charter-detail-2026 .cabin-item__desc {
    margin: 12px 0 0;
    color: var(--theme-muted);
    line-height: 1.7;
}

.charter-detail-2026 .fbx-detail-summary-card,
.charter-detail-2026 .fbx-detail-action-card,
.charter-detail-2026 .charter-research-card {
    overflow: hidden;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(var(--theme-secondary-rgb), 0.12), transparent 36%),
        linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    box-shadow: 0 18px 36px rgba(var(--theme-primary-dark-rgb), 0.12);
}

.charter-detail-2026 .fbx-detail-summary-card .vd26-card__body,
.charter-detail-2026 .fbx-detail-action-card .vd26-card__body,
.charter-detail-2026 .charter-research-card .vd26-card__body {
    padding: 18px;
}

.charter-detail-2026 .fbx-detail-summary-card .summary-row,
.charter-detail-2026 .fbx-detail-action-card .charter-res-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
    border-radius: 16px;
    background: rgba(var(--theme-primary-rgb), 0.04);
    color: var(--theme-text);
}

.charter-detail-2026 .fbx-detail-summary-card .summary-row strong,
.charter-detail-2026 .fbx-detail-action-card .charter-res-total-line strong {
    color: var(--theme-text);
    font-weight: 900;
}

.charter-detail-2026 .fbx-detail-summary-card .summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.08), rgba(var(--theme-secondary-rgb), 0.12));
}

.charter-detail-2026 .fbx-detail-summary-card .summary-total strong {
    color: var(--theme-primary-dark);
    font-size: 1.12rem;
    font-weight: 900;
}

.charter-detail-2026 .charter-res-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}

.charter-detail-2026 .charter-res-submit:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .charter-detail-2026 .hotel-features-grid,
    .charter-detail-2026 .hotel-features-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .charter-detail-2026 .cabin-item__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .charter-detail-2026 .vd26-chip {
        padding: 6px 9px;
        font-size: 0.72rem;
    }

    .charter-detail-2026 .section-title,
    .charter-detail-2026 .charter-price-cabin,
    .charter-detail-2026 .gulet-price-2026,
    .charter-detail-2026 .gulet-cabin-2026,
    .charter-detail-2026 .fbx-detail-summary-card,
    .charter-detail-2026 .fbx-detail-action-card,
    .charter-detail-2026 .charter-research-card,
    .charter-detail-2026 .cabin-item,
    .charter-detail-2026 .charter-program-item {
        border-radius: 18px;
    }

    .charter-detail-2026 .hotel-features-grid,
    .charter-detail-2026 .hotel-features-grid--stats {
        grid-template-columns: 1fr;
    }

    .charter-detail-2026 .charter-price-tabs__nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .charter-detail-2026 .charter-price-table-wrap,
    .charter-detail-2026 .gulet-price-2026__chips,
    .charter-detail-2026 .gulet-price-2026__formula,
    .charter-detail-2026 .gulet-cabin-feature-list,
    .charter-detail-2026 .charter-program-body,
    .charter-detail-2026 .charter-program-head,
    .charter-detail-2026 .charter-price-cabin__head,
    .charter-detail-2026 .gulet-price-2026__head,
    .charter-detail-2026 .cabin-item__layout {
        padding-left: 14px;
        padding-right: 14px;
    }

    .charter-detail-2026 .charter-price-table {
        display: block;
        overflow-x: auto;
    }

    .charter-detail-2026 .gulet-price-2026__chip,
    .charter-detail-2026 .gulet-price-2026__formula,
    .charter-detail-2026 .charter-program-left,
    .charter-detail-2026 .cabin-item__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .charter-detail-2026 .vd26-card__body {
        padding: 12px;
    }

    .charter-detail-2026 .fbx-detail-summary-card .vd26-card__body,
    .charter-detail-2026 .fbx-detail-action-card .vd26-card__body,
    .charter-detail-2026 .charter-research-card .vd26-card__body {
        padding: 14px;
    }

    .charter-detail-2026 .section-title {
        gap: 7px;
        margin-bottom: 10px;
        padding: 11px 12px;
        font-size: 0.9rem;
    }

    .charter-detail-2026 .hotel-feature-chip,
    .charter-detail-2026 .hotel-feature-item {
        padding: 12px;
        border-radius: 16px;
    }

    .charter-detail-2026 .hotel-feature-chip {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .charter-detail-2026 .hotel-feature-chip span,
    .charter-detail-2026 .hotel-feature-item__label {
        font-size: 0.76rem;
    }

    .charter-detail-2026 .hotel-feature-chip strong,
    .charter-detail-2026 .hotel-feature-item__value {
        font-size: 0.86rem;
    }

    .charter-detail-2026 .hotel-feature-chip strong {
        margin-left: 0;
    }

    .charter-detail-2026 .hotel-amenity-list,
    .charter-detail-2026 .cabin-item__feature-tags {
        gap: 6px;
    }

    .charter-detail-2026 .hotel-amenity-pill,
    .charter-detail-2026 .cabin-item__feature-tag {
        min-height: 32px;
        padding: 7px 10px;
        font-size: 0.74rem;
    }

    .charter-detail-2026 .cabin-item__meta,
    .charter-detail-2026 .cabin-item__distribution {
        gap: 6px;
        margin-top: 10px;
    }

    .charter-detail-2026 .cabin-item__meta span,
    .charter-detail-2026 .cabin-item__distribution div,
    .charter-detail-2026 .cabin-item__distribution--warn {
        min-height: 30px;
        padding: 7px 10px;
        border-radius: 12px;
        font-size: 0.74rem;
    }

    .charter-detail-2026 .cabin-item__desc {
        margin-top: 10px;
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .charter-detail-2026 .charter-price-tabs {
        gap: 12px;
    }

    .charter-detail-2026 .charter-price-tabs__btn {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 0.78rem;
    }

    .charter-detail-2026 .charter-price-cabin__head,
    .charter-detail-2026 .gulet-price-2026__head {
        gap: 8px;
        padding: 14px;
    }

    .charter-detail-2026 .charter-price-table-wrap {
        padding: 12px 14px 14px;
    }

    .charter-detail-2026 .charter-price-table th,
    .charter-detail-2026 .charter-price-table td {
        padding: 10px 11px;
    }

    .charter-detail-2026 .charter-program-head {
        gap: 10px;
        padding: 14px 14px 10px;
        align-items: flex-start;
    }

    .charter-detail-2026 .charter-program-no {
        min-width: auto;
        min-height: 32px;
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .charter-detail-2026 .charter-program-time,
    .charter-detail-2026 .charter-program-sure {
        margin-top: 6px;
        font-size: 0.76rem;
    }

    .charter-detail-2026 .charter-program-body {
        padding: 0 14px 14px;
    }

    .charter-detail-2026 .charter-program-aktivite {
        font-size: 0.82rem;
        line-height: 1.65;
    }

    .charter-detail-2026 .fbx-detail-summary-card .summary-row,
    .charter-detail-2026 .fbx-detail-action-card .charter-res-total-line {
        gap: 8px;
        margin-bottom: 8px;
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 0.78rem;
    }

    .charter-detail-2026 .fbx-detail-summary-card .summary-total {
        gap: 10px;
        margin-top: 10px;
        padding: 12px 14px;
    }

    .charter-detail-2026 .fbx-detail-summary-card .summary-total strong {
        font-size: 1rem;
    }

    .charter-detail-2026 .charter-res-submit {
        min-height: 48px;
        border-radius: 16px;
        font-size: 0.86rem;
    }

    .charter-detail-2026 .review-form,
    .charter-detail-2026 .villa-reviews {
        padding: 12px;
    }

    .charter-detail-2026 .review-card {
        padding: 9px 10px;
    }

    .charter-detail-2026 .review-form h3,
    .charter-detail-2026 .villa-reviews h3 {
        font-size: 0.96rem;
        margin-bottom: 8px;
    }

    .charter-detail-2026 .ozel-faq-wrap__head {
        padding: 11px 12px;
    }

    .charter-detail-2026 .ozel-faq-wrap__body,
    .charter-detail-2026 .ozel-faq-content {
        padding: 10px 12px;
    }

    .charter-detail-2026 .ozel-faq-title {
        font-size: 0.82rem;
    }
}

.fbx-alert-shell {
    max-width: 760px;
    margin: 20px auto;
    padding: 16px 18px;
    border-width: 1px;
    border-style: solid;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(var(--theme-primary-dark-rgb), 0.08);
    font-weight: 700;
    line-height: 1.6;
}

.fbx-alert-shell.alert-warning {
    border-color: rgba(var(--theme-accent-rgb), 0.34);
    background: linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(255, 252, 245, 0.96));
    color: #8a5a09;
}

.fbx-alert-shell.alert-danger {
    border-color: rgba(205, 71, 71, 0.18);
    background: linear-gradient(180deg, rgba(255, 241, 242, 0.96), rgba(255, 248, 248, 0.98));
    color: #8a2f2f;
}

.fbx-alert-shell.alert-info {
    border-color: rgba(var(--theme-primary-rgb), 0.16);
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.08), rgba(var(--theme-secondary-rgb), 0.08));
    color: var(--theme-text);
}

.fbx-alert-shell.alert-success {
    border-color: rgba(var(--theme-success-rgb), 0.2);
    background: linear-gradient(180deg, rgba(var(--theme-success-rgb), 0.09), rgba(var(--theme-accent-rgb), 0.06));
    color: #0f5a45;
}

.fbx-alert-inline {
    padding: 14px 16px;
    border-width: 1px;
    border-style: solid;
    border-radius: 16px;
    box-shadow: 0 12px 22px rgba(var(--theme-primary-dark-rgb), 0.06);
    font-weight: 700;
    line-height: 1.58;
}

.fbx-alert-inline.alert-danger {
    border-color: rgba(205, 71, 71, 0.18);
    background: linear-gradient(180deg, rgba(255, 241, 242, 0.96), rgba(255, 248, 248, 0.98));
    color: #8a2f2f;
}

.fbx-alert-inline.alert-warning {
    border-color: rgba(var(--theme-accent-rgb), 0.34);
    background: linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(255, 252, 245, 0.96));
    color: #8a5a09;
}

.fbx-alert-inline.alert-info {
    border-color: rgba(var(--theme-primary-rgb), 0.16);
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.08), rgba(var(--theme-secondary-rgb), 0.08));
    color: var(--theme-text);
}

.fbx-alert-inline.alert-success {
    border-color: rgba(var(--theme-success-rgb), 0.2);
    background: linear-gradient(180deg, rgba(var(--theme-success-rgb), 0.09), rgba(var(--theme-accent-rgb), 0.06));
    color: #0f5a45;
}

.fbx-stack-top-sm {
    margin-top: 12px;
}

.fbx-body-copy {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.fbx-text-danger-strong {
    color: #c62828;
    font-weight: 700;
}

.fbx-label-lg {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
}

.fbx-voucher-denied {
    padding: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--theme-text, #1f2937);
}

.fbx-voucher-denied.fbx-alert-shell {
    margin: 16px 0;
}

.fbx-summary-title {
    margin: 0 0 16px;
    padding: 10px 14px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f0f8ff;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.fbx-table-centered {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.fbx-hidden {
    display: none !important;
}

.fbx-no-pointer {
    pointer-events: none !important;
}

.fbx-cursor-pointer {
    cursor: pointer !important;
}

.fbx-cursor-not-allowed {
    cursor: not-allowed !important;
}

.faq-answer.is-open {
    display: block !important;
}

.cookie-popup.is-visible {
    display: block !important;
}

.share-btn {
    border: none;
    cursor: pointer;
}

.share-btn.is-copied {
    background: var(--accent-color, #0f70c5) !important;
    color: #fff !important;
}

.fbx-empty-results--compact {
    min-height: 88px;
    padding: 14px 12px;
    font-size: 0.84rem;
    line-height: 1.45;
}

.faq-empty-state,
.auto-module-empty,
.charter-cabin-list__empty,
.fbx-empty-copy {
    padding: 14px 16px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.05), rgba(var(--theme-secondary-rgb), 0.05));
    color: var(--theme-muted);
    font-weight: 700;
    line-height: 1.6;
}

.faq-empty-state,
.auto-module-empty,
.charter-cabin-list__empty {
    text-align: center;
}

.faq-empty-state {
    margin: 0;
}

.tour-detail-2026 .vd26-feature-wrap .fbx-empty-copy {
    font-size: .82rem;
    padding: 10px 12px;
    text-align: center;
}

#mainHeader .nav-list > li > .header-nav-trigger,
#mainHeader .mobile-dropdown-toggle > .mobile-dropdown-trigger,
.turfiltre-page .inner_bt > .open_filters {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    padding: 0;
}

#mainHeader .nav-list > li > .header-nav-trigger {
    align-items: center;
    border-radius: 8px;
    color: #0b4f7d;
    display: flex;
    font-size: 17px;
    font-weight: 500;
    gap: 6px;
    letter-spacing: -.2px;
    padding: 2px;
    text-transform: none;
    transition: all .25s ease;
}

#mainHeader .nav-list > li > .header-nav-trigger:hover,
#mainHeader .nav-list > li.has-dropdown:hover > .header-nav-trigger,
#mainHeader .nav-list > li > .header-nav-trigger:focus-visible {
    background: rgba(31, 182, 201, .08);
    color: #1fb6c9;
    outline: none;
}

#mainHeader .nav-list > li > .header-nav-trigger i {
    font-size: 14px;
    opacity: .85;
}

#mainHeader .header-nav .nav-list > li.has-dropdown.is-open > .dropdown-menu {
    display: block !important;
}

#mainHeader.pro-header--stacked .header-nav {
    padding-left: 14px;
}

#mainHeader.pro-header--stacked .header-nav .nav-list {
    margin-left: 8px;
}

#mainHeader.pro-header--stacked .nav-list > li > .header-nav-trigger {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.18), rgba(var(--theme-secondary-rgb), 0.24));
    box-shadow: 0 14px 30px rgba(var(--theme-primary-dark-rgb), 0.14);
    color: var(--theme-primary-dark);
    font-weight: 700;
}

#mainHeader.pro-header--stacked .nav-list > li > .header-nav-trigger:hover,
#mainHeader.pro-header--stacked .nav-list > li.has-dropdown:hover > .header-nav-trigger,
#mainHeader.pro-header--stacked .nav-list > li > .header-nav-trigger:focus-visible {
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.28), rgba(var(--theme-secondary-rgb), 0.34));
    border-color: rgba(var(--theme-primary-rgb), 0.36);
    color: var(--theme-primary-dark);
    box-shadow: 0 16px 34px rgba(var(--theme-primary-dark-rgb), 0.18);
}

#mainHeader .mobile-dropdown-toggle > .mobile-dropdown-trigger {
    align-items: center;
    color: #111827;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: space-between;
    padding: 12px 0;
    text-align: left;
    width: 100%;
}

#mainHeader .mobile-dropdown-toggle.is-open > .mobile-sub-menu {
    display: block;
}

.turfiltre-page .inner_bt > .open_filters {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.tour-detail-2026 .tour-gallery-2027 {
    --tour-gallery-gap: 12px;
}

.tour-detail-2026 .tour-gallery-2027__grid {
    display: grid;
    gap: var(--tour-gallery-gap);
}

.tour-detail-2026 .tour-gallery-2027__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #d9e7f4;
    background: #eaf3fb;
    box-shadow: 0 16px 30px rgba(10, 49, 84, 0.10);
    min-height: 140px;
}

.tour-detail-2026 .tour-gallery-2027__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 35, 57, 0.02) 0%, rgba(8, 35, 57, 0.16) 100%);
    pointer-events: none;
}

.tour-detail-2026 .tour-gallery-2027__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

@media (hover: hover) {
    .tour-detail-2026 .tour-gallery-2027__item:hover img {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.02);
    }
}

.tour-detail-2026 .tour-gallery-2027__more {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 52, 88, 0.78);
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tour-detail-2026 .tour-gallery-2027--default .tour-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 128px;
}

.tour-detail-2026 .tour-gallery-2027--default .tour-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.tour-detail-2026 .tour-gallery-2027--spotlight .tour-gallery-2027__grid {
    grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1fr));
    grid-auto-rows: 158px;
}

.tour-detail-2026 .tour-gallery-2027--spotlight .tour-gallery-2027__item--1 {
    grid-row: span 2;
}

.tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__grid {
    grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: 168px 168px 116px;
}

.tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__item--1 {
    grid-row: 1 / 3;
}

.tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__item--2 {
    grid-column: 2 / 4;
}

.tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__item--6 {
    grid-column: 2 / 4;
}

.tour-detail-2026 .tour-gallery-2027--cinema .tour-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 340px 110px;
}

.tour-detail-2026 .tour-gallery-2027--cinema .tour-gallery-2027__item--1 {
    grid-column: 1 / -1;
}

.tour-detail-2026 .tour-gallery-2027--stacked .tour-gallery-2027__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 142px;
}

.tour-detail-2026 .tour-gallery-2027--stacked .tour-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.tour-detail-2026 .tour-gallery-2027--stacked .tour-gallery-2027__item--4 {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .tour-detail-2026 .tour-gallery-2027--default .tour-gallery-2027__grid,
    .tour-detail-2026 .tour-gallery-2027--spotlight .tour-gallery-2027__grid,
    .tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__grid,
    .tour-detail-2026 .tour-gallery-2027--stacked .tour-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 152px;
        grid-template-rows: none;
    }

    .tour-detail-2026 .tour-gallery-2027--cinema .tour-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 260px 110px 110px;
    }

    .tour-detail-2026 .tour-gallery-2027--default .tour-gallery-2027__item--1,
    .tour-detail-2026 .tour-gallery-2027--spotlight .tour-gallery-2027__item--1,
    .tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__item--1,
    .tour-detail-2026 .tour-gallery-2027--stacked .tour-gallery-2027__item--1 {
        grid-column: 1 / -1;
        grid-row: span 2;
    }

    .tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__item--2,
    .tour-detail-2026 .tour-gallery-2027--editorial .tour-gallery-2027__item--6 {
        grid-column: auto;
    }

    .tour-detail-2026 .tour-gallery-2027--stacked .tour-gallery-2027__item--4 {
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .tour-detail-2026 .tour-gallery-2027 {
        --tour-gallery-gap: 10px;
    }

    .tour-detail-2026 .tour-gallery-2027__grid,
    .tour-detail-2026 .tour-gallery-2027--cinema .tour-gallery-2027__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 186px;
    }

    .tour-detail-2026 .tour-gallery-2027__item--1,
    .tour-detail-2026 .tour-gallery-2027--cinema .tour-gallery-2027__item--1 {
        grid-column: auto;
        grid-row: span 1;
        min-height: 228px;
    }
}

.charter-detail-2026 .charter-gallery-2027 {
    --tour-gallery-gap: 12px;
}

.charter-detail-2026 .charter-gallery-2027__grid {
    display: grid;
    gap: var(--tour-gallery-gap);
}

.charter-detail-2026 .charter-gallery-2027__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #d9e7f4;
    background: #eaf3fb;
    box-shadow: 0 16px 30px rgba(10, 49, 84, 0.10);
    min-height: 140px;
}

.charter-detail-2026 .charter-gallery-2027__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 35, 57, 0.02) 0%, rgba(8, 35, 57, 0.16) 100%);
    pointer-events: none;
}

.charter-detail-2026 .charter-gallery-2027__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

@media (hover: hover) {
    .charter-detail-2026 .charter-gallery-2027__item:hover img {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.02);
    }
}

.charter-detail-2026 .charter-gallery-2027__more {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 52, 88, 0.78);
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.charter-detail-2026 .charter-gallery-2027--default .charter-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 128px;
}

.charter-detail-2026 .charter-gallery-2027--default .charter-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.charter-detail-2026 .charter-gallery-2027--spotlight .charter-gallery-2027__grid {
    grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1fr));
    grid-auto-rows: 158px;
}

.charter-detail-2026 .charter-gallery-2027--spotlight .charter-gallery-2027__item--1 {
    grid-row: span 2;
}

.charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__grid {
    grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: 168px 168px 116px;
}

.charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__item--1 {
    grid-row: 1 / 3;
}

.charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__item--2 {
    grid-column: 2 / 4;
}

.charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__item--6 {
    grid-column: 2 / 4;
}

.charter-detail-2026 .charter-gallery-2027--cinema .charter-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 340px 110px;
}

.charter-detail-2026 .charter-gallery-2027--cinema .charter-gallery-2027__item--1 {
    grid-column: 1 / -1;
}

.charter-detail-2026 .charter-gallery-2027--stacked .charter-gallery-2027__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 142px;
}

.charter-detail-2026 .charter-gallery-2027--stacked .charter-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.charter-detail-2026 .charter-gallery-2027--stacked .charter-gallery-2027__item--4 {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .charter-detail-2026 .charter-gallery-2027--default .charter-gallery-2027__grid,
    .charter-detail-2026 .charter-gallery-2027--spotlight .charter-gallery-2027__grid,
    .charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__grid,
    .charter-detail-2026 .charter-gallery-2027--stacked .charter-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 152px;
        grid-template-rows: none;
    }

    .charter-detail-2026 .charter-gallery-2027--cinema .charter-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 260px 110px 110px;
    }

    .charter-detail-2026 .charter-gallery-2027--default .charter-gallery-2027__item--1,
    .charter-detail-2026 .charter-gallery-2027--spotlight .charter-gallery-2027__item--1,
    .charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__item--1,
    .charter-detail-2026 .charter-gallery-2027--stacked .charter-gallery-2027__item--1 {
        grid-column: 1 / -1;
        grid-row: span 2;
    }

    .charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__item--2,
    .charter-detail-2026 .charter-gallery-2027--editorial .charter-gallery-2027__item--6 {
        grid-column: auto;
    }

    .charter-detail-2026 .charter-gallery-2027--stacked .charter-gallery-2027__item--4 {
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .charter-detail-2026 .charter-gallery-2027 {
        --tour-gallery-gap: 10px;
    }

    .charter-detail-2026 .charter-gallery-2027__grid,
    .charter-detail-2026 .charter-gallery-2027--cinema .charter-gallery-2027__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 186px;
    }

    .charter-detail-2026 .charter-gallery-2027__item--1,
    .charter-detail-2026 .charter-gallery-2027--cinema .charter-gallery-2027__item--1 {
        grid-column: auto;
        grid-row: span 1;
        min-height: 228px;
    }
}

.hotel-detail-2026 .hotel-gallery-2027 {
    --tour-gallery-gap: 12px;
}

.hotel-detail-2026 .hotel-gallery-2027__grid {
    display: grid;
    gap: var(--tour-gallery-gap);
}

.hotel-detail-2026 .hotel-gallery-2027__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #d9e7f4;
    background: #eaf3fb;
    box-shadow: 0 16px 30px rgba(10, 49, 84, 0.10);
    min-height: 140px;
}

.hotel-detail-2026 .hotel-gallery-2027__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 35, 57, 0.02) 0%, rgba(8, 35, 57, 0.16) 100%);
    pointer-events: none;
}

.hotel-detail-2026 .hotel-gallery-2027__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

@media (hover: hover) {
    .hotel-detail-2026 .hotel-gallery-2027__item:hover img {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.02);
    }
}

.hotel-detail-2026 .hotel-gallery-2027__more {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 52, 88, 0.78);
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hotel-detail-2026 .hotel-gallery-2027--default .hotel-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 128px;
}

.hotel-detail-2026 .hotel-gallery-2027--default .hotel-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.hotel-detail-2026 .hotel-gallery-2027--spotlight .hotel-gallery-2027__grid {
    grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1fr));
    grid-auto-rows: 158px;
}

.hotel-detail-2026 .hotel-gallery-2027--spotlight .hotel-gallery-2027__item--1 {
    grid-row: span 2;
}

.hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__grid {
    grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: 168px 168px 116px;
}

.hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__item--1 {
    grid-row: 1 / 3;
}

.hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__item--2 {
    grid-column: 2 / 4;
}

.hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__item--6 {
    grid-column: 2 / 4;
}

.hotel-detail-2026 .hotel-gallery-2027--cinema .hotel-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 340px 110px;
}

.hotel-detail-2026 .hotel-gallery-2027--cinema .hotel-gallery-2027__item--1 {
    grid-column: 1 / -1;
}

.hotel-detail-2026 .hotel-gallery-2027--stacked .hotel-gallery-2027__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 142px;
}

.hotel-detail-2026 .hotel-gallery-2027--stacked .hotel-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.hotel-detail-2026 .hotel-gallery-2027--stacked .hotel-gallery-2027__item--4 {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .hotel-detail-2026 .hotel-gallery-2027--default .hotel-gallery-2027__grid,
    .hotel-detail-2026 .hotel-gallery-2027--spotlight .hotel-gallery-2027__grid,
    .hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__grid,
    .hotel-detail-2026 .hotel-gallery-2027--stacked .hotel-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 152px;
        grid-template-rows: none;
    }

    .hotel-detail-2026 .hotel-gallery-2027--cinema .hotel-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 260px 110px 110px;
    }

    .hotel-detail-2026 .hotel-gallery-2027--default .hotel-gallery-2027__item--1,
    .hotel-detail-2026 .hotel-gallery-2027--spotlight .hotel-gallery-2027__item--1,
    .hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__item--1,
    .hotel-detail-2026 .hotel-gallery-2027--stacked .hotel-gallery-2027__item--1 {
        grid-column: 1 / -1;
        grid-row: span 2;
    }

    .hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__item--2,
    .hotel-detail-2026 .hotel-gallery-2027--editorial .hotel-gallery-2027__item--6 {
        grid-column: auto;
    }

    .hotel-detail-2026 .hotel-gallery-2027--stacked .hotel-gallery-2027__item--4 {
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .hotel-detail-2026 .hotel-gallery-2027 {
        --tour-gallery-gap: 10px;
    }

    .hotel-detail-2026 .hotel-gallery-2027__grid,
    .hotel-detail-2026 .hotel-gallery-2027--cinema .hotel-gallery-2027__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 186px;
    }

    .hotel-detail-2026 .hotel-gallery-2027__item--1,
    .hotel-detail-2026 .hotel-gallery-2027--cinema .hotel-gallery-2027__item--1 {
        grid-column: auto;
        grid-row: span 1;
        min-height: 228px;
    }
}

.villa-detail-2026 .villa-gallery-2027 {
    --tour-gallery-gap: 12px;
}

.villa-detail-2026 .villa-gallery-2027__grid {
    display: grid;
    gap: var(--tour-gallery-gap);
}

.villa-detail-2026 .villa-gallery-2027__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #d9e7f4;
    background: #eaf3fb;
    box-shadow: 0 16px 30px rgba(10, 49, 84, 0.10);
    min-height: 140px;
}

.villa-detail-2026 .villa-gallery-2027__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 35, 57, 0.02) 0%, rgba(8, 35, 57, 0.16) 100%);
    pointer-events: none;
}

.villa-detail-2026 .villa-gallery-2027__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

@media (hover: hover) {
    .villa-detail-2026 .villa-gallery-2027__item:hover img {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.02);
    }
}

.villa-detail-2026 .villa-gallery-2027__more {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 52, 88, 0.78);
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.villa-detail-2026 .villa-gallery-2027--default .villa-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 128px;
}

.villa-detail-2026 .villa-gallery-2027--default .villa-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.villa-detail-2026 .villa-gallery-2027--spotlight .villa-gallery-2027__grid {
    grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1fr));
    grid-auto-rows: 158px;
}

.villa-detail-2026 .villa-gallery-2027--spotlight .villa-gallery-2027__item--1 {
    grid-row: span 2;
}

.villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__grid {
    grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: 168px 168px 116px;
}

.villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__item--1 {
    grid-row: 1 / 3;
}

.villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__item--2,
.villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__item--6 {
    grid-column: 2 / 4;
}

.villa-detail-2026 .villa-gallery-2027--cinema .villa-gallery-2027__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 340px 110px;
}

.villa-detail-2026 .villa-gallery-2027--cinema .villa-gallery-2027__item--1 {
    grid-column: 1 / -1;
}

.villa-detail-2026 .villa-gallery-2027--stacked .villa-gallery-2027__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 142px;
}

.villa-detail-2026 .villa-gallery-2027--stacked .villa-gallery-2027__item--1 {
    grid-column: span 2;
    grid-row: span 2;
}

.villa-detail-2026 .villa-gallery-2027--stacked .villa-gallery-2027__item--4 {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .villa-detail-2026 .villa-gallery-2027--default .villa-gallery-2027__grid,
    .villa-detail-2026 .villa-gallery-2027--spotlight .villa-gallery-2027__grid,
    .villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__grid,
    .villa-detail-2026 .villa-gallery-2027--stacked .villa-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 152px;
        grid-template-rows: none;
    }

    .villa-detail-2026 .villa-gallery-2027--cinema .villa-gallery-2027__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 260px 110px 110px;
    }

    .villa-detail-2026 .villa-gallery-2027--default .villa-gallery-2027__item--1,
    .villa-detail-2026 .villa-gallery-2027--spotlight .villa-gallery-2027__item--1,
    .villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__item--1,
    .villa-detail-2026 .villa-gallery-2027--stacked .villa-gallery-2027__item--1 {
        grid-column: 1 / -1;
        grid-row: span 2;
    }

    .villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__item--2,
    .villa-detail-2026 .villa-gallery-2027--editorial .villa-gallery-2027__item--6 {
        grid-column: auto;
    }

    .villa-detail-2026 .villa-gallery-2027--stacked .villa-gallery-2027__item--4 {
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .villa-detail-2026 .villa-gallery-2027 {
        --tour-gallery-gap: 10px;
    }

    .villa-detail-2026 .villa-gallery-2027__grid,
    .villa-detail-2026 .villa-gallery-2027--cinema .villa-gallery-2027__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 186px;
    }

    .villa-detail-2026 .villa-gallery-2027__item--1,
    .villa-detail-2026 .villa-gallery-2027--cinema .villa-gallery-2027__item--1 {
        grid-column: auto;
        grid-row: span 1;
        min-height: 228px;
    }
}

.tour-detail-2026--editorial {
    background: linear-gradient(180deg, #f9fcff 0%, #eef5fb 100%);
}

.tour-detail-2026--editorial .vd26-hero {
    color: #173a5c;
    border-color: #dbe8f5;
    background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 58%, #eef7ff 100%);
    box-shadow: 0 18px 34px rgba(12, 48, 82, 0.10);
}

.tour-detail-2026--editorial .vd26-chip {
    color: #19466d;
    border-color: #d2e3f2;
    background: #ffffff;
}

.tour-detail-2026--editorial .vd26-subtitle {
    color: #56748f;
}

.tour-detail-2026--editorial .vd26-meta-item {
    color: #234c70;
    border-color: #d8e6f4;
    background: #f8fbff;
}

.tour-detail-2026--editorial .vd26-grid > .vd26-main-col {
    flex: 0 0 70%;
    max-width: 70%;
}

.tour-detail-2026--editorial .vd26-grid > .vd26-side-col {
    flex: 0 0 30%;
    max-width: 30%;
}

.tour-detail-2026--editorial .vd26-left,
.tour-detail-2026--editorial .vd26-right,
.tour-detail-2026--editorial .vd26-sticky {
    gap: 16px;
}

.tour-detail-2026--split {
    background: linear-gradient(180deg, #f6fbff 0%, #edf5fc 100%);
}

.tour-detail-2026--split .vd26-grid > .vd26-main-col {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.tour-detail-2026--split .vd26-grid > .vd26-side-col {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.tour-detail-2026--split .vd26-hero {
    padding: 16px 18px;
    margin-bottom: 12px;
}

.tour-detail-2026--split .vd26-card,
.tour-detail-2026--split .tour-details-sidebar,
.tour-detail-2026--split .booking-card,
.tour-detail-2026--split .ts-sidecard,
.tour-detail-2026--split .ozel-faq-wrap,
.tour-detail-2026--split .ts-inc-box {
    border-radius: 14px;
}

.tour-detail-2026--split .vd26-sticky {
    gap: 10px;
}

.tour-detail-2026--minimal {
    background: #f7fafc;
}

.tour-detail-2026--minimal .vd26-hero {
    background: #ffffff;
    color: #173a5c;
    border-color: #dde8f3;
    box-shadow: 0 10px 20px rgba(12, 48, 82, 0.06);
}

.tour-detail-2026--minimal .vd26-chip {
    color: #244d70;
    border-color: #d8e4f0;
    background: #f8fbff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.tour-detail-2026--minimal .vd26-subtitle {
    color: #60798f;
}

.tour-detail-2026--minimal .vd26-meta-item {
    color: #2a5477;
    border-color: #dbe7f2;
    background: #fbfdff;
}

.tour-detail-2026--minimal .js-vd26-section {
    transition: none;
}

.tour-detail-2026--minimal .js-vd26-section::before {
    display: none;
}

.tour-detail-2026--minimal .js-vd26-section:hover {
    transform: none;
    filter: none;
}

.tour-detail-2026--minimal .vd26-card,
.tour-detail-2026--minimal .tour-details-sidebar,
.tour-detail-2026--minimal .booking-card,
.tour-detail-2026--minimal .ts-sidecard,
.tour-detail-2026--minimal .ozel-faq-wrap,
.tour-detail-2026--minimal .ts-inc-box {
    box-shadow: 0 8px 18px rgba(12, 48, 82, 0.05);
}

.tour-detail-2026--immersive {
    background:
        radial-gradient(900px 380px at 0% -10%, rgba(12, 94, 159, 0.14), transparent 68%),
        radial-gradient(860px 360px at 100% 0%, rgba(15, 154, 115, 0.12), transparent 70%),
        linear-gradient(180deg, #eef6fd 0%, #e8f2fb 100%);
}

.tour-detail-2026--immersive .vd26-hero {
    padding: 22px;
    border-color: rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(120% 160% at 100% -16%, rgba(255, 255, 255, 0.14), transparent 58%),
        linear-gradient(135deg, #083f69 0%, #0f70c5 56%, #0f9e88 100%);
    box-shadow: 0 28px 46px rgba(9, 44, 77, 0.24);
}

.tour-detail-2026--immersive .vd26-grid > .vd26-main-col {
    flex: 0 0 62%;
    max-width: 62%;
}

.tour-detail-2026--immersive .vd26-grid > .vd26-side-col {
    flex: 0 0 38%;
    max-width: 38%;
}

.tour-detail-2026--immersive .vd26-left,
.tour-detail-2026--immersive .vd26-right {
    gap: 14px;
}

.tour-detail-2026--immersive .vd26-card,
.tour-detail-2026--immersive .tour-details-sidebar,
.tour-detail-2026--immersive .booking-card,
.tour-detail-2026--immersive .ts-sidecard,
.tour-detail-2026--immersive .ozel-faq-wrap,
.tour-detail-2026--immersive .ts-inc-box {
    box-shadow: 0 20px 34px rgba(10, 49, 84, 0.12);
}

@media (max-width: 1199px) {
    .tour-detail-2026--editorial .vd26-grid > .vd26-main-col,
    .tour-detail-2026--split .vd26-grid > .vd26-main-col,
    .tour-detail-2026--immersive .vd26-grid > .vd26-main-col,
    .tour-detail-2026--editorial .vd26-grid > .vd26-side-col,
    .tour-detail-2026--split .vd26-grid > .vd26-side-col,
    .tour-detail-2026--immersive .vd26-grid > .vd26-side-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.tour-detail-2026 .vd26-layout--stacked .vd26-stack {
    display: grid;
    gap: 14px;
}

.charter-detail-2026 .vd26-layout--stacked .vd26-stack {
    display: grid;
    gap: 14px;
}

.tour-detail-2026 .vd26-layout--hero-panel .vd26-rail {
    margin-bottom: 12px;
}

.charter-detail-2026 .vd26-layout--hero-panel .vd26-rail {
    margin-bottom: 12px;
}

.tour-detail-2026 .vd26-layout--hero-panel .vd26-side-stack {
    display: grid;
    gap: 12px;
}

.charter-detail-2026 .vd26-layout--hero-panel .vd26-side-stack {
    display: grid;
    gap: 12px;
}

.tour-detail-2026 .vd26-layout--gallery-focus .vd26-gallery-stage {
    margin-bottom: 14px;
}

.charter-detail-2026 .vd26-layout--gallery-focus .vd26-gallery-stage {
    margin-bottom: 14px;
}

.tour-detail-2026 .vd26-layout--gallery-focus .vd26-side-col .vd26-sticky {
    top: 14px;
}

.charter-detail-2026 .vd26-layout--gallery-focus .vd26-side-col .vd26-sticky {
    top: 14px;
}

.tour-detail-2026 .vd26-layout--left-rail .vd26-grid {
    flex-direction: row-reverse;
}

.charter-detail-2026 .vd26-layout--left-rail .vd26-grid {
    flex-direction: row-reverse;
}

.tour-detail-2026 .vd26-layout--left-rail .vd26-side-col .vd26-sticky {
    top: 14px;
}

.charter-detail-2026 .vd26-layout--left-rail .vd26-side-col .vd26-sticky {
    top: 14px;
}

.tour-detail-2026 .vd26-layout--left-rail .vd26-left {
    gap: 14px;
}

.charter-detail-2026 .vd26-layout--left-rail .vd26-left {
    gap: 14px;
}

.tour-detail-2026--stacked .vd26-hero {
    margin-bottom: 16px;
}

.charter-detail-2026--stacked .vd26-hero {
    margin-bottom: 16px;
}

.tour-detail-2026--stacked .vd26-card,
.tour-detail-2026--stacked .tour-details-sidebar,
.tour-detail-2026--stacked .booking-card,
.tour-detail-2026--stacked .ts-sidecard,
.tour-detail-2026--stacked .ozel-faq-wrap,
.tour-detail-2026--stacked .ts-inc-box {
    border-radius: 18px;
}

.charter-detail-2026--stacked .vd26-card,
.charter-detail-2026--stacked .booking-card,
.charter-detail-2026--stacked .ts-inc-box,
.charter-detail-2026--stacked .ozel-faq-wrap {
    border-radius: 18px;
}

.tour-detail-2026--hero_panel .vd26-grid > .vd26-main-col {
    flex: 0 0 63%;
    max-width: 63%;
}

.charter-detail-2026--hero_panel .vd26-grid > .vd26-main-col {
    flex: 0 0 63%;
    max-width: 63%;
}

.tour-detail-2026--hero_panel .vd26-grid > .vd26-side-col {
    flex: 0 0 37%;
    max-width: 37%;
}

.charter-detail-2026--hero_panel .vd26-grid > .vd26-side-col {
    flex: 0 0 37%;
    max-width: 37%;
}

.tour-detail-2026--hero_panel .vd26-right {
    gap: 12px;
}

.charter-detail-2026--hero_panel .vd26-right {
    gap: 12px;
}

.tour-detail-2026--gallery_focus .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.charter-detail-2026--gallery_focus .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.tour-detail-2026--gallery_focus .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.charter-detail-2026--gallery_focus .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.tour-detail-2026--gallery_focus .vd26-hero {
    margin-bottom: 12px;
}

.charter-detail-2026--gallery_focus .vd26-hero {
    margin-bottom: 12px;
}

.tour-detail-2026--left_rail .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.charter-detail-2026--left_rail .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.tour-detail-2026--left_rail .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.charter-detail-2026--left_rail .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.hotel-detail-2026 .vd26-layout--stacked .vd26-stack {
    display: grid;
    gap: 14px;
}

.hotel-detail-2026 .vd26-layout--hero-panel .vd26-rail {
    margin-bottom: 12px;
}

.hotel-detail-2026 .vd26-layout--hero-panel .vd26-side-stack {
    display: grid;
    gap: 12px;
}

.hotel-detail-2026 .vd26-layout--gallery-focus .vd26-gallery-stage {
    margin-bottom: 14px;
}

.hotel-detail-2026 .vd26-layout--gallery-focus .vd26-side-col .vd26-sticky {
    top: 14px;
}

.hotel-detail-2026 .vd26-layout--left-rail .vd26-grid {
    flex-direction: row-reverse;
}

.hotel-detail-2026 .vd26-layout--left-rail .vd26-side-col .vd26-sticky {
    top: 14px;
}

.hotel-detail-2026 .vd26-layout--left-rail .vd26-left {
    gap: 14px;
}

.hotel-detail-2026--stacked .vd26-hero {
    margin-bottom: 16px;
}

.hotel-detail-2026--stacked .vd26-card,
.hotel-detail-2026--stacked .booking-card,
.hotel-detail-2026--stacked .ts-inc-box,
.hotel-detail-2026--stacked .ozel-faq-wrap {
    border-radius: 18px;
}

.hotel-detail-2026--hero_panel .vd26-grid > .vd26-main-col {
    flex: 0 0 63%;
    max-width: 63%;
}

.hotel-detail-2026--hero_panel .vd26-grid > .vd26-side-col {
    flex: 0 0 37%;
    max-width: 37%;
}

.hotel-detail-2026--hero_panel .vd26-right {
    gap: 12px;
}

.hotel-detail-2026--gallery_focus .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.hotel-detail-2026--gallery_focus .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.hotel-detail-2026--gallery_focus .vd26-hero {
    margin-bottom: 12px;
}

.hotel-detail-2026--left_rail .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.hotel-detail-2026--left_rail .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.villa-detail-2026 .vd26-layout--stacked .vd26-stack {
    display: grid;
    gap: 14px;
}

.villa-detail-2026 .vd26-layout--hero-panel .vd26-rail {
    margin-bottom: 12px;
}

.villa-detail-2026 .vd26-layout--hero-panel .vd26-side-stack {
    display: grid;
    gap: 12px;
}

.villa-detail-2026 .vd26-layout--gallery-focus .vd26-gallery-stage {
    margin-bottom: 14px;
}

.villa-detail-2026 .vd26-layout--gallery-focus .vd26-side-col .vd26-sticky {
    top: 14px;
}

.villa-detail-2026 .vd26-layout--left-rail .vd26-grid {
    flex-direction: row-reverse;
}

.villa-detail-2026 .vd26-layout--left-rail .vd26-side-col .vd26-sticky {
    top: 14px;
}

.villa-detail-2026 .vd26-layout--left-rail .vd26-left {
    gap: 14px;
}

.villa-detail-2026--stacked .vd26-hero {
    margin-bottom: 16px;
}

.villa-detail-2026--stacked .vd26-card,
.villa-detail-2026--stacked .ts-inc-box,
.villa-detail-2026--stacked .ozel-faq-wrap,
.villa-detail-2026--stacked .rezsec,
.villa-detail-2026--stacked .sideinfo {
    border-radius: 18px;
}

.villa-detail-2026--hero_panel .vd26-grid > .vd26-main-col {
    flex: 0 0 63%;
    max-width: 63%;
}

.villa-detail-2026--hero_panel .vd26-grid > .vd26-side-col {
    flex: 0 0 37%;
    max-width: 37%;
}

.villa-detail-2026--hero_panel .vd26-right {
    gap: 12px;
}

.villa-detail-2026--gallery_focus .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

.villa-detail-2026--gallery_focus .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.villa-detail-2026--gallery_focus .vd26-hero {
    margin-bottom: 12px;
}

.villa-detail-2026--left_rail .vd26-grid > .vd26-side-col {
    flex: 0 0 32%;
    max-width: 32%;
}

.villa-detail-2026--left_rail .vd26-grid > .vd26-main-col {
    flex: 0 0 68%;
    max-width: 68%;
}

@media (max-width: 1199px) {
    .tour-detail-2026--hero_panel .vd26-grid > .vd26-main-col,
    .tour-detail-2026--hero_panel .vd26-grid > .vd26-side-col,
    .tour-detail-2026--gallery_focus .vd26-grid > .vd26-main-col,
    .tour-detail-2026--gallery_focus .vd26-grid > .vd26-side-col,
    .tour-detail-2026--left_rail .vd26-grid > .vd26-main-col,
    .tour-detail-2026--left_rail .vd26-grid > .vd26-side-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tour-detail-2026 .vd26-layout--left-rail .vd26-grid {
        flex-direction: row;
    }

    .charter-detail-2026--hero_panel .vd26-grid > .vd26-main-col,
    .charter-detail-2026--hero_panel .vd26-grid > .vd26-side-col,
    .charter-detail-2026--gallery_focus .vd26-grid > .vd26-main-col,
    .charter-detail-2026--gallery_focus .vd26-grid > .vd26-side-col,
    .charter-detail-2026--left_rail .vd26-grid > .vd26-main-col,
    .charter-detail-2026--left_rail .vd26-grid > .vd26-side-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .charter-detail-2026 .vd26-layout--left-rail .vd26-grid {
        flex-direction: row;
    }

    .hotel-detail-2026--hero_panel .vd26-grid > .vd26-main-col,
    .hotel-detail-2026--hero_panel .vd26-grid > .vd26-side-col,
    .hotel-detail-2026--gallery_focus .vd26-grid > .vd26-main-col,
    .hotel-detail-2026--gallery_focus .vd26-grid > .vd26-side-col,
    .hotel-detail-2026--left_rail .vd26-grid > .vd26-main-col,
    .hotel-detail-2026--left_rail .vd26-grid > .vd26-side-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hotel-detail-2026 .vd26-layout--left-rail .vd26-grid {
        flex-direction: row;
    }

    .villa-detail-2026--hero_panel .vd26-grid > .vd26-main-col,
    .villa-detail-2026--hero_panel .vd26-grid > .vd26-side-col,
    .villa-detail-2026--gallery_focus .vd26-grid > .vd26-main-col,
    .villa-detail-2026--gallery_focus .vd26-grid > .vd26-side-col,
    .villa-detail-2026--left_rail .vd26-grid > .vd26-main-col,
    .villa-detail-2026--left_rail .vd26-grid > .vd26-side-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .villa-detail-2026 .vd26-layout--left-rail .vd26-grid {
        flex-direction: row;
    }
}

.transfer-results-2026 .ts2026-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d9e7f5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    padding: 10px;
    margin: 0 0 12px;
    box-shadow: 0 10px 20px rgba(13, 56, 96, 0.08);
}

.transfer-results-2026 .ts2026-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.transfer-results-2026 .ts2026-filter-field {
    position: relative;
    display: flex;
    align-items: center;
}

.transfer-results-2026 .ts2026-filter-field i {
    position: absolute;
    left: 12px;
    color: #5f7f9c;
    font-size: 0.78rem;
    pointer-events: none;
}

.transfer-results-2026 .ts2026-filter-field input,
.transfer-results-2026 .ts2026-filter-field select {
    min-width: 210px;
    min-height: 40px;
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #fff;
    color: #224b70;
    padding: 0 12px 0 34px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(11, 50, 84, 0.05);
}

.transfer-results-2026 .ts2026-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #fff;
    color: #234c71;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.transfer-results-2026 .ts2026-filter-check input {
    margin: 0;
}

.transfer-results-2026 .ts2026-filter-reset {
    border: 1px solid #d4e3f2;
    border-radius: 11px;
    background: #eef5fc;
    color: #285174;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
}

.transfer-results-2026 .ts2026-filter-reset:hover {
    background: #e5f0fb;
    border-color: #c4d8ec;
}

.transfer-results-2026 .ts2026-filter-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0f4670;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.transfer-results-2026--editorial .results-hero,
.transfer-results-2026--editorial .ts2026-filter-bar {
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,249,255,.96));
}

.transfer-results-2026--editorial .transfer-card-modern > .row {
    display: grid;
    grid-template-columns: minmax(280px, 34%) minmax(0, 1fr) minmax(250px, 28%);
    align-items: stretch;
}

.transfer-results-2026--editorial .transfer-card-modern .ts-card__content-col {
    padding: 18px 20px;
}

.transfer-results-2026--editorial .transfer-card-modern .ts-card__action-col {
    padding: 18px;
    border-left: 1px solid #e4edf5;
}

.transfer-results-2026--compact .transfer2026-result-item {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 16px;
}

.transfer-results-2026--compact .transfer-card-modern {
    height: auto;
}

.transfer-results-2026--compact .transfer-card-modern > .row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "image"
        "content"
        "action";
    height: auto;
}

.transfer-results-2026--compact .transfer-card-modern > .row > .ts-card__image-col,
.transfer-results-2026--compact .transfer-card-modern > .row > .ts-card__content-col,
.transfer-results-2026--compact .transfer-card-modern > .row > .ts-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.transfer-results-2026--compact .transfer-card-modern .ts-card__image-col {
    grid-area: image;
}
.transfer-results-2026--compact .transfer-card-modern .ts-card__content-col {
    grid-area: content;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 12px 13px 10px;
}

.transfer-results-2026--compact .transfer-card-modern .ts-card__action-col,
.transfer-results-2026--compact .transfer-card-modern .ts-card__action-col--compact {
    grid-area: action;
    padding: 10px 13px 13px;
    min-height: 0 !important;
    border-left: 0 !important;
}

.transfer-results-2026--compact .transfer-card-modern .ts-card__action-col--compact {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block;
    padding-left: 13px !important;
    padding-right: 13px !important;
}

.transfer-results-2026--compact .transfer-card-modern .ts-card__details {
    display: none !important;
    grid-area: unset;
}
.transfer-results-2026--compact .transfer-card-modern .ts-card__form {
    height: auto !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}
.transfer-results-2026--compact .transfer-card-modern .transfer-action,
.transfer-results-2026--compact .transfer-card-modern .ts-price-box,
.transfer-results-2026--compact .transfer-card-modern .transfer-quick-meta,
.transfer-results-2026--compact .transfer-card-modern .ts-card__buttons,
.transfer-results-2026--compact .transfer-card-modern .ts-card__buttons form {
    width: 100% !important;
    max-width: 100% !important;
}
.transfer-results-2026--compact .transfer-card-modern .ts-card__content-col,
.transfer-results-2026--compact .transfer-card-modern .ts-card__action-col,
.transfer-results-2026--compact .transfer-card-modern .ts-card__action-col--compact {
    align-self: start;
}
.transfer-results-2026--compact .transfer-card-modern .ts-card__image-wrap { min-height: 170px; }
.transfer-results-2026--compact .transfer-card-modern .ts-card__title h2 {
    font-size: 18px;
    line-height: 1.16;
}

.transfer-results-2026--compact .transfer-card-modern .ts-card__meta-grid {
    grid-template-columns: 1fr;
    gap: 7px;
}

.transfer-results-2026--compact .transfer-card-modern .ts-meta-item {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.2;
}

.transfer-results-2026--compact .transfer-card-modern .ts-card__buttons {
    flex-direction: row;
    gap: 8px;
    margin-top: 10px;
}

.transfer-results-2026--compact .transfer-card-modern .ts-btn {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
}

.transfer-results-2026--compact .transfer-card-modern .ts-price-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
    flex-wrap: nowrap;
}

.transfer-results-2026--compact .transfer-card-modern .ts-price-box__label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    font-size: 10px;
    flex: 0 0 auto;
}

.transfer-results-2026--compact .transfer-card-modern .ts-price-box__value {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 0;
    margin-left: auto;
    white-space: nowrap;
    flex: 0 0 auto;
}

.transfer-results-2026--compact .transfer-card-modern .ts-price-box__amount {
    display: inline-block;
    white-space: nowrap;
    font-size: 20px;
}

.transfer-results-2026--compact .transfer-card-modern .transfer-quick-meta {
    margin-top: 8px;
}

.transfer-results-2026--panel .transfer-card-modern > .row {
    display: grid;
    grid-template-columns: minmax(250px, 30%) minmax(0, 1fr);
    grid-template-areas:
        "image content"
        "image action"
        "details details";
}

.transfer-results-2026--panel .transfer-card-modern > .row > .ts-card__image-col,
.transfer-results-2026--panel .transfer-card-modern > .row > .ts-card__content-col,
.transfer-results-2026--panel .transfer-card-modern > .row > .ts-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.transfer-results-2026--panel .transfer-card-modern .ts-card__image-col { grid-area: image; }
.transfer-results-2026--panel .transfer-card-modern .ts-card__content-col {
    grid-area: content;
    border-left: 1px solid #e4edf5;
    border-right: none;
    border-bottom: 1px solid #e4edf5;
    padding: 18px 20px 14px;
}

.transfer-results-2026--panel .transfer-card-modern .ts-card__action-col {
    grid-area: action;
    padding: 14px 20px 18px;
}

.transfer-results-2026--panel .transfer-card-modern .ts-card__details { grid-area: details; }
.transfer-results-2026--panel .transfer-card-modern .ts-card__image-wrap { min-height: 100%; }
.transfer-results-2026--panel .transfer-card-modern .ts-card__form { gap: 10px; }
.transfer-results-2026--panel .transfer-card-modern .ts-card__buttons { flex-direction: row; }

@media (max-width: 1199.98px) {
    .transfer-results-2026--compact .transfer2026-result-item {
        width: 50%;
        max-width: 50%;
        flex-basis: 50%;
    }
}

@media (max-width: 991.98px) {
    .transfer-results-2026--editorial .transfer-card-modern > .row,
    .transfer-results-2026--panel .transfer-card-modern > .row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "action"
            "details";
    }

    .transfer-results-2026--editorial .transfer-card-modern .ts-card__action-col,
    .transfer-results-2026--panel .transfer-card-modern .ts-card__action-col,
    .transfer-results-2026--panel .transfer-card-modern .ts-card__content-col {
        border-left: none;
    }
}

@media (max-width: 767.98px) {
    .transfer-results-2026 .ts2026-filter-bar {
        padding: 8px;
    }

    .transfer-results-2026 .ts2026-filter-group {
        width: 100%;
    }

    .transfer-results-2026 .ts2026-filter-field,
    .transfer-results-2026 .ts2026-filter-check,
    .transfer-results-2026 .ts2026-filter-reset {
        width: 100%;
    }

    .transfer-results-2026 .ts2026-filter-field input,
    .transfer-results-2026 .ts2026-filter-field select {
        width: 100%;
        min-width: 0;
    }

    .transfer-results-2026--compact .transfer2026-result-item {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }
}

.villa-result-2026--editorial .villa-result-hero,
.villa-result-2026--editorial .vrs-filter-bar {
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(15, 51, 86, 0.10);
}

.villa-result-2026--editorial .vrs-card {
    border-radius: 22px !important;
    box-shadow: 0 18px 38px rgba(15, 51, 86, 0.12) !important;
}

.villa-result-2026--editorial .vrs-card__content-col {
    padding: 22px 20px;
}

.villa-result-2026--editorial .vrs-card__action-col {
    padding: 20px 18px;
    border-left: 1px solid #e6eef6;
}

.villa-result-2026--editorial .vrs-card .vrs-card__title {
    margin-bottom: 18px;
    padding: 0 0 14px;
}

.villa-result-2026--editorial .vrs-card .vrs-card__title::before {
    display: none;
}

.villa-result-2026--editorial .vrs-card .vrs-card__title::after {
    left: 0;
    width: 96px;
    height: 3px;
    background: linear-gradient(90deg, #0f6db6 0%, #6bc8ff 100%);
}

.villa-result-2026--editorial .vrs-card .vrs-card__title h2 {
    font-size: 1.36rem;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.villa-result-2026--compact .vrs-result-item {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 16px;
}

.villa-result-2026--compact .vrs-card {
    height: 100%;
}

.villa-result-2026--compact .vrs-card > .row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "image"
        "content"
        "action";
    height: auto;
}

.villa-result-2026--compact .vrs-card > .row > .vrs-card__image-col,
.villa-result-2026--compact .vrs-card > .row > .vrs-card__content-col,
.villa-result-2026--compact .vrs-card > .row > .vrs-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.villa-result-2026--compact .vrs-card .vrs-card__image-col {
    grid-area: image;
}

.villa-result-2026--compact .vrs-card .vrs-card__content-col {
    grid-area: content;
    padding: 14px 14px 12px;
}

.villa-result-2026--compact .vrs-card .vrs-card__action-col {
    grid-area: action;
    padding: 12px 14px 14px;
    border-top: 1px solid #eaf1f8;
}

.villa-result-2026--compact .vrs-card .vrs-card__details {
    display: none !important;
}

.villa-result-2026--compact .vrs-card .vrs-card__image-wrap,
.villa-result-2026--compact .vrs-card .vrs-card__image {
    min-height: 210px;
}

.villa-result-2026--compact .vrs-card .vrs-card__title {
    margin-bottom: 10px;
    padding: 0 0 10px 0;
}

.villa-result-2026--compact .vrs-card .vrs-card__title::before {
    top: auto;
    bottom: 11px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f6db6 0%, #2fc0ff 100%);
    box-shadow: none;
}

.villa-result-2026--compact .vrs-card .vrs-card__title::after {
    display: none;
}

.villa-result-2026--compact .vrs-card .vrs-card__title h2 {
    font-size: 18px;
    line-height: 1.2;
    padding-left: 0;
}

.villa-result-2026--compact .vrs-card .vrs-card__meta-grid {
    grid-template-columns: 1fr;
    gap: 8px;
}

.villa-result-2026--compact .vrs-card .vrs-card__buttons {
    flex-direction: row;
    gap: 8px;
}

.villa-result-2026--compact .vrs-card .vrs-btn {
    min-height: 40px;
    font-size: 12px;
}

.villa-result-2026--panel .vrs-card > .row {
    display: grid;
    grid-template-columns: minmax(260px, 32%) minmax(0, 1fr);
    grid-template-areas:
        "image content"
        "image action"
        "details details";
}

.villa-result-2026--panel .vrs-card > .row > .vrs-card__image-col,
.villa-result-2026--panel .vrs-card > .row > .vrs-card__content-col,
.villa-result-2026--panel .vrs-card > .row > .vrs-card__action-col {
    width: auto;
    max-width: none;
    flex: initial;
}

.villa-result-2026--panel .vrs-card .vrs-card__image-col {
    grid-area: image;
}

.villa-result-2026--panel .vrs-card .vrs-card__content-col {
    grid-area: content;
    padding: 18px 18px 12px;
}

.villa-result-2026--panel .vrs-card .vrs-card__action-col {
    grid-area: action;
    padding: 12px 18px 18px;
    border-left: 1px solid #e6eef6;
}

.villa-result-2026--panel .vrs-card .vrs-card__title {
    margin-bottom: 16px;
    padding: 0 0 12px 18px;
}

.villa-result-2026--panel .vrs-card .vrs-card__title::before {
    top: 1px;
    width: 6px;
    height: calc(100% - 14px);
    border-radius: 10px;
    background: linear-gradient(180deg, #123f66 0%, #2fc0ff 100%);
}

.villa-result-2026--panel .vrs-card .vrs-card__title::after {
    left: 18px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(18, 63, 102, 0.95) 0%, rgba(47, 192, 255, 0.18) 100%);
}

.villa-result-2026--panel .vrs-card .vrs-card__title h2 {
    font-size: 1.24rem;
    line-height: 1.24;
    text-transform: none;
}

.villa-result-2026--panel .vrs-card .vrs-card__details {
    grid-area: details;
}

@media (max-width: 991.98px) {
    .villa-result-2026--editorial .vrs-card__action-col,
    .villa-result-2026--panel .vrs-card .vrs-card__action-col {
        border-left: 0;
        border-top: 1px solid #eaf1f8;
    }

    .villa-result-2026--panel .vrs-card > .row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "action"
            "details";
    }
}

@media (max-width: 767.98px) {
    .villa-result-2026--compact .vrs-result-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .villa-result-2026--compact .vrs-result-item {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }
}
