﻿/* ==========================================================================
   /* ==========================================================================
   KAPPATUR 2025
   ========================================================================== */

/* ==========================================================================
   Search Hero Banner
   ========================================================================== */

.search-hero-banner {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(33, 61, 89, 0.3), rgba(33, 61, 89, 0.5));
}

.search-hero-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .search-hero-banner {
        height: 120px;
    }

    .search-hero-text {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ed1c24;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .back-to-top:hover {
        background: #c91820;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(237, 28, 36, 0.5);
    }

    .back-to-top.visible {
        display: flex;
    }

/* ==========================================================================
   Filter Styles
   ========================================================================== */

.filter-column {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.search-filters {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ed1c24;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

    .filter-header h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #213d59;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .filter-header h4 i {
            color: #ed1c24;
        }

    .filter-header .btn-link {
        color: #ed1c24;
        font-size: 12px;
        padding: 4px 10px;
        border: 1px solid #ed1c24;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .filter-header .btn-link:hover {
            background: #ed1c24;
            color: #fff;
        }

.filter-group {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

    .filter-group:last-child {
        border-bottom: none;
    }

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #213d59;
    padding: 5px 0;
    transition: color 0.2s ease;
}

    .filter-title:hover {
        color: #ed1c24;
    }

    .filter-title i:first-child {
        margin-right: 10px;
        color: #ed1c24;
        width: 18px;
        text-align: center;
    }

    .filter-title .fa-chevron-up,
    .filter-title .fa-chevron-down {
        font-size: 12px;
        color: #999;
        transition: transform 0.2s ease;
    }

.filter-content {
    padding-top: 12px;
}

.filter-content-scroll {
    max-height: 280px;
    overflow-y: auto;
}

.filter-content::-webkit-scrollbar {
    width: 4px;
}

.filter-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.filter-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

    .filter-content::-webkit-scrollbar-thumb:hover {
        background: #ed1c24;
    }

.filter-item {
    padding: 2px 0;
}

    .filter-item label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-weight: normal;
        margin: 0;
        font-size: 13px;
        color: #444;
        transition: color 0.2s ease;
        padding: 4px 8px;
        border-radius: 4px;
        margin: 0 -8px;
    }

        .filter-item label:hover {
            background: #f8f8f8;
            color: #ed1c24;
        }

    /* Custom Checkbox */
    .filter-item input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #ddd;
        border-radius: 4px;
        margin-right: 10px;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

        .filter-item input[type="checkbox"]:hover {
            border-color: #ed1c24;
        }

        .filter-item input[type="checkbox"]:checked {
            background: #ed1c24;
            border-color: #ed1c24;
        }

            .filter-item input[type="checkbox"]:checked::after {
                content: '✓';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: #fff;
                font-size: 12px;
                font-weight: bold;
            }

.filter-count {
    margin-left: auto;
    color: #999;
    font-size: 11px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
}

.price-range-display {
    text-align: center;
    font-weight: 700;
    color: #213d59;
    margin-bottom: 15px;
    font-size: 15px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
}

    .price-range-display span {
        color: #ed1c24;
    }

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .price-inputs input {
        flex: 1;
        height: 38px;
        font-size: 13px;
        text-align: center;
        border: 2px solid #eee;
        border-radius: 6px;
        transition: border-color 0.2s ease;
    }

        .price-inputs input:focus {
            outline: none;
            border-color: #ed1c24;
        }

    .price-inputs span {
        color: #999;
        font-weight: 500;
    }

.price-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #eee;
    border-radius: 3px;
    outline: none;
}

    .price-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        background: #ed1c24;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(237, 28, 36, 0.3);
        transition: transform 0.2s ease;
    }

        .price-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }

    .price-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: #ed1c24;
        border-radius: 50%;
        cursor: pointer;
        border: none;
    }

/* ==========================================================================
   Tour List Styles
   ========================================================================== */

.tour-list-title {
    font-size: 24px;
    font-weight: 700;
    color: #213d59;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #ed1c24;
}

/* Results Header */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.results-count {
    font-weight: 600;
    color: #333;
}

    .results-count span {
        color: #ed1c24;
    }

.results-sort select {
    width: 200px;
    height: 36px;
}

/* Tour Row Items */
.tour-list-items {
    display: block;
}

.tour-row-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    cursor: pointer;
}

    .tour-row-item:hover {
        border-color: #ed1c24;
        box-shadow: 0 4px 15px rgba(237, 28, 36, 0.1);
    }

    .tour-row-item.hidden {
        display: none !important;
    }

/* Tour Row Link Container */
.tour-row-link {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

/* ==========================================================================
   Popular Tours Widget
   ========================================================================== */
.popular-tours-section .section-title {
    font-size: 26px;
    font-weight: 700;
}

.popular-tours-section .section-subtitle {
    color: #6c7a89;
    margin-bottom: 6px;
}

.popular-tours-swiper-wrapper {
    position: relative;
}

.popular-tours-swiper {
    position: relative;
    overflow: hidden;
}

    .popular-tours-swiper .swiper-slide {
        display: flex;
        justify-content: center;
    }

.pt-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #222;
    height: 460px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

    .pt-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        color: #222;
        text-decoration: none;
    }

.card-shadow {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .card-shadow:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

.pt-image {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex: 0 0 auto;
}

    .pt-image::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 46%;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.28) 100%);
    }

.pt-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    background: linear-gradient(90deg,#ff6b6b,#ed1c24);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(237,28,36,0.18);
}

.pt-fav {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    color: #fff;
}

.pt-body {
    padding: 14px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.pt-prodname {
    font-weight: 800;
    color: #333;
    margin-bottom: 6px;
    font-size: 13px;
}

.pt-meta {
    font-size: 13px;
    color: #8a8f94;
    margin-bottom: 6px;
}

.pt-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.2em * 4);
}

    .pt-title a {
        color: #111;
        text-decoration: none;
    }

.pt-subtitle {
    color: #6c7a89;
    font-size: 13px;
    margin-bottom: 6px;
}

.pt-location {
    color: #7b8794;
    font-size: 13px;
    margin-bottom: 10px;
}

.pt-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: auto;
}

.pt-reviews {
    font-size: 12px;
    color: #7b8794;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pt-price {
    color: #6c7a89;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.pt-old-price {
    text-decoration: line-through;
    color: #9aa0a6;
    margin-right: 8px;
    font-size: 13px;
}

.pt-price-amount {
    color: #2a9d8f;
    font-size: 18px;
    font-weight: 800;
}

.pt-raw {
    color: #9aa0a6;
    font-size: 12px;
}

.pt-duration {
    font-size: 14px;
}


@media (max-width:767px) {
    .pt-image {
        height: 180px;
    }

    .pt-meta {
        font-size: 12px;
    }

    .pt-title {
        font-size: 13px;
    }

    .pt-prodname {
        font-size: 12px;
    }

    .pt-duration {
        font-size: 12px;
    }
}

/* ==========================================================================
   Top Destinations Widget
   ========================================================================== */
.top-destinations-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.top-destinations-section .section-subtitle {
    color: #6c7a89;
    margin-bottom: 20px;
}

.td-card {
    position: relative;
    display: block;
    height: 230px;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
}

a.td-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #fff;
}

.td-card .td-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.td-card .td-content {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
}

    .td-card .td-content h3 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
    }

    .td-card .td-content .td-sub {
        display: block;
        margin-top: 8px;
        color: rgba(255,255,255,0.9);
        font-size: 14px;
        font-weight: 500;
    }

