/* ============================================
   escortsepeti Ã¢â‚¬â€ Ana Stil DosyasÃ„Â±
   Renk paleti: Premium AltÄ±n + Derin Siyah Mermer (LÃ¼ks Tema)
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,800;1,600&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS DEÃ„ÂÃ„Â°Ã…ÂKENLERÃ„Â°
   ============================================ */
:root {
    /* === ANA ZEMİN (Premium Dark) === */
    --primary: #121212;
    --primary-light: #1A1A1A;
    --primary-dark: #080608;

    /* === ROSE-CRIMSON ACCENT === */
    --accent: #E91E63;
    --accent-hover: #C2185B;
    --accent-light: #F48FB1;
    --accent-glow: rgba(233, 30, 99, 0.4);

    /* === ALTIN LÜKS PALETİ === */
    --gold: #D4AF37;
    --gold-light: #F1D279;
    --gold-dark: #AA8C1C;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 40%, #B38728 70%, #FBF5B7 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);
    --gold-border: rgba(212, 175, 55, 0.6);
    --champagne: #F7E7CE;

    /* === DEEP PURPLE (Destek) === */
    --secondary: #7B1FA2;

    /* === METİN === */
    --white: #FFFFFF;
    --text-primary: #E0E0E0;
    --text-secondary: #A0A0A0;
    --gray-50: #141114;
    --gray-100: #1c181d;
    --gray-200: #262226;
    --gray-300: #e0dce0;
    --gray-400: #a098a0;
    --gray-500: #706870;
    --gray-600: #4a444a;
    --gray-700: #2d282d;

    /* === DURUM RENKLERİ === */
    --green: #00E676;
    --green-dark: #00C853;
    --red: #FF1744;

    /* === AKSİYON BUTONLARI === */
    --whatsapp: #25D366;
    --whatsapp-hover: #1DA851;
    --call-bg: #1F2937;
    --call-hover: #374151;

    /* === SHADOW === */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 15px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 0 30px rgba(233, 30, 99, 0.25);
    --shadow-xl: 0 0 50px rgba(233, 30, 99, 0.35);
    --gold-shadow: 0 0 30px rgba(212, 175, 55, 0.3);

    /* === BORDER RADIUS === */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* === ANİMASYON === */
    --transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);

    /* === FLUID TYPOGRAPHY (CSS Clamp) === */
    --fs-xs: clamp(0.7rem, 1.5vw, 0.85rem);
    --fs-sm: clamp(0.85rem, 1.8vw, 1rem);
    --fs-base: clamp(1rem, 2vw, 1.125rem);
    --fs-md: clamp(1.1rem, 2.5vw, 1.35rem);
    --fs-lg: clamp(1.4rem, 3vw, 1.8rem);
    --fs-xl: clamp(1.8rem, 4vw, 2.5rem);
    --fs-2xl: clamp(2.2rem, 5vw, 3.5rem);
    --fs-3xl: clamp(2.8rem, 6vw, 4.5rem);
}

.neon-border {
    border: 1px solid rgba(233, 30, 99, 0.4);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.2);
    backdrop-filter: blur(10px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(ellipse at top, #1a1118 0%, #0D080F 50%, #080510 100%);
    background-attachment: fixed;
    color: var(--gray-300);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.detail-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   SÜPER PROFESYONEL HEADER TASARIMI
   ============================================ */

.premium-header {
    background: rgba(10, 7, 13, 0.85);
    /* Derin lüks siyah */
    backdrop-filter: blur(24px);
    /* Pürüzsüz cam efekti */
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    /* Masaüstünde ferah yükseklik */
    gap: 30px;
}

/* --- YENİ LOGO --- */
.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo:hover {
    transform: scale(1.03);
}

.logo-escort {
    color: #ffffff;
}

.logo-sepeti {
    color: var(--accent);
    font-style: italic;
    margin-left: 3px;
}

/* --- MASAÜSTÜ KAPSÜL ARAMA ÇUBUĞU --- */
.header-search-desktop {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
}

.premium-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px 6px;
    transition: all 0.3s ease;
}

.premium-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.15);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.search-icon {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-right: 10px;
}

.premium-search-bar input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.premium-search-bar input::placeholder {
    color: var(--gray-500);
}

.btn-search-pill {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search-pill:hover {
    background: #FF2A75;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* --- SAĞ AKSİYON MENÜSÜ --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Dairesel / İkonlu Butonlar */
.action-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-icon-btn:hover {
    background: rgba(233, 30, 99, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.filter-btn-glow {
    width: auto;
    padding: 0 18px;
    border-radius: 50px;
    color: var(--accent);
    border-color: rgba(233, 30, 99, 0.3);
}

/* Dil Seçici */
.lang-switcher {
    position: relative;
}

.lang-current-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-current-btn img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
}

.lang-current-btn:hover {
    border-color: var(--gray-400);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #11141A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    width: 140px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-switcher:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.2s;
}

.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.active {
    background: rgba(233, 30, 99, 0.1);
    color: var(--accent);
}

.lang-dropdown-menu a img {
    width: 20px;
    border-radius: 2px;
}

/* İlan Ver Butonu */
.btn-post-ad {
    background: linear-gradient(135deg, #E91E63 0%, #B21F56 100%);
    color: #fff !important;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-post-ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    background: linear-gradient(135deg, #FF2A75 0%, #D81B60 100%);
}


/* ============================================
   PREMIUM FILTER BAR (Açılır Alan)
   ============================================ */
.filter-collapse {
    background: rgba(15, 18, 24, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
}

.filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.filter-select,
.filter-input-text {
    flex: 1;
    min-width: 140px;
    background: #0B0E13;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.filter-select {
    appearance: none;
    /* Native oku gizle */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23E91E63%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.filter-select:focus,
.filter-input-text:focus {
    border-color: var(--accent);
}

/* Range Inputs */
.filter-range-group {
    display: flex;
    align-items: center;
    background: #0B0E13;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px 12px;
    gap: 8px;
}

.filter-range-group label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
}

.filter-range-input {
    width: 60px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    outline: none;
}

.filter-range-group span {
    color: var(--gray-500);
}

/* Custom Checkbox */
.filter-checkbox-group {
    display: flex;
    gap: 16px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.custom-checkbox input:checked~.checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.custom-checkbox input:checked~.checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
}

.btn-filter-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

/* ============================================
   1. ARAMA ÇUBUĞU VE İKON GÖRÜNÜRLÜĞÜ KESİN ÇÖZÜM
   ============================================ */

.upload-previews .preview-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

/* MASAÜSTÜ (992px ve üzeri) */
@media (min-width: 992px) {
    .header-search-desktop {
        display: block !important;
        /* Masaüstünde Arama Çubuğu GÖRÜNSÜN */
    }

    #mobileSearchToggle {
        display: none !important;
        /* Masaüstünde Arama İkonu GİZLENSİN */
    }
}

/* MOBİL (991px ve altı) */
@media (max-width: 991px) {
    .header-search-desktop {
        display: none !important;
        /* Mobilde Arama Çubuğu GİZLENSİN */
    }

    #mobileSearchToggle {
        display: flex !important;
        /* Mobilde Arama İkonu GÖRÜNSÜN */
    }
}

/* ============================================
   2. MOBİLDE SIĞMAMA SORUNU İÇİN MİKRO UYUM (App Style)
   ============================================ */
@media (max-width: 991px) {
    .header-inner {
        height: 65px;
        /* Mobilde daha kompakt */
        gap: 10px;
    }

    .brand-logo {
        font-size: 1.5rem;
    }

    .header-actions {
        gap: 6px;
    }

    .action-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }

    .filter-btn-glow {
        padding: 0;
        width: 40px;
        justify-content: center;
    }

    .lang-current-btn {
        padding: 6px 10px;
    }

    .lang-current-btn img {
        margin: 0;
    }

    .btn-post-ad {
        padding: 6px 16px;
        width: auto;
        height: 40px;
        justify-content: center;
        border-radius: 50px;
    }
}

@media (max-width: 576px) {

    /* Genel header boşluklarını daralt */
    .header-inner {
        height: 60px;
        /* Biraz daha ince bir header */
        gap: 5px !important;
    }

    /* Logoyu mobilde daralt ki sağdaki butonlara yer kalsın */
    .brand-logo {
        font-size: 1.35rem !important;
    }

    /* Aksiyon butonlarının arasındaki boşluğu kıs */
    .header-actions {
        gap: 5px !important;
    }

    /* Tüm butonları (Arama, Filtre, İlan Ver) kusursuz küçük çemberler yap */
    .action-icon-btn,
    .filter-btn-glow {
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
    }

    /* İlan ver butonunu mobilde yazı ile göster */
    .btn-post-ad {
        width: auto !important;
        padding: 0 12px !important;
        height: 36px !important;
        border-radius: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75rem !important;
        gap: 4px !important;
    }

    .btn-post-ad span {
        display: inline !important;
    }

    /* Filtre butonunun içindeki yazıyı kesin olarak gizle */
    .filter-btn-glow span {
        display: none !important;
    }

    /* Dil Seçiciyi de diğer butonlar gibi yuvarlak bir çember yap */
    .lang-current-btn {
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
    }

    /* Sadece bayrak kalsın, bayrağı tam ortala */
    .lang-current-btn img {
        margin: 0 !important;
        width: 20px !important;
        height: 14px !important;
    }

    /* Dildeki yazıyı ve oku gizle */
    .lang-current-btn span,
    .lang-current-btn i {
        display: none !important;
    }
}

/* --- MOBİL ÇEKMECE ARAMA (Drawer) --- */
.mobile-search-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0B0E13;
    padding: 15px 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1040;
}

.mobile-search-drawer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px 12px;
}

