.tour-detail-container {
    padding: 40px 0 60px;
    background: var(--gray-50);
}

.tour-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-detail-top {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.tour-header-section {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.hotel-header-section {
    padding: 0;
    margin-bottom: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.hotel-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hotel-header-left {
    flex: 1;
    min-width: 0;
}

.hotel-header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hotel-stars-row {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    color: #b45309;
}

.hotel-star-icon {
    font-size: 16px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hotel-stars-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-left: 6px;
}

.hotel-main-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.hotel-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.hotel-location-badge .material-symbols-outlined {
    font-size: 17px;
    color: var(--primary-orange);
}

.hotel-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(14, 101, 235, 0.25);
    background: rgba(14, 101, 235, 0.05);
    color: #0e65eb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.hotel-map-btn:hover {
    background: rgba(14, 101, 235, 0.12);
    border-color: rgba(14, 101, 235, 0.45);
}

.hotel-map-btn .material-symbols-outlined {
    font-size: 18px;
}

@media (max-width: 600px) {
    .hotel-main-title { font-size: 22px; }
    .hotel-header-inner { flex-direction: column; align-items: flex-start; }
}


.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 {
    margin-bottom: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ── Gallery Grid (yeni tasarım) ─────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 12px;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-hero {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.gallery-hero:hover img {
    transform: scale(1.04);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.gallery-thumb {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: none;
    width: 100%;
    font-family: inherit;
    gap: 4px;
    transition: background 0.2s;
}

.gallery-overlay-btn:hover {
    background: rgba(0, 0, 0, 0.58);
}

.gallery-overlay-btn .material-symbols-outlined {
    font-size: 28px;
    transition: transform 0.2s;
}

.gallery-overlay-btn:hover .material-symbols-outlined {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .gallery-hero {
        height: 260px;
    }
    .gallery-thumbs {
        display: none;
    }
}



/* Tour Banner Section */
.tour-banner-section {
    margin-bottom: 20px;
}

.tour-banner-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.tour-banner-section .banner-mobile {
    display: none;
}

.tour-banner-section .banner-desktop {
    display: block;
}

.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-top {
        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;
}

/* ── Genel Bilgiler + Harita Kartı ────────────────────────────── */
.hotel-overview-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    display: flex;
    gap: 0;
    overflow: hidden;
}

.fac-preview-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    padding: 28px 32px;
}

.hotel-overview-left {
    flex: 3;
    padding: 28px 32px;
    border-right: 1px solid var(--gray-200);
}

.hotel-overview-right {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.hotel-overview-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.3;
}

.hotel-overview-text {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}

.hotel-overview-text--empty {
    color: var(--gray-500);
    font-style: italic;
}

/* ── Description preview fade ───────────────────── */
.hotel-desc-preview {
    position: relative;
    max-height: 140px;
    overflow: hidden;
}

.hotel-desc-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: linear-gradient(to bottom, transparent 0%, #fff 60%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}

.hotel-desc-more-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    padding: 0;
}

.hotel-desc-more-btn::before,
.hotel-desc-more-btn::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--primary-blue);
    opacity: 0.35;
    border-radius: 2px;
}

.hotel-desc-more-btn .material-symbols-outlined {
    font-size: 18px;
}

.hotel-desc-more-btn:hover {
    opacity: 0.75;
}

.hotel-map-snapshot {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.hotel-map-img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.hotel-map-show-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.22);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s;
    font-family: inherit;
}

.hotel-map-show-btn:hover {
    background: #eef2ff;
}

.hotel-map-show-btn .material-symbols-outlined {
    font-size: 16px;
}