@media (max-width:767px) {
    .td-card {
        height: 160px;
    }
}

/*Special offers*/
.special-offers-section .section-title {
    font-size: 28px;
    font-weight: 700;
}

.special-offers-section .section-subtitle {
    color: #6c7a89;
    margin-bottom: 20px;
}

.so-card {
    position: relative;
    height: 360px;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
}

.so-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.25));
}

.so-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
}

.so-sub {
    display: block;
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 8px;
}

.so-title {
    margin: 0 0 18px 0;
    font-size: 26px;
    font-weight: 700;
}

.so-btn {
    background: #fff;
    color: #222;
    border-radius: 6px;
    padding: 12px 26px;
    display: inline-block;
    text-decoration: none;
}

.btn-white {
    background: #fff;
    color: #222;
}

@media (max-width:767px) {
    .so-card {
        height: 220px;
    }

    .so-title {
        font-size: 18px;
    }
}

/* Tour Image - Left Section */
a.tour-row-image {
    flex: 0 0 200px;
    width: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
}

.tour-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .tour-row-image img.lazy-image {
        opacity: 0.5;
    }

    .tour-row-image img.lazy-loaded {
        opacity: 1;
    }

.tour-row-item:hover .tour-row-image img {
    transform: scale(1.05);
}

.tour-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ed1c24;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    z-index: 1;
}