.m-search-icon {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-right: 10px;
}

.mobile-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px 0;
    outline: none;
}

.m-search-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}


/* ============================================
   İLAN KARTLARI — PREMIUM REDESIGN v5
   (Sadece VIP • Daha seksi & dikkat çekici • Boş kartlar ikna edici)
   ============================================ */
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 500;
}

/* ============================================
   KART CONTAINER â€” MOBÄ°LDE KESÄ°N 3 KART YAN YANA
   ============================================ */
.ilan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 1200px) {
    .ilan-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }
}

/* ============================================
   PREMIUM İLAN KARTLARI V2 (Cinematic / App Style)
   ============================================ */

.ilan-card-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0c0f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(0);
}

/* === VIP KART — İnce Zarif Altın Çerçeve === */
.ilan-card-v2.vip-card {
    border: 1.5px solid var(--gold-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 18px var(--gold-glow), inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.ilan-card-v2.vip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.ilan-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.25);
    border-color: rgba(233, 30, 99, 0.4);
}

.ilan-card-v2.vip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.3), 0 0 25px var(--gold-glow);
    border-color: var(--gold);
}

.card-v2-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.card-v2-media {
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- Görsel --- */
.premium-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.ilan-card-v2:hover .premium-card-img {
    transform: scale(1.06);
}

/* --- Alt Karartma (Gradient Overlay) --- */
.card-v2-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(8, 5, 10, 0.95) 0%, rgba(8, 5, 10, 0.7) 40%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* --- VIP Rozeti (Sol Üst) --- */
.card-v2-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.premium-badge-vip {
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    background-size: 200% auto;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.5);
    animation: shineGold 4s linear infinite;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- Alt Bilgiler (İsim & Konum) --- */
.card-v2-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-v2-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-v2-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--accent-light, #F48FB1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   SKELETON SCREEN (Yükleniyor Animasyonu)
   ============================================ */
@keyframes skeleton-shimmer {
    0% {
        background-position: -600px 0;
    }

    100% {
        background-position: 600px 0;
    }
}

.skeleton-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(90deg,
            #1a1820 25%,
            #2a2530 50%,
            #1a1820 75%);
    background-size: 600px 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(90deg,
            rgba(40, 35, 50, 0.8) 25%,
            rgba(60, 55, 70, 0.8) 50%,
            rgba(40, 35, 50, 0.8) 75%);
    background-size: 600px 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite 0.2s;
}

/* ============================================
   ONAYLANDI ROZETİ
   ============================================ */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

/* Kart alt bilgisine ek: yaş ve rozet */
.card-v2-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}

.card-v2-age {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Kart sağ alt: onaylı rozet ikonu */
.card-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 4;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.2);
    border: 1px solid rgba(0, 230, 118, 0.4);
    border-radius: 50%;
    color: var(--green);
    font-size: 0.7rem;
    backdrop-filter: blur(4px);
}

@media (max-width: 576px) {
    .card-verified-badge {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
        bottom: 6px;
        right: 6px;
    }
}

/* ============================================
   PLACEHOLDER V2 (Kusursuz Uyum)
   ============================================ */
.placeholder-v2 {
    background: rgba(20, 24, 30, 0.5);
    border: 2px dashed rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-v2:hover {
    background: rgba(233, 30, 99, 0.05);
    border-color: var(--accent);
}

.placeholder-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    opacity: 0.05;
    color: var(--white);
    pointer-events: none;
    transition: all 0.4s ease;
}

.placeholder-v2:hover .placeholder-silhouette {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.05);
}

.placeholder-v2-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.placeholder-v2-content i {
    font-size: 2rem;
    color: var(--gray-500);
    transition: color 0.3s;
}

.placeholder-v2-content span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 1.5px;
    min-width: 58px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   MOBİL MİKRO ÖLÇEKLENDİRME (Görseli Boğmayan Yapı)
   ============================================ */
@media (max-width: 576px) {
    .ilan-card-v2 {
        border-radius: 8px;
        /* Daha dar köşeler */
    }

    /* Alttaki siyah karartmanın yüksekliğini %65'ten %45'e düşürdük */
    .card-v2-overlay {
        height: 45%;
    }

    /* Rozet konumu */
    .card-v2-badges {
        top: 4px;
        left: 4px;
    }

    /* VIP Rozeti mikro boyut */
    .premium-badge-vip {
        padding: 2px 6px;
        font-size: 0.5rem;
        border-radius: 4px;
        letter-spacing: 0.5px;
    }

    /* Yazıların karta olan iç boşluğunu iyice kıstık (Kenarlara yanaştı) */
    .card-v2-info {
        padding: 6px 8px;
    }

    /* İsim Boyutu */
    .card-v2-name {
        font-size: 0.85rem;
        /* İsim daha küçük */
        margin-bottom: 1px;
        /* İsim ile şehir arası boşluk sıfırlandı */
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
        /* İnce ama sert gölge (okunabilirlik için) */
    }

    /* Şehir/İlçe Boyutu */
    .card-v2-location {
        font-size: 0.6rem;
        /* Çok daha küçük lokasyon yazısı */
        gap: 3px;
    }

    .card-v2-location i {
        font-size: 0.55rem;
        /* İkonu da küçülttük */
    }

    /* Boş kart yazıları */
    .placeholder-v2-content i {
        font-size: 1.2rem;
    }

    .placeholder-v2-content span {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}

/* ============================================
   Ä°LAN DETAY SAYFASI â€” PREMIUM REDESIGN v1
   (Kusursuz YerleÅŸim + Profesyonel Ã–lÃ§eklendirme)
   ============================================ */

.detail-page {
    padding: 40px 0 80px;
    max-width: 1480px;
    margin: 0 auto;
}

/* Ana Container â€” MasaÃ¼stÃ¼nde Yan Yana, Mobilde Alt Alta */
.detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .detail-container {
        grid-template-columns: 7fr 5fr;
        /* Galeri %58 - Detay %42 (en profesyonel oran) */
        gap: 48px;
    }
}

/* ============================================
   GALERÄ° â€” Daha BÃ¼yÃ¼k ve Kusursuz
   ============================================ */
.gallery-wrapper {
    background: rgba(17, 20, 24, 0.95);
    border-radius: 24px;
    padding: 16px;
    border: 1px solid rgba(233, 30, 99, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 24px;
}

.gallery-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0c0f;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    /* Kartlarla aynÄ± ÅŸÄ±k oran */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Tam dolu ve profesyonel */
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main:hover img {
    transform: scale(1.04);
}

/* Thumbnailâ€™ler â€” Daha zarif ve yatay scroll */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #E91E63 transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #E91E63;
    border-radius: 10px;
}

