/* Koyu Tema ve Reset */
:root {
    --bg-dark: #121212;
    --surface-dark: #1e1e1e;
    --border-color: #333333;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #d4af37; /* Masaj/SPA konseptine uygun Gold/Altın sarısı aksan */
    --menu-bg: #181818;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem; /* Ekran küçüldüğünde kenarlara yapışmayı engeller */
}

/* Responsive Header & Navbar */
header {
    background-color: var(--surface-dark);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav.top-nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
}

/* Desktop Menü */
.desktop-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .desktop-menu a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .desktop-menu a:hover {
            color: var(--accent-color);
        }

/* Hamburger Butonu (Sadece mobilde görünür) */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
}

/* Mobil Yan Menü (Off-Canvas) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Ekranın sağında gizli */
    width: 280px;
    height: 100vh;
    background-color: var(--menu-bg);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0; /* Menüyü aç */
    }

.close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-bottom: 1.5rem;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

    .mobile-menu a:hover {
        color: var(--accent-color);
    }

/* Karartma Arkaplanı (Overlay) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

/* Açılır Kapanır Akordiyon (HTML5 Details) */
details {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem;
}

summary {
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--accent-color);
    list-style: none; /* Standart oku gizler */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--text-secondary);
    }

details[open] summary::after {
    content: '-';
}

.ilceler-liste {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
}

    .ilceler-liste a {
        font-size: 1rem;
        color: var(--text-secondary);
    }

/* Ana İçerik ve Grid Yapısı */
main {
    max-width: 1600px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    color: var(--accent-color);
}

.ilan-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Kutuyu sınırla ve içindeki 'absolute' elemanlar dışarı taşmasın */
.ilan-kutu {
    position: relative;
    height: 380px; /* Kartın net yüksekliği (kendine göre ayarla) */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği (yazıları) en alta iter */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .ilan-kutu:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

/* Resmi en arkaya tam boyutta yapıştır */
.resim-alani {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* En alt katman */
}

    .resim-alani img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Resmi ezmeden kutuyu tam doldurur */
    }

    /* YAZILARIN OKUNABİLMESİ İÇİN ŞART OLAN KARARTMA EFEKTİ */
    .resim-alani::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%; /* Kutunun sadece alt %70'ini karartır */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2; /* Resmin üstü, yazıların altı */
    }