/* Tour Info - Middle Section */
.tour-row-info {
    flex: 1 1 auto;
    padding: 12px 15px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-row-country {
    font-size: 13px;
    color: #ed1c24;
    font-weight: 700;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-row-header {
    margin-bottom: 5px;
}

.tour-row-title,
.tour-row-title-link {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    text-decoration: none;
    display: block;
}

    .tour-row-title-link:hover {
        color: #ed1c24;
        text-decoration: none;
    }

.tour-row-name,
a.tour-row-name {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

    a.tour-row-name:hover {
        color: #ed1c24;
        text-decoration: none;
    }

.tour-row-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    align-items: center;
}

.tour-detail-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #555;
}

    .tour-detail-item i {
        color: #ed1c24;
        font-size: 11px;
    }

.tour-dates {
    color: #333;
    font-weight: 500;
}

/* Tour Tags - Blue Style */
.tour-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tour-tag {
    display: inline-block;
    background: #e8f4fc;
    color: #1976d2;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #bbdefb;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

    .tour-tag:hover {
        background: #1976d2;
        color: #fff;
        border-color: #1976d2;
        text-decoration: none;
    }

/* Tour Price - Right Section */
.tour-row-price {
    flex: 0 0 160px;
    width: 160px;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    background: #fafafa;
    border-left: 1px solid #eee;
}

.price-label {
    font-size: 10px;
    color: #999;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-old {
    font-size: 20px;
    color: #767a7f;
    font-weight: 600;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-current {
    font-size: 32px;
    font-weight: 800;
    color: #e63946;
    line-height: 1;
    margin-bottom: 10px;
}

    .price-current .currency {
        font-size: 14px;
        font-weight: 600;
    }

.tour-row-cta {
    margin-top: auto;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ed1c24;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-detail:hover {
        background: #c91820;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
    }

.tour-row-item:hover .btn-detail {
    background: #c91820;
}

.btn-detail i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-detail:hover i,
.tour-row-item:hover .btn-detail i {
    transform: translateX(3px);
}

/* ==========================================================================
   Show More Button
   ========================================================================== */

.show-more-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(to bottom, transparent, #f8f8f8);
}

.show-more-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: #fff;
    border: 2px solid #ed1c24;
    border-radius: 30px;
    color: #ed1c24;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
}

    .btn-show-more:hover:not(:disabled) {
        background: #ed1c24;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    }

    .btn-show-more:disabled {
        cursor: not-allowed;
        opacity: 0.8;
    }

    .btn-show-more i {
        font-size: 16px;
    }

.loading-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .loading-spinner i {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* All Loaded Message */
.all-loaded-message {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

    .all-loaded-message i {
        margin-right: 8px;
    }

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

    .no-results i {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .no-results p {
        font-size: 16px;
        margin-bottom: 20px;
    }

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .filter-column {
        position: relative;
        top: 0;
    }

    .search-filters {
        margin-bottom: 20px;
    }

    .tour-row-image {
        flex: 0 0 160px;
        width: 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .tour-row-price {
        flex: 0 0 140px;
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        padding: 10px;
    }

    .price-current {
        font-size: 18px;
    }

    .btn-detail {
        padding: 5px 8px;
        font-size: 10px;
    }

    .tour-row-title {
        font-size: 14px;
    }

    .tour-row-name {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    /* Mobile Filter Toggle Button */
    .mobile-filter-toggle-wrapper {
        margin-bottom: 15px;
    }

    .btn-mobile-filter {
        width: 100%;
        padding: 12px 20px;
        background: #fff;
        border: 2px solid #ed1c24;
        border-radius: 8px;
        color: #ed1c24;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .btn-mobile-filter:hover,
        .btn-mobile-filter:focus {
            background: #ed1c24;
            color: #fff;
        }

    .active-filter-badge {
        background: #ed1c24;
        color: #fff;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 12px;
        margin-left: 5px;
    }

    .btn-mobile-filter:hover .active-filter-badge,
    .btn-mobile-filter:focus .active-filter-badge {
        background: #fff;
        color: #ed1c24;
    }

    /* Filter Column - Hidden by default on mobile */
    .filter-column {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: rgba(0, 0, 0, 0.5);
        padding: 0;
        overflow: hidden;
    }

        .filter-column.mobile-filter-open {
            display: block;
        }

        .filter-column .search-filters {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 85%;
            max-width: 320px;
            background: #fff;
            border-radius: 0;
            overflow-y: auto;
            padding: 15px;
            animation: slideInLeft 0.3s ease;
        }

    @keyframes slideInLeft {
        from {
            transform: translateX(-100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .search-results-header {
        flex-direction: column;
        gap: 10px;
    }

    .results-sort select {
        width: 100%;
    }

    .tour-row-link {
        flex-direction: column;
    }

    a.tour-row-image {
        flex: 0 0 auto;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 180px;
    }

    .tour-row-info {
        padding: 12px;
    }

    .tour-row-price {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        border-top: 1px solid #eee;
        padding: 12px;
    }

    .tour-row-cta {
        margin-top: 0;
    }

    .price-label {
        display: none;
    }

    .price-current {
        margin-bottom: 0;
        font-weight: 800;
        font-size: 32px;
        font-weight: 800;
        color: #e63946;
    }

    .pagination li a {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }

    /* Tour details responsive */
    .tour-row-details {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .tour-row-tags {
        margin-top: 8px;
    }

    .tour-tag {
        font-size: 10px;
        padding: 2px 6px;
    }

    .tour-row-title,
    .tour-row-title-link {
        font-size: 14px;
    }

    .tour-row-name {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .tour-row-country {
        font-size: 12px;
    }

    .tour-list-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .btn-show-more {
        width: 100%;
        padding: 12px 20px;
    }

    /* Mobile Filter Overlay */
    .mobile-filter-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

    /* Mobile Filter Apply Button */
    .mobile-filter-apply {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .btn-apply-filter {
        width: 100%;
        padding: 14px 20px;
        background: #ed1c24;
        border: none;
        border-radius: 8px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .btn-apply-filter:hover,
        .btn-apply-filter:focus {
            background: #c91820;
        }

    /* Filter close button in header for mobile */
    .filter-header {
        position: relative;
    }
}

/* ==========================================================================
   Tour Search Page Scoped Overrides (Desktop + Mobile)
   ========================================================================== */

.search-hero-banner-desktop {
    position: relative;
    overflow: visible;
}

.search-hero-banner-desktop .hero-search-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
}

.search-hero-banner-desktop .hero-search-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.search-hero-banner-desktop .hero-search-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.search-hero-banner-desktop .hero-search-col {
    display: flex;
}

.search-hero-banner-desktop .hero-search-col-main {
    flex: 2;
}

.search-hero-banner-desktop .hero-search-col-dates {
    flex: 1.5;
}

.search-hero-banner-desktop .hero-search-col-button {
    flex: 0 0 auto;
    min-width: 200px;
}

.search-hero-banner-desktop .abroad-search-wrapper {
    position: relative;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    height: 56px;
    transition: all 0.3s ease;
    width: 100%;
}

.search-hero-banner-desktop .abroad-search-wrapper:hover {
    border-color: #ccc;
}

.search-hero-banner-desktop .abroad-search-wrapper.is-focused {
    border-color: #ed1c24;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.search-hero-banner-desktop .abroad-search-wrapper .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    color: #ed1c24;
    font-size: 18px;
    flex-shrink: 0;
}

.search-hero-banner-desktop .abroad-search-input {
    border: none !important;
    box-shadow: none !important;
    height: 100% !important;
    padding: 0 40px 0 0 !important;
    font-size: 15px;
    background: transparent !important;
    flex: 1;
}

.search-hero-banner-desktop .abroad-search-input:focus {
    outline: none !important;
}

.search-hero-banner-desktop .search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #f0f0f0;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    transition: all 0.2s ease;
    z-index: 3;
}

.search-hero-banner-desktop .search-clear-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.search-hero-banner-desktop .animated-placeholder {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 15px;
}

.search-hero-banner-desktop .placeholder-text {
    display: inline-block;
}

.search-hero-banner-desktop .abroad-autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.search-hero-banner-desktop .abroad-autocomplete-list li {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.search-hero-banner-desktop .abroad-autocomplete-list li i {
    color: #ed1c24;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.search-hero-banner-desktop .abroad-autocomplete-list li span {
    font-size: 14px;
    color: #333;
}

.search-hero-banner-desktop .abroad-autocomplete-list li:hover,
.search-hero-banner-desktop .abroad-autocomplete-list li.active {
    background: #fef2f2;
}

.search-hero-banner-desktop .abroad-autocomplete-list li.active span {
    color: #ed1c24;
    font-weight: 500;
}

.search-hero-banner-desktop .abroad-date-wrapper {
    height: 56px;
    width: 100%;
}

.search-hero-banner-desktop .date-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 100%;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.search-hero-banner-desktop .date-input-group:hover {
    border-color: #ccc;
}

.search-hero-banner-desktop .date-input-group:focus-within {
    border-color: #ed1c24;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.search-hero-banner-desktop .date-field {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.search-hero-banner-desktop .date-field i {
    color: #ed1c24;
    font-size: 16px;
}

.search-hero-banner-desktop .date-field input {
    border: none;
    background: transparent;
    padding: 0;
    height: 100%;
    font-size: 14px;
    color: #333;
    width: 100%;
    cursor: pointer;
}

.search-hero-banner-desktop .date-field input:focus {
    outline: none;
}

.search-hero-banner-desktop .date-field input::placeholder {
    color: #999;
}

.search-hero-banner-desktop .date-separator {
    color: #ccc;
    padding: 0 8px;
    font-size: 12px;
}

.search-hero-banner-desktop .abroad-search-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #ed1c24 0%, #c91820 100%);
    border: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.search-hero-banner-desktop .abroad-search-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c91820 0%, #a01418 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
    color: #fff;
}

.search-hero-banner-desktop .abroad-search-btn:active:not(:disabled) {
    transform: translateY(0);
}

.search-hero-banner-desktop .abroad-search-btn:disabled {
    background: linear-gradient(135deg, #ed1c24 0%, #c91820 100%);
    opacity: 0.8;
    cursor: not-allowed;
}

.search-hero-banner-desktop .abroad-search-btn i {
    font-size: 16px;
}

.search-hero-banner-desktop .abroad-search-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@media (max-width: 991px) {
    .search-hero-banner-desktop .hero-search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-hero-banner-desktop .hero-search-col {
        width: 100%;
    }

    .search-hero-banner-desktop .hero-search-col-button {
        min-width: 100%;
    }

    .search-hero-banner-desktop .hero-search-container {
        bottom: 20px;
    }

    .search-hero-banner-desktop .hero-search-box {
        padding: 15px;
    }

    .search-hero-banner-desktop .abroad-search-wrapper,
    .search-hero-banner-desktop .abroad-date-wrapper,
    .search-hero-banner-desktop .abroad-search-btn {
        height: 52px;
    }
}

@media (max-width: 767px) {
    .search-hero-banner-desktop .hero-search-container {
        position: relative;
        bottom: auto;
        margin-top: -30px;
    }
}

.search-hero-banner-mobile {
    height: 170px;
}

.search-hero-banner-mobile .hero-search-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
}

.search-hero-banner-mobile .hero-search-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.search-hero-banner-mobile .hero-search-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-hero-banner-mobile .hero-search-col-main {
    flex: 1;
}

.search-hero-banner-mobile .mobile-hero-search-btn-col {
    flex: 0 0 auto;
}

.search-hero-banner-mobile .abroad-search-wrapper {
    position: relative;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    padding-left: 38px;
}

.search-hero-banner-mobile .search-icon {
    position: absolute;
    left: 12px;
    color: #ed1c24;
    font-size: 14px;
}

.search-hero-banner-mobile .abroad-search-input {
    border: none;
    box-shadow: none;
    width: 100%;
    height: 42px;
    padding: 8px 34px 8px 0;
    font-size: 14px;
    background: transparent;
}

.search-hero-banner-mobile .abroad-search-input:focus {
    border: none;
    box-shadow: none;
}

.search-hero-banner-mobile .animated-placeholder {
    position: absolute;
    left: 38px;
    right: 34px;
    color: #999;
    font-size: 13px;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-hero-banner-mobile .search-clear-btn {
    position: absolute;
    right: 8px;
    border: none;
    background: transparent;
    color: #999;
    width: 24px;
    height: 24px;
    padding: 0;
}

.search-hero-banner-mobile .abroad-autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.14);
    z-index: 10;
    max-height: 220px;
    overflow-y: auto;
    padding: 4px 0;
    margin: 0;
    list-style: none;
}

.search-hero-banner-mobile .abroad-autocomplete-list li {
    padding: 8px 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-hero-banner-mobile .abroad-autocomplete-list li.active,
.search-hero-banner-mobile .abroad-autocomplete-list li:hover {
    background: #f8f8f8;
}

.search-hero-banner-mobile .mobile-icon-search-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #ed1c24;
    border-color: #ed1c24;
}

.search-hero-banner-mobile .mobile-icon-search-btn:hover,
.search-hero-banner-mobile .mobile-icon-search-btn:focus {
    background: #c91820;
    border-color: #c91820;
}

.search-hero-banner-mobile .mobile-icon-search-btn i {
    font-size: 16px;
}

.mobile-search-sticky-actions {
    position: relative;
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 8px 0 10px;
    margin-bottom: 12px;
}

.mobile-search-sticky-actions.is-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 8px 10px 16px;
    margin-bottom: 0;
}

.mobile-search-sticky-actions-spacer {
    display: none;
    height: 0;
}

.mobile-search-sticky-actions .mobile-sticky-action {
    flex: 1;
    min-height: 46px;
    border: 1px solid #ed1c24;
    border-radius: 10px;
    background: #fff;
    color: #ed1c24;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding: 0 12px;
}

.mobile-search-sticky-actions .mobile-sticky-action i {
    font-size: 16px;
}

.mobile-search-sticky-actions .mobile-filter-action {
    cursor: pointer;
}

.mobile-search-sticky-actions .mobile-filter-action:hover,
.mobile-search-sticky-actions .mobile-filter-action:focus,
.mobile-search-sticky-actions .mobile-sticky-action:hover,
.mobile-search-sticky-actions .mobile-sticky-action:focus {
    border-color: #ed1c24;
    color: #ed1c24;
    text-decoration: none;
}

.mobile-search-sticky-actions .mobile-sort-action {
    overflow: hidden;
}

.mobile-search-sticky-actions .sort-native-select {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
}

.mobile-search-sticky-actions .active-filter-badge {
    background: #ed1c24;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 5px;
}

.mobile-search-filter-column {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    background: transparent !important;
    padding: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    float: none !important;
}

.mobile-search-filter-column.mobile-filter-open {
    display: block !important;
}

.mobile-search-filter-column .search-filters {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: 100vh !important;
    background: #fff !important;
    border-radius: 0 !important;
    border: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 15px !important;
    padding-bottom: 100px !important;
    box-shadow: none !important;
    animation: mobileSearchModalIn 0.25s ease !important;
    z-index: 2 !important;
}

.mobile-search-filter-column .mobile-filter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-search-filter-column .filter-header {
    padding-right: 42px;
}

.mobile-search-filter-column .filter-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search-filter-column .btn-filter-close {
    width: 30px;
    height: 30px;
    border: 1px solid #ed1c24;
    border-radius: 50%;
    background: #fff;
    color: #ed1c24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.mobile-search-filter-column .btn-filter-close-floating {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.mobile-search-filter-column .btn-filter-close:hover,
.mobile-search-filter-column .btn-filter-close:focus {
    background: #ed1c24;
    color: #fff;
    outline: none;
}

@keyframes mobileSearchModalIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Custom Showcase 1 ===== */
.custom-showcase1-section {
    padding: 40px 0;
}

.custom-showcase1-wrapper {
    position: relative;
}

.custom-showcase1-swiper {
    position: relative;
    overflow: hidden;
}

.cs1-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

    .cs1-card:hover {
        text-decoration: none;
        color: inherit;
        transform: translateY(-4px);
    }

.cs1-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
}

    .cs1-img-wrapper img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

.cs1-card:hover .cs1-img-wrapper img {
    transform: scale(1.05);
}

.cs1-info {
    padding: 12px 4px 0;
}

.cs1-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3e50;
    margin: 0 0 2px;
    line-height: 1.3;
}

.cs1-count {
    font-size: 13px;
    color: #7a8b9a;
    display: block;
}

.custom-showcase1-swiper .cs1-prev,
.custom-showcase1-swiper .cs1-next {
    position: absolute;
    top: 100px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #e0e4e8;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .custom-showcase1-swiper .cs1-prev:hover,
    .custom-showcase1-swiper .cs1-next:hover {
        background: #fff;
        border-color: #2d3e50;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .custom-showcase1-swiper .cs1-prev i,
    .custom-showcase1-swiper .cs1-next i {
        font-size: 14px;
        color: #2d3e50;
        line-height: 1;
    }

/* ==========================================================================
   Tour Round Showcase (trs)
   ========================================================================== */
.trs-section {
    padding: 40px 0;
    background: #f4f6f8;
}

.trs-header {
    margin-bottom: 22px;
}

    .trs-header .section-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .trs-header .section-subtitle {
        color: #6c7a89;
        margin-bottom: 0;
    }

.trs-swiper-wrapper {
    position: relative;
}

.trs-swiper .swiper-slide {
    text-align: left;
}

.sc-tour-rounded-swiper {
    position: relative;
    overflow: hidden;
}

    .sc-tour-rounded-swiper .swiper-slide {
        height: auto;
        display: flex;
    }

/* Card */
.trs-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #222;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    height: 480px;
}

    .trs-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.13);
        color: #222;
        text-decoration: none;
    }

/* Image */
.trs-img {
    position: relative;
    height: 195px;
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
}

.trs-category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(90deg, #f7941d, #f06c00);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(240,108,0,0.28);
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px);
}

.trs-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

    .trs-discount-badge i {
        margin-right: 3px;
    }

/* Body */
.trs-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    text-align: left;
}

.trs-prodname {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.trs-prodname-icon {
    width: 26px;
    height: 26px;
    background: #e8f5e9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .trs-prodname-icon i {
        color: #2a9d8f;
        font-size: 12px;
    }

.trs-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trs-name {
    font-size: 13px;
    color: #555;
    font-weight: 400;
}

.trs-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
    margin-top: 6px;
    flex: 1 1 auto;
}

.trs-feature-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #6c7a89;
}

    .trs-feature-item i {
        font-size: 13px;
        color: #9aa5b4;
        width: 14px;
        text-align: center;
    }

.trs-feature-green {
    color: #2a9d8f;
}

    .trs-feature-green i {
        color: #2a9d8f;
    }

/* Footer / Price */
.trs-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #f0f2f5;
    margin-top: auto;
}

.trs-from-label {
    font-size: 11px;
    color: #9aa5b4;
    margin-right: 2px;
}

.trs-price-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.trs-old-price {
    font-size: 15px;
    text-decoration: line-through;
    color: #aab0b7;
}

.trs-price {
    font-size: 20px;
    font-weight: 800;
    color: #2a9d8f;
}

/* Nav arrows */
.trs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #dde1e7;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: all 0.2s ease;
    padding: 0;
}

    .trs-nav:hover {
        background: #fff;
        border-color: #2d3e50;
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

    .trs-nav i {
        font-size: 13px;
        color: #2d3e50;
    }

.trs-prev {
    left: -18px;
}

.trs-next {
    right: -18px;
}

@media (max-width: 767px) {
    .trs-img {
        height: 170px;
    }

    .trs-title {
        font-size: 14px;
    }

    .trs-prev {
        left: 0;
    }

    .trs-next {
        right: 0;
    }

    .trs-price {
        font-size: 16px;
    }
}

/* ==========================================================================
   Tour Custom Showcase 1 (tcs1) - Large Cards with Countdown
   ========================================================================== */
.tcs1-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.tcs1-header {
    margin-bottom: 24px;
    text-align: left;
}

    .tcs1-header .section-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .tcs1-header .section-subtitle {
        color: #6c7a89;
        margin-bottom: 0;
    }

.tcs1-swiper-wrapper {
    position: relative;
}

.tour-custom-showcase1-swiper {
    position: relative;
    overflow: hidden;
}

    .tour-custom-showcase1-swiper .swiper-slide {
        height: auto;
        display: flex;
    }

/* Card */
.tcs1-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    text-decoration: none;
    color: #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    height: 545px;
}

    .tcs1-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        color: #222;
        text-decoration: none;
    }

/* Image */
.tcs1-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex: 0 0 auto;
}

    .tcs1-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.tcs1-card:hover .tcs1-img-wrapper img {
    transform: scale(1.06);
}

.tcs1-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(230,57,70,0.35);
}

    .tcs1-discount-badge i {
        margin-right: 3px;
    }

.tcs1-favorite-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(90deg, #f7b731, #f39c12);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(243,156,18,0.35);
}

    .tcs1-favorite-badge i {
        margin-right: 3px;
    }

.tcs1-person-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #fff;
    backdrop-filter: blur(6px);
    color: #e63946;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .tcs1-person-badge i {
        font-size: 12px;
    }

/* Body */
.tcs1-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.tcs1-location {
    font-size: 12px;
    color: #7a8b9a;
    margin-bottom: 3px;
    font-weight: 600;
}

.tcs1-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tcs1-old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #767a7f;
    font-weight: 600;
}