.gallery-thumb {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #E91E63;
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   DETAY BÄ°LGÄ°LERÄ° â€” Temiz ve Premium
   ============================================ */
.detail-content {
    background: linear-gradient(145deg, #111418, #1a1f27);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.12);
    height: 100%;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.detail-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c8c8c8;
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 500;
}

.detail-location i {
    color: #E91E63;
    font-size: 1.25rem;
}

.detail-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.badge-warning {
    background: rgba(233, 30, 99, 0.15);
    color: #E91E63;
}

.badge-vip {
    background: linear-gradient(90deg, #E91E63, #f8e08a);
    color: #111418;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.5);
    padding: 9px 20px;
}

/* Açıklama kutusu — Daha okunaklı ve şık */
.detail-description {
    color: #d1d1d1;
    line-height: 1.85;
    font-size: 1.02rem;
    white-space: pre-line;
    padding: 28px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    border-left: 5px solid #E91E63;
    margin-bottom: 32px;
}

/* Butonlar â€” Daha bÃ¼yÃ¼k ve dikkat Ã§ekici */
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.detail-actions .btn {
    flex: 1 1 260px;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-share {
    background: rgba(255, 255, 255, 0.06);
    color: #c8c8c8;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    border-radius: 14px;
}

.btn-share:hover {
    background: #E91E63;
    color: #111418;
    transform: translateY(-3px);
}

/* ============================================
   MOBİL UYUMLULUK — Kusursuz Ölçeklendirme
   ============================================ */
@media (max-width: 991px) {
    .detail-container {
        gap: 32px;
    }

    .gallery-wrapper {
        position: static;
    }
}

@media (max-width: 576px) {
    .detail-page {
        padding: 20px 0 50px;
    }

    .detail-container {
        gap: 24px;
    }

    .gallery-wrapper {
        padding: 12px;
        border-radius: 20px;
    }

    .gallery-main {
        aspect-ratio: 4 / 5;
        border-radius: 16px;
    }

    .gallery-thumb {
        width: 64px;
        height: 64px;
    }

    .detail-content {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .detail-title {
        font-size: 1.75rem;
    }

    .detail-description {
        padding: 20px;
        font-size: 0.97rem;
    }

    .detail-actions .btn {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .detail-actions {
        gap: 10px;
    }
}

/* Placeholder / Boş Galeri Durumu (opsiyonel) */
.gallery-main:empty::after {
    content: 'Fotoğraf Yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   İLAN DETAY SAYFASI — PREMIUM REDESIGN v3
   (Yazılar görselin ÜSTÜNE GELMİYOR + Görsel net görünüyor + Lightbox kapanıyor)
   ============================================ */

.detail-page {
    padding: 35px 0 70px;
    max-width: 1480px;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 991px) {
    .container {
        padding: 0 15px;
        /* Standardize mobile padding */
    }
}

.premium-layout-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 992px) {
    .premium-layout-2col {
        grid-template-columns: 5fr 7fr;
        gap: 44px;
    }
}

/* ====================== GALERÄ° â€” TEMÄ°Z & NET GÃ–RSEL ====================== */
.premium-gallery-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gallery-wrapper {
    background: rgba(17, 20, 24, 0.95);
    border-radius: 24px;
    padding: 14px;
    border: 1px solid rgba(233, 30, 99, 0.15);
}

.gallery-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0c0f;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
    max-height: 620px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0a0c0f;
}

.gallery-main:hover img {
    transform: scale(1.04);
}

/* === YAZILAR ARTIK GÃ–RSEL ÃœZERÄ°NDE DEÄžÄ°L === */
.glass-header-overlay {
    display: none !important;
    /* â†  Tamamen kaldÄ±rÄ±ldÄ± (gÃ¶rsel net gÃ¶rÃ¼necek) */
}

/* ====================== BAÅžLIK VE KONUM ÅžÄ°MDÄ° GALERÄ°NÄ°N ALTINDA ====================== */
.premium-main-col .gallery-wrapper:after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(233, 30, 99, 0.2);
    margin: 18px 0 14px;
}

/* Galerinin hemen altına başlık ve location taşıyoruz (CSS ile) */
.gallery-wrapper {
    position: relative;
}

.gallery-wrapper .header-title,
.gallery-wrapper .header-location,
.gallery-wrapper .badges-row {
    display: block !important;
    position: static;
    padding: 0 8px;
    background: transparent;
    margin-top: 12px;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
}

.header-location {
    font-size: 1.1rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badges-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* Thumbnailâ€™ler */
.gallery-thumbs {
    display: flex;
    gap: 9px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-thumb {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #000;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #E91E63;
    transform: scale(1.08);
}

/* ====================== LIGHTBOX â€” BÃœYÃœTÃœNCE KAPANIYOR ====================== */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

#lightbox.active {
    display: flex;
}

#lightboxImg {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: #E91E63;
    color: #111;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-nav.left {
    left: 30px;
}

.lightbox-nav.right {
    right: 30px;
}

/* ====================== DÄ°ÄžER KISIMLAR (deÄŸiÅŸmedi) ====================== */
.premium-card {
    background: linear-gradient(145deg, #111418, #1a1f27);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(233, 30, 99, 0.12);
}

.sticky-contact-card {
    position: sticky;
    top: 30px;
}

/* MOBÄ°L */
@media (max-width: 576px) {
    .gallery-main {
        max-height: 460px;
    }

    .header-title {
        font-size: 1.55rem;
    }

    .gallery-wrapper {
        padding: 10px;
        border-radius: 20px;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--gray-400);
    padding: 50px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   Ã„Â°LETÃ„Â°Ã…ÂžÃ„Â°M / Ã„Â°LAN VER MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--primary-light);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    background: var(--primary-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 2;
}

.modal-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.modal-body {
    padding: 24px;
}

/* ============================================
   FORM STÃ„Â°LLERÃ„Â°
   ============================================ */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--red);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    background: var(--primary-dark);
    color: var(--white);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Upload Area */
.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--accent);
    background: rgba(233, 30, 99, 0.05);
}

.upload-area i {
    font-size: 2rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.upload-area p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.upload-area .small {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.upload-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.upload-preview {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    flex-shrink: 0;
    background: #000;
}

.upload-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview .remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-hover), #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success/Error MesajlarÃ„Â± */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeSlideDown 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   SAYFALAMA
   ============================================ */
.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
}

.page-item .page-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 700;
}

.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   Ã„Â°L LÃ„Â°NKLERÃ„Â°
   ============================================ */
.iller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.il-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.il-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.il-link .count {
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: auto;
}

/* ============================================
   404 SAYFASI
   ============================================ */
.page-404 {
    text-align: center;
    padding: 80px 20px;
}

.page-404 h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-404 p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.page-404 .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.page-404 .btn-home:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ============================================
   LOADING / SPINNER
   ============================================ */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.page-loader .spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ============================================
   SAYFA BAÃ…ÂLIKLARI (Ã„Â°l/Ã„Â°lÃƒÂ§e sayfalarÃ„Â±)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 36px 0;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.page-header h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-400);
}

.page-header .ilan-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Ã„Â°lÃƒÂ§e linkleri */
.ilce-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ilce-link {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gray-300);
    transition: var(--transition);
}

.ilce-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.ilce-link.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.3rem;
    }
}

/* ============================================
   BENZERSÃ„Â°Z Ã„Â°LANLAR BÃƒâ€“LÃƒÅ“MÃƒÅ“
   ============================================ */
.related-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.related-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

/* ============================================
   COPY TO CLIPBOARD
   ============================================ */
.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10000;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   ANÃ„Â°MASYONLAR
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Genel animasyonlu giriÃ…Å¸ */
.fade-in {
    animation: fadeSlideDown 0.4s ease both;
}

.fade-in:nth-child(2) {
    animation-delay: 0.05s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.15s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.25s;
}

.fade-in:nth-child(7) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(8) {
    animation-delay: 0.35s;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-3 {
    margin-bottom: 16px;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Ä°lanlar grid â€” 6 sÃ¼tun (Desktop) / 3 sÃ¼tun (Mobil) */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 1400px) {
    .ilanlar-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .ilanlar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .ilanlar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .ilanlar-grid {
        gap: 4px;
    }
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-results i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    display: block;
}

.no-results h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

/* ============================================
   DETAY SAYFASI RESPONSIVE LAYOUT
   ============================================ */
.detail-layout-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-main-content {
    min-width: 0;
}

.detail-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--white);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    display: flex;
    gap: 12px;
    background: var(--primary-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.sidebar-item:hover {
    transform: translateX(4px);
    border-color: var(--accent);
    background: var(--gray-50);
}

.sidebar-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-item .item-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sidebar-item .item-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Alt Ã¯Â¿Â½lanlar BÃ¯Â¿Â½lÃ¯Â¿Â½mÃ¯Â¿Â½ */
.related-listings-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .detail-layout-wrapper {
        grid-template-columns: 200px 1fr 200px;
    }
}

@media (max-width: 992px) {
    .detail-layout-wrapper {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .related-listings-bottom .section-title {
        font-size: 1.2rem;
    }
}

/* ============================================
   PREMIUM DETAY SAYFASI GÃœNCELLEMELERÄ°
   (Consolidated into main styles above)
   ============================================ */

/* DETAY SAYFASI HEADER INFO & BADGES */
.detail-header-info {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-badges .badge {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

/* DETAY SAYFASI 2-KOLON LAYOUT (Eski - Uyumluluk) */
.detail-layout-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-bottom: 60px;
}

.detail-main-col {
    min-width: 0;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.sidebar-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-item:hover {
    background: rgba(233, 30, 99, 0.08);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateX(4px);
}

.sidebar-item .item-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-item .item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--white);
    margin-top: 0;
    line-height: 1.3;
}

.sidebar-item .item-loc {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 4rem;
    color: var(--gray-600);
}

@media (max-width: 992px) {
    .detail-layout-container {
        grid-template-columns: 1fr;
    }

    .sidebar-box {
        position: static;
    }
}

/* ============================================
   PREMIUM DETAY LAYOUT
   ============================================ */
.detail-layout-3col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1500px;
    /* GeniÅŸletildi (+100px) */
    margin-left: auto;
    margin-right: auto;
}

