/* ═══════════════════════════════════════════════════════════
   VILLA BUNGALOV 360 — HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ── Homepage yerel değişkenler ── */
:root {
  --gold:          var(--color-primary, #ff6b35);
  --gold-light:    var(--color-secondary, #e55a2b);
  --gold-glow:     rgba(255,107,53,0.08);
  --obsidian:      #111827;
  --border-subtle: rgba(0,0,0,0.08);
  --border-dim:    rgba(0,0,0,0.05);
  --border-gold:   rgba(255,107,53,0.30);
  --text-primary:  #111827;
  --text-secondary:#374151;
  --r-sm:          8px;
}

/* ═══ BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ═══ HEADER ═══ */
.header {
    background: rgba(10,10,11,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    transition: opacity 0.3s;
}
.logo:hover { opacity: 0.8; }
.logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}
.logo span { display: none; }

/* Nav */
.nav-menu {
    display: flex;
    gap: 2px;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: var(--r-sm);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.nav-menu a i { font-size: 12px; opacity: 0.6; }
.nav-menu a:hover { color: var(--text-primary); background: var(--border-dim); }
.nav-menu a.active { color: var(--gold); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: calc(100% - 32px); }

/* Auth */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.search-icon, .language-selector {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
    font-size: 15px;
    padding: 8px;
    border-radius: var(--r-sm);
}
.search-icon:hover, .language-selector:hover { color: var(--gold); }
.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.auth-buttons { display: flex; gap: 8px; align-items: center; }

.btn {
    padding: 9px 22px;
    border-radius: var(--r-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline {
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}
.btn-primary {
    background: var(--gold);
    color: var(--obsidian);
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
    transform: translateY(-1px);
}

/* ===== USER DROPDOWN ===== */
.user-info {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    background: white; border: 1.5px solid var(--border-color); border-radius: 24px;
    color: var(--text-dark); font-weight: 500; font-size: 14px; cursor: pointer;
    position: relative; transition: all 0.2s;
}
.user-info:hover { box-shadow: var(--shadow-md); border-color: var(--text-dark); }
.user-info i { font-size: 16px; color: var(--primary-color); }
.user-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0; background: white;
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    min-width: 260px; max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 9999; border: 1px solid var(--border-color);
}
.user-dropdown.show { max-height: 600px; opacity: 1; visibility: visible; }
.dropdown-header { padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
.dropdown-header h3 { font-size: 15px; color: var(--text-dark); margin-bottom: 2px; font-weight: 700; }
.dropdown-header p { font-size: 12px; color: var(--text-light); }
.dropdown-section { padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.dropdown-section:last-child { border-bottom: none; }
.dropdown-section-title {
    padding: 10px 20px 6px; font-size: 11px; font-weight: 700;
    color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px;
}
.dropdown-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 20px;
    color: var(--text-dark); text-decoration: none; transition: background 0.15s;
    cursor: pointer; font-size: 14px; font-weight: 500;
}
.dropdown-item:hover { background: var(--bg-light); }
.dropdown-item i { font-size: 16px; width: 18px; text-align: center; color: var(--text-medium); }
.dropdown-item.logout { color: #DC2626; }
.dropdown-item.logout:hover { background: #FEF2F2; }
.dropdown-item.logout i { color: #DC2626; }

/* ===== SEARCH SECTION ===== */
.search-section {
    background: white;
    max-width: 960px;
    margin: 32px auto 48px;
    padding: 8px;
    border-radius: 60px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18), 0 1px 6px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}
.search-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    border-radius: 60px;
    overflow: hidden;
}
.form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 24px;
    border-right: 1px solid var(--border-light);
    cursor: pointer;
    transition: background 0.15s;
    flex: 1;
    min-width: 0;
}
.form-group:hover { background: var(--bg-light); }
.form-group:last-child {
    border-right: none;
    flex: 0 0 auto;
    padding: 6px;
    align-items: center;
    justify-content: center;
}
.form-group label {
    font-size: 11px; font-weight: 700; margin-bottom: 4px;
    color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.6px;
    white-space: nowrap;
}
.form-group select, .form-group input {
    padding: 0; border: none; font-size: 14px; background: transparent;
    font-weight: 400; color: var(--text-medium); outline: none; cursor: pointer;
    width: 100%;
}
.form-group select:focus, .form-group input:focus { color: var(--text-dark); }
.btn-search {
    padding: 16px 32px;
    background: var(--btn-primary, var(--primary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-search:hover {
    background: var(--btn-hover, var(--primary-dark));
    transform: scale(1.04);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--color-primary, #ff6b35) 30%, transparent);
}
.btn-search i { font-size: 16px; }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: left; margin: 40px 0 20px;
    max-width: 1400px; margin-left: auto; margin-right: auto; padding: 0 24px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.section-title { font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; letter-spacing: -0.3px; }
.section-subtitle { font-size: 14px; color: var(--text-medium); font-weight: 400; }

/* ===== STATES ===== */
.loading { text-align: center; padding: 60px 24px; color: var(--text-medium); font-size: 15px; grid-column: 1 / -1; }
.error-message { background: #FEF2F2; color: #DC2626; padding: 16px 20px; border-radius: 12px; margin: 16px 0; text-align: center; font-weight: 500; grid-column: 1 / -1; }
.empty-state { text-align: center; padding: 60px 24px; color: var(--text-medium); grid-column: 1 / -1; }
.empty-state i { font-size: 48px; color: var(--text-light); margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 8px; }

/* ===== CONTAINER ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) and (max-width: 899px) {
    .search-section { margin: -40px 20px 48px; border-radius: var(--radius-xl); }
    .search-form { grid-template-columns: 1fr; border-radius: var(--radius-xl); }
    .form-group { border-right: none; border-bottom: 1px solid var(--border-light); border-radius: 0; }
    .form-group:last-child { border-bottom: none; padding: 8px; }
    .btn-search { width: 100%; border-radius: var(--radius-lg); }
    .hero h1 { font-size: 40px; }
}
@media (max-width: 768px) {
    #navbar-container { display: none; }
    .hero { display: none; }
    .search-section { display: none; }
    .top-bar { display: none; }
    body {
        padding-bottom: 64px;
        background: #F3F4F6;
        color: #1F2937;
    }
    .section-header { padding: 0 16px; margin: 20px 0 8px !important; }
    .section-title { font-size: 16px; font-weight: 700; color: #0A2540; }
    .section-subtitle { font-size: 12px; color: #6B7280; }
    .container { padding: 0; }
    .btn-see-all { font-size: 13px !important; color: var(--primary-color, #ff6b35) !important; }
}

/* ── Mobil elementler varsayılan gizli ── */
.mob-topbar, .mob-search-bar, .mob-categories, .mob-bottom-nav,
.mob-search-widget, .mob-ai-chip { display: none; }

/* ════════════════════════════════════════
   MOBİL TOPBAR — Jolly Style Premium
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .mob-topbar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: white;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    
    /* Sol: Hamburger */
    .mob-hamburger {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: #1f2937;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mob-hamburger svg { width: 20px; height: 20px; }
    
    /* Orta: Logo (Absolute Center) */
    .mob-topbar-logo-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        z-index: 1;
    }
    .mob-topbar-logo-center img { 
        height: 32px; 
        width: auto; 
        object-fit: contain; 
    }
    
    /* Sağ: Aksiyon İkonları */
    .mob-topbar-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        z-index: 2;
    }
    .mob-action-icon {
        color: #1f2937;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px;
    }
    .mob-action-icon svg { width: 19px; height: 19px; }
    
    /* Bildirim Badge */
    .mob-notification-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
    .mob-notification-badge {
        position: absolute;
        top: -2px;
        right: -2px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        background: #ef4444;
        color: white;
        font-size: 10px;
        font-weight: 700;
        border-radius: 8px;
        line-height: 1;
    }
    
    /* Eski class'ları gizle */
    .mob-topbar-left,
    .mob-topbar-right,
    .mob-topbar-hamburger,
    .mob-topbar-logo,
    .mob-topbar-icon,
    .mob-topbar-badge,
    .mob-topbar-menu,
    .mob-topbar-icons { display: none; }
}

/* ════════════════════════════════════════
   MOBİL AI CHIP — Küçük, dikkat dağıtmayan
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .mob-ai-chip {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        margin: 10px 16px 0;
        padding: 7px 14px;
        background: #fff3ee;
        border: 1px solid #ffd4bc;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        color: #c2410c;
        cursor: pointer;
        width: fit-content;
    }
    .mob-ai-chip i { font-size: 12px; color: #ff6b35; }
    /* Eski büyük AI butonu gizle */
    #hp-mob-ai-btn { display: none !important; }
}

/* Mobil-only elementler desktop'ta gizli */
.mob-promo-circles,
.mob-search-license { display: none; }

/* ════════════════════════════════════════
   MOBİL ARAMA FORMU (Sekmeli Widget)
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .mob-search-bar { display: none !important; }

    .mob-search-widget {
        display: block !important;
        margin: 8px 12px 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.08);
        overflow: hidden;
        border: 1px solid #E5E7EB;
    }

    /* Sekme butonları */
    .mob-search-tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        background: #fff;
        padding: 8px 12px;
        gap: 6px;
        border-bottom: 1px solid #E5E7EB;
    }
    .mob-search-tabs::-webkit-scrollbar { display: none; }
    .mob-search-tab {
        flex-shrink: 0;
        padding: 5px 12px;
        font-size: 12px;
        font-weight: 500;
        color: #6B7280;
        background: #F3F4F6;
        border: 1.5px solid transparent;
        border-radius: 20px;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.15s;
        line-height: 1.4;
    }
    .mob-search-tab.active {
        background: #fff;
        color: #0A2540;
        font-weight: 700;
        border-color: #0A2540;
    }

    /* Form alanları */
    .mob-search-fields-row {
        display: flex;
        align-items: stretch;
        gap: 0;
    }
    .mob-search-fields-row .mob-search-fields {
        flex: 1;
        min-width: 0;
    }
    .mob-search-fields {
        padding: 0;
    }
    .mob-search-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 16px 4px;
    }
    .mob-search-actions .mob-search-btn {
        flex: 1;
        margin: 0 !important;
        padding: 12px 16px !important;
    }
    .mob-ai-chip-inline {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 14px;
        background: linear-gradient(135deg, #ff6b35, #e85d2a);
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(232,93,42,0.3);
        transition: opacity 0.2s, transform 0.15s;
    }
    .mob-ai-chip-inline:active {
        opacity: 0.85;
        transform: scale(0.97);
    }
    .mob-ai-chip-inline i { font-size: 12px; }
    .mob-search-field {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 14px;
        border-bottom: 1px solid #F3F4F6;
        cursor: pointer;
        background: #fff;
        transition: background 0.15s;
    }
    .mob-search-field:last-of-type { border-bottom: none; }
    .mob-search-field:active { background: #F9FAFB; }
    .mob-search-field i {
        color: #D1D5DB;
        font-size: 14px;
        width: 16px;
        text-align: center;
        flex-shrink: 0;
    }
    .mob-search-field-text { flex: 1; }
    .mob-search-field-text label {
        display: block;
        font-size: 9px;
        font-weight: 700;
        color: #9CA3AF;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 1px;
    }
    .mob-search-field-text span {
        font-size: 13px;
        font-weight: 500;
        color: #1F2937;
    }
    .mob-search-field-text span.placeholder { color: #9CA3AF; font-weight: 400; }

    /* Ara butonu */
    .mob-search-btn {
        display: block;
        width: 100%;
        padding: 13px;
        background: #ff6b35;
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: background 0.2s;
    }
    .mob-search-btn:active { background: #e85d2a; }
    .mob-search-btn i { margin-right: 6px; }

    .mob-search-license {
        text-align: center;
        font-size: 9px;
        color: #B0B8C4;
        padding: 4px 12px 0;
        letter-spacing: 0.3px;
        display: block;
    }

    /* ── Kampanya Daireleri ── */
    .mob-promo-circles {
        display: block;
        background: #fff;
        border-bottom: 8px solid #F3F4F6;
        padding: 14px 0 16px;
    }
    .mob-promo-scroll {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0 12px;
    }
    .mob-promo-scroll::-webkit-scrollbar { display: none; }
    .mob-promo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        min-width: 68px;
        cursor: pointer;
        flex-shrink: 0;
    }
    .mob-promo-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        overflow: hidden;
    }
    .mob-promo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mob-promo-item span {
        font-size: 10px;
        font-weight: 500;
        color: #374151;
        text-align: center;
        line-height: 1.2;
        white-space: nowrap;
    }
}

/* ── MOBİL KATEGORİ CHIPS — Arama sekmelerine taşındı */

/* ════════════════════════════════════════
   MOBİL TESİS KARTLARI — Full-width tekli
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .facilities-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
        overflow-x: visible !important;
        flex-wrap: unset !important;
        scroll-snap-type: none !important;
        background: #F3F4F6;
    }
    .facilities-grid > * {
        flex: unset !important;
        max-width: unset !important;
        scroll-snap-align: none !important;
    }
    .fc-card {
        border-radius: 0 !important;
        box-shadow: none !important;
        border-bottom: 8px solid #F3F4F6 !important;
        background: #fff;
    }
    .fc-image-wrap {
        aspect-ratio: 16 / 9 !important;
        border-radius: 0 !important;
    }
    .fc-body {
        padding: 12px 16px 14px !important;
    }
    .fc-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 4px;
    }
    .fc-title {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #0A2540 !important;
        line-height: 1.3;
        flex: 1;
    }
    .fc-rating {
        font-size: 13px !important;
        font-weight: 600;
        color: #1F2937;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .fc-rating i { color: #f59e0b; }
    .fc-meta {
        font-size: 12px !important;
        color: #6B7280 !important;
        margin-bottom: 8px;
    }
    .fc-price-row {
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        gap: 4px;
    }
    .fc-price {
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #0A2540 !important;
    }
    .fc-price-night {
        font-size: 12px !important;
        color: #6B7280 !important;
    }
    .fc-fav {
        width: 32px !important;
        height: 32px !important;
        top: 10px !important;
        right: 10px !important;
        background: rgba(255,255,255,0.9) !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.15) !important;
    }
    .fc-fav i { font-size: 14px !important; }
    .fc-carousel-btn { display: none !important; }
    /* Bölüm başlıkları */
    .container {
        background: #fff;
        margin-bottom: 0;
    }
    .section-header {
        padding: 16px 16px 4px !important;
        margin: 0 !important;
        background: #fff;
    }
}

/* ════════════════════════════════════════
   MOBİL KAMPANYA / PROMO — Gizle
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .hp-promo-section,
    .hp-action-section,
    .hp-regions-section,
    .hp-campaigns-section,
    .search-section,
    .dt-only-section,
    #citySection,
    #premium-section,
    #vip-section { display: none !important; }
}

/* ── MOBİL ALT NAVBAR — Kaldırıldı */

/* ═══════════════════════════════════════════════════════════
   DESKTOP HERO — sadece min-width: 769px
   Mobil'e sıfır etkisi yok
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 769px) {

.dt-hero {
    display: block;
    position: relative;
    width: 100%;
    min-height: 560px;
    background: #0a0a0a;
    overflow: visible;
}

.dt-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.dt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.45) 100%
    );
    z-index: 1;
}

.dt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 24px 16px;
}

.dt-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.dt-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.90);
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Dalgalı alt kenar */
.dt-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

.dt-hero-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* Arama Kutusu */
.dt-search-box {
    position: relative;
    z-index: 5;
    max-width: 960px;
    margin: 28px auto 0;
    padding: 0 24px 100px;
}

.dt-search-tabs { display: none; }

.dt-tab { display: none; }

.dt-category-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    min-width: 200px;
    z-index: 9999;
    padding: 6px;
    border: 1px solid #f0f0f0;
    max-height: 280px;
    overflow-y: auto;
}

.dt-cat-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background 0.15s;
    white-space: nowrap;
}

.dt-cat-option:hover { background: #fff5f0; color: #ff6b35; }
.dt-cat-option.active { background: #fff5f0; color: #ff6b35; font-weight: 600; }
.dt-cat-option i { color: #ff6b35; width: 16px; text-align: center; font-size: 13px; }

#dtCategoryIcon { color: #ff6b35 !important; }

.dt-search-form {
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 12px 48px rgba(0,0,0,0.30);
    overflow: visible;
}

.dt-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    transition: background 0.15s;
}

.dt-search-field:first-child { border-radius: 16px 0 0 16px; }
.dt-search-field:hover { background: #f7f7f7; }

.dt-search-field > i {
    color: #ff6b35;
    font-size: 17px;
    flex-shrink: 0;
}

.dt-search-field > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dt-search-field label {
    font-size: 11px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    white-space: nowrap;
}

.dt-search-field select,
.dt-search-field input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #555;
    background: transparent;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    padding: 0;
}

.dt-search-field select:focus,
.dt-search-field input:focus { color: #222; }

.dt-search-divider {
    width: 1px;
    height: 44px;
    background: #e8e8e8;
    flex-shrink: 0;
}

.dt-search-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    border: none;
    padding: 0 32px;
    height: 56px;
    margin: 6px 6px 6px 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

.dt-search-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #cc4a1f 100%);
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
    transform: translateY(-1px);
}

.dt-search-btn i { font-size: 15px; }

/* Popüler aramalar */
.dt-popular-searches {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.dt-popular-searches span {
    font-size: 13px;
    color: rgba(255,255,255,0.80);
    font-weight: 600;
}

.dt-popular-searches a {
    font-size: 13px;
    color: #fff !important;
    background: rgba(255,255,255,0.18);
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.35);
    font-weight: 500;
}

.dt-popular-searches a:hover {
    background: rgba(255,255,255,0.35);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Desktop'ta eski search-section'ı gizle (dt-hero içindeki form yeterli) */
.search-section { display: none !important; }

} /* end @media (min-width: 769px) */

/* Mobil'de dt-hero kesinlikle gizli */
@media (max-width: 768px) {
    .dt-hero { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Kampanya İkonları ── */
.hp-campaigns-section {
    background: #ffffff;
    padding: 32px 0 28px;
}

.hp-campaigns-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 32px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}
.hp-campaigns-scroll::-webkit-scrollbar { display: none; }

.hp-camp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
    width: 154px;
    transition: transform 0.2s;
}
.hp-camp-item:hover { transform: translateY(-3px); }

.hp-camp-circle {
    width: 129px;
    height: 194px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s;
}
.hp-camp-item:hover .hp-camp-circle {
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.hp-camp-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    display: block;
}

.hp-camp-item span {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    word-break: keep-all;
}

.hp-all-campaigns-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a5fd4;
    color: #fff !important;
    text-decoration: none;
    padding: 11px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(26,95,212,0.3);
}
.hp-all-campaigns-btn:hover {
    background: #1248b3;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,95,212,0.4);
}

/* ── 2. Promo Slider ── */
.hp-promo-section {
    background: #ffffff;
    padding: 12px 32px 36px;
}

.hp-promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: stretch;
    height: 340px;
}

.hp-promo-stack {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hp-stack-card {
    position: absolute;
    width: 100px;
    height: 280px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hp-stack-card--2 {
    left: 0;
    transform: rotate(-6deg) translateX(-8px);
    opacity: 0.6;
    z-index: 1;
}
.hp-stack-card--1 {
    left: 10px;
    transform: rotate(-3deg);
    opacity: 0.8;
    z-index: 2;
}

.hp-promo-slider {
    flex: 1;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.hp-promo-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: flex-end;
}
.hp-promo-slide.active { opacity: 1; z-index: 1; }

.hp-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.hp-promo-content {
    position: relative;
    z-index: 2;
    padding: 28px 32px;
    color: #fff;
}
.hp-promo-badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hp-promo-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hp-promo-content p {
    font-size: 14px;
    color: #fff !important;
    opacity: 0.9;
    margin-bottom: 16px;
}
.hp-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}
.hp-promo-cta:hover { background: #f0f0f0; transform: translateY(-1px); }

.hp-promo-dots {
    position: absolute;
    bottom: 16px;
    right: 20px;
    display: flex;
    gap: 6px;
    z-index: 3;
}
.hp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.hp-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* ── 3. Aksiyon Kartları ── */
.hp-action-section {
    background: #ffffff;
    padding: 0 32px 40px;
}

.hp-action-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hp-action-card {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.hp-action-card--blue {
    background: linear-gradient(135deg, #1a5fd4 0%, #2b78f5 100%);
    color: #fff;
}
.hp-action-card--orange {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    color: #fff;
}
.hp-action-card--green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.hp-action-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hp-action-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.hp-action-body p {
    font-size: 13px;
    color: #fff;
    opacity: 0.85;
    line-height: 1.4;
}

.hp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.22);
    color: #fff !important;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
    transition: background 0.2s;
    border: 1px solid rgba(255,255,255,0.35);
}
.hp-action-btn:hover { background: rgba(255,255,255,0.35); color: #fff !important; }

/* ── 4. Popüler Bölgeler ── */
.hp-regions-section {
    background: #ffffff;
    padding: 40px 32px 56px;
}

.hp-regions-header {
    max-width: 1200px;
    margin: 0 auto 24px;
}
.hp-regions-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.hp-regions-header p {
    font-size: 14px;
    color: #6b7280;
}

.hp-regions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 12px;
}

.hp-region-card {
    position: relative;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.hp-region-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.hp-region-card--large {
    grid-row: span 2;
}

.hp-region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: background 0.25s;
}
.hp-region-card:hover .hp-region-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.hp-region-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
}
.hp-region-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.hp-region-info span {
    font-size: 13px;
    color: #fff !important;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hp-campaigns-section { padding: 20px 0 16px; }
    .hp-campaigns-scroll { padding: 6px 16px 10px; gap: 8px; }
    .hp-camp-circle { width: 106px; height: 159px; }
    .hp-camp-item { width: 120px; }
    .hp-camp-item span { font-size: 10px; }

    .hp-promo-section { padding: 8px 16px 24px; }
    .hp-promo-inner { height: 220px; }
    .hp-promo-stack { display: none; }
    .hp-promo-content h2 { font-size: 20px; }
    .hp-promo-content p { display: none; }

    .hp-action-section { padding: 0 16px 28px; }
    .hp-action-grid { grid-template-columns: 1fr; gap: 12px; }

    .hp-regions-section { padding: 28px 16px 40px; }
    .hp-regions-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }
    .hp-region-card--large { grid-row: span 1; }
    .hp-region-info h3 { font-size: 16px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hp-promo-inner { height: 280px; }
    .hp-action-grid { gap: 12px; }
    .hp-regions-grid { grid-template-rows: 180px 180px; }
}


/* =============================================================
   FACILITY CARDS — fc-card v5 (Premium)
   ============================================================= */

/* Grid: 4 kolon desktop, 5 kolon geniş ekran */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 0 24px;
    align-items: start;
}
@media (min-width: 1200px) { .facilities-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 600px) and (max-width: 899px) { .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* Kart Wrapper */
.fc-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}
.fc-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
    transform: translateY(-3px);
}
.fc-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/* Gorsel Alani: 4:3 oran */
.fc-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8e8e8;
    flex-shrink: 0;
}