.tcs1-current-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

    .tcs1-current-price strong {
        font-size: 32px;
        font-weight: 800;
        color: #e63946;
        line-height: 1;
    }

.tcs1-price-suffix {
    font-size: 11px;
    color: #7a8b9a;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

.tcs1-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
}

.tcs1-star-icon {
    color: #f7b731;
    font-size: 14px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.tcs1-subtitle {
    font-size: 13px;
    color: #6c7a89;
    text-align: left;
    margin-top: 6px;
    margin-bottom: 6px;
}

.tcs1-meta-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.tcs1-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

    .tcs1-meta-item i {
        width: 32px;
        height: 32px;
        background: #f1f3f5;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #495057;
        flex: 0 0 auto;
    }

.tcs1-meta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .tcs1-meta-text strong {
        font-size: 13px;
        font-weight: 700;
        color: #2d3e50;
    }

    .tcs1-meta-text span {
        font-size: 12px;
        color: #7a8b9a;
    }

/* Footer */
.tcs1-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.tcs1-time-badge {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #ffd6d6;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}

    .tcs1-time-badge > span {
        display: block;
        font-size: 10px;
        font-weight: 700;
        color: #e63946;
        letter-spacing: 0.05em;
        margin-bottom: 6px;
    }

.tcs1-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: #495057;
}

.tcs1-timer-item strong {
    font-size: 18px;
    font-weight: 800;
    color: #e63946;
}

.tcs1-timer-sep {
    font-size: 14px;
    font-weight: 700;
    color: #e63946;
    margin: 0 2px;
}

.tcs1-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6c7a89;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

    .tcs1-availability i {
        color: #e63946;
        font-size: 13px;
    }

    .tcs1-availability strong {
        color: #2d3e50;
        font-weight: 700;
    }

.tcs1-cta-btn {
    background: linear-gradient(90deg, #e63946, #c91820);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(230,57,70,0.25);
}

    .tcs1-cta-btn:hover {
        background: linear-gradient(90deg, #c91820, #a51419);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(230,57,70,0.35);
    }

    .tcs1-cta-btn i {
        font-size: 12px;
    }

/* Nav arrows */
.tcs1-nav {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #dde1e7;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    padding: 0;
    pointer-events: auto;
    outline: none;
}

/* ==========================================================================
   Tour Detail Page 2025 (detail-25)
   ========================================================================== */

.detail-25-page {
    padding: 30px 0 50px;
}

.detail-25-left {
    padding-right: 20px;
}

.detail-25-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.detail-25-location {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
    padding-left: 4px;
}

    .detail-25-location i {
        color: #ed1c24;
        margin-right: 4px;
    }

.detail-25-gallery {
    margin-bottom: 14px;
}

.detail-25-main-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.detail-25-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.detail-25-slider-prev,
.detail-25-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.88);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.detail-25-slider-prev {
    left: 14px;
}

.detail-25-slider-next {
    right: 14px;
}

    .detail-25-slider-prev:hover,
    .detail-25-slider-next:hover {
        background: #fff;
    }

.detail-25-slide-count {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
    padding: 4px 12px;
    z-index: 10;
}

    .detail-25-slide-count i {
        margin-right: 5px;
    }

.detail-25-thumb-slider {
    margin-top: 8px;
}

.detail-25-thumb-img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.detail-25-thumb-slider .swiper-slide-active .detail-25-thumb-img {
    border-color: #ed1c24;
}

/* Dahil/Hariç dash listesi */
.detail-25-dash-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .detail-25-dash-list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        padding: 6px 0;
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        border-bottom: 1px solid #f5f5f5;
    }

        .detail-25-dash-list li:last-child {
            border-bottom: none;
        }

        .detail-25-dash-list li i {
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 13px;
        }

.detail-25-dash-list--inc li i.fa-check,
.detail-25-dash-list--inc li i.fa-solid.fa-check {
    color: #22a020 !important;
}

.detail-25-dash-list--exc li i.fa-xmark,
.detail-25-dash-list--exc li i.fa-solid.fa-xmark {
    color: #ed1c24 !important;
}

/* Collapsable kart ortak başlık */
.detail-25-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 16px;
    border-bottom: 1px solid #f0f0f0;
    margin: -20px -20px 16px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}

    .detail-25-card-head:hover {
        background: #fafafa;
        border-radius: 14px 14px 0 0;
    }