.detail-side-col {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

.detail-side-col:empty {
    display: none;
}

.detail-main-col {
    flex: 1;
    min-width: 0;
    max-width: 1500px;
    /* GeniÅŸletildi (+100px) */
}

.side-box {
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.side-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    color: var(--accent);
}

.side-item {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.side-item:hover {
    background: rgba(233, 30, 99, 0.08);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateX(3px);
}

.side-item .item-img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.side-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-item .item-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--white);
    line-height: 1.3;
}

.side-item .item-loc {
    font-size: 0.72rem;
    color: var(--gray-400);
}

.related-bottom {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-bottom .section-title {
    margin-bottom: 24px;
    text-align: left;
    font-size: 1.4rem;
}

/* Related bottom grid (row-cols equivalent) */
.related-bottom .row {
    display: grid;
    gap: 16px;
}

.related-bottom .row-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.related-bottom .row-cols-md-4 {
    grid-template-columns: repeat(2, 1fr);
}

.related-bottom .g-3 {
    gap: 16px;
}

@media (min-width: 768px) {
    .related-bottom .row-cols-md-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .detail-layout-3col {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }

    .col-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .detail-layout-3col {
        grid-template-columns: 1fr;
    }

    .detail-side-col {
        position: static;
        order: 2;
    }

    .col-left {
        display: none;
    }
}



/* Swipe Indicator Hint */
.gallery-main::after {
    content: '\F632';
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    opacity: 0.6;
    pointer-events: none;
    animation: swipeHint 2s infinite;
    display: none;
}

@media (max-width: 768px) {
    .gallery-main::after {
        display: flex;
    }
}

@keyframes swipeHint {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    30% {
        opacity: 0.6;
    }

    70% {
        transform: translateX(-15px);
        opacity: 0.6;
    }

    100% {
        transform: translateX(-15px);
        opacity: 0;
    }
}

/* Gallery Navigation Buttons */
.gallery-main {
    position: relative;
}

.gallery-nav-btns {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 5;
}

.g-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.g-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Gallery Swipe Hint Label */
.gallery-swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
}

@media (min-width: 992px) {
    .gallery-swipe-hint {
        display: none;
        /* Hide hint on desktop */
    }
}

/* ============================================
   DÄ°L SEÃ‡Ä°CÄ° (LANG SWITCHER)
   ============================================ */
.lang-switcher {
    position: relative;
    margin-right: 15px;
    z-index: 1010;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.lang-current img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-current i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 140px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
    display: flex;
    animation: fadeSlideDown 0.2s ease;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(233, 30, 99, 0.1);
    color: var(--accent);
}

.lang-dropdown a img {
    width: 20px;
    border-radius: 2px;
}

/* ============================================
   RTL SUPPORT (ARABIC)
   ============================================ */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] body {
    direction: rtl;
}

[dir="rtl"] .header-main>.container,
[dir="rtl"] .footer-grid,
[dir="rtl"] .detail-grid,
[dir="rtl"] .search-bar,
[dir="rtl"] .ilan-card-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

[dir="rtl"] .lang-switcher {
    margin-right: 0 !important;
    margin-left: 15px !important;
}

[dir="rtl"] .lang-dropdown {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .bi-chevron-down,
[dir="rtl"] .bi-chevron-right,
[dir="rtl"] i[class*="chevron"] {
    transform: scaleX(-1);
}

[dir="rtl"] .btn-ilan-ver i {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

/* ============================================
   ARAMA TOGGLE BUTONU
   ============================================ */
.search-toggle-btn {
    display: none;
}

.search-close-btn {
    display: none;
}

@media (max-width: 992px) {
    .search-toggle-btn {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .search-toggle-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--primary-dark);
        transform: scale(1.05);
    }

    .search-wrapper {
        display: none !important;
        /* gizli baÅŸlasÄ±n */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: rgba(7, 5, 10, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(233, 30, 99, 0.15);
        z-index: 1001;
        animation: fadeSlideDown 0.3s ease;
        max-width: none;
        flex-basis: auto;
        margin-top: 0;
    }

    .search-wrapper.active {
        display: block !important;
    }

    .search-close-btn {
        display: block;
        background: none;
        border: none;
        color: var(--gray-400);
        font-size: 1.1rem;
        cursor: pointer;
        padding: 4px;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .search-close-btn:hover {
        color: var(--red);
    }
}

.search-wrapper form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   PLACEHOLDER KART (BoÅŸ Slot)
   ============================================ */
.ilan-card-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(233, 30, 99, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    cursor: pointer;
    transition: var(--transition);
}

.ilan-card-placeholder:hover {
    border-color: var(--accent);
    background: rgba(233, 30, 99, 0.05);
    transform: translateY(-2px);
}

.placeholder-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.placeholder-content i {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.5;
    transition: var(--transition);
}

.ilan-card-placeholder:hover .placeholder-content i {
    opacity: 1;
    transform: scale(1.1);
}

.placeholder-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    line-height: 1.4;
}

.ilan-card-placeholder:hover .placeholder-content span {
    color: var(--accent);
}

/* ============================================
   PROFÄ°L BÄ°LGÄ°LERÄ° (Kart Ä°Ã§i)
   ============================================ */
.ilan-card-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.profile-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.12);
    border-radius: 50px;
    font-size: 0.68rem;
    color: var(--gray-300);
    white-space: nowrap;
}

.profile-tag i {
    font-size: 0.6rem;
    color: var(--accent);
}

/* ============================================
   KAPORA DOLANDIRICILIK UYARISI
   ============================================ */
.fraud-warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease;
}

.fraud-warning-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(244, 63, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fraud-warning-icon i {
    font-size: 1.3rem;
    color: var(--red);
}

.fraud-warning-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.fraud-warning-content p {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   FÄ°LTRE RANGE INPUT
   ============================================ */
.filter-range-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
}

.filter-range-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
    margin-right: 4px;
}

.filter-range-input {
    width: 55px;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.8rem;
    font-family: inherit;
    outline: none;
    text-align: center;
}

.filter-range-input:focus {
    border-color: var(--accent);
}

.filter-range-input::placeholder {
    color: var(--gray-500);
}

.filter-range-sep {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.filter-select-sm {
    min-width: 120px !important;
}

/* ============================================
   FORM SECTION DIVIDER
   ============================================ */
.form-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 16px;
}

.form-section-divider::before,
.form-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.form-section-divider span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* ============================================
   DETAY SAYFA PROFÄ°L BÄ°LGÄ°LERÄ°
   ============================================ */
.detail-profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.profile-info-item:hover {
    background: rgba(233, 30, 99, 0.08);
    border-color: rgba(233, 30, 99, 0.2);
}

.profile-info-item i {
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

/* Gallery portrait format for detail page */
.gallery-main {
    aspect-ratio: auto !important;
}

.gallery-placeholder {
    aspect-ratio: auto !important;
}

/* ============================================
   ADMIN FORM HINT
   ============================================ */
.form-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
    line-height: 1.4;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .ilan-card-profile {
        gap: 3px;
    }

    .profile-tag {
        font-size: 0.6rem;
        padding: 1px 5px;
    }

    .fraud-warning {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .detail-profile-info {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px;
    }

    .filter-range-group {
        padding: 3px 6px;
    }

    .filter-range-input {
        width: 42px;
        padding: 4px 3px;
        font-size: 0.75rem;
    }

    .placeholder-content i {
        font-size: 1.8rem;
    }

    .placeholder-content span {
        font-size: 0.75rem;
    }

    .ilan-card-placeholder {
        min-height: 200px;
    }

    .search-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ============================================
   18+ UYARI MODALI
   ============================================ */
.age-warning-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

.age-warning-overlay.active {
    display: flex;
}

.age-warning-content {
    background: var(--primary-dark);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(244, 63, 94, 0.25);
    animation: slideUp 0.5s ease-out;
}

.age-warning-header {
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(244, 63, 94, 0.05);
}

.age-warning-header .warning-icon {
    font-size: 3rem;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(244, 63, 94, 0.5));
}

.age-warning-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    margin: 0;
}

.age-warning-body {
    padding: 30px;
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.age-warning-body p {
    margin-bottom: 15px;
}

.age-warning-list-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 25px;
}

.age-warning-list-box p {
    color: var(--white);
    margin-bottom: 12px;
}

.age-warning-list-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.age-warning-list-box ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.age-warning-list-box ul li::before {
    content: '\F26A';
    /* bi-check */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 1.1rem;
}

.age-warning-footer {
    padding: 24px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-age-exit {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--gray-500);
    color: var(--gray-300);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-age-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--gray-400);
}