/* Görsel hover zoom */
.fc-card:hover .fc-image-slide-item {
    transform: scale(1.04);
}

.fc-image-slide {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.fc-image-slide-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

/* Alt degrade: fiyat/metin okunabilirliği için */
.fc-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Carousel oklari: hover'da belirir */
.fc-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    color: #222;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.fc-carousel-btn.fc-prev { left: 10px; }
.fc-carousel-btn.fc-next { right: 10px; }
.fc-image-wrap:hover .fc-carousel-btn { opacity: 1; }
.fc-carousel-btn:hover { transform: translateY(-50%) scale(1.1); background: #fff; }

.fc-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.2s;
}
.fc-image-wrap:hover .fc-dots { opacity: 1; }
.fc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    transition: background 0.2s, transform 0.2s;
}
.fc-dot.active { background: #fff; transform: scale(1.3); }

/* Rozet */
.fc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #222;
    background: #fff;
    letter-spacing: -0.1px;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Favori butonu */
.fc-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s, background 0.2s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.fc-fav:hover { transform: scale(1.15); background: rgba(255,255,255,0.30); }
.fc-fav i {
    font-size: 17px;
    color: #fff;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
}
.fc-fav.active i { color: #FF385C; filter: none; }

/* Kart Govdesi */
.fc-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Satir 1: Baslik + Puan */
.fc-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.fc-title {
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.1px;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.fc-rating {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}
.fc-rating i { font-size: 11px; color: #222; }

/* Satir 2: Meta (lokasyon · oda) */
.fc-meta {
    font-size: 13px;
    color: #717171;
    font-weight: 400;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 5px;
}
.fc-meta-dot {
    color: #b0b0b0;
    font-size: 11px;
    line-height: 1;
}

/* Satir 3: Fiyat */
.fc-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.fc-price-left {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.fc-price {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.3px;
}
.fc-price-night {
    font-size: 13px;
    font-weight: 400;
    color: #717171;
}
.fc-price-na {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
}

/* Hover */
.fc-card:hover .fc-fav i { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)); }
.fc-fav.active:hover i { filter: none; }

/* Kaldirildi */
.fc-link { display: none !important; }
.fc-image-overlay { display: none !important; }

/* Mobil — fc-card (yukarıdaki @media bloğunda tanımlı) */

/* ════════════════════════════════════════
   MOBİL KAMPANYA BANNER
   ════════════════════════════════════════ */
.mob-campaign-banner {
    display: none;
}
@media (max-width: 768px) {
    .mob-campaign-banner {
        display: block;
        margin: 12px 0 0;
    }
    .mob-banner-scroll {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 10px;
        padding: 0 12px;
    }
    .mob-banner-scroll::-webkit-scrollbar { display: none; }
    .mob-banner-item {
        flex-shrink: 0;
        width: calc(100vw - 48px);
        max-width: 360px;
        border-radius: 16px;
        overflow: hidden;
        display: block;
        position: relative;
        text-decoration: none;
    }
    .mob-banner-item img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        display: block;
    }
    .mob-banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 16px 20px;
        gap: 4px;
    }
    .mob-banner-badge {
        display: inline-block;
        background: #ff6b35;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 20px;
        margin-bottom: 4px;
        width: fit-content;
    }
    .mob-banner-title {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        line-height: 1.3;
    }
    .mob-banner-cta {
        font-size: 12px;
        font-weight: 600;
        color: rgba(255,255,255,0.85);
        margin-top: 4px;
    }
    /* Statik fallback banner */
    .mob-banner-static > div {
        border-radius: 16px;
    }
}

/* ════════════════════════════════════════
   MOBİL KATEGORİ GRİD
   ════════════════════════════════════════ */
.mob-category-section {
    display: none;
}
@media (max-width: 768px) {
    .mob-category-section {
        display: block;
        background: #fff;
        margin-top: 0;
        padding: 16px 12px 12px;
    }
    .mob-section-title {
        font-size: 15px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 14px 4px;
    }
    .mob-category-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 4px;
        padding: 0 4px 4px;
    }
    .mob-category-grid::-webkit-scrollbar { display: none; }
    .mob-cat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
        cursor: pointer;
        padding: 10px 8px;
        border-radius: 12px;
        transition: background 0.15s;
        flex-shrink: 0;
        min-width: 72px;
    }
    .mob-cat-item:active { background: #F3F4F6; }
    .mob-cat-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }
    .mob-cat-item span {
        font-size: 11px;
        font-weight: 500;
        color: #374151;
        text-align: center;
    }
}