.detail-25-card-head-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

    .detail-25-card-head-title i {
        color: #ed1c24;
        font-size: 16px;
    }

.detail-25-card-chevron {
    color: #aaa;
    font-size: 13px;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.detail-25-collapsable.detail-25-collapsed .detail-25-card-chevron,
.detail-25-collapsable.detail-25-collapsed .detail-25-pricelist-header .detail-25-card-chevron {
    transform: rotate(-180deg);
}

.detail-25-collapsable-body {
    max-height: 5000px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 1;
}

.detail-25-collapsable.detail-25-collapsed .detail-25-collapsable-body {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease;
}

/* Konaklama Bilgileri içerik */
.detail-25-hotels-body {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    padding: 4px 0;
}

    .detail-25-hotels-body p {
        margin-bottom: 12px;
    }

/* ── Uçuş Bilgileri ─────────────────────────── */
.detail-25-flights {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-25-flight-row {
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 0;
}

    .detail-25-flight-row:last-child {
        border-bottom: none;
        padding-bottom: 4px;
    }

.detail-25-flight-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.detail-25-flight-dir {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    padding: 3px 8px;
}

.detail-25-flight-dir--out {
    background: #e6f9e6;
    color: #22a020;
}

.detail-25-flight-dir--return {
    background: #fde8e8;
    color: #ed1c24;
}

.detail-25-flight-airline-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.detail-25-flight-airline-logo {
    width: 27px;
    height: 27px;
    object-fit: contain;
    flex-shrink: 0;
}

.detail-25-flight-airline {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.detail-25-flight-code {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    font-family: monospace;
}

.detail-25-flight-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-25-flight-point {
    min-width: 90px;
    flex-shrink: 0;
}

.detail-25-flight-point--right {
    text-align: right;
}

.detail-25-flight-time {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.detail-25-flight-airport {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.detail-25-flight-date {
    font-size: 11px;
    color: #bbb;
    margin-top: 1px;
}

.detail-25-flight-line {
    flex: 1;
    min-width: 0;
}

.detail-25-flight-line-track {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.detail-25-flight-line-bar {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.detail-25-flight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid;
}

.detail-25-flight-dot--green {
    background: #22a020;
    border-color: #22a020;
}

.detail-25-flight-dot--red {
    background: #ed1c24;
    border-color: #ed1c24;
}

.detail-25-flight-line-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    padding: 0 6px;
}

.detail-25-flight-duration {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
}

.detail-25-flight-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #22a020;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #22a020;
    font-size: 11px;
}

.detail-25-flight-icon--return {
    border-color: #ed1c24;
    color: #ed1c24;
}

.detail-25-flights-note {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 576px) {
    .detail-25-flight-time {
        font-size: 18px;
    }

    .detail-25-flight-point {
        min-width: 70px;
    }

    .detail-25-gallery .swiper-container {
        padding-bottom: 0px;
    }
}

/* Genel kart stili - sol sütun */
.detail-25-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.detail-25-card--infobar {
    padding: 18px 20px;
}

.detail-25-card--tabs {
    padding: 0;
    overflow: hidden;
}

    .detail-25-card--tabs .nav-tabs {
        padding: 0 16px;
        background: #fafafa;
        border-bottom: 1px solid #e8e8e8;
        border-radius: 14px 14px 0 0;
    }

    .detail-25-card--tabs .tab-content {
        padding: 16px;
    }

/* Info bar */
.detail-25-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.detail-25-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 110px;
    /*background: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 10px 14px;*/
}

    .detail-25-info-item i {
        font-size: 18px;
        color: #555;
        flex-shrink: 0;
    }

.detail-25-info-text {
    display: flex;
    flex-direction: column;
}

.detail-25-info-label {
    font-size: 10px;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.detail-25-info-value {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-25-copy-btn {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
}

    .detail-25-copy-btn:hover {
        background: #f5f5f5;
        border-color: #ed1c24;
        color: #ed1c24;
    }

    .detail-25-copy-btn:active {
        transform: scale(0.95);
    }

    .detail-25-copy-btn.copied {
        background: #f0fdf0;
        border-color: #22a020;
        color: #22a020;
    }

/* Intro text */
.detail-25-intro-text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

/* Fiyat Listesi Kartı */
.detail-25-pricelist-card {
    padding: 0;
    overflow: hidden;
}

.detail-25-pricelist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-25-pricelist-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

    .detail-25-pricelist-title i {
        color: #ed1c24;
        font-size: 16px;
    }

.detail-25-pricelist-perpax {
    font-size: 13px;
    color: #999;
}

.detail-25-pricelist-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

    .detail-25-pricelist-table thead tr {
        border-bottom: 1px solid #f0f0f0;
    }

    .detail-25-pricelist-table thead th {
        font-size: 11px;
        font-weight: 600;
        color: #aaa;
        letter-spacing: 0.4px;
        padding: 8px 20px;
        text-align: left;
        background: #fafafa;
    }

.detail-25-pricelist-row {
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

    .detail-25-pricelist-row:hover {
        background: #fafafa;
    }

.detail-25-pricelist-row--active {
    border-left: 3px solid #ed1c24;
}

.detail-25-pricelist-row td {
    padding: 14px 20px;
    vertical-align: middle;
}

.detail-25-pricelist-date {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.detail-25-pricelist-date--link {
    color: #1a1a1a;
    text-decoration: none;
}

    .detail-25-pricelist-date--link:hover {
        color: #ed1c24;
    }

.detail-25-pricelist-badge {
    display: inline-block;
    background: #fde8e8;
    color: #ed1c24;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 7px;
    margin-left: 8px;
    letter-spacing: 0.3px;
    vertical-align: middle;
}

.detail-25-pricelist-old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
    margin-right: 4px;
}

.detail-25-pricelist-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.detail-25-pricelist-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap;
}

    .detail-25-pricelist-status i {
        font-size: 8px;
    }

.detail-25-pricelist-status--ok {
    background: #f0fdf0;
    color: #22a020;
}

.detail-25-pricelist-status--low {
    background: #fffbeb;
    color: #d97706;
}

.detail-25-pricelist-status--sold {
    background: #fff1f0;
    color: #cf1322;
}

.detail-25-pricelist-footer {
    padding: 12px 20px;
    font-size: 12px;
    color: #aaa;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-25-right {
    padding-left: 10px;
}

/* Share Box */
.detail-25-share-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.detail-25-share-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.detail-25-share-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .detail-25-share-links a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid #ececec;
        color: #555;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .detail-25-share-links a:hover {
            border-color: #ed1c24;
            color: #ed1c24;
            background: #fff6f6;
        }

/* Map Preview Link */
.detail-25-map-preview-link {
    display: block;
    cursor: pointer;
}

    .detail-25-map-preview-link img {
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .detail-25-map-preview-link:hover img {
        opacity: 0.95;
        transform: scale(1.01);
    }

.detail-25-price-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.detail-25-price-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.detail-25-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
}

.detail-25-price-old-row {
    margin-bottom: 4px;
}

.detail-25-price-main {
    font-size: 34px;
    font-weight: 800;
    color: #ed1c24 !important;
    line-height: 1;
}

.detail-25-price-old {
    font-size: 18px;
    color: #999;
    font-weight: 600;
    text-decoration: line-through;
}

.detail-25-price-note {
    font-size: 11px;
    color: #ff8c00;
    font-weight: 600;
    margin-left: 0;
    align-self: flex-end;
    margin-bottom: 4px;
}

/* İndirim tutarı badge - satır içinde sağda */
.detail-25-discount-amount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ed1c24);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(237, 28, 36, 0.25);
    white-space: nowrap;
    margin-left: auto;
    align-self: center;
}

.detail-25-discount-amount-badge i {
    font-size: 10px;
}

/* Kontenjan uyarısı */
.detail-25-availability-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
    color: #856404;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.15);
}

.detail-25-availability-warning i {
    color: #f39c12;
    font-size: 16px;
    flex-shrink: 0;
}

.detail-25-availability-warning strong {
    color: #f39c12;
}

.detail-25-tl-badge {
    background: #f0fdf0;
    color: #22a020;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.detail-25-discount-badge {
    background: #f0fdf0;
    color: #22a020;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.detail-25-info-badge {
    background: #cfe3ff;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.detail-25-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #ed1c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 0.2s;
    cursor: pointer;
    box-sizing: border-box;
}

    .detail-25-buy-btn:hover,
    .detail-25-buy-btn:focus {
        background: #c91820;
        color: #fff;
        text-decoration: none;
    }

.detail-25-action-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.detail-25-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

    .detail-25-action-btn:hover {
        background: #f5f5f5;
        color: #333;
        text-decoration: none;
    }

.detail-25-action-btn--full {
    width: 100%;
    flex: none;
}

/* Room Select */
.detail-25-room-select-wrapper {
    margin-bottom: 16px;
}

.detail-25-room-select-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .detail-25-room-select-label i {
        color: #ed1c24;
    }

.detail-25-room-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.59 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

    .detail-25-room-select:hover {
        border-color: #ed1c24;
    }

    .detail-25-room-select:focus {
        outline: none;
        border-color: #ed1c24;
        box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
    }

.detail-25-room-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.detail-25-room-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .detail-25-room-box-title i {
        color: #ed1c24;
    }

.detail-25-room-box-subtitle {
    font-size: 12px;
    color: #999;
    margin: 0 0 14px;
}

.detail-25-room-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #fff;
    transition: border-color 0.2s;
    cursor: pointer;
}