/* Yazıları karartmanın üstüne çıkar */
.ilan-detay {
    position: relative;
    z-index: 3; /* En üst katman */
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.ilan-baslik {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

    .ilan-baslik a {
        color: #ffffff;
        text-decoration: none;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }

.ilan-meta {
    font-size: 0.9rem;
    color: var(--accent-color); /* Altın sarısı lokasyon */
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.ilan-link {
    display: block;
    text-align: center;
    background-color: var(--accent-color);
    color: #000;
    padding: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}

    .ilan-link:hover {
        opacity: 0.8;
    }

.ilan-baslik {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

    .ilan-baslik a {
        color: var(--text-primary);
        text-decoration: none;
    }

.ilan-fiyat {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.ilan-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.ilan-link {
    display: block;
    text-align: center;
    background-color: var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

    .ilan-link:hover {
        background-color: var(--accent-color);
        color: #000;
    }

/* Responsive Kırılma Noktaları */
@media (max-width: 1400px) {
    .ilan-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .ilan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Tablet ve mobilde normal menüyü gizle, hamburgeri göster */
    .desktop-menu {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}

@media (max-width: 500px) {
    .ilan-grid {
        grid-template-columns: 1fr;
    }

    .resim-alani {
        height: 280px;
    }
    /* Mobilde resimler biraz daha belirgin olsun */
}

.seo-icerik {
    margin-bottom: 2rem;
}

    .seo-icerik h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .seo-icerik p {
        color: var(--text-secondary);
        font-size: 1.05rem;
        max-width: 800px;
    }

/* İlçeler Grid Yapısı (Otomatik Kırılma - Çok Performanslıdır) */
.ilce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none; /* Semantic ul/li yapısı kullanacağız */
}

    /* İlçe Kartları / Linkleri */
    .ilce-grid li {
        display: block;
    }

.ilce-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    padding: 1rem 1.2rem;
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .ilce-link:hover {
        background-color: var(--hover-bg);
        border-color: var(--accent-color);
        transform: translateX(5px); /* Hafif sağa kayma efekti */
        color: var(--accent-color);
    }

    .ilce-link::after {
        content: "→";
        font-size: 1.2rem;
        color: var(--text-secondary);
        transition: color 0.2s ease;
    }

    .ilce-link:hover::after {
        color: var(--accent-color);
    }

/* Görsel Breadcrumb */
.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding: 0;
}

    .breadcrumb li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .breadcrumb li::after {
            content: "›";
        }

        .breadcrumb li:last-child::after {
            content: "";
        }

    .breadcrumb a {
        color: var(--accent-color);
        text-decoration: none;
        transition: opacity 0.2s;
    }

        .breadcrumb a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

/* İlan Başlığı (Sayfadaki TEK H1) */
h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    line-height: 1.3;
}

/* Detay Sayfası Grid Düzeni (Sol İçerik - Sağ Sabit Kutu) */
.ilan-detay-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* SOL KOLON: Galeri ve Açıklamalar */
.ilan-sol {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.galeri {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.ana-gorsel {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ilan-aciklamasi {
    background-color: var(--surface-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

    .ilan-aciklamasi h2 {
        font-size: 1.5rem;
        color: var(--accent-color);
        margin-bottom: 1rem;
    }

    .ilan-aciklamasi p {
        color: #d1d1d1;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        white-space: pre-line; /* Paragraf boşluklarını korur */
    }

/* SAĞ KOLON: Fiyat ve İletişim (Sticky) */
.ilan-sag {
    position: sticky;
    top: 100px; /* Sayfa kaydıkça ekranda sabit kalır */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fiyat-kutu {
    background-color: var(--surface-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.fiyat {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fiyat-detay {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* İletişim Butonları */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: transform 0.2s, opacity 0.2s;
}

    .btn:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

.btn-ara {
    background-color: var(--accent-color);
    color: #000;
}

.btn-wp {
    background-color: var(--success-color);
    color: #fff;
}

/* Özellikler Tablosu */
.ozellikler-liste {
    background-color: var(--surface-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    list-style: none;
    margin: 0;
}

    .ozellikler-liste li {
        display: flex;
        justify-content: space-between;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
    }

        .ozellikler-liste li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

    .ozellikler-liste span:first-child {
        color: var(--text-secondary);
    }

    .ozellikler-liste span:last-child {
        font-weight: 500;
        color: var(--text-primary);
        text-align: right;
    }

/* Mobil Uyumluluk */
@media (max-width: 950px) {
    .ilan-detay-grid {
        grid-template-columns: 1fr;
    }

    .ana-gorsel {
        height: 350px;
    }

    .ilan-sag {
        position: static;
    }
    /* Mobilde sabitlemeyi kaldır */
}

/* Grid Alanları İle Sıralama Kontrolü (İşin Sırrı Burada) */
.ilan-detay-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas:
        "galeri sag"
        "aciklama sag";
    gap: 2rem;
    align-items: start;
}

.galeri-alani {
    grid-area: galeri;
}

.ilan-aciklamasi {
    grid-area: aciklama;
}

.ilan-sag {
    grid-area: sag;
    position: sticky;
    top: 100px;
}

/* Mobilde Sıralamayı Değiştir: 1.Galeri -> 2.Sağ (WhatsApp) -> 3.Açıklama */
@media (max-width: 950px) {
    .ilan-detay-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "galeri"
            "sag"
            "aciklama";
    }

    .ilan-sag {
        position: static;
    }

    .slider-track img {
        height: 350px !important;
    }
    /* Mobilde resim yüksekliğini düşür */
}

/* Saf CSS Performanslı Slider */
.slider-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
}

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Tam resim hizalama */
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE/Edge gizle */
    scrollbar-width: none; /* Firefox gizle */
}

    .slider-track::-webkit-scrollbar {
        display: none;
    }
    /* Chrome/Safari gizle */

    .slider-track img {
        flex: 0 0 100%;
        width: 100%;
        height: 500px;
        object-fit: cover;
        scroll-snap-align: start;
    }

/* Slider Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .slider-btn:hover {
        background: var(--accent-color);
        color: #000;
    }

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* WhatsApp İkonlu Buton */
.btn-wp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366; /* Orijinal WhatsApp Yeşili */
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

    .btn-wp:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    .btn-wp svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

.iletisim-baslik {
    text-align: center;
    margin-bottom: 3rem;
}

    .iletisim-baslik h1 {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 1rem;
    }

    .iletisim-baslik p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Grid Düzeni */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; /* Her iki kolonun boyunu eşitler */
}

/* Sol Taraf: İletişim Bilgileri */
.bilgi-kutulari {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bilgi-kutu {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

    .bilgi-kutu:hover {
        transform: translateY(-3px);
        border-color: var(--accent-color);
    }

.bilgi-ikon {
    font-size: 2rem;
    color: var(--accent-color);
    line-height: 1;
}

.bilgi-detay h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bilgi-detay p, .bilgi-detay a {
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5;
}

    .bilgi-detay a:hover {
        color: var(--accent-color);
    }

/* Sağ Taraf: Devasa WhatsApp Odak Alanı */
.whatsapp-merkez {
    background: linear-gradient(145deg, var(--surface-dark), #151515);
    border: 1px solid var(--success-color); /* WhatsApp renginde ince çerçeve */
    border-radius: 8px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

    .whatsapp-merkez h2 {
        font-size: 1.8rem;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .whatsapp-merkez p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

/* Vurgulu WhatsApp Butonu */
.btn-wp-dev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--success-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    animation: pulse 2s infinite;
}

    .btn-wp-dev:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        background-color: #20b858;
        animation: none; /* Üzerine gelince nabız efektini durdur */
    }

    .btn-wp-dev svg {
        width: 30px;
        height: 30px;
        fill: currentColor;
    }

/* Dikkat çekici nabız efekti */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Harita Alanı */
.harita-alani {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

    .harita-alani iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Responsive */
@media (max-width: 900px) {
    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .harita-alani {
        height: 300px;
    }

    .whatsapp-merkez {
        padding: 2rem 1.5rem;
    }
}

.diger-ilanlar {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

    .diger-ilanlar h2 {
        font-size: 22px;
        color: var(--accent-color);
        margin-bottom: 25px;
    }

.diger-ilanlar-grid {
    display: grid;
    /* Kutuları biraz genişlettik (minimum 280px) */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Kutuların Ana Çerçevesi - Sabit PX Yüksekliği */
.ilan-kart {
    position: relative;
    height: 350px; /* Kutuları büyüttük ve px olarak sabitledik */
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .ilan-kart:hover {
        transform: translateY(-5px);
        border-color: var(--accent-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

/* Resmi Kutuyla Tam Boyut Yapan Kod */
.kart-arkaplan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi ezmeden kutuyu tamamen kaplar */
    z-index: 1;
    transition: transform 0.4s ease;
}

/* Üzerine gelince resmin hafifçe yakınlaşma efekti */
.ilan-kart:hover .kart-arkaplan {
    transform: scale(1.05);
}

/* Yazıların Resmin Üstüne Oturması (Siyah Degrade Efekti) */
.ilan-kart-icerik {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    /* Alttan yukarı doğru kararan VIP degrade efekti */
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.5) 40%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği en alta yaslar */
    align-items: center;
}

    .ilan-kart-icerik h3 {
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 15px;
        text-align: center;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8); /* Açık renk resimlerde okunabilirliği artırır */
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.btn-detay {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.ilan-kart:hover .btn-detay {
    background-color: #e6c855; /* Üzerine gelince buton rengi hafif açılır */
}