/* ════════════════════════════════════════
   MOBİL "SENİN İÇİN SEÇTİKLERİMİZ"
   ════════════════════════════════════════ */
.mob-picks-section {
    display: none;
}
@media (max-width: 768px) {
    .mob-picks-section {
        display: block;
        background: #fff;
        padding: 16px 12px 16px;
        border-top: 1px solid #F3F4F6;
    }
    .mob-picks-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .mob-picks-header .mob-section-title { margin: 0; }
    .mob-picks-all {
        font-size: 13px;
        font-weight: 600;
        color: #ff6b35;
        text-decoration: none;
    }
    .mob-picks-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 12px;
        padding: 4px 12px 8px;
        background: #fff;
        margin: 0 -12px;
    }
    .mob-picks-grid::-webkit-scrollbar { display: none; }
    .mob-picks-loading {
        text-align: center;
        padding: 32px;
        color: #9CA3AF;
        font-size: 20px;
    }
    /* Mobilde fc-card sabit genişlik */
    .mob-picks-grid .fc-card {
        width: 220px;
        flex-shrink: 0;
        border-radius: 20px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.10) !important;
        border-bottom: none !important;
        overflow: hidden;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .mob-picks-grid .fc-card:active {
        transform: scale(0.97);
        box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    }
    .mob-picks-grid .fc-image-wrap {
        aspect-ratio: 4/3 !important;
        border-radius: 0 !important;
    }
    .mob-picks-grid .fc-body {
        padding: 10px 12px 14px !important;
        background: #fff;
    }
    .mob-picks-grid .fc-title {
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #111827 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mob-picks-grid .fc-rating {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #374151 !important;
        white-space: nowrap;
    }
    .mob-picks-grid .fc-rating i {
        color: #f59e0b !important;
    }
    .mob-picks-grid .fc-meta {
        font-size: 11px !important;
        color: #9CA3AF !important;
        margin: 3px 0 6px !important;
    }
    .mob-picks-grid .fc-price {
        font-size: 15px !important;
        font-weight: 800 !important;
        color: #111827 !important;
    }
    .mob-picks-grid .fc-price-night {
        font-size: 11px !important;
        color: #9CA3AF !important;
    }
    .mob-picks-grid .fc-price-na {
        font-size: 12px !important;
        color: #D1D5DB !important;
    }
    .mob-picks-grid .fc-fav {
        width: 32px !important;
        height: 32px !important;
        background: rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(4px) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    }
}