.detail-25-room-item--selected {
    border-color: #ed1c24;
    background: #fff8f8;
}

.detail-25-room-icon {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #555;
    flex-shrink: 0;
}

.detail-25-room-item--selected .detail-25-room-icon {
    background: #fde8e8;
    color: #ed1c24;
}

.detail-25-room-info {
    flex: 1;
}

.detail-25-room-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.detail-25-room-sub {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.detail-25-room-status {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-25-room-status--selected {
    color: #ed1c24;
    font-weight: 600;
}

.detail-25-room-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.detail-25-room-price--free span {
    color: #22a020;
    font-weight: 700;
}

.detail-25-other-dates .panel {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 991px) {
    .detail-25-left {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .detail-25-right {
        padding-left: 0;
        margin-top: 0;
    }

    .detail-25-main-img {
        height: 280px;
    }
}



/* Desktop'ta sticky bar'ı gizle */
@media (min-width: 768px) {
    .tour-detail-sticky-price {
        display: none;
    }
}

}

.tcs1-nav:hover {
    background: #fff;
    border-color: #2d3e50;
    box-shadow: 0 5px 16px rgba(0,0,0,0.18);
}

.tcs1-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: auto;
}

.tcs1-nav i {
    font-size: 14px;
    color: #2d3e50;
    pointer-events: none;
}

.tcs1-prev {
    left: -22px;
}

.tcs1-next {
    right: -22px;
}

@media (max-width: 767px) {
    .tcs1-img-wrapper {
        height: 180px;
    }

    .tcs1-title {
        font-size: 16px;
    }

    .tcs1-current-price strong {
        font-size: 24px;
    }

    .tcs1-nav {
        top: 20%;
    }

    .tcs1-prev {
        left: 0;
    }

    .tcs1-next {
        right: 0;
    }

    .tcs1-meta-row {
        gap: 0px;
        flex-direction: column;
    }

    .tcs1-meta-item {
        flex: 1 1 100%;
    }

    .tcs1-timer-item strong {
        font-size: 16px;
    }

    .tcs1-card {
        height: 480px;
    }
}

.trs-next {
    right: -18px;
}

@media (max-width: 767px) {
    .trs-img {
        height: 170px;
    }

    .trs-title {
        font-size: 12px;
    }

    .trs-name {
        font-size: 11px;
    }

    .trs-prev {
        left: 0;
    }

    .trs-next {
        right: 0;
    }

    .trs-price {
        font-size: 20px;
    }

    .trs-features {
        font-size: 12px;
    }

    .trs-body {
        padding: 6px 8px 8px;
    }

    .trs-card {
        height: 400px;
    }
}

.custom-showcase1-swiper .cs1-prev {
    left: 20px;
}

.custom-showcase1-swiper .cs1-next {
    right: 20px;
}

    .custom-showcase1-swiper .cs1-prev.swiper-button-disabled,
    .custom-showcase1-swiper .cs1-next.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

@media (max-width: 767px) {
    .custom-showcase1-swiper .cs1-prev,
    .custom-showcase1-swiper .cs1-next {
        display: none;
    }

    .cs1-title {
        font-size: 14px;
    }

    .cs1-count {
        font-size: 12px;
    }
}


/* ===== grid-showcase ===== */
.grid-showcase-section {
    padding: 20px 0;
}

    .grid-showcase-section h2.section-title {
        font-size: 26px;
    }

.grid-showcase-wrapper {
    position: relative;
}

    .grid-showcase-wrapper .swiper-slide {
        text-align: start !important;
    }

.grid-showcase-swiper {
    overflow: hidden;
}

    .grid-showcase-swiper .swiper-slide {
        width: 280px;
        max-width: 100%;
    }

.grid-showcase-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

    .grid-showcase-card:hover {
        text-decoration: none;
        color: inherit;
        transform: translateY(-4px);
    }

.grid-showcase-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
    height: 200px;
}