.btn-age-enter {
    padding: 12px 32px;
    background: var(--red);
    border: none;
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.btn-age-enter:hover {
    background: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
}

@media (max-width: 576px) {
    .age-warning-header {
        padding: 20px;
    }

    .age-warning-header h2 {
        font-size: 1.5rem;
    }

    .age-warning-body {
        padding: 20px;
        font-size: 0.9rem;
    }

    .age-warning-footer {
        padding: 20px;
        flex-direction: column-reverse;
    }

    .btn-age-exit,
    .btn-age-enter {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   V3 DETAY SAYFASI Ã–ZEL TASARIM 
   ============================================ */
.mobile-only-header {
    display: none;
    margin-bottom: 16px;
}

.desktop-only-header {
    display: block;
    margin-bottom: 24px;
}

/* Desktop: Gallery & Info Layout */
.main-content-split {
    display: flex;
    flex-wrap: wrap;
    /* SÄ±kÄ±ÅŸtÄ±ÄŸÄ± an alta geÃ§er, ezilmez */
    gap: 30px;
    align-items: flex-start;
}

.main-gallery-side {
    width: 50%;
    min-width: 400px;
    /* Ã‡ok daralmasÄ±nÄ± engelle */
    max-width: 700px;
    /* +50px BÃ¼yÃ¼tÃ¼ldÃ¼ */
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

.main-info-side {
    flex: 1;
    min-width: 320px;
    /* Tablonun ezilmesini engelle */
    display: flex;
    flex-direction: column;
}

/* Profil Bilgi Tablosu */
.profile-info-container {
    padding: 0;
    margin-bottom: 24px;
}

.profile-info-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-info-table th {
    color: var(--gray-400);
    font-weight: 500;
}

.profile-info-table td {
    color: var(--white);
    font-weight: 600;
}

.profile-info-table th i {
    width: 22px;
    color: var(--accent);
    margin-right: 6px;
    text-align: center;
    font-size: 0.95rem;
}

/* MasaÃ¼stÃ¼ DÃ¼zeni (AkÄ±llÄ± Kutu tasarÄ±mÄ±) */
@media (min-width: 992px) {

    .profile-info-table,
    .profile-info-table tbody {
        display: block;
        width: 100%;
    }

    .profile-info-table tbody {
        column-width: 330px;
        /* Daha da geniÅŸletildi: SÄ±kÄ±ÅŸmayÄ± %100 Ã¶nler */
        column-gap: 20px;
    }

    .profile-info-table tr {
        display: flex;
        width: 100%;
        break-inside: avoid;
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid;
        margin-bottom: 12px;
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: var(--transition);
        align-items: stretch;
    }

    .profile-info-table tr:hover {
        background: rgba(233, 30, 99, 0.06);
        border-color: rgba(233, 30, 99, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .profile-info-table th {
        width: 130px;
        /* BaÅŸlÄ±k alanÄ± biraz kÄ±sÄ±ldÄ± ki karÅŸÄ±sÄ±ndaki (deÄŸer) daha Ã§ok alan bulsun */
        flex-shrink: 0;
        background: rgba(0, 0, 0, 0.25);
        border-right: 1px solid rgba(255, 255, 255, 0.03);
        padding: 14px 12px;
        display: flex;
        align-items: center;
        border-bottom: none !important;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .profile-info-table td {
        flex: 1;
        /* Kalan tÃ¼m devasa alanÄ± alÄ±r */
        padding: 14px 14px;
        display: flex;
        align-items: center;
        border-bottom: none !important;
        font-size: 0.95rem;
        /* YazÄ±lar biraz daha okunaklÄ± */
        word-break: break-word;
        /* Ä°Ã§ iÃ§e girmeyi Ã¶nler */
    }
}

/* Mobil DÃ¼zeni (Standart tablo akÄ±ÅŸÄ±) */
@media (max-width: 991px) {
    .profile-info-container {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .profile-info-table th,
    .profile-info-table td {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        text-align: left;
        font-size: 0.85rem;
    }

    .profile-info-table th {
        width: 44%;
        background: rgba(0, 0, 0, 0.1);
    }

    .profile-info-table td {
        width: 56%;
    }

    .profile-info-table tr:last-child th,
    .profile-info-table tr:last-child td {
        border-bottom: none;
    }

    .profile-info-table tr:hover {
        background: rgba(233, 30, 99, 0.04);
    }
}

/* Mobil Uyum (Responsive) */
@media (max-width: 991px) {
    .main-content-split {
        flex-direction: column;
        gap: 20px;
    }

    .main-gallery-side {
        width: 100%;
        position: static;
    }

    .main-info-side {
        width: 100%;
    }

    .mobile-only-header {
        display: block;
    }

    .desktop-only-header {
        display: none;
    }

    .profile-info-table th,
    .profile-info-table td {
        padding: 11px 14px;
        font-size: 0.85rem;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.back-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top i {
        font-size: 1.1rem;
    }
}

/* ============================================
   V3 - Ã‡oklu Ä°lÃ§e SeÃ§imi (Checkbox Grid)
   ============================================ */
.ilce-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--gray-700);
    max-height: 250px;
    overflow-y: auto;
    margin-top: 10px;
}

.ilce-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-800);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    user-select: none;
}

.ilce-checkbox-item:hover {
    background: var(--gray-700);
    border-color: var(--accent);
}

.ilce-checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.ilce-checkbox-item span {
    font-size: 0.85rem;
    color: var(--gray-200);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ilce-checkbox-item.active {
    background: rgba(245, 158, 11, 0.15);
    /* primary-rgb equivalent */
    border-color: var(--accent);
}

.ilce-checkbox-item.active span {
    color: var(--white);
    font-weight: 600;
}

/* Scrollbar styling */
.ilce-checkbox-grid::-webkit-scrollbar {
    width: 6px;
}

.ilce-checkbox-grid::-webkit-scrollbar-track {
    background: transparent;
}

.ilce-checkbox-grid::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 10px;
}

.ilce-checkbox-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}



/* ============================================
   İLAN VER SAYFASI STİLLERİ (PREMIUM)
   ============================================ */
.post-ad-page {
    background: var(--primary);
    color: var(--gray-300);
}

.post-ad-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top right, rgba(233, 30, 99, 0.15) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(233, 30, 99, 0.08) 0%, transparent 30%);
    text-align: center;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.post-ad-hero .badge-premium {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.post-ad-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--accent), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-ad-hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-400);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features */
.post-ad-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--gray-50);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 30, 99, 0.1);
    color: var(--accent);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Container */
.post-ad-form-section {
    padding: 40px 0 100px;
}

.form-container-box {
    background: #0F1318;
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    position: relative;
    /* overflow: hidden kaldÄ±rÄ±ldÄ± Ã§Ã¼nkÃ¼ custom select dropdown'Ä±nÄ± kesiyordu */
}

.form-container-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--accent);
    font-weight: 500;
}

.premium-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.btn-xl {
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary);
    border: none;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* İLAN DETAY PREMIUM REDESIGN */
.detail-actions-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.btn-premium-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: #fff !important;
}

.btn-call-gold {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.btn-whatsapp-green {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4);
}

.btn-premium-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.action-text {
    display: flex;
    flex-direction: column;
}

.action-text small {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.action-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.fraud-warning-premium {
    background: rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.2);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.warning-header i {
    font-size: 1.2rem;
}

.fraud-warning-premium p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .post-ad-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .form-container-box {
        padding: 30px 20px;
    }

    .premium-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .detail-actions-premium {
        grid-template-columns: 1fr;
    }

    .action-text strong {
        font-size: 1rem;
    }
}

/* ============================================
   HOUSE SILHOUETTE & PLACEHOLDER REDESIGN
   ============================================ */
.ilan-card-placeholder {
    height: 100%;
    min-height: 400px;
    background: rgba(233, 30, 99, 0.03);
    border: 2px dashed rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ilan-card-placeholder:hover {
    background: rgba(233, 30, 99, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.placeholder-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--accent);
    text-align: center;
    padding: 20px;
}

.silhouette-icon {
    width: 120px;
    height: 120px;
    color: rgba(233, 30, 99, 0.6);
    transition: var(--transition);
}

.ilan-card-placeholder:hover .silhouette-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.placeholder-info span {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
}

/* ============================================
   MOBILE HEADER TOGGLES
   ============================================ */
.filter-toggle-btn-mobile {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .filter-toggle-btn-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filter-header-desktop {
        display: none !important;
    }

    .header-main {
        gap: 10px;
    }

    .search-toggle-btn {
        margin-left: auto;
    }
}

/* ============================================
   SEARCHABLE SELECT (CUSTOM)
   ============================================ */
.searchable-select-wrapper {
    position: relative;
    width: 100%;
}

.searchable-select-input {
    width: 100%;
    padding: 12px 15px !important;
    background: #0B0F14 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-md);
    color: #fff !important;
    cursor: pointer;
}

.searchable-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: #161C24 !important;
    border: 1px solid rgba(233, 30, 99, 0.4) !important;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 99999;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.searchable-select-dropdown.active {
    display: block;
}

.searchable-select-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.searchable-select-option:last-child {
    border-bottom: none;
}

.searchable-select-option:hover {
    background: rgba(233, 30, 99, 0.2) !important;
    color: var(--accent) !important;
}

.searchable-select-option.selected {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700;
}

/* ============================================
   PREMIUM FORM ENHANCEMENTS
   ============================================ */
.premium-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.premium-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
}