/* ════════════════════════════════════════
   MOBİL INLINE PICKER'LAR
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .mob-field-arrow {
        font-size: 11px;
        color: #9CA3AF;
        margin-left: auto;
        flex-shrink: 0;
        transition: transform 0.2s;
    }
    .mob-inline-dropdown {
        background: #fff;
        border-top: 1px solid #F3F4F6;
        animation: mobDropIn 0.18s ease;
    }
    @keyframes mobDropIn {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    /* Şehir dropdown */
    .mob-dropdown-search {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-bottom: 1px solid #F3F4F6;
    }
    .mob-dropdown-search i { color: #9CA3AF; font-size: 14px; flex-shrink: 0; }
    .mob-dropdown-search input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 14px;
        color: #111827;
        background: transparent;
    }
    .mob-dropdown-search button {
        background: none;
        border: none;
        color: #9CA3AF;
        cursor: pointer;
        padding: 0;
        font-size: 14px;
    }
    .mob-dropdown-list {
        max-height: 220px;
        overflow-y: auto;
    }
    .mob-dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 16px;
        cursor: pointer;
        transition: background 0.1s;
    }
    .mob-dropdown-item:active { background: #F9FAFB; }
    .mob-dropdown-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }
    .mob-dropdown-name {
        font-size: 13px;
        font-weight: 600;
        color: #111827;
    }
    .mob-dropdown-desc {
        font-size: 11px;
        color: #9CA3AF;
        margin-top: 1px;
    }
    .mob-dropdown-empty {
        padding: 20px;
        text-align: center;
        font-size: 13px;
        color: #9CA3AF;
    }
    /* Flatpickr inline */
    #mobDateDropdown .flatpickr-calendar {
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #mobDateDropdown .flatpickr-calendar.inline {
        display: block !important;
        position: static !important;
    }
    /* Kişi picker */
    .mob-guest-picker {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
    }
    .mob-guest-label {
        font-size: 14px;
        font-weight: 600;
        color: #111827;
    }
    .mob-guest-controls {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .mob-guest-controls button {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1.5px solid #E5E7EB;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #374151;
        transition: border-color 0.15s;
    }
    .mob-guest-controls button:active { border-color: #ff6b35; color: #ff6b35; }
    .mob-guest-controls span {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        min-width: 24px;
        text-align: center;
    }
}

/* ════════════════════════════════════════
   CUSTOM MOBİL TAKVİM
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .mob-cal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px 10px;
    }
    .mob-cal-header span {
        font-size: 15px;
        font-weight: 700;
        color: #111827;
    }
    .mob-cal-nav {
        width: 36px;
        height: 36px;
        border: none;
        background: #F3F4F6;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #374151;
        transition: background 0.15s;
    }
    .mob-cal-nav:active { background: #E5E7EB; }
    .mob-cal-weekdays {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 12px;
        margin-bottom: 4px;
    }
    .mob-cal-weekdays span {
        text-align: center;
        font-size: 11px;
        font-weight: 600;
        color: #9CA3AF;
        padding: 4px 0;
    }
    .mob-cal-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 12px 8px;
        gap: 4px 0;
        justify-items: center;
    }
    .mob-cal-empty { width: 36px; height: 36px; }
    .mob-cal-day {
        width: 36px;
        height: 36px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        color: #111827;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.1s, color 0.1s;
        position: relative;
    }
    .mob-cal-day:active { background: #F3F4F6; }
    .mob-cal-day.past {
        color: #D1D5DB;
        cursor: default;
        pointer-events: none;
    }
    .mob-cal-day.today {
        font-weight: 700;
        color: #ff6b35;
    }
    .mob-cal-day.today::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #ff6b35;
    }
    .mob-cal-day.sel-start,
    .mob-cal-day.sel-end {
        background: #ff6b35 !important;
        color: #fff !important;
        border-radius: 50%;
        font-weight: 700;
    }
    .mob-cal-day.sel-start.sel-end { border-radius: 50%; }
    .mob-cal-day.in-range {
        background: #FFF0EB;
        color: #c94b1a;
        border-radius: 0;
    }
    .mob-cal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        border-top: 1px solid #F3F4F6;
    }
    .mob-cal-selected-text {
        font-size: 13px;
        color: #6B7280;
        font-weight: 500;
    }
    .mob-cal-confirm {
        padding: 8px 20px;
        background: #ff6b35;
        color: #fff;
        border: none;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.2s;
    }
    .mob-cal-confirm:disabled {
        background: #E5E7EB;
        color: #9CA3AF;
        cursor: default;
    }
    .mob-cal-confirm:not(:disabled):active { opacity: 0.85; }
}


/* ═══════════════════════════════════════════════════════════
   MOBİL OVERRIDE - homepage-mobile.css öncelikli
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Eski mobil kuralları devre dışı bırak, homepage-mobile.css kullan */
    .mob-search-bar {
        display: flex !important;
    }
    
    .facilities-grid {
        display: grid !important;
    }
    
    /* Alt navbar'ı gizle */
    .mob-bottom-nav {
        display: none !important;
    }
    
    /* Container padding'i homepage-mobile.css'e bırak */
    .container {
        padding: 0 16px !important;
    }
    
    /* Section header'ları homepage-mobile.css'e bırak */
    .section-header {
        padding: 24px 0 16px !important;
        margin: 0 !important;
    }
}