/* Grid Two - 2 eleman, daha büyük görseller */
.grid-two .grid-showcase-img-wrapper {
    height: 420px;
}

/* Grid Three - 3 eleman, orta boy görseller */
.grid-three .grid-showcase-img-wrapper {
    height: 230px;
}

/* Grid Four - 4+ eleman, standart görseller */
.grid-four .grid-showcase-img-wrapper {
    height: 280px;
}

/* Grid five - 5 eleman, standart görseller */
.grid-five .grid-showcase-img-wrapper {
    height: 200px;
}

/* Grid six - 6 eleman, standart görseller */
.grid-six .grid-showcase-img-wrapper {
    height: 180px;
}

.grid-showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.grid-showcase-card:hover .grid-showcase-img-wrapper img {
    transform: scale(1.05);
}

.grid-showcase-info {
    padding: 12px 4px 0;
}

.grid-showcase-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3e50;
    margin: 0 0 2px;
    line-height: 1.3;
}

.grid-showcase-count {
    font-size: 14px;
    color: #7a8b9a;
    display: block;
}

.grid-showcase-price {
    font-size: 14px;
    color: #1a2b49;
    font-weight: 700;
}

.grid-showcase-price-from {
    font-size: 12px;
    color: #7a8b9a;
}

.grid-showcase-prev,
.grid-showcase-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #e0e4e8;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: -40px;
}

/* Grid Two - butonlar daha yukarıda */
.grid-two .grid-showcase-prev,
.grid-two .grid-showcase-next {
    margin-top: -80px;
}

/* Grid Three - butonlar ortada */
.grid-three .grid-showcase-prev,
.grid-three .grid-showcase-next {
    margin-top: -60px;
}

/* Grid Four - butonlar standart */
.grid-four .grid-showcase-prev,
.grid-four .grid-showcase-next {
    margin-top: -40px;
}

/* Grid Five - butonlar standart */
.grid-five .grid-showcase-prev,
.grid-five .grid-showcase-next {
    margin-top: -30px;
}

/* Grid Six - butonlar standart */
.grid-six .grid-showcase-prev,
.grid-six .grid-showcase-next {
    margin-top: -20px;
}


.grid-showcase-prev:hover,
.grid-showcase-next:hover {
    background: #fff;
    border-color: #2d3e50;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.grid-showcase-prev i,
.grid-showcase-next i {
    font-size: 14px;
    color: #2d3e50;
    line-height: 1;
}

.grid-showcase-prev {
    left: 20px;
}

.grid-showcase-next {
    right: 20px;
}

    .grid-showcase-prev.swiper-button-disabled,
    .grid-showcase-next.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

@media (max-width: 767px) {
    .grid-showcase-wrapper {
        padding: 0;
    }

    .grid-showcase-prev,
    .grid-showcase-next {
        display: none;
    }

    .grid-showcase-title {
        font-size: 14px;
    }

    .grid-showcase-count {
        font-size: 12px;
    }

    /* Mobilde tüm grid tipleri aynı boyutta */
    .grid-two .grid-showcase-img-wrapper,
    .grid-three .grid-showcase-img-wrapper,
    .grid-four .grid-showcase-img-wrapper {
        height: 200px;
    }

    .grid-two .grid-showcase-swiper .swiper-slide,
    .grid-three .grid-showcase-swiper .swiper-slide,
    .grid-four .grid-showcase-swiper .swiper-slide {
        width: 100%;
    }
}

/* ==========================================================================
   Tour Detail 2025 – Galeri Kart + Accordion Program + Servis Kartları
   ========================================================================== */

/* Galeri kartı */
.detail-25-card--gallery {
    padding: 10px;
    overflow: hidden;
}

/* Tur Programı Accordion */
.detail-25-program-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0f0f0;
    margin: -20px -20px 0;
}

    .detail-25-program-header i {
        color: #ed1c24;
        font-size: 16px;
    }