.premium-input,
.premium-select,
.premium-textarea {
    background: #0D1117;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: #fff;
    transition: var(--transition);
    width: 100%;
}

/* Native select dropdown option renkleri */
.premium-select option {
    background-color: #0D1117;
    color: #F5F5F5;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    border-color: var(--accent);
    background: rgba(233, 30, 99, 0.05);
    outline: none;
    box-shadow: 0 0 15px var(--accent-glow);
}

.checkbox-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.ilce-checkbox-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ilce-checkbox-item:hover {
    background: rgba(233, 30, 99, 0.05);
    border-color: rgba(233, 30, 99, 0.3);
}

.ilce-checkbox-item.active {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border-color: var(--accent) !important;
    font-weight: 700;
}

.ilce-checkbox-item input {
    display: none;
}

/* ============================================
   PREMIUM HOMEPAGE HERO & LAYOUT
   ============================================ */
.premium-hero-box {
    background: radial-gradient(circle at top right, rgba(233, 30, 99, 0.15) 0%, transparent 60%), #0F1318;
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--accent), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header-line h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.section-header-line .line-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(233, 30, 99, 0.3), transparent);
}

@media (max-width: 768px) {
    .premium-hero-box {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* ============================================
   PREMIUM AD DETAIL 2-COLUMN LAYOUT
   ============================================ */
.premium-layout-2col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-top: 20px;
    align-items: start;
}

.premium-card {
    background: #0F1318;
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-title-gold {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    padding-bottom: 12px;
}

/* Glassmorphism Gallery Overlay */
.premium-gallery-card {
    background: #0F1318;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(233, 30, 99, 0.15);
}

.premium-gallery-card .gallery-main {
    position: relative;
    aspect-ratio: auto;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    min-height: 250px;
    max-height: 50vh;
}

@media (min-width: 992px) {
    .premium-gallery-card .gallery-main {
        min-height: 350px;
        max-height: 60vh;
    }
}

.detail-page {
    overflow-x: hidden;
    width: 100%;
}


.glass-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6) 60%, transparent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    z-index: 5;
}

.glass-header-overlay .header-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.glass-header-overlay .header-location {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
}

.glass-header-overlay .badges-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* Sticky Contact Sidebar */
.premium-sidebar-col {
    position: sticky;
    top: 90px;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.layout-vertical {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-share-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-weight: 600;
}

.btn-share-premium:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.side-item-premium {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.side-item-premium:hover {
    background: rgba(233, 30, 99, 0.05);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateY(-2px);
}

.side-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

@media (max-width: 991px) {
    .premium-layout-2col {
        grid-template-columns: 1fr;
    }

    .glass-header-overlay .header-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   FOOTER â€” PROFESYONEL YENÄ°DEN TASARIM
   ============================================ */

/* â”€â”€â”€ CTA Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-cta-banner {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.18) 0%, rgba(138, 106, 47, 0.12) 100%);
    border-top: 1px solid rgba(233, 30, 99, 0.25);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    padding: 28px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-cta-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.footer-cta-text h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.35);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(233, 30, 99, 0.5);
    color: var(--primary-dark);
}

/* â”€â”€â”€ Ana Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-main {
    background: #070A0D;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

/* â”€â”€â”€ Footer Brand â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.footer-badge i {
    font-size: 0.8rem;
}

/* â”€â”€â”€ Footer Kolon BaÅŸlÄ±klarÄ± â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col-title i {
    font-size: 0.9rem;
}

/* â”€â”€â”€ Åehir Listesi â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-city-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.footer-city-list li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    font-size: 0.83rem;
    padding: 5px 0;
    transition: var(--transition);
    text-decoration: none;
}

.footer-city-list li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-city-list li a i {
    font-size: 0.65rem;
    color: var(--accent);
    opacity: 0.6;
    transition: var(--transition);
}

.footer-city-list li a:hover i {
    opacity: 1;
}

.city-escort-label {
    font-size: 0.7rem;
    color: rgba(233, 30, 99, 0.5);
    margin-left: auto;
    display: none;
}

.footer-city-list li a:hover .city-escort-label {
    display: block;
}

/* â”€â”€â”€ Genel Link Listesi â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-links-list {
    list-style: none;
    margin-bottom: 24px;
}

.footer-links-list li {
    margin-bottom: 4px;
}

.footer-links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.85rem;
    padding: 6px 0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-list li a i {
    width: 16px;
    color: var(--accent);
    opacity: 0.6;
    font-size: 0.85rem;
}

.footer-links-list li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links-list li a:hover i {
    opacity: 1;
}

/* â”€â”€â”€ Footer Dil SeÃ§ici â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-lang-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.footer-lang-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-lang-links {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-lang-btn img {
    width: 16px;
    height: 11px;
    object-fit: cover;
    border-radius: 2px;
}

.footer-lang-btn:hover,
.footer-lang-btn.active {
    background: rgba(233, 30, 99, 0.12);
    border-color: rgba(233, 30, 99, 0.3);
    color: var(--accent);
}

/* â”€â”€â”€ Yasal UyarÄ± Åeridi â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-disclaimer-bar {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0;
}

.footer-disclaimer-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-disclaimer-icon {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-disclaimer-inner p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

.footer-disclaimer-inner strong {
    color: rgba(255, 255, 255, 0.4);
}

/* â”€â”€â”€ Alt Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-bottom-bar {
    background: #040608;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-copyright strong {
    color: var(--accent);
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(233, 30, 99, 0.5);
}

/* â”€â”€â”€ Footer Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-city-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-city-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .footer-main {
        padding: 40px 0 28px;
    }
}


/* ============================================
   HOMEPAGE â€” PROFESYONEL GELÄ°ÅTÄ°RMELER
   ============================================ */

/* â”€â”€â”€ Genel Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}

/* â”€â”€â”€ Page Header (Ä°l/Ä°lÃ§e sayfalarÄ±) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-header {
    background: linear-gradient(135deg, #0B0E13 0%, #141820 100%);
    border-bottom: 1px solid rgba(233, 30, 99, 0.12);
    padding: 32px 0 24px;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.page-header .ilan-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* Ä°lÃ§e Linkleri */
.ilce-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.ilce-link {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--gray-400);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.ilce-link:hover {
    background: rgba(233, 30, 99, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
    color: var(--accent);
}

.ilce-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-header {
        padding: 20px 0 16px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .ilce-links {
        gap: 5px;
    }

    .ilce-link {
        padding: 5px 10px;
        font-size: 0.78rem;
    }
}

/* â”€â”€â”€ Ana Sayfa Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.premium-hero-box {
    background: radial-gradient(circle at top right, rgba(233, 30, 99, 0.15) 0%, transparent 55%),
        radial-gradient(circle at bottom left, rgba(138, 106, 47, 0.08) 0%, transparent 40%),
        #0D1117;
    border: 1px solid rgba(233, 30, 99, 0.18);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.12);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 70%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s ease infinite;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Header */
.section-header-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-top: 4px;
}

.section-header-line h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-line .text-accent {
    color: var(--accent);
}

.section-header-line .line-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(233, 30, 99, 0.25), transparent);
}

@media (max-width: 768px) {
    .premium-hero-box {
        padding: 36px 20px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }
}

/* â”€â”€â”€ Ä°lan Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

@media (max-width: 1400px) {
    .ilanlar-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .ilanlar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .ilanlar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 540px) {
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* â”€â”€â”€ Ä°lan KartÄ± GeliÅŸtirmeleri â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ilan-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.ilan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(233, 30, 99, 0.15);
}

/* â”€â”€â”€ Sayfalama â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.page-item .page-link:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
    color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
}

/* â”€â”€â”€ Copy Toast â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a2e;
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99999;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =====================================================
   Ä°LAN DETAY â€” MOBÄ°L Ä°LETÄ°ÅÄ°M BLOÄU
   ===================================================== */
.mobile-contact-block {
    display: none;
    /* masaÃ¼stÃ¼nde gizli */
}

@media (max-width: 991px) {

    /* Mobilde galeri â†’ iletiÅŸim â†’ profil sÄ±rasÄ± */
    .premium-main-col {
        display: flex;
        flex-direction: column;
    }

    .mobile-contact-block {
        display: block;
        background: #0F1318;
        border: 1px solid rgba(233, 30, 99, 0.2);
        border-radius: var(--radius-lg);
        padding: 20px;
        margin-top: 16px;
        order: 2;
        /* galeri=1, iletiÅŸim=2, profil=3 */
    }

    .premium-gallery-card {
        order: 1;
    }

    .profile-info-card,
    .profile-desc-card,
    .profile-services-card {
        order: 3;
    }

    /* MasaÃ¼stÃ¼ sidebar iletiÅŸim kartÄ±nÄ± mobilde gizle */
    .premium-sidebar-col .sticky-contact-card {
        display: none;
    }
}

.mobile-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    text-align: center;
}