/* ═══════════════════════════════════════════════════════════
   FLATPICKR MODERN OVERRIDE — Airbnb/Booking Style
   Turuncu başlık ve eski tasarımı tamamen ezip modern UI
   ═══════════════════════════════════════════════════════════ */

/* 1. Ana Takvim Kutusu — Bembeyaz, modern gölge, yuvarlatılmış köşeler */
.flatpickr-calendar {
    background: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Mobil ekranlarda tam genişlik veya bottom sheet */
@media (max-width: 480px) {
    .flatpickr-calendar {
        width: 90% !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        position: fixed !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        /* Alternatif: Bottom Sheet */
        /* bottom: 0 !important;
        width: 100% !important;
        border-radius: 24px 24px 0 0 !important;
        left: 0 !important;
        transform: none !important; */
    }
}

/* 2. Üst Kısım — Ay ve Yıl (Turuncu arkaplanı SİL) */
.flatpickr-months {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 16px 12px !important;
    margin-bottom: 0 !important;
}

.flatpickr-month {
    background: transparent !important;
    color: #1f2937 !important;
    height: auto !important;
}

.flatpickr-current-month {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    padding: 0 !important;
    height: auto !important;
    line-height: 1.4 !important;
    left: 0 !important;
    width: 100% !important;
    position: static !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent !important;
    color: #1f2937 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    border: none !important;
    outline: none !important;
    padding: 0 4px !important;
}

.flatpickr-current-month .numInputWrapper {
    color: #1f2937 !important;
}

.flatpickr-current-month input.cur-year {
    font-weight: 700 !important;
    color: #1f2937 !important;
    font-size: 18px !important;
    padding: 0 !important;
}

/* Sağ ve sol oklar — Koyu gri, hover'da kurumsal renk */
.flatpickr-prev-month,
.flatpickr-next-month {
    fill: #6b7280 !important;
    color: #6b7280 !important;
    padding: 8px !important;
    border-radius: 8px !important;
    transition: all 0.2s !important;
    position: static !important;
    height: auto !important;
    line-height: 1 !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    fill: #2563eb !important;
    color: #2563eb !important;
    background: #eff6ff !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: inherit !important;
    width: 14px !important;
    height: 14px !important;
}

/* 3. Günler ve Haftalar */
.flatpickr-weekdays {
    background: #ffffff !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    height: auto !important;
}

.flatpickr-weekday {
    color: #9ca3af !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    line-height: 1 !important;
}

.flatpickr-days {
    padding: 8px 12px 12px !important;
    background: #ffffff !important;
}

.dayContainer {
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    gap: 4px 0 !important;
}

/* Gün numaraları — Mobilde rahat basılması için büyük touch target */
.flatpickr-day {
    color: #1f2937 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: none !important;
    background: transparent !important;
    border-radius: 8px !important;
    height: 40px !important;
    line-height: 40px !important;
    max-width: 40px !important;
    margin: 2px !important;
    transition: all 0.15s !important;
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected):not(.startRange):not(.endRange) {
    background: #f3f4f6 !important;
    border: none !important;
    color: #1f2937 !important;
}

/* Geçmiş günler */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #d1d5db !important;
}