.detail-25-program-list {
    margin-top: 4px;
}

.detail-25-program-item {
    border-bottom: 1px solid #f0f0f0;
}

    .detail-25-program-item:last-child {
        border-bottom: none;
    }

.detail-25-program-item-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: background 0.15s;
}

    .detail-25-program-item-head:hover {
        background: #fafafa;
    }

.detail-25-program-day-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    font-size: 13px;
    font-weight: 700;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
    line-height: 1.2;
}

.detail-25-program-day-num {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.detail-25-program-day-text {
    font-size: 11px;
    font-weight: 700;
    display: block;
    letter-spacing: 0.5px;
}

.detail-25-program-day-badge--active {
    background: #ed1c24;
    color: #fff;
}

.detail-25-program-item-info {
    flex: 1;
}

.detail-25-program-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.detail-25-program-item-sub {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

.detail-25-program-chevron {
    color: #aaa;
    font-size: 13px;
    flex-shrink: 0;
}

.detail-25-program-item-body {
    padding: 0 20px 18px 66px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    overflow: hidden;
    max-height: 3000px;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
}

.detail-25-program-item-body--hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease, padding 0.3s ease;
}

.detail-25-program-img {
    width: 100%;
    max-width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    float: left;
    margin: 0 16px 12px 0;
}

.detail-25-program-desc {
    display: block;
}

    .detail-25-program-desc::after {
        content: '';
        display: table;
        clear: both;
    }

/* Dahil/Hariç ve Notlar kartları */
.detail-25-service-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

    .detail-25-service-section:first-of-type {
        margin-top: 14px;
        border-top: none;
        padding-top: 0;
    }

.detail-25-service-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}

.detail-25-service-title--inc i {
    color: #22a020;
}

.detail-25-service-title--exc i {
    color: #ed1c24;
}

.detail-25-service-body {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

/* Dahil/Hariç iki sütunlu grid */
.detail-25-services-grid {
    display: -webkit-flex;
    display: flex;
    gap: 0;
    margin-top: 16px;
}

.detail-25-services-col {
    flex: 1;
    padding: 0 20px;
}

.detail-25-services-col--inc {
    border-right: 1px solid #f0f0f0;
}

.detail-25-services-col-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}

.detail-25-services-col--inc .detail-25-services-col-title i {
    color: #22a020;
}

.detail-25-services-col--exc .detail-25-services-col-title i {
    color: #ed1c24;
}

.detail-25-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* HTML içindeki li elementlerini stillendir */
.detail-25-services-list--inc li,
.detail-25-services-list--inc p {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

    .detail-25-services-list--inc li::before,
    .detail-25-services-list--inc p::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        color: #22a020;
        font-weight: 700;
        font-size: 14px;
    }

.detail-25-services-list--exc li,
.detail-25-services-list--exc p {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

    .detail-25-services-list--exc li::before,
    .detail-25-services-list--exc p::before {
        content: '×';
        position: absolute;
        left: 0;
        top: 0;
        color: #ed1c24;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
    }

@media (max-width: 767px) {
    .detail-25-services-grid {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .detail-25-services-col--inc {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

/* Yorumlar */
.detail-25-comments-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.detail-25-comment-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

    .detail-25-comment-item:last-child {
        border-bottom: none;
    }

.detail-25-comment-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

    .detail-25-comment-name span {
        font-weight: 400;
        color: #999;
    }

.detail-25-comment-text {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Yorum formu */
.detail-25-comment-form {
    margin-top: 14px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.detail-25-comment-form-row {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
}

.detail-25-comment-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

    .detail-25-comment-input:focus {
        border-color: #ed1c24;
    }

.detail-25-comment-textarea {
    resize: vertical;
    min-height: 100px;
}

.detail-25-comment-submit {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    background: #ed1c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

    .detail-25-comment-submit:hover {
        background: #c91820;
    }

/* İlgili Turlar (Vue) */
.detail-25-related-tours {
    margin-top: 4px;
}

.detail-25-related-title {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .detail-25-related-title i {
        color: #ed1c24;
    }

.detail-25-related-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: box-shadow 0.2s;
}

    .detail-25-related-item:hover {
        box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }

    .detail-25-related-item a {
        display: flex;
        gap: 10px;
        text-decoration: none;
        color: inherit;
        padding: 10px;
    }

.detail-25-related-img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.detail-25-related-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-25-related-prod {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-25-related-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2px 0;
    line-height: 1.3;
}

.detail-25-related-meta {
    font-size: 11px;
    color: #aaa;
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

    .detail-25-related-meta i {
        margin-right: 3px;
    }

.detail-25-related-price {
    font-size: 13px;
    font-weight: 700;
    color: #ed1c24;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .detail-25-title {
        font-size: 20px;
    }

    .detail-25-main-img {
        height: 220px;
    }

    .detail-25-card {
        margin: 6px;
    }

    .detail-25-program-img {
        max-width: 100%;
        height: auto;
    }
    .detail-25-pricelist-row td {
        padding: 10px;
    }
        .detail-25-program-item-head {
        padding: 6px;
    }

    .detail-25-program-item-body {
        padding: 6px;
    }

    .detail-25-info-bar {
        gap: inherit;
        margin-bottom: 10px;
    }

    .detail-25-room-box {
        margin: 6px;
    }

    .detail-25-share-box {
        margin: 6px;
    }

    .detail-25-info-item {
        min-width: 60px;
    }

    .detail-25-price-main {
        font-size: 26px;
    }

    .detail-25-gallery {
        margin-bottom: 0px;
    }

        .detail-25-gallery .swiper-container {
            padding-bottom: 5px;
        }

    .detail-25-location {
        text-align: center;
        margin-bottom: 5px;
    }

    /* Mobile Sticky Price Bar */
    .tour-detail-sticky-price {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #fff !important;
        border-top: 2px solid #ed1c24 !important;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15) !important;
        z-index: 9999 !important;
        padding: 12px 15px !important;
        margin: 0 !important;
    }

    .tour-detail-sticky-price-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        max-width: 100%;
    }

    .tour-detail-sticky-price-info {
        flex: 1;
    }

    .tour-detail-sticky-price-label {
        font-size: 11px;
        color: #777;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .tour-detail-sticky-price-old {
        font-size: 14px;
        color: #999;
        text-decoration: line-through;
        margin-bottom: 2px;
        font-weight: 500;
    }

    .tour-detail-sticky-price-amount {
        font-size: 20px;
        font-weight: 800;
        color: #ed1c24;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .tour-detail-sticky-availability {
        font-size: 10px;
        color: #f39c12;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 4px;
        margin-top: 4px;
    }

    .tour-detail-sticky-availability i {
        font-size: 10px;
    }

    .tour-detail-sticky-buy-btn {
        background: #ed1c24;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        transition: background 0.2s;
        flex-shrink: 0;
    }

        .tour-detail-sticky-buy-btn:hover,
        .tour-detail-sticky-buy-btn:focus {
            background: #c91820;
            color: #fff;
            text-decoration: none;
        }

    /* Alt kısımda sticky bar için boşluk bırak */
    .detail-25-page {
        padding-bottom: 80px !important;
    }

    body {
        padding-bottom: 80px !important;
    }

    #footer {
        margin-bottom: 80px !important;
    }
}