.mobile-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =====================================================
   Ä°LAN DETAY â€” MASAÃœSTÃœ & GENEL
   ===================================================== */
.detail-page {
    padding-bottom: 60px;
}

.premium-layout-2col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-top: 24px;
    align-items: start;
}

@media (max-width: 1200px) {
    .premium-layout-2col {
        grid-template-columns: 1fr 300px;
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .premium-layout-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Sidebar konum sÄ±ralamasÄ± mobilden sonra */
    .premium-sidebar-col {
        order: 10;
        margin-top: 20px;
    }
}

/* Galeri */
.gallery-wrapper {
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: zoom-in;
    background: #0a0a0a;
    min-height: 300px;
    max-height: 75vh;
}

@media (min-width: 992px) {
    .gallery-main {
        min-height: 400px;
        max-height: 80vh;
    }
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    background: #0a0a0a;
}

.gallery-nav-btns {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.g-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.g-nav-btn.prev {
    left: 12px;
}

.g-nav-btn.next {
    right: 12px;
}

.g-nav-btn:hover {
    background: rgba(233, 30, 99, 0.7);
}

/* Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.65;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Profile cards */
.profile-info-card,
.profile-desc-card,
.profile-services-card {
    background: #0F1318;
    border: 1px solid rgba(233, 30, 99, 0.12);
    border-radius: var(--radius-lg);
}

.detail-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-300);
}

.services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
}

.services-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: var(--gray-300);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.services-list li i {
    color: var(--accent);
}

/* Ä°lgili ilanlar */
.related-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-bottom .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 900px) {
    .related-bottom .row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .related-bottom .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-bottom .col {
    padding: 0;
}

/* Sticky sidebar */
.sticky-contact-card {
    background: #0F1318;
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 90px;
}

.btn-share-premium.w-100 {
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

/* =====================================================
   ARAMA SAYFASI
   ===================================================== */
.search-page {
    min-height: 70vh;
}

.search-hero {
    background: linear-gradient(135deg, #0B0E13 0%, #141820 100%);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    padding: 28px 0 22px;
}

.search-hero-inner {
    display: block;
}

.search-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-hero-title i {
    color: var(--accent);
    font-size: 1.5rem;
}

.search-hero-sub {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin: 0;
}

.search-count-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 50px;
    margin-right: 4px;
}

/* Layout */
.search-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .search-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .search-filters-panel {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: #0D1117;
        border-right: 1px solid rgba(233, 30, 99, 0.2);
        z-index: 1100;
        overflow-y: auto;
        padding: 20px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    }

    .search-filters-panel.mobile-open {
        left: 0;
    }
}

/* Filtre Panel */
.search-filters-panel {
    background: #0D1117;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: sticky;
    top: 90px;
}

.filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.filter-clear-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.filter-clear-link:hover {
    color: #fff;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-400);
    margin-bottom: 7px;
}

.filter-label i {
    color: var(--accent);
}

.filter-input,
.filter-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--accent);
    background: rgba(233, 30, 99, 0.05);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.filter-select option {
    background: #0D1117;
    color: #fff;
}

.filter-range-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-range-in {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 9px 10px;
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.filter-range-in:focus {
    border-color: var(--accent);
}

.range-dash {
    color: var(--gray-500);
    font-weight: 700;
}

.filter-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 6px;
    font-family: inherit;
}

.filter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Aktif filtreler bar */
.active-filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 18px;
}

.af-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.af-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-300);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.af-clear {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    white-space: nowrap;
}

.af-clear:hover {
    color: #fff;
}

/* Mobil toggle */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 16px;
    position: relative;
}

.mft-dot {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .mobile-filter-toggle {
        display: flex;
    }

    .mobile-filter-toggle.active {
        background: rgba(233, 30, 99, 0.2);
    }
}

/* Arama grid 4 kolon */
.search-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1100px) {
    .search-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Empty states */
.search-empty,
.search-welcome {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.search-empty-icon,
.search-welcome-icon {
    font-size: 3.5rem;
    color: rgba(233, 30, 99, 0.3);
    margin-bottom: 20px;
}

.search-empty h2,
.search-welcome h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.search-empty p,
.search-welcome p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.search-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: var(--accent);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.search-reset-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* =====================================================
   PREMIUM CITY HEADER TOGGLE (INDEX.PHP)
   ===================================================== */
.btn-premium-toggle {
    background: rgba(233, 30, 99, 0.1);
    color: var(--accent);
    border: 1px solid rgba(233, 30, 99, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium-toggle:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.ilceler-collapse-container {
    animation: fadeInDown 0.3s ease forwards;
}

/* =====================================================
   PLACEHOLDER CARD — CENTERED TEXT + FEMALE SILHOUETTE
   ===================================================== */
.ilan-card-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 420px;
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px dashed rgba(233, 30, 99, 0.25) !important;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.ilan-card-placeholder:hover {
    background: rgba(233, 30, 99, 0.04) !important;
    border-color: var(--accent) !important;
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.15);
}

.placeholder-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 420px;
    text-decoration: none !important;
    color: inherit !important;
}

.placeholder-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 30px 20px !important;
}

.silhouette-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.silhouette-icon svg {
    width: 80px;
    height: 80px;
    opacity: 0.2;
    color: var(--accent);
    transition: var(--transition);
}

.ilan-card-placeholder:hover .silhouette-icon svg {
    opacity: 0.45;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(233, 30, 99, 0.3));
}

.placeholder-info span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-500);
    max-width: 160px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.ilan-card-placeholder:hover .placeholder-info span {
    color: var(--accent-light);
}

@media (max-width: 768px) {
    .ilan-card-placeholder {
        min-height: 280px;
    }

    .placeholder-link {
        min-height: 280px;
    }

    .silhouette-icon svg {
        width: 50px;
        height: 50px;
    }

    .placeholder-info span {
        font-size: 0.65rem;
        max-width: 100px;
    }
}

/* ============================================
   GALERİ FİX — Detay sayfası görsel orantısı
   ============================================ */

/* Galeri wrapper reset */
.premium-gallery-card .gallery-wrapper {
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
}

/* Ana galeri kutusu — portrait oran, sabit boyut yok */
.premium-gallery-card .gallery-main,
.gallery-main {
    position: relative !important;
    width: 100% !important;
    height: 650px !important;
    max-height: 85vh !important;
    overflow: hidden;
    cursor: zoom-in;
    background: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Görsel: tam container'ı doldurur, kırpmaz */
.premium-gallery-card .gallery-main picture,
.gallery-main picture {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.gallery-main img,
#galleryMainImg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #000 !important;
}

/* Swiper Nav Button Fix */
.gallery-nav-btns {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
    z-index: 10;
}

.gallery-nav-btns .btn-gallery-prev,
.gallery-nav-btns .btn-gallery-next {
    pointer-events: auto;
}

/* Telegram Contact Styles */
.telegram-contact-wrapper {
    margin-top: 50px;
    padding: 40px;
    background: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.telegram-contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.telegram-contact-wrapper:hover {
    background: rgba(0, 136, 204, 0.08);
    border-color: rgba(0, 136, 204, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.15);
}

.telegram-contact-wrapper .content-area {
    position: relative;
    z-index: 1;
}

.telegram-contact-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.telegram-contact-wrapper p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: #fff !important;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-telegram i {
    font-size: 1.4rem;
}

.btn-telegram:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.6);
    filter: brightness(1.1);
}

.footer-telegram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #0088cc !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none !important;
}

.footer-telegram-link:hover {
    color: #00aaff !important;
    transform: translateX(5px);
}

.footer-telegram-link i {
    font-size: 1.2rem;
}

/* ============================================
   BOŞ KART (PLACEHOLDER) KESİN ÇÖZÜM
   (Birebir Eşit Ölçü, CSS Kadın Silüeti, Ortalanmış Yazı)
   ============================================ */

.ilan-card.ilan-card-placeholder {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    /* Genişliği grid hücresine sabitle (Taşmayı önler) */
    height: auto !important;
    /* Yüksekliği serbest bırak ki aspect-ratio çalışsın */
    aspect-ratio: 4 / 6.2;
    /* Dolu kartla pikseli pikseline aynı orantı */
    min-height: unset !important;
    background: rgba(20, 24, 30, 0.8) !important;
    border: 2px dashed rgba(233, 30, 99, 0.25) !important;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0 !important;
    /* Grid boşluklarını bozmaması için */
}

.ilan-card.ilan-card-placeholder:hover {
    border-color: rgba(233, 30, 99, 0.6) !important;
    background: rgba(20, 24, 30, 1) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* KADIN SİLÜETİ (Arka plan filigranı olarak eklendi) */
.ilan-card.ilan-card-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    /* Temana uygun pembe (#E91E63) SVG İkonu */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 14C14.2091 14 16 12.2091 16 10C16 7.79086 14.2091 6 12 6C9.79086 6 8 7.79086 8 10C8 12.2091 9.79086 14 12 14Z' stroke='%23E91E63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 21C6 18.2386 8.68629 16 12 16C15.3137 16 18 18.2386 18 21' stroke='%23E91E63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 8C7 8.5 6 10 6 12C6 14 7 15.5 8 16' stroke='%23E91E63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 8C17 8.5 18 10 18 12C18 14 17 15.5 16 16' stroke='%23E91E63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.12;
    /* Hafif transparan */
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
}