.flatpickr-day.flatpickr-disabled {
    color: #e5e7eb !important;
    cursor: not-allowed !important;
}

.flatpickr-day.today {
    border: 2px solid #2563eb !important;
    background: transparent !important;
    color: #2563eb !important;
    font-weight: 700 !important;
}

/* 4. Tarih Seçim Efektleri — EN ÖNEMLİ */

/* Seçili Günler (Giriş ve Çıkış) — Tam yuvarlak, kurumsal renk */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3) !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #1d4ed8 !important;
    color: #ffffff !important;
}

/* Aradaki Günler — Açık transparan arka plan, düz kenarlar */
.flatpickr-day.inRange {
    background: #eff6ff !important;
    color: #1f2937 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    font-weight: 500 !important;
}

/* İlk gün sağ tarafı düz, son gün sol tarafı düz */
.flatpickr-day.startRange:not(.endRange) {
    border-radius: 50% 0 0 50% !important;
}

.flatpickr-day.endRange:not(.startRange) {
    border-radius: 0 50% 50% 0 !important;
}

/* Tek gün seçimi (hem start hem end) */
.flatpickr-day.startRange.endRange {
    border-radius: 50% !important;
}

/* Aradaki günlerin birbirine bağlı görünmesi için */
.flatpickr-day.inRange:not(.startRange):not(.endRange) {
    margin: 2px 0 !important;
}

