.tour-detail-container {
    padding: 40px 0 60px;
    background: var(--gray-50);
}

.tour-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.tour-header-section {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.tour-main-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.tour-meta-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tour-location,
.tour-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.tour-location svg,
.tour-rating svg {
    color: var(--primary-orange);
}

.tour-gallery-section {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.tour-gallery-slider {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
}

.tour-gallery-slider:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    color: var(--gray-700);
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.content-section {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-text {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.section-text:last-child {
    margin-bottom: 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 6px;
}

.highlights-list li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.itinerary-item {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: visible;
}

.itinerary-day {
    background: var(--gray-50);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.itinerary-day:hover {
    background: var(--gray-100);
}

.day-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.day-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-900);
    flex: 1;
}

.day-time {
    font-size: 13px;
    color: var(--gray-600);
}

.itinerary-content {
    padding: 0 16px;
    color: var(--gray-700);
    font-size: 12px;
    line-height: 1.6;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.25s ease,
        opacity 0.25s ease,
        padding-top 0.25s ease,
        padding-bottom 0.25s ease;
}

.itinerary-item.open .itinerary-content {
    padding: 16px;
    opacity: 1;
    overflow: visible;
    /* max-height JavaScript tarafından dinamik olarak ayarlanacak */
}

.included-grid,
.excluded-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.included-item,
.excluded-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-700);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.cross-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
}

.tour-detail-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.sidebar-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.tour-type-badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--gray-600);
    font-size: 14px;
}

.info-value {
    color: var(--gray-900);
    font-size: 14px;
    font-weight: 600;
}

.price-header {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 20px;
}

.price-label {
    display: block;
    color: var(--gray-600);
    font-size: 13px;
    margin-bottom: 8px;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-old {
    font-size: 18px;
    color: var(--gray-500);
    text-decoration: line-through;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 80, 163, 0.1);
}

