/* ============================================
   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');

/* ============================================
   CSS DEÄÄ°ÅKENLERÄ°
   ============================================ */
:root {
    --primary: #0A0A0B;
    /* Derin Siyah */
    --primary-light: #151517;
    /* Kart Arkaplanı (Koyu Gri) */
    --primary-dark: #0D0D0F;
    /* Zemin Saf Siyah (Logo Uyumu) */

    --accent: #D4AF37;
    /* Altın */
    --accent-hover: #C5A028;
    /* Koyu Altın */
    --accent-light: #F4D03F;
    /* Açık Altın */

    --secondary: #8B7355;
    /* Bronz/Derin Altın */

    --white: #ffffff;
    --gray-50: #1c1527;
    /* Ä°nce border ve hoverlar iÃ§in */
    --gray-100: #261f33;
    --gray-200: #352b47;
    --gray-300: #a79cba;
    /* Normal metin rengi */
    --gray-400: #8c819e;
    --gray-500: #736785;
    --gray-600: #564c66;
    --gray-700: #423851;

    --green: #10b981;
    --green-dark: #059669;
    --red: #f43f5e;
    /* KÄ±rmÄ±zÄ± / GÃ¼l rengi */

    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;
    --call-bg: #4f46e5;
    /* Mavi-Mor KarÄ±ÅŸÄ±mÄ± Telefon rengi */
    --call-hover: #4338ca;

    --shadow-sm: 0 2px 10px rgba(147, 51, 234, 0.08);
    /* Hafif mor Ä±ÅŸÄ±k */
    --shadow-md: 0 4px 20px rgba(147, 51, 234, 0.15);
    /* Belirgin mor Ä±ÅŸÄ±k */
    --shadow-lg: 0 10px 40px rgba(212, 175, 55, 0.2);
    /* Altın glow efekti */
    --shadow-xl: 0 20px 60px rgba(212, 175, 55, 0.3);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at center, #151517 0%, #0D0D0F 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;
}

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;
}

/* ============================================
   HEADER (Sticky)
   ============================================ */