/* 5. Alt Kısım — Time picker varsa */
.flatpickr-time {
    background: #ffffff !important;
    border-top: 1px solid #f0f0f0 !important;
    padding: 12px !important;
}

.flatpickr-time input {
    color: #1f2937 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: #6b7280 !important;
}

/* 6. Mobil Optimizasyonlar */
@media (max-width: 480px) {
    .flatpickr-day {
        height: 44px !important;
        line-height: 44px !important;
        max-width: 44px !important;
        font-size: 15px !important;
    }
    
    .flatpickr-weekday {
        font-size: 12px !important;
    }
    
    .flatpickr-current-month {
        font-size: 20px !important;
    }
}

/* 7. Animasyonlar */
.flatpickr-calendar.animate.open {
    animation: fpFadeInDown 0.2s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

@keyframes fpFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 8. Turuncu tema için alternatif (isteğe bağlı) */
/* Mavi yerine turuncu kullanmak isterseniz aşağıdaki kodları aktif edin */
/*
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #ff6b35 !important;
    box-shadow: 0 2px 8px rgba(255,107,53,0.3) !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #e55a2b !important;
}

.flatpickr-day.inRange {
    background: #fff5f0 !important;
}

.flatpickr-day.today {
    border-color: #ff6b35 !important;
    color: #ff6b35 !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    fill: #ff6b35 !important;
    color: #ff6b35 !important;
    background: #fff5f0 !important;
}
*/