.person-selector-box {
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.person-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.person-row span {
    font-size: 14px;
    color: var(--gray-700);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    color: var(--gray-700);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 30px;
    text-align: center;
}

.btn-reserve {
    width: 100%;
    padding: 14px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #e67e3d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-card .card-text {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-card .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
}

.contact-card .contact-icon {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.btn-contact {
    width: 100%;
    padding: 12px;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-blue);
    color: var(--white);
}

@media (max-width: 1024px) {
    .tour-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        position: static;
    }
    
    .tour-gallery-section {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-carousel {
        height: auto;
    }
    
    .thumbnail-track {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .thumbnail {
        width: 100px;
        height: 75px;
    }
    
    .thumb-nav {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Yatay Tur Bilgileri Kartı (Galerinin Altında) */
.tour-info-card-horizontal {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.tour-info-card-horizontal .tour-type-badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 8px;
}

.info-item .info-label {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
}

.info-item .info-value {
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 600;
}

/* HTML İçerik Blokları */
.content-html {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
}

.content-html p {
    margin-bottom: 12px;
}

.content-html ul,
.content-html ol {
    margin: 12px 0;
    padding-left: 24px;
    font-size: 13px;
}

.content-html li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-html h1,
.content-html h2,
.content-html h3,
.content-html h4 {
    color: var(--gray-900);
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-html h1 { font-size: 24px; }
.content-html h2 { font-size: 20px; }
.content-html h3 { font-size: 18px; }
.content-html h4 { font-size: 16px; }

.content-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.content-html table td,
.content-html table th {
    padding: 12px;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.content-html table th {
    background: var(--gray-50);
    font-weight: 600;
}

.content-html strong,
.content-html b {
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 480px) {
    .tour-header-section,
    .tour-gallery-section,
    .content-section,
    .sidebar-card,
    .tour-info-card-horizontal {
        padding: 16px;
        box-sizing: border-box;
    }
    
    .tour-main-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .price-current {
        font-size: 26px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Çocuk Yaş Seçim Stilleri */
.children-age-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.child-age-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.child-age-row label {
    font-size: 14px;
    color: var(--gray-700);
    min-width: 100px;
    margin: 0;
}

.child-age-row select {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.child-age-row select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 80, 163, 0.1);
}

/* ============================================
   FİYAT GÖSTERİMİ
   ============================================ */

.total-price {
    background: #f7fafc;
    padding: 16px;
    border-radius: 8px;
    position: relative;
    margin-top: 20px;
}

/* Kampanyalı Wrapper */
.total-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

/* Badge Ortada */
.campaign-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: #dc2626;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.campaign-badge svg {
    width: 13px;
    height: 13px;
    fill: white;
}

/* Eski Fiyat Sağda Üstte */
.price-old-row {
    width: 100%;
    text-align: right;
    margin-bottom: 3px;
    line-height: 1.2;
    margin-top: 5px;
}

.amount-old {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: line-through;
}

/* 2 Kişilik Fiyat */
.price-main-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 2px;
    line-height: 1;
}

.price-main-row .price-label {
    font-size: 13px;
    color: #4a5568;
}

.price-main-row .amount-new {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

/* TL Sağda Küçük */
.price-tl-row {
    width: 100%;
    text-align: right;
    font-size: 9px;
    color: #6b7280;
    margin-top: 0;
    line-height: 1.3;
}

.price-tl-row strong {
    font-size: 14px;
}

/* Kampanyasız */
.price-normal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.price-normal-row {
    display: flex;
    gap: 5px;
    align-items: baseline;
    margin-bottom: 2px;
    line-height: 1;
}

.price-normal-row .price-label {
    font-size: 13px;
    color: #4a5568;
}

.price-normal-row .amount-normal {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

/* TL Karşılık (Hem kampanyalı hem normal fiyatlarda) */
.price-try-equivalent {
    width: 100%;
    text-align: right;
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.2;
    font-weight: 400;
}

.price-try-equivalent .try-note {
    font-size: 9px;
    color: #9ca3af;
    margin-right: 6px;
}

.tour-tabs-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Tab Navigation - Underline Style */
.tour-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
    background: var(--gray-50);
    gap: 0;
}

.tour-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tour-tab-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.tour-tab-btn:hover {
    background: rgba(24, 80, 163, 0.05);
    color: var(--primary-blue);
}

.tour-tab-btn.active {
    background: var(--white);
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    font-weight: 600;
}

.tour-tab-btn.active svg {
    color: var(--primary-blue);
}

/* Tab Content */
.tour-tabs-content {
    position: relative;
    min-height: 300px;
}

.tour-tab-panel {
    display: none;
    padding: 32px;
    animation: fadeIn 0.4s ease;
}

.tour-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section Wrapper (Sekme Dışı Hizmetler) */
.services-section-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

/* Info Section (Genel Bilgiler sekmesi için) */
.info-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Placeholder for Tarihler ve Fiyatlar */
.tab-content-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

/* Fiyat Tablosu */
.price-table-wrapper {
    overflow-x: auto;
    margin-top: 10px;
}

.price-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.price-table thead tr {
    background-color: var(--gray-100);
}

.price-table th {
    padding: 12px;
    border: 1px solid var(--gray-200);
    font-weight: 600;
    font-size: 12px;
    color: var(--gray-700);
}

.price-table th:first-child {
    text-align: left;
}

.price-table th:not(:first-child) {
    text-align: center;
}

.price-table tbody tr:nth-child(even) {
    background-color: var(--gray-50);
}

.price-table tbody tr:nth-child(odd) {
    background-color: var(--white);
}

.price-table td {
    padding: 12px;
    border: 1px solid var(--gray-200);
    font-size: 12px;
    color: var(--gray-800);
}

.price-table td:first-child {
    font-weight: 500;
}

.price-table td:not(:first-child) {
    text-align: center;
}

/* ============================================
   MOBILE STICKY ACTION BAR
   ============================================ */

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 12px;
    gap: 12px;
    align-items: center;
}

.sticky-action-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--gray-700);
}

.sticky-action-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.sticky-action-item:hover svg {
    color: var(--primary-orange);
}

/* Phone and WhatsApp icons with borders */
.sticky-action-item:not(.sticky-reserve-btn) {
    border-right: 1px solid var(--gray-200);
    min-width: 60px;
}

/* Reserve button */
.sticky-reserve-btn {
    flex: 1;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
}

.sticky-reserve-btn:hover {
    background: #e67e3d;
}

/* Sidebar close button (only visible on mobile) */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.sidebar-close-btn svg {
    color: var(--gray-700);
}

.sidebar-close-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary-blue);
}

.sidebar-close-btn:hover svg {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        position: relative;
    }

    .tour-detail-container {
        width: 100% !important;
        padding: 16px !important;
    }

    .tour-detail-container .container {
        padding: 0 !important;
        width: 100% !important;
    }

    .tour-tab-panel {
        padding: 16px !important;
    }

    .day-title {
        font-size: 12px;
    }

    .itinerary-day {
        padding: 12px;
    }
    
    /* Show sticky bar */
    .mobile-sticky-bar {
        display: flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Add padding to body to prevent content from being hidden behind sticky bar */
    body {
        padding-bottom: 70px;
    }
    
    /* Hide sidebar by default on mobile */
    .tour-detail-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        background: var(--white);
        z-index: 1000;
        overflow-y: auto;
        transition: right 0.4s ease, box-shadow 0.4s ease;
        padding: 60px 20px 20px;
        box-shadow: none;
    }
    
    /* Make reservation card fill remaining space */
    .sidebar-card.reservation-card {
        min-height: 100vh;
    }
    
    /* Hide contact card on mobile */
    .contact-card {
        display: none;
    }
    
    /* Show sidebar when active */
    .tour-detail-sidebar.active {
        right: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Show close button on mobile */
    .sidebar-close-btn {
        display: flex;
    }
    
    /* Prevent body scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
    }
    
    /* Overlay backdrop */
    body.sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }
    
    /* Force all content cards to respect container width */
    .tour-header-section,
    .tour-gallery-section,
    .content-section,
    .tour-info-card-horizontal,
    .tour-tabs-container,
    .services-section-wrapper {
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
    }
    
    /* Gallery slider responsive */
    .tour-gallery-slider {
        height: 300px;
    }
    
    .gallery-nav {
        width: 36px;
        height: 36px;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .tour-main-title {
        font-size: 18px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .highlights-list,
    .included-grid,
    .excluded-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .tour-detail-layout {
        width: 100%;
        box-sizing: border-box;
    }

    .tour-detail-content {
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }

    .tour-location, .tour-rating {
        font-size: 13px;
    }

    .tour-tab-btn svg {
        display: none;
    }

    .tour-tab-btn span {
        font-size: 14px;
    }
}