@media (max-width: 768px) {
    .hotel-overview-card {
        flex-direction: column;
    }

    .hotel-overview-left {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 20px;
    }

    .hotel-overview-right {
        padding: 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: 13px;
    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İ
   ============================================ */

/* Ekstra Hizmetler Container */
.extra-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.extra-services-list:empty {
    display: none;
}

/* Her bir hizmet item'ı */
.extra-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

/* Zorunlu hizmetler - pasif */
.extra-service-item.required {
    background: #f9fafb;
    cursor: default;
    border-color: #d1d5db;
}

/* Zorunlu badge */
.required-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #10b981;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    z-index: 1;
}

/* Opsiyonel - hover efekti */
.extra-service-item.optional:hover {
    border-color: var(--primary-orange);
    background: #fff5f2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

/* Seçili durum */
.extra-service-item.selected {
    border-color: var(--primary-orange);
    background: #fff5f2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

/* Checkbox görünümü */
.service-checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.extra-service-item.optional:hover .service-checkbox {
    border-color: var(--primary-orange);
}

.selected .service-checkbox {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.checkbox-icon::before {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
    display: none;
}

.selected .checkbox-icon::before {
    display: block;
}

/* Zorunlu ikon */
.service-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

/* Hizmet bilgileri */
.service-info {
    flex: 1;
    min-width: 0;
}

.service-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
    font-size: 14px;
}

.service-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* Fiyat */
.service-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.price-per-person {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.price-total {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
    white-space: nowrap;
}

.people-count {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 4px;
}

.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;
}

/* PDF Download Button - Small (İçeriğin üstünde) */
.program-header-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.pdf-download-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-download-btn-small:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(248, 146, 82, 0.3);
}

.pdf-download-btn-small svg {
    width: 16px;
    height: 16px;
}

.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;
}

/* 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;
    }
    
    /* Mobile banner */
    .tour-banner-section .banner-desktop {
        display: none;
    }
    
    .tour-banner-section .banner-mobile {
        display: block;
    }

    .day-title {
        font-size: 12px;
    }

    .itinerary-day {
        padding: 12px;
    }
    
    /* 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,
    .tour-detail-top {
        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;
    }
    
    /* PDF Download Button - Mobile */
    .program-header-actions {
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .pdf-download-btn-small {
        font-size: 12px;
        padding: 7px 12px;
    }
    
    .pdf-download-btn-small svg {
        width: 14px;
        height: 14px;
    }
    
    /* Ekstra hizmetler mobil */
    .extra-service-item {
        padding: 10px;
        gap: 10px;
    }
    
    .required-badge {
        font-size: 10px;
        padding: 3px 8px;
        top: -8px;
        right: 8px;
    }
    
    .service-name {
        font-size: 13px;
    }
    
    .service-desc {
        font-size: 11px;
    }
    
    .price-per-person {
        font-size: 11px;
    }
    
    .price-total {
        font-size: 13px;
    }
    
    .people-count {
        font-size: 10px;
    }
}
/* ============================================
   HOTEL-SPECIFIC ADDITIONS (otel.css)
   ============================================ */

/* Date input styling */
input[type="date"].form-select {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

input[type="date"].form-select::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

/* Nights display */
#hotel-nights-display {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
    min-height: 16px;
}

/* Reservation card spacing */
.reservation-card .form-group {
    display: flex;
    flex-direction: column;
}

/* Star rating in header */
.hotel-stars {
    color: var(--primary-orange);
    letter-spacing: 2px;
    font-size: 16px;
}

/* Availability button full width */
#hotelCheckAvailBtn {
    width: 100%;
    margin-top: 8px;
}

/* Page body class */
body.page-hotel-detail {
    /* override if needed */
}

/* ═══════════════════════════════════════════════════════════════════
   ODA SEÇİMİ SEKMESİ
═══════════════════════════════════════════════════════════════════ */

/* Tarih seçilmemiş boş durum */
.room-offers-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 24px;
    text-align: center;
}

.room-offers-empty p {
    font-size: 15px;
    color: var(--gray-500);
    margin: 0;
}

.room-offers-date-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.room-offers-date-btn:hover {
    background: #1440880;
}

/* Yükleniyor durumu */
.room-offers-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 24px;
}

