/* =====================================================
   Tour Search Form - Passenger (Guests) box mirror of cruise
   ===================================================== */
[data-tour-search-form] {
    --tour-dropdown-bg: var(--color-white);
    --tour-dropdown-border: #dee2e6;
    --tour-dropdown-divider: #f0f0f0;
    --tour-dropdown-hover-bg: #f8f9fa;
    --tour-dropdown-radius: 12px;
    --tour-dropdown-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
    --tour-dropdown-font-family: var(--body-font);
    --tour-dropdown-font-style: var(--body-font-style, normal);
    --tour-dropdown-font-weight: var(--body-font-weight, 400);
    --tour-dropdown-heading-style: var(--heading-font-style, normal);
    --tour-dropdown-heading-weight: var(--heading-font-weight, 600);
    --tour-dropdown-text-color: var(--color-dark);
    --tour-dropdown-muted-color: var(--body-text-color);
}

[data-tour-search-form] .cruise-passenger-box {
    position: relative;
}

[data-tour-search-form] .cruise-passenger-box .passenger-total {
    font-family: var(--tour-dropdown-font-family);
    font-style: var(--tour-dropdown-heading-style);
    font-weight: var(--tour-dropdown-heading-weight);
}

[data-tour-search-form] .cruise-passenger-dropdown.dropdown-menu {
    position: absolute;
    inset: calc(100% + 2px) 0 auto 0 !important;
    width: 100%;
    min-width: 100%;
    max-width: none;
    margin-top: 0 !important;
    padding: 10px 18px;
    background: var(--tour-dropdown-bg);
    border: 1px solid var(--tour-dropdown-border);
    border-radius: var(--tour-dropdown-radius);
    box-shadow: var(--tour-dropdown-shadow);
    transform: none !important;
    z-index: 1200;
}

[data-tour-search-form] .cruise-passenger-dropdown.dropdown-menu[data-bs-popper] {
    inset: calc(100% + 2px) 0 auto 0 !important;
    transform: none !important;
}

[data-tour-search-form] .cruise-passenger-dropdown .dropdown-item {
    padding: 0;
}