.site-header {
    background: rgba(7, 5, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.site-header:has(+ .filter-bar) {
    box-shadow: none;
    border-bottom: none;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span {
    color: var(--accent);
}

.logo:hover {
    color: var(--white);
    transform: scale(1.02);
}

/* Arama Ã‡ubuÄŸu */
.search-wrapper {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 44px 10px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.05);
}

/* Arama SonuÃ§larÄ± Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    border: 1px solid var(--gray-200);
}

.search-results.active {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item img {
    width: 48px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.search-result-item .result-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-result-item .result-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.search-no-result {
    padding: 20px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Ä°lan Ver Butonu */
.btn-ilan-ver {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-ilan-ver:hover {
    background: linear-gradient(135deg, var(--accent-hover), #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--white);
}

/* Mobile Header */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
}

@media (max-width: 768px) {
    .header-main {
        flex-wrap: wrap;
        padding: 8px 0;
        gap: 6px;
    }

    .logo {
        font-size: 1.25rem;
        margin-right: auto;
    }

    .logo i {
        font-size: 1.1rem !important;
    }

    .btn-ilan-ver {
        padding: 6px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
        border-radius: 6px;
    }

    .btn-ilan-ver span {
        display: inline-block;
    }

    .search-toggle-btn {
        padding: 6px 8px;
        font-size: 1rem;
    }

    .lang-switcher .lang-current {
        padding: 6px 8px;
    }

    .lang-switcher .lang-current span,
    .lang-switcher .lang-current i {
        display: none !important;
    }

    .search-wrapper {
        order: 5;
        max-width: 100%;
        flex-basis: 100%;
        margin-top: 6px;
    }
}

/* ============================================
   FÄ°LTRE BARI (Sticky)
   ============================================ */
.filter-bar {
    background: rgba(19, 12, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px 0;
    position: sticky;
    top: 66px;
    z-index: 999;
}

.filter-bar .container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    min-width: 160px;
}

.filter-select:focus {
    border-color: var(--accent);
}

.filter-select option {
    background: var(--primary);
    color: var(--white);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-300);
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

.filter-checkbox input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-filter {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-filter:hover {
    background: var(--accent-hover);
}

.btn-filter-clear {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-400);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-filter-clear:hover {
    border-color: var(--red);
    color: var(--red);
}

@media (max-width: 768px) {
    .filter-bar {
        top: 106px;
    }

    .filter-bar .container {
        gap: 8px;
    }

    .filter-select {
        min-width: calc(50% - 4px);
        flex: 1;
    }

    .filter-checkbox {
        font-size: 0.8rem;
    }
}

/* ============================================
   Ä°LAN KARTLARI
   ============================================ */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.ilan-card {
    background: var(--primary-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.ilan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-badges-container {
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
}

.vip-badge,
.house-badge,
.bike-badge {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.vip-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.house-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.bike-badge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.vip-badge i,
.house-badge i,
.bike-badge i {
    font-size: 0.6rem;
}

/* Kart GÃ¶rsel */
.ilan-card-img-wrap {
    display: block;
    position: relative;
    padding-top: 133.33%;
    /* 3:4 portrait */
    overflow: hidden;
    background: var(--gray-100);
}

.ilan-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 5, 10, 0.8) 0%, rgba(7, 5, 10, 0) 50%);
    pointer-events: none;
}

.ilan-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ilan-card:hover .ilan-card-img {
    transform: scale(1.08);
}

/* Kart Body */
.ilan-card-body {
    padding: 16px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ilan-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ilan-card-title a {
    color: var(--white);
    background: linear-gradient(to right, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.ilan-card-title a:hover {
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ilan-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.ilan-card-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Kart ButonlarÄ± */
.ilan-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.ilan-card-actions .btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-call {
    background: linear-gradient(135deg, var(--call-bg), #2563EB);
    color: var(--white);
}

.btn-call:hover {
    background: linear-gradient(135deg, #2563EB, var(--call-bg));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #16a34a);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #16a34a, var(--whatsapp));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 197, 94, 0.4);
}

@media (max-width: 576px) {
    .ilan-card-body {
        padding: 10px;
    }

    .ilan-card-title {
        font-size: 0.82rem;
    }

    .ilan-card-desc {
        font-size: 0.72rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .ilan-card-actions .btn {
        padding: 7px 4px;
        font-size: 0.65rem;
    }

    .ilan-card-location {
        font-size: 0.7rem;
    }
}

/* ============================================
   İLAN DETAY SAYFASI
   ============================================ */
.detail-page {
    padding: 40px 0 60px;
}

/* Galeri */
.gallery-wrapper {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    opacity: 0.5;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detay Bilgiler */
.detail-content {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: none;
    border: none;
    margin-top: 0;
}

.detail-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--white) 30%, var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.25;
}

.detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 18px;
}

.detail-location i {
    color: var(--accent);
    font-size: 1.1rem;
}

.detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.badge-warning {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
}

.badge-vip {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.detail-description {
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 0.95rem;
    white-space: pre-line;
    padding: 24px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-actions .btn {
    flex: 1 1 240px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-share {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray-400);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    margin-top: 8px;
}

.btn-share:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .detail-title {
        font-size: 1.35rem;
        -webkit-text-fill-color: var(--white);
        background: none;
    }

    .detail-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-content {
        padding: 0;
    }

    .detail-description {
        padding: 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.upload-preview {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.upload-preview img {
    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(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-hover), #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 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 — 5 sütun */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

@media (max-width: 1400px) {
    .ilanlar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .ilanlar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .container {
        padding: 0 12px;
    }
}

@media (max-width: 400px) {
    .ilanlar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* 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(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 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;
}

.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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 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(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 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: 3/4 !important;
}

.gallery-placeholder {
    aspect-ratio: 3/4 !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(212, 175, 55, 0.06);
        border-color: rgba(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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);
}