.room-offers-loading p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* Hata durumu */
.room-offers-error {
    text-align: center;
    padding: 40px 24px;
    color: #b91c1c;
}

.room-offers-retry-btn {
    display: inline-block;
    margin-top: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* ── Oda kartları listesi ──────────────────────────────────────── */
.room-cards-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Oda kartı (grid: görsel 4fr | body 8fr) ───────────────────── */
.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(195,198,214,0.2);
    display: grid;
    grid-template-columns: 4fr 8fr;
    transition: box-shadow 0.3s;
}

.room-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

/* Sol: Görsel */
.room-card-img {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.room-card-img img,
.room-card-photo {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.room-card:hover .room-card-img img,
.room-card:hover .room-card-photo {
    transform: scale(1.05);
}

.room-card-no-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
}

/* Köşe rozeti */
.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

.room-badge .material-symbols-outlined {
    font-size: 14px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Sağ: Body */
.room-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.room-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.room-card-info {
    flex: 1;
    min-width: 0;
}

.room-card-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 6px;
    line-height: 1.3;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 16px;
    margin-bottom: 12px;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-700);
}

.room-feature .material-symbols-outlined {
    font-size: 18px;
    color: var(--gray-500);
    flex-shrink: 0;
}

/* Kampanya badge + bilgi kutusu (hotel-list.css ile aynı sınıf adları) */
.hotel-img-badges {
    position: absolute;
    top: 22px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    pointer-events: none;
}
.hotel-img-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px 3px 10px;
    border-radius: 0 4px 4px 0;
    letter-spacing: 0.3px;
    line-height: 1.4;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    white-space: nowrap;
}
.hotel-campaign-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 10px 0 4px;
    border: 1px solid #ef4444;
    border-radius: 6px;
    overflow: hidden;
}
.hotel-campaign-title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
}
.hotel-campaign-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    background: #fff;
    padding: 7px 10px;
}
.hotel-campaign-label {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    flex: 1;
}
.hotel-campaign-info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #9ca3af;
    cursor: default;
    flex-shrink: 0;
}
.hotel-campaign-info-wrap:hover { color: #374151; }
.campaign-tooltip-floating {
    display: none;
    position: absolute;
    width: 240px;
    background: #1f2937;
    color: #f9fafb;
    font-size: 12px;
    line-height: 1.5;
    padding: 9px 11px;
    border-radius: 7px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    z-index: 9999;
    white-space: normal;
    pointer-events: none;
}

/* Oda Özellikleri (DB'den gelen) */
.room-db-features {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100, #f3f4f6);
}
.room-db-feat-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray-400, #9ca3af);
    margin-bottom: 8px;
}
.room-db-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 10px;
}
.room-db-feat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-700, #374151);
    min-width: 0;
}
.room-db-feat-item > span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.room-db-feat-icon {
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1;
}
.room-db-feat-more-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}
.room-db-feat-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-blue, #1850a3);
    cursor: pointer;
    user-select: none;
    transition: opacity .15s;
}
.room-db-feat-more-btn:hover {
    opacity: .75;
}
.room-db-feat-more-btn .material-symbols-outlined {
    font-size: 16px;
    line-height: 1;
}

.room-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.room-tag-board {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(24,80,163,0.08);
    color: var(--primary-blue);
    border: 1px solid rgba(24,80,163,0.15);
}

.room-tag-cancel-free {
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
}

.room-tag-cancel-no {
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
}

.room-tag-cancel-free .material-symbols-outlined,
.room-tag-cancel-no .material-symbols-outlined {
    font-size: 14px;
}

/* Fiyat Kutusu */
.room-price-box {
    min-width: 220px;
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-price-inner {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}

.room-price-inner:hover {
    background: #f3f4f6;
}

.room-price-inner.selected {
    background: #e5e7eb;
}

.room-price-board-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(24,80,163,0.1);
}