/* Hover durumunda silüet parlar ve hafif büyür */
.ilan-card.ilan-card-placeholder:hover::before {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1);
}

/* YAZI KISMI VE ORTALAMA */
.placeholder-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.placeholder-info {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.placeholder-info span {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.ilan-card.ilan-card-placeholder:hover .placeholder-info span {
    color: #fff;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

/* PHP'den gelen eski svg kalıntısı varsa çifte çıkmasın diye gizliyoruz */
.ilan-card.ilan-card-placeholder .silhouette-icon {
    display: none !important;
}

/* ============================================
   İL/İLÇE SAYFALARI MASAÜSTÜ KART İÇİ BOŞLUK DÜZELTMESİ
   ============================================ */

/* Kart içindeki görsel alanının aspect ratio'sunu sabitliyoruz */
.ilan-card-media {
    position: relative;
    width: 100%;
    /* Flex büyümesini engelliyoruz ki görsel kutusu gereksiz uzamasın */
    flex: 0 0 auto;
    overflow: hidden;
    background: #0a0c0f;
}

/* Görsel container'ı her zaman 4:5 oranında kalacak */
.ilan-card-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 125%;
    /* 4:5 Oranı (Eğer 118% yetmiyorsa) */
    overflow: hidden;
}

/* Görsel tam sığacak ve boşluk bırakmayacak */
.ilan-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 'contain' yerine 'cover' yapıyoruz ki yanlarda boşluk kalmasın */
    object-position: center top;
    /* Yüz daha çok görünsün diye top'a hizalayabiliriz */
    background: #000;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   VIP ROZETİ KONUMLANDIRMA (Tam Sol Üst Köşe)
   ============================================ */

/* Görsel alanının referans noktası olmasını garantiliyoruz */
.ilan-card-media {
    position: relative !important;
}

/* Rozeti tutan kapsayıcıyı sol üste çiviliyoruz */
.card-badges-container {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    z-index: 20 !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ============================================
   MOBİL (Responsive)
   ============================================ */
@media (max-width: 768px) {
    .ilan-card.ilan-card-placeholder {
        aspect-ratio: 4 / 6.2;
    }

    .ilan-card.ilan-card-placeholder::before {
        width: 80px;
        height: 80px;
    }

    .placeholder-info span {
        font-size: 0.72rem;
        /* Mobilde yazıyı taşmaması için küçültüyoruz */
    }
}

/* VIP rozetinin kendi konumunu sıfırlıyoruz ki kapsayıcıya tam uysun */
.vip-badge {
    /* Gerçekçi altın parlama efekti */
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    background-size: 200% auto;
    color: #111 !important;
    /* Altın zemin üzerine koyu, asil renk */
    padding: 5px 14px;
    border-radius: 6px;
    /* Çok yuvarlak yerine hafif köşeli, daha ciddi tasarım */
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: shineGold 4s linear infinite;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: 10;
    text-shadow: none;
    /* Koyu metinde gölgeye gerek yok */
    margin: 0 !important;
}

@keyframes shineGold {
    to {
        background-position: 200% center;
    }
}

/* ============================================
   2. MOBİLDE KESİN 3 SÜTUN DÜZENİ & MİKRO UYUM
   ============================================ */
@media (max-width: 576px) {

    /* Tüm ilan listeleme gridlerini zorla 3 sütun yapıyoruz */
    .ilanlar-grid,
    .ilan-grid,
    .search-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        /* Kartlar arası boşluğu daraltıyoruz ki sığsınlar */
    }

    /* Kartlar çok daralacağı için iç boşlukları ve oval köşeleri küçültüyoruz */
    .ilan-card {
        border-radius: 8px !important;
    }

    .ilan-card-header {
        padding: 6px 4px 4px !important;
    }

    .ilan-card-title {
        font-size: 0.72rem !important;
        /* Uzun isimler taşmasın diye ufaltıldı */
        line-height: 1.1 !important;
    }

    .ilan-card-footer {
        padding: 6px 4px !important;
    }

    .ilan-card-location-text {
        font-size: 0.62rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /* Çok uzun semt isimleri "İstan..." şeklinde kesilir */
    }

    /* ============================================
       MOBİL İÇİN KÖŞE HİZALAMASI (Mikro Ayar)
       ============================================ */
    .card-badges-container {
        top: 4px !important;
        left: 4px !important;
    }

    /* VIP rozetini dar karta göre mikro boyuta çekiyoruz */
    .vip-badge {
        padding: 2px 6px;
        font-size: 0.55rem;
        border-radius: 4px;
        letter-spacing: 0.5px;
    }

    /* Placeholder (Boş) Kartların İçeriğini de 3'lü gride göre ölçekliyoruz */
    .ilan-card.ilan-card-placeholder::before {
        width: 50px !important;
        height: 50px !important;
    }

    .placeholder-info span {
        font-size: 0.55rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3 !important;
    }

    .placeholder-link {
        padding: 8px !important;
    }
}

/* ============================================
   PREMIUM HERO SHOWCASE (Ana Sayfa Karşılama)
   ============================================ */

.premium-hero-showcase {
    position: relative;
    background: linear-gradient(145deg, #0f1218 0%, #06080a 100%);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: var(--radius-xl, 24px);
    padding: 65px 20px;
    text-align: center;
    overflow: hidden;
    /* Kutuya derinlik katan gölgeler */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

/* Arkadaki zarif neon parlama (Glow effect) */
.premium-hero-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-showcase-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* VIP Rozeti */
.hero-badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.02));
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: var(--accent, #E91E63);
    padding: 8px 22px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.hero-badge-elite .gold-icon {
    font-size: 1.1rem;
    color: #FFD700;
    /* İkona altın sarısı vurgu */
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Ana Başlık */
.hero-title-elite {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Başlıktaki Altın Rengi Vurgu Kelimeler */
.text-gradient-gold {
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    /* Lüks hissiyatı artırır */
    animation: shineGoldText 4s linear infinite;
}

@keyframes shineGoldText {
    to {
        background-position: 200% center;
    }
}

/* Alt Başlık */
.hero-subtitle-elite {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--gray-400, #a098a0);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-weight: 400;
}

/* Zarif Alt Dekorasyon Çizgisi */
.hero-line-glow {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent, #E91E63), transparent);
    border-radius: 50px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ============================================
   MOBİL (Responsive) UYUMU
   ============================================ */
@media (max-width: 768px) {
    .premium-hero-showcase {
        padding: 40px 15px;
        border-radius: 16px;
    }

    .hero-title-elite {
        font-size: 2.1rem;
    }

    .hero-subtitle-elite {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .hero-badge-elite {
        font-size: 0.7rem;
        padding: 6px 18px;
        margin-bottom: 20px;
    }
}

/* ============================================
   SEO BREADCRUMB STİLİ
   ============================================ */
.breadcrumb-seo {
    display: block;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active span {
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 600;
}

.breadcrumb-item a i {
    font-size: 0.9rem;
    color: var(--accent);
}

.breadcrumb-sep i {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ============================================
   SEO İÇ LİNKLEME BÖLÜMÜ
   ============================================ */
.seo-inner-links {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
}

.seo-inner-links-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-inner-links-title i {
    color: var(--accent);
}

.seo-inner-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-inner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(233, 30, 99, 0.06);
    border: 1px solid rgba(233, 30, 99, 0.15);
    color: var(--gray-400);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.seo-inner-link i {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.7;
}

.seo-inner-link:hover {
    background: rgba(233, 30, 99, 0.14);
    border-color: var(--accent);
    color: #fff;
}

/* ============================================
   LIVE SEARCH DROPDOWN STYLES
   ============================================ */
.es-live-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    padding: 10px 0;
}

.es-live-search-results.active {
    display: block;
    animation: slideUpFade 0.3s ease-out;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.es-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.es-search-item:last-child {
    border-bottom: none;
}

.es-search-item:hover {
    background: rgba(233, 30, 99, 0.1);
    color: #fff;
}

.es-search-item i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.es-search-item .item-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.es-search-item .item-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Scrollbar Style */
.es-live-search-results::-webkit-scrollbar {
    width: 6px;
}
.es-live-search-results::-webkit-scrollbar-track {
    background: transparent;
}
.es-live-search-results::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.3);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .es-drawer-search {
        position: relative;
    }
    .es-drawer-search .es-live-search-results {
        position: absolute;
        top: calc(100% + 5px);
        width: 100%;
        background: #0b0e14;
        border-radius: 8px;
    }
}