[data-tour-search-form] .cruise-passenger-dropdown .dropdown-item:hover,
[data-tour-search-form] .cruise-passenger-dropdown .dropdown-item:focus,
[data-tour-search-form] .cruise-passenger-dropdown .dropdown-item:active {
    background: transparent;
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-item {
    padding: 14px 4px;
    border-bottom: 1px solid var(--tour-dropdown-divider);
}

[data-tour-search-form] .cruise-passenger-dropdown .dropdown-item:last-child .passenger-item {
    border-bottom: none;
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-info h6 {
    margin-bottom: 2px;
    font-family: var(--tour-dropdown-font-family);
    font-style: var(--tour-dropdown-heading-style);
    font-weight: var(--tour-dropdown-heading-weight);
    font-size: 14px;
    line-height: 1.35;
    color: var(--tour-dropdown-text-color);
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-info p {
    margin: 0;
    font-family: var(--tour-dropdown-font-family);
    font-style: var(--tour-dropdown-font-style);
    font-weight: var(--tour-dropdown-font-weight);
    font-size: 12px;
    line-height: 1.35;
    color: var(--tour-dropdown-muted-color);
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-qty {
    gap: 10px;
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-qty button {
    background: var(--theme-bg-light);
    color: var(--theme-color);
    transition: background .15s, color .15s, opacity .15s;
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-qty button:hover,
[data-tour-search-form] .cruise-passenger-dropdown .passenger-qty button:focus {
    background: var(--theme-color-light);
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-qty button:disabled {
    opacity: .5;
}

[data-tour-search-form] .cruise-passenger-dropdown .passenger-qty input {
    width: 32px;
    font-family: var(--tour-dropdown-font-family);
    font-style: var(--tour-dropdown-heading-style);
    font-weight: var(--tour-dropdown-heading-weight);
    font-size: 15px;
    color: var(--tour-dropdown-text-color);
}

/* =====================================================
   Tour Search Form - Destination autocomplete dropdown
   ===================================================== */
.tour-search .cruise-autocomplete-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: .375rem;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}

.tour-search .cruise-ac-section-label {
    padding: 8px 14px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6c757d;
}

.tour-search .cruise-ac-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}

.tour-search .cruise-ac-item:last-child {
    border-bottom: none;
}

.tour-search .cruise-ac-item:hover {
    background-color: #f8f9fa;
}

/* =====================================================
   Tour Search Form - Period (Dönem) dropdown
   ===================================================== */
.tour-search [data-tour-period-clickable] {
    cursor: pointer;
}

.tour-search [data-tour-period-clickable] .form-control,
.tour-search [data-tour-destination-input] {
    cursor: pointer;
}

/* Bootstrap's .dropdown gives .tour-period-root position:relative automatically.
   Since it also has w-100, left:0/right:0 on the menu = full inner column width. */
.tour-search .tour-period-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--tour-dropdown-border, #dee2e6);
    border-radius: 14px;
    box-shadow: 0 .75rem 1.75rem rgba(15, 23, 42, .12);
    background: var(--tour-dropdown-bg, #fff);
    z-index: 1050;
}

.tour-search .tour-period-menu .tab-content,
.tour-search .tour-period-menu .tab-content .tab-pane {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tour-search .tour-period-menu .nav-tabs {
    flex-wrap: wrap;
    gap: 4px;
}

.tour-search .tour-period-menu .nav-link {
    border-radius: 10px;
    font-family: var(--tour-dropdown-font-family);
    font-weight: var(--tour-dropdown-heading-weight, 600);
    font-size: 13px;
    padding: 6px 10px;
    color: var(--tour-dropdown-text-color, #212529);
}

.tour-search .tour-period-menu .nav-link.active {
    background: rgba(13, 110, 253, .10);
    color: #0d6efd;
    border-color: transparent;
}

.tour-search .tour-period-menu .small,
.tour-search .tour-period-menu .text-muted {
    font-size: 12px;
}

.tour-search .tour-period-menu .btn-sm {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
}

.tour-search .tour-period-menu .form-control,
.tour-search .tour-period-menu .input-group-text {
    font-size: 13px;
}

.tour-search .tour-period-trigger .tour-period-text {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.tour-search .tour-month-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.tour-search .tour-month-chip {
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    user-select: none;
    cursor: pointer;
}

.tour-search .tour-month-chip:hover {
    background: rgba(0, 0, 0, .03);
}

.tour-search .tour-month-chip input {
    width: 16px;
    height: 16px;
}

.tour-search .tour-holiday-list {
    max-height: 280px;
    overflow: auto;
    padding-right: 2px;
}

.tour-search .tour-holiday-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
    font-size: 13px;
}

.tour-search .tour-holiday-row:hover {
    background: #f2f8ff;
}

.tour-search .tour-holiday-name {
    font-weight: 600;
}

.tour-search .tour-holiday-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-search .tour-holiday-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #495057;
    font-size: 12px;
}

.tour-search .tour-badge-days {
    background: rgba(13, 110, 253, .12);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, .18);
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
}

.tour-search .tour-badge-type {
    background: rgba(108, 117, 125, .10);
    color: #495057;
    border: 1px solid rgba(108, 117, 125, .18);
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
}

.tour-search .tour-weekend-group {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    align-items: start;
}

.tour-search .tour-weekend-month {
    font-weight: 600;
    color: #212529;
    padding-top: 8px;
    font-size: 13px;
}

.tour-search .tour-weekend-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-search .tour-weekend-chip {
    border: 1px solid rgba(13, 110, 253, .25);
    color: #0d6efd;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-search .tour-weekend-chip:hover {
    background: rgba(13, 110, 253, .06);
}

.tour-search .tour-weekend-chip.active {
    background: rgba(13, 110, 253, .10);
    border-color: rgba(13, 110, 253, .40);
}

.tour-search .tour-weekend-chip input {
    width: 14px;
    height: 14px;
}

@media (max-width: 991px) {
    .tour-search .tour-search-wrapper .row {
        row-gap: 12px;
    }

    .tour-search .tour-search-wrapper .row > [class*="col-"] {
        margin-bottom: 0;
    }

    .tour-search .form-group {
        margin-bottom: 0;
    }

    .tour-search .tour-period-menu {
        padding: 12px;
        border-radius: 12px;
    }

    .tour-search .tour-period-menu .nav-tabs .nav-link {
        font-size: 12px;
        padding: 5px 8px;
    }

    .tour-search .tour-month-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .tour-search .tour-month-chip {
        padding: 7px 8px;
        font-size: 12px;
    }

    .tour-search .tour-holiday-list {
        max-height: 240px;
    }

    .tour-search .tour-weekend-group {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tour-search .tour-weekend-month {
        padding-top: 0;
    }

    [data-tour-search-form] .cruise-passenger-dropdown.dropdown-menu,
    [data-tour-search-form] .cruise-passenger-dropdown.dropdown-menu[data-bs-popper] {
        inset: calc(100% + 2px) 0 auto 0 !important;
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 575px) {
    .tour-search .tour-period-menu {
        padding: 10px;
    }

    .tour-search .tour-period-menu .nav-tabs {
        gap: 2px;
    }

    .tour-search .tour-period-menu .nav-tabs .nav-link {
        font-size: 11px;
        padding: 5px 6px;
    }

    .tour-search .tour-month-chip {
        padding: 6px 8px;
        font-size: 11px;
        gap: 6px;
    }

    .tour-search .tour-holiday-row {
        flex-wrap: wrap;
        font-size: 12px;
    }

    .tour-search .tour-holiday-right {
        margin-left: 0;
        width: 100%;
    }

    .tour-search .tour-period-menu .d-flex.justify-content-end {
        flex-wrap: wrap;
    }

    .tour-search .tour-period-menu .d-flex.justify-content-end .btn {
        flex: 1 1 auto;
    }
}

/* =====================================================
   Tour List - Cruise-style horizontal cards
   ===================================================== */
.tour-list .cruise-item {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 25px;
}

.tour-list .cruise-img {
    width: 420px;
    min-height: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.tour-list .cruise-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-list .cruise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media all and (max-width: 991px) {
    .tour-list .cruise-img {
        width: 280px;
        min-height: 200px;
    }
}

@media all and (max-width: 767px) {
    .tour-list .cruise-item {
        display: block;
    }

    .tour-list .cruise-img {
        width: 100%;
        min-height: auto;
        max-height: 240px;
    }
}

/* Tour card content extras */
.tour-list .tour-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.tour-list .tour-card-badges .tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background: var(--theme-bg-light, rgba(36, 189, 199, .08));
    color: var(--theme-color, #24BDC7);
    border: 1px solid var(--theme-color-light, rgba(36, 189, 199, .12));
}

.tour-list .tour-card-badges .tour-badge.tour-badge-region {
    background: rgba(108, 117, 125, .08);
    color: var(--color-dark);
    border-color: rgba(108, 117, 125, .15);
}

.tour-list .cruise-content .cruise-title {
    font-size: 20px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.tour-list .cruise-content .cruise-title a {
    color: var(--color-dark);
}

.tour-list .cruise-content .cruise-title a:hover {
    color: var(--theme-color);
}

.tour-list .tour-meta-line {
    color: var(--body-text-color);
    font-size: 14px;
    margin-bottom: 6px;
}

.tour-list .tour-meta-line i {
    color: var(--theme-color);
    margin-right: 6px;
}

.tour-list .tour-short-desc {
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.55;
    margin: 6px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-list .tour-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 10px;
}

.tour-list .tour-tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 500;
}

.tour-list .tour-card-dates-wrap {
    margin: 10px 0 12px;
    padding: 8px 10px;
    background: #fafafa;
    border-radius: 6px;
}

.tour-list .tour-card-dates-title {
    font-size: 12px;
    color: var(--body-text-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.tour-list .tour-card-dates-title i {
    color: var(--theme-color);
    margin-right: 4px;
}

.tour-list .tour-card-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tour-list .tour-card-date-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--color-white);
    border: 1px solid #ddd;
    color: var(--color-dark);
    font-size: 12px;
    text-decoration: none;
    transition: all .2s;
}

.tour-list .tour-card-date-link:hover {
    background: var(--theme-color);
    color: var(--color-white);
    border-color: var(--theme-color);
}

.tour-list .cruise-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.tour-list .cruise-price-label {
    display: block;
    font-size: 11px;
    color: var(--body-text-color);
    margin-bottom: 2px;
}

.tour-list .cruise-price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color2);
}

.tour-list .cruise-price-type {
    font-size: 12px;
    font-weight: 400;
    color: var(--body-text-color);
}

.tour-list .cruise-text-btn a {
    color: var(--color-dark);
    font-weight: 500;
    text-decoration: none;
}

.tour-list .cruise-text-btn a i {
    font-size: 14px;
    margin-left: 4px;
}

.tour-list .cruise-text-btn a:hover {
    color: var(--theme-color);
}

.tour-list-row {
    line-height: normal;
}

/* =====================================================
   Tour Search - Filter sidebar (mirrors cruise styles)
   ===================================================== */
.tour-filter-panel .booking-title {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--theme-color1, #0c2c7a);
}

.tour-filter-panel .form-check {
    font-family: var(--body-font);
    margin-bottom: 6px;
}

.tour-filter-panel .form-check-label {
    color: #334155;
    font-size: 14px;
    line-height: 1.4;
}

.tour-filter-panel .form-check-label span {
    color: #94a3b8;
    font-size: 12px;
    margin-left: 4px;
}

.tour-filter-panel .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.tour-filter-panel .price-range-slider {
    padding-top: 6px;
}

.tour-filter-panel .price-range-info {
    margin-bottom: 12px;
}

.tour-filter-panel .priceRange {
    background: transparent;
    border: 0;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-weight: 600;
    padding: 0;
    width: 100%;
}

.tour-filter-panel .price-range-slider label {
    font-family: var(--body-font);
    color: #64748b;
}

.tour-filter-panel .tour-range-slider.ui-widget.ui-widget-content {
    background: #e2e8f0;
    border: 0;
    border-radius: 999px;
    height: 6px;
    margin: 14px 4px 6px;
}

.tour-filter-panel .tour-range-slider .ui-slider-handle {
    background: var(--theme-color);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .18);
    cursor: pointer;
    height: 18px;
    top: -7px;
    width: 18px;
}

.tour-filter-panel .tour-range-slider .ui-widget-header {
    background: var(--theme-color);
}

.tour-filter-panel .theme-btn-outline {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .12);
    color: #0f172a;
    font-family: var(--body-font);
}

.tour-filter-panel .theme-btn-outline:hover {
    background: #f8fafc;
}

/* Tour list price - discount/campaign indicators (mirror cruise) */
.tour-list .cruise-price-old {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 13px;
    text-decoration: line-through;
    font-weight: 500;
}

.tour-list .cruise-price-discount {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    font-family: var(--body-font);
}

/* =====================================================
   Tour Detail Gallery (Complex / Mosaic)
   ===================================================== */
.tour-cx-gallery {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tour-cx-gallery .cx-gallery-grid {
    display: flex;
    gap: 6px;
    height: 440px;
}

.tour-cx-gallery .cx-gallery-side {
    flex: 0 0 calc((100% - 12px) / 3);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.tour-cx-gallery .cx-gallery-side .cx-gallery-cell {
    flex: 1 1 50%;
    min-height: 0;
}

.tour-cx-gallery .cx-gallery-main {
    flex: 1 1 0%;
    min-width: 0;
}

.tour-cx-gallery .cx-gallery-main .cx-gallery-cell {
    height: 100%;
}

.tour-cx-gallery .cx-gallery-cell {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
}

.tour-cx-gallery .cx-gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.tour-cx-gallery .cx-gallery-cell:hover img {
    transform: scale(1.05);
}

.tour-cx-gallery .cx-gallery-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.tour-cx-gallery .cx-gallery-thumb {
    flex: 1 1 0%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    height: 100px;
    border-radius: 0;
}

.tour-cx-gallery .cx-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.tour-cx-gallery .cx-gallery-thumb:hover img {
    transform: scale(1.08);
}

.tour-cx-gallery .cx-gallery-thumb--more {
    position: relative;
}

.tour-cx-gallery .cx-gallery-more-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .50);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3px;
    pointer-events: none;
    z-index: 2;
    font-family: var(--body-font);
}

.tour-cx-gallery .cx-gallery-hidden {
    display: none !important;
}

.tour-cx-gallery .cx-gallery-grid .cx-gallery-side .cx-gallery-cell--top {
    border-top-left-radius: 14px;
}

.tour-cx-gallery .cx-gallery-grid .cx-gallery-main .cx-gallery-cell--hero {
    border-top-right-radius: 14px;
}

.tour-cx-gallery .cx-gallery-thumbs .cx-gallery-thumb:first-child {
    border-bottom-left-radius: 14px;
}

.tour-cx-gallery .cx-gallery-thumbs .cx-gallery-thumb:last-child {
    border-bottom-right-radius: 14px;
}

.tour-cx-gallery:not(:has(.cx-gallery-thumbs)) .cx-gallery-side .cx-gallery-cell--bottom {
    border-bottom-left-radius: 14px;
}

.tour-cx-gallery:not(:has(.cx-gallery-thumbs)) .cx-gallery-main .cx-gallery-cell--hero {
    border-bottom-right-radius: 14px;
}

/* ---- mobile: swipeable single-image slider (width 100%) ---- */
@media (max-width: 991px) {
    .tour-cx-gallery .cx-gallery-grid {
        height: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        border-radius: 14px;
    }

    .tour-cx-gallery .cx-gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .tour-cx-gallery .cx-gallery-side,
    .tour-cx-gallery .cx-gallery-main {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        gap: 0;
        scroll-snap-align: start;
    }

    .tour-cx-gallery .cx-gallery-side {
        flex-direction: row;
    }

    .tour-cx-gallery .cx-gallery-side .cx-gallery-cell {
        flex: 0 0 100%;
        height: 320px;
        scroll-snap-align: start;
        border-radius: 14px;
    }

    .tour-cx-gallery .cx-gallery-main .cx-gallery-cell {
        height: 320px;
        border-radius: 14px;
    }

    .tour-cx-gallery .cx-gallery-thumbs {
        margin-top: 8px;
    }

    .tour-cx-gallery .cx-gallery-thumb {
        height: 72px;
        border-radius: 10px;
    }

    .tour-cx-gallery .cx-gallery-grid .cx-gallery-side .cx-gallery-cell--top,
    .tour-cx-gallery .cx-gallery-grid .cx-gallery-main .cx-gallery-cell--hero {
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
    }
}

@media (max-width: 575px) {
    .tour-cx-gallery .cx-gallery-side .cx-gallery-cell,
    .tour-cx-gallery .cx-gallery-main .cx-gallery-cell {
        height: 240px;
    }

    .tour-cx-gallery .cx-gallery-thumbs {
        flex-wrap: wrap;
    }

    .tour-cx-gallery .cx-gallery-thumb {
        flex: 0 0 calc(33.333% - 4px);
        height: 64px;
    }

    .tour-cx-gallery .cx-gallery-more-overlay {
        font-size: 13px;
    }
}

/* =====================================================
   Tour Detail - Cruise-aligned sections
   ===================================================== */

.tour-route-program-card {
    background: #fff;
    border: 1px solid var(--border-info-color, rgba(12, 44, 122, .08));
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(12, 44, 122, .05);
}

.tour-route-program-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.tour-route-program-head h4 {
    font-family: var(--heading-font, 'Barlow', sans-serif);
    color: var(--color-dark, #0c2c7a);
    font-size: 22px;
    margin: 0;
}

.tour-route-program-sub {
    color: var(--body-text-color, #757f95);
    font-size: 13px;
}

.tour-route-program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 12px;
    background: var(--theme-bg-light, rgba(37, 189, 199, .08));
    color: var(--theme-color, #24bdc7);
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease, color .2s ease;
}

.tour-route-program-link:hover {
    background: var(--theme-color, #24bdc7);
    color: #fff;
}

.tour-route-map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-info-color2, rgba(12, 44, 122, .05));
    background: #eef4fb;
}

.tour-route-map-frame.shared-route-map {
    display: block;
    width: 100%;
    height: 360px;
}

/* Tur Programı (cruise itinerary look) */
.itinerary-wrap .itinerary-single-box h3 {
    font-family: var(--heading-font, 'Barlow', sans-serif);
    color: var(--color-dark, #0c2c7a);
}

.itinerary-wrap .itinerary-single-box .content-text {
    color: var(--body-text-color, #757f95);
    line-height: 1.8;
}

/* Tur Ulaşımı - flight-card style */
.tour-flight-card {
    background: #fff;
    border: 1px solid var(--border-info-color, rgba(12, 44, 122, .08));
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition: box-shadow .25s ease;
    box-shadow: 0 2px 8px rgba(12, 44, 122, .04);
}

.tour-flight-card:hover {
    box-shadow: var(--box-shadow, 0 12px 28px rgba(12, 44, 122, .08));
}

.tour-flight-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-info-color2, rgba(12, 44, 122, .05));
}

.tour-flight-card-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.tour-flight-card-icon--outbound {
    background: var(--theme-color, #24bdc7);
}

.tour-flight-card-icon--inbound {
    background: var(--theme-color2, #f96768);
}

.tour-flight-card-direction {
    font-family: var(--heading-font, 'Barlow', sans-serif);
    color: var(--color-dark, #0c2c7a);
    font-size: 16px;
    font-weight: 700;
}

.tour-flight-card-body {
    margin-bottom: 14px;
}

.tour-flight-card-body:last-of-type {
    margin-bottom: 0;
}

.tour-flight-route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    font-family: var(--heading-font, 'Barlow', sans-serif);
    font-size: 15px;
    color: var(--body-text-color, #757f95);
}

.tour-flight-route strong {
    color: var(--color-dark, #0c2c7a);
    font-weight: 700;
}

.tour-flight-route-arrow {
    color: var(--theme-color, #24bdc7);
    font-size: 14px;
}

.tour-flight-route-city {
    color: var(--color-dark, #0c2c7a);
    font-weight: 600;
}

.tour-flight-airline {
    font-size: 13px;
    color: var(--body-text-color, #757f95);
    margin-bottom: 10px;
}

.tour-flight-airline i {
    color: var(--theme-color, #24bdc7);
}

.tour-flight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme-bg-light, rgba(37, 189, 199, .12));
    color: var(--theme-color, #24bdc7);
    font-size: 12px;
    cursor: help;
}

.tour-flight-times {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.tour-flight-time-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-flight-time-label {
    font-size: 11px;
    color: var(--body-text-color, #757f95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tour-flight-time-value {
    font-family: var(--heading-font, 'Barlow', sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark, #0c2c7a);
}

.tour-flight-note {
    font-size: 13px;
    color: var(--body-text-color, #757f95);
    padding: 8px 12px;
    background: var(--theme-bg-light, rgba(37, 189, 199, .08));
    border-radius: 8px;
    border-left: 3px solid var(--theme-color, #24bdc7);
}

/* Kampanyalar */
/* .tour-campaign-list {
    display: grid;
    gap: 14px;
}

.tour-campaign-card {
    border: 1px solid var(--border-info-color, rgba(12, 44, 122, .08));
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tour-campaign-card:hover {
    border-color: var(--theme-color, #24bdc7);
    box-shadow: 0 8px 24px rgba(12, 44, 122, .08);
}

.tour-campaign-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tour-campaign-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--theme-bg-light, rgba(37, 189, 199, .08));
    color: var(--theme-color, #24bdc7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tour-campaign-title-wrap h6 {
    font-family: var(--heading-font, 'Barlow', sans-serif);
    color: var(--color-dark, #0c2c7a);
    font-size: 16px;
}

.tour-campaign-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: var(--theme-bg-light, rgba(37, 189, 199, .08));
    color: var(--theme-color, #24bdc7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.tour-campaign-toggle:hover {
    background: var(--theme-color, #24bdc7);
    color: #fff;
}

.tour-campaign-toggle i {
    transition: transform .2s ease;
}

.tour-campaign-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.tour-campaign-value {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-campaign-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--theme-bg-light, rgba(37, 189, 199, .08));
    color: var(--theme-color, #24bdc7);
    font-size: 12px;
    font-weight: 700;
}

.tour-campaign-pill--code {
    background: rgba(249, 103, 104, .1);
    color: var(--theme-color2, #f96768);
}

.tour-campaign-collapse {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--border-info-color2, rgba(12, 44, 122, .05));
}

.tour-campaign-richtext {
    color: var(--body-text-color, #757f95);
    line-height: 1.8;
}

.tour-campaign-richtext > *:last-child {
    margin-bottom: 0;
} */

@media (max-width: 991px) {
    .tour-route-map-frame.shared-route-map { height: 300px; }
}

@media (max-width: 767px) {
    .tour-route-program-card { padding: 18px; }
    .tour-route-map-frame.shared-route-map { height: 240px; }
    .tour-flight-times { gap: 14px; }
}

/* =====================================================
   Tour Detail Tabs Navigation (mirror of cruise tabs)
   ===================================================== */
.tour-detail-tabs-wrapper {
    position: relative;
    z-index: 50;
    margin-top: -30px;
}

.tour-detail-tabs-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    animation: tourTabSlideDown .3s ease;
}

@keyframes tourTabSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.tour-detail-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tour-detail-tabs::-webkit-scrollbar { display: none; }

.tour-detail-tabs-wrapper.is-sticky .tour-detail-tabs {
    border-radius: 0;
    box-shadow: none;
}

.tour-detail-tab {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: #64748b;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .25s ease;
    cursor: pointer;
}

.tour-detail-tab i { font-size: 16px; }

.tour-detail-tab:hover {
    color: var(--theme-color);
    background: var(--theme-bg-light, rgba(36, 189, 199, .06));
}

.tour-detail-tab.is-active {
    color: var(--theme-color);
    border-bottom-color: var(--theme-color);
}

@media (max-width: 767px) {
    .tour-detail-tabs-wrapper {
        margin-top: -20px;
    }

    .tour-detail-tabs-wrapper > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .tour-detail-tabs {
        border-radius: 0;
        gap: 0;
        padding: 0 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        position: relative;
    }

    .tour-detail-tab {
        flex: 0 0 auto;
        flex-direction: column;
        gap: 3px;
        padding: 10px 12px 8px;
        font-size: 11px;
        font-weight: 500;
        min-width: 0;
        scroll-snap-align: start;
        border-bottom-width: 2px;
    }

    .tour-detail-tab i {
        font-size: 17px;
        display: block;
    }

    .tour-detail-tab span {
        display: block;
        line-height: 1.2;
    }

    .tour-detail-tabs-wrapper.is-sticky .tour-detail-tab {
        padding: 8px 10px 6px;
    }

    .tour-detail-tabs-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 32px;
        background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.9));
        pointer-events: none;
        z-index: 2;
        transition: opacity .3s ease;
    }

    .tour-detail-tabs-wrapper.scroll-end::after {
        opacity: 0;
    }
}

/* =====================================================
   Tour Confirmation (Voucher) Page
   ===================================================== */
.tour-cf-header { text-align: center; padding: 0 0 10px; margin-bottom: 10px; }
.tour-cf-icon { margin-bottom: 20px; }
.tour-cf-icon i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; font-size: 40px;
    border-radius: 50%; background: var(--theme-color); color: #fff;
}
.tour-cf-header h3 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight, 700);
    font-style: var(--heading-font-style, normal);
    color: var(--color-dark);
    margin: 0 0 10px;
}
.tour-cf-header p {
    color: var(--body-text-color);
    font-family: var(--body-font);
    margin: 0 auto 20px;
    max-width: 600px;
}
.tour-cf-ref-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 50px;
    background: var(--theme-bg-light);
    border: 1px solid var(--theme-color);
    font-size: 15px;
}
.tour-cf-ref-badge i { color: var(--theme-color); }
.tour-cf-ref-badge span { color: var(--body-text-color); }
.tour-cf-ref-badge strong { color: var(--color-dark); font-weight: 700; }

.tour-cf-hero {
    position: relative; border-radius: 15px; overflow: hidden;
    margin-bottom: 25px; min-height: 280px; background: var(--color-dark);
}
.tour-cf-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-cf-hero-overlay {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 280px; padding: 24px;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.7) 100%);
    color: #fff;
}
.tour-cf-hero-tag {
    display: inline-block; align-self: flex-start;
    padding: 5px 14px; border-radius: 50px;
    background: var(--theme-color);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 10px;
}
.tour-cf-hero-overlay h4 {
    margin: 0 0 6px;
    font-family: var(--heading-font);
    font-size: 26px; font-weight: 700; color: #fff;
}
.tour-cf-hero-overlay p { margin: 0; font-size: 14px; color: rgba(255,255,255,.85); }

.tour-cf-card,
.tour-cf-side-card {
    background: #fff; border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 25px; margin-bottom: 25px;
}
.tour-cf-card-title {
    font-family: var(--heading-font);
    font-size: 16px; font-weight: 700; color: var(--color-dark);
    margin: 0 0 18px;
    display: flex; align-items: center; gap: 8px;
}
.tour-cf-card-title i { color: var(--theme-color); font-size: 18px; }
.tour-cf-card-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 18px;
}
.tour-cf-link { font-weight: 600; font-size: 14px; color: var(--theme-color); }
.tour-cf-link:hover { color: var(--color-dark); }

.tour-cf-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tour-cf-fact {
    padding: 14px 16px; border-radius: 10px;
    background: rgba(0,0,0,.02);
    border: 1px solid var(--border-info-color);
}
.tour-cf-fact span {
    display: block; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em;
    color: var(--body-text-color); margin-bottom: 4px;
}
.tour-cf-fact strong { display: block; font-size: 15px; color: var(--color-dark); }

.tour-cf-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tour-cf-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 50px;
    background: var(--theme-color-light); color: var(--color-dark);
    font-size: 12px; font-weight: 600;
}
.tour-cf-chip-theme { background: var(--theme-bg-light); color: var(--theme-color); }
.tour-cf-chip i { font-size: 11px; }

.tour-cf-transport-list { display: flex; flex-direction: column; gap: 10px; }
.tour-cf-transport-item {
    display: flex; gap: 14px; padding: 14px;
    border-radius: 10px; background: rgba(0,0,0,.02);
    border: 1px solid var(--border-info-color);
}
.tour-cf-transport-direction {
    flex: 0 0 110px;
    border-right: 1px dashed var(--border-info-color);
    padding-right: 14px;
}
.tour-cf-transport-direction span {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--theme-color); margin-bottom: 4px;
}
.tour-cf-transport-direction strong { display: block; font-size: 14px; color: var(--color-dark); }
.tour-cf-transport-body { flex: 1; }
.tour-cf-transport-route {
    font-size: 15px; font-weight: 700; color: var(--color-dark);
    margin-bottom: 6px; letter-spacing: .03em;
}
.tour-cf-transport-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tour-cf-transport-meta small {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 50px;
    background: var(--theme-color-light); color: var(--color-dark);
    font-weight: 600; font-size: 12px;
}
.tour-cf-transport-meta small i { font-size: 10px; color: var(--theme-color); }

.tour-cf-meet-list { display: flex; flex-direction: column; gap: 10px; }
.tour-cf-meet-item {
    display: flex; gap: 12px; padding: 14px;
    border-radius: 10px; background: rgba(0,0,0,.02);
    border: 1px solid var(--border-info-color);
}
.tour-cf-meet-icon {
    flex: 0 0 42px; height: 42px; border-radius: 10px;
    background: var(--theme-color-light); color: var(--theme-color);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.tour-cf-meet-body { flex: 1; }
.tour-cf-meet-body strong { display: block; font-size: 15px; color: var(--color-dark); margin-bottom: 2px; }
.tour-cf-meet-body span { display: block; font-size: 13px; color: var(--body-text-color); }
.tour-cf-meet-body p { margin: 4px 0 0; font-size: 13px; color: #555; }
.tour-cf-meet-body small {
    display: inline-flex; align-items: center; gap: 4px; margin-top: 6px;
    padding: 3px 10px; border-radius: 50px;
    background: var(--theme-color-light); color: var(--color-dark);
    font-weight: 600; font-size: 12px;
}
.tour-cf-meet-body small i { color: var(--theme-color); font-size: 10px; }

.tour-cf-route-map.shared-route-map {
    display: block; width: 100%; height: 320px;
    border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border-info-color);
    background: #f8fafc; margin-bottom: 16px;
}
.tour-cf-route-list { display: flex; flex-direction: column; gap: 10px; }
.tour-cf-route-item {
    display: flex; gap: 12px; padding: 14px;
    border-radius: 10px; background: rgba(0,0,0,.02);
    border: 1px solid var(--border-info-color);
}
.tour-cf-route-num {
    flex: 0 0 40px; height: 40px; border-radius: 10px;
    background: var(--theme-color); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.tour-cf-route-body { flex: 1; }
.tour-cf-route-body h6 { margin: 0 0 3px; font-size: 15px; color: var(--color-dark); }
.tour-cf-route-body span { display: block; font-size: 13px; color: var(--body-text-color); }
.tour-cf-route-body p { margin: 4px 0 0; font-size: 13px; color: #555; }

.tour-cf-program { display: flex; flex-direction: column; gap: 10px; }
.tour-cf-program-item {
    display: flex; gap: 12px; padding: 14px;
    border-radius: 10px; background: rgba(0,0,0,.02);
    border: 1px solid var(--border-info-color);
}
.tour-cf-program-day {
    flex: 0 0 auto; min-width: 60px; height: 40px;
    border-radius: 10px; background: var(--color-dark); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px; padding: 0 10px; white-space: nowrap;
}
.tour-cf-program-body { flex: 1; }
.tour-cf-program-body strong {
    display: block; margin: 0 0 3px;
    font-size: 15px; color: var(--color-dark);
}
.tour-cf-program-body p { margin: 4px 0 0; font-size: 13px; color: #555; line-height: 1.6; }
.tour-cf-program-times { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tour-cf-program-times small {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 50px;
    background: var(--theme-color-light); color: var(--color-dark);
    font-weight: 600; font-size: 12px;
}
.tour-cf-program-times small i { font-size: 10px; color: var(--theme-color); }

.tour-cf-travelers { display: flex; flex-direction: column; gap: 10px; }
.tour-cf-traveler {
    display: flex; gap: 12px; align-items: center; padding: 14px;
    border-radius: 10px; background: rgba(0,0,0,.02);
    border: 1px solid var(--border-info-color);
}
.tour-cf-traveler-avatar {
    flex: 0 0 42px; height: 42px; border-radius: 50%;
    background: var(--theme-color-light); color: var(--theme-color);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.tour-cf-traveler-body { flex: 1; }
.tour-cf-traveler-body strong { display: block; font-size: 15px; color: var(--color-dark); }
.tour-cf-traveler-body span { display: block; font-size: 13px; color: var(--body-text-color); }
.tour-cf-traveler-body small {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 4px; font-size: 12px; color: var(--body-text-color);
}
.tour-cf-traveler-body small i { color: var(--theme-color); }

.tour-cf-sidebar { position: sticky; top: 100px; }

.tour-cf-info-list { list-style: none; margin: 0; padding: 0; }
.tour-cf-info-list li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--border-info-color);
}
.tour-cf-info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.tour-cf-info-list span { color: var(--body-text-color); font-size: 14px; }
.tour-cf-info-list strong { color: var(--color-dark); text-align: right; font-size: 14px; }

.tour-cf-price-list { list-style: none; margin: 0; padding: 0; }
.tour-cf-price-list li {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px dashed var(--border-info-color);
}
.tour-cf-price-list li:last-child { border-bottom: none; }
.tour-cf-price-list li strong { display: block; font-size: 14px; color: var(--color-dark); }
.tour-cf-price-list li small { display: block; font-size: 12px; color: var(--body-text-color); }
.tour-cf-price-list li b { color: var(--color-dark); font-size: 14px; white-space: nowrap; }
.tour-cf-price-total {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding-top: 14px; margin-top: 4px;
    border-top: 2px solid var(--color-dark);
}
.tour-cf-price-total span { font-size: 15px; font-weight: 600; color: var(--color-dark); }
.tour-cf-price-total strong { font-size: 20px; font-weight: 800; color: var(--theme-color); }

@media (max-width: 991.98px) {
    .tour-cf-sidebar { position: static; }
}
@media (max-width: 767.98px) {
    .tour-cf-hero-overlay { min-height: 220px; padding: 18px; }
    .tour-cf-hero-overlay h4 { font-size: 22px; }
    .tour-cf-facts { grid-template-columns: 1fr; }
    .tour-cf-route-map.shared-route-map { height: 240px; }
    .tour-cf-header h3 { font-size: 22px; }
    .tour-cf-transport-item { flex-direction: column; }
    .tour-cf-transport-direction {
        flex: 0 0 auto; border-right: none;
        border-bottom: 1px dashed var(--border-info-color);
        padding-right: 0; padding-bottom: 10px;
    }
}