.room-price-board-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.room-price-board-header {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
    padding: 0 2px;
    margin-bottom: 2px;
}

.room-price-variant-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 4px;
}

.room-price-discount-badge {
    display: inline-block;
    align-self: flex-end;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.room-price-amount-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
}

.room-price-original {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    text-decoration: line-through;
}



.room-price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.room-price-amount {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
    white-space: nowrap;
}

.room-price-note {
    font-size: 10px;
    color: var(--gray-500);
    font-style: italic;
    margin-top: 2px;
}

/* Footer */
.room-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Kampanya kutusu footer'da — margin sıfırla */
.room-card-footer .hotel-campaign-block {
    margin: 0;
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 260px;
}

.room-desc {
    font-size: 13px;
    color: var(--gray-600);
    max-width: 448px;
    line-height: 1.5;
}

.room-footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-room-detail {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.btn-room-detail:hover {
    text-decoration: none;
}

.btn-room-detail .material-symbols-outlined {
    font-size: 16px;
}

.btn-select {
    background: var(--primary-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(248,146,82,0.3);
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn-select:hover {
    opacity: 0.9;
}

.btn-select:active {
    transform: scale(0.95);
}

/* Kampanya blok konum: masaüstü=footer, mobil=info altı */
.room-campaign-mobile { display: none; }
.room-campaign-desktop { display: contents; }

/* Responsive */
@media (max-width: 900px) {
    .room-card {
        grid-template-columns: 1fr;
    }

    .room-card-img {
        min-height: 220px;
        height: 220px;
    }

    .room-card-top {
        flex-direction: column;
        align-items: stretch;
    }

    .room-price-box {
        min-width: unset;
        width: 100%;
        text-align: right;
        align-items: flex-end;
    }

    .room-price-inner {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        gap: 4px;
    }

    .room-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-footer-actions {
        width: 100%;
    }

    .btn-room-detail,
    .btn-select {
        flex: 1;
        justify-content: center;
    }

    .room-features {
        gap: 4px 12px;
    }

    /* Mobil: özellikler 2 sütun */
    .room-db-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobil: kampanya bloğunu info altında göster, footer'dakini gizle */
    .room-campaign-mobile {
        display: block;
    }
    .room-campaign-desktop {
        display: none;
    }
    .room-campaign-mobile .hotel-campaign-block {
        margin: 12px 0 0;
        max-width: 100%;
    }
}

/* ── Harita Kartı (sidebar) ─────────────────────────────────────── */
.sidebar-card.map-card {
    padding: 0;
    overflow: hidden;
}

.map-snapshot-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.map-snapshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-show-btn {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #1a56db;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.22);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s, box-shadow 0.18s;
    font-family: inherit;
}

.map-show-btn:hover {
    background: #eef2ff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.28);
}

/* ── Otel detay sayfası tarih/oda arama formu ──────────────────── */
.tour-detail-container .sf-wrapper--detail {
    padding: 0;
    max-width: 100%;
}
.tour-detail-container .sf-wrapper--detail .sf-card {
    border-radius: 14px;
}
/* Destination alanı olmadığı için narrow alanlar genişlesin */
.tour-detail-container .sf-wrapper--detail .sf-field--narrow {
    flex: 1;
}

/* Üst arama formu arka planı sayfa rengiyle aynı */
.sf-wrapper--hotel-top {
    background: var(--gray-50);
}

/* Sayfa arka planı gri-50 — form kenarlardaki beyazı giderir */
body.page-hotel-detail {
    background: var(--gray-50);
}

/* ── Gallery Modal ─────────────────────────────────────────── */
.gm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gm-topbar {
    display: flex;
    align-items: center;
    padding: 0 14px 0 16px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
    height: 52px;
    background: #fff;
    gap: 8px;
}

.gm-cats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.gm-cats::-webkit-scrollbar { display: none; }

.gm-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 12px 14px;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
    font-family: inherit;
    line-height: 1;
}
.gm-cat:hover { color: #111827; }
.gm-cat.active {
    color: #111827;
    font-weight: 600;
    border-bottom-color: #2563eb;
}

.gm-cat-cnt {
    font-size: 12px;
    font-weight: 600;
    background: #f3f4f6;
    color: #6b7280;
    padding: 1px 7px;
    border-radius: 12px;
}
.gm-cat.active .gm-cat-cnt {
    background: #dbeafe;
    color: #2563eb;
}

.gm-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.15s;
}
.gm-close:hover { background: #f3f4f6; }

.gm-stage {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f8fafc;
    padding: 20px 72px;
}

.gm-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gm-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    user-select: none;
    display: block;
}

.gm-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.15s, box-shadow 0.15s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gm-arrow:hover { background: #f9fafb; box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
.gm-arrow--prev { left: 14px; }
.gm-arrow--next { right: 14px; }

.gm-strip-wrap {
    flex-shrink: 0;
    border-top: 1px solid #e5e7eb;
    padding: 0;
    background: #fff;
}

.gm-strip-outer {
    display: flex;
    align-items: center;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
    padding: 0 4px;
    gap: 4px;
}

.gm-strip-scroll {
    flex: 1;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}
.gm-strip-scroll::-webkit-scrollbar { display: none; }

.gm-strip-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.15s, opacity 0.15s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.gm-strip-btn:hover { background: #f3f4f6; }
.gm-strip-btn:disabled { opacity: 0.3; cursor: default; }

.gm-strip {
    display: flex;
    gap: 8px;
    width: max-content;
}

.gm-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 66px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: #f3f4f6;
    transition: border-color 0.15s, opacity 0.15s;
    opacity: 0.55;
}
.gm-thumb:hover { opacity: 0.85; }
.gm-thumb.active { border-color: #2563eb; opacity: 1; }
.gm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 600px) {
    .gm-stage { padding: 12px 50px; }
    .gm-arrow { width: 36px; height: 36px; }
    .gm-arrow--prev { left: 6px; }
    .gm-arrow--next { right: 6px; }
    .gm-thumb { width: 72px; height: 54px; }
    .gm-cat { font-size: 13px; padding: 14px 10px 12px; }
    .gm-strip-btn { width: 28px; height: 28px; }
}

/* ── Tesis Olanakları ─────────────────────────────────────────── */
.facility-category {
    margin-bottom: 24px;
}

.facility-category-title {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 10px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2d3748;
    line-height: 1.3;
}

.facility-item--highlight {
    color: #1a365d;
}

.facility-icon,
.facility-item .material-symbols-outlined {
    font-size: 14px !important;
    color: #48bb78;
    flex-shrink: 0;
}

.facility-item--highlight .facility-icon {
    color: #3182ce;
}

.facility-name {
    flex: 1;
    min-width: 0;
}

.facility-priced {
    display: inline-block;
    padding: 1px 5px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .facility-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .facility-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Seçim Özet Paneli ─────────────────────────────────────── */
.selection-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: #fff;
    border-top: 1px solid rgba(195,198,214,0.35);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 16px 24px;
}

.selection-panel.is-open {
    transform: translateY(0);
}

.selection-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.selection-panel-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sp-hotel-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-room-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900, #111);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-meta {
    font-size: 11px;
    color: var(--gray-500);
}

.selection-panel-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.sp-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.sp-board {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-blue);
    background: rgba(24,80,163,0.07);
    border: 1px solid rgba(24,80,163,0.15);
    padding: 2px 8px;
    border-radius: 9999px;
}

.sp-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-price-original {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-500);
    text-decoration: line-through;
}

.sp-price-amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-blue);
    white-space: nowrap;
}

.sp-cancel {
    font-size: 11px;
    color: var(--gray-500);
    text-align: right;
}

@media (max-width: 768px) {
    .selection-panel-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .selection-panel-right {
        flex-wrap: wrap;
    }
}
