/* --- TEMEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renk Paleti - AmedSemt Kurumsal */
    --primary: #0f3b5f;
    --primary-dark: #09273f;
    --accent: #dc2626;
    --accent-hover: #b91c1c;
    --success: #10b981;
    --warning: #fbbf24;
    
    /* Griler */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --text-main: #1e293b;
    
    /* Gölgeler & Radius */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.15);
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 8px; }
/* Slider Hizalama (10px genişletme) */
.slider-wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 1300px; 
    margin: 0 auto;
}

#amedSlider {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
}

/* --- MOBİL HEADER BUTON DÜZENİ --- */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px;
    }

    /* Logo ve Butonları aynı satıra sığdır */
    .header-actions {
        display: flex;
        gap: 5px;
        order: 2;
    }

    .header-actions button {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Butonlardaki uzun yazıları mobilde gizle, sadece ikon kalsın dersen 'span'ları gizleyebilirsin */
    /* .header-actions button span { display: none; } */

    .search-wrapper {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .main-nav {
        order: 4;
        width: 100%;
        overflow-x: auto; /* Menü çok uzunsa yana kaysın */
        white-space: nowrap;
    }

    .nav-links {
        justify-content: flex-start;
        padding: 10px 0;
    }

    #amedSlider .carousel-item img {
        height: 220px !important;
    }

    #amedSlider {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}
/* --- HEADER & TOPBAR --- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.top-bar a:hover { color: var(--white); }

.main-header {
    background: rgba(255,255,255,0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
}
.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}
.nav-links li:hover { color: var(--accent); cursor: pointer; }

.search-wrapper {
    background: var(--gray-100);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray-200);
    flex: 1;
    max-width: 400px;
}
.search-wrapper input { border: none; background: none; outline: none; width: 100%; font-size: 0.85rem; }

/* --- ANA YAPI (GRID) --- */
.main-grid {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

/* --- SIDEBAR --- */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.card-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 12px;
    margin-bottom: 15px;
}

.cat-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 8px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
    border-radius: 8px;
    transition: var(--transition);
}
.cat-list li:hover { 
    background: var(--gray-50); 
    color: var(--accent);
    transform: translateX(5px);
}

/* --- SLIDER (NEWS HERO) --- */
.news-hero {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.slider-area {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #000;
}

.slider-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: background-image 0.5s ease-in-out;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 60px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--white);
}

.slider-caption h2 { font-size: 1.8rem; margin-bottom: 8px; }
.slider-meta { font-size: 0.8rem; opacity: 0.8; display: flex; gap: 15px; margin-top: 10px; }

.slider-numbers {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 0 5px;
}

.num-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.num-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* --- İÇERİK BÖLÜMLERİ --- */
.section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 12px;
}

.section-header h3 { font-size: 1.1rem; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.section-link { font-size: 0.85rem; color: var(--gray-600); font-weight: 600; }
.section-link:hover { color: var(--accent); }

/* İlan Kartları */
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.ad-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}
.ad-item img { height: 150px; width: 100%; object-fit: cover; border-radius: 0; }
.ad-info { padding: 15px; }
.ad-info h4 { font-size: 0.9rem; margin-bottom: 8px; color: var(--text-main); height: 40px; overflow: hidden; }
.ad-price { color: var(--success); font-weight: 800; font-size: 1rem; }

.ad-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

/* Firmalar Yatay Kaydırma */
.firms-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
}
.firms-scroll::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.firm-card {
    min-width: 140px;
    background: var(--gray-50);
    padding: 20px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.firm-card:hover { background: var(--white); border-color: var(--accent); transform: scale(1.05); }
.firm-icon { 
    width: 50px; height: 50px; background: var(--primary); color: white; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 12px; font-size: 1.2rem; font-weight: 800;
}
.firm-card small { display: block; font-weight: 700; margin-bottom: 4px; }
.firm-card span { font-size: 0.7rem; color: var(--gray-600); }

/* --- PROMO BANNER --- */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1e4a76 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.promo-banner:hover { transform: scale(1.01); box-shadow: var(--shadow-lg); }
.banner-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--accent);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
}

/* --- FOOTER --- */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 24px 30px;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .main-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Mobil menü buraya gelebilir */
}


/* Sidebar Ekstra Güzelleştirme */
.count-badge {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-600);
}

.pharmacy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pharmacy-info strong { display: block; font-size: 0.85rem; }
.pharmacy-info small { color: var(--accent); font-size: 0.75rem; font-weight: 600; }

.call-btn {
    width: 35px;
    height: 35px;
    background: var(--success);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.all-link {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
}

.weather-widget {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
}
.weather-info { display: flex; align-items: center; gap: 15px; }
.temp { font-size: 1.5rem; font-weight: 800; display: block; }


/* Buton Grubu */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Amedliysen Üye Ol (İkincil Buton) */
.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 10px 18px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Ücretsiz İlan Ver (Birincil Buton) */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 10px 22px;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220,38,38,0.3);
}

/* Navigasyon Aktif Sayfa */
.nav-links li.active a {
    color: var(--accent);
}



/* HABERLER SAYFASI YENİ TASARIM */
.news-container { max-width: 1200px; margin: 20px auto; display: flex; flex-direction: column; gap: 40px; }

/* Manşet Grid */
.news-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 15px; height: 450px; }
.hero-main, .hero-side-item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; transition: 0.3s; }
.hero-main img, .hero-side-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.hero-main:hover img, .hero-side-item:hover img { transform: scale(1.05); }

.hero-content, .side-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); color: white; }
.badge-main { background: #e11d48; color: white; padding: 4px 12px; border-radius: 4px; font-weight: 800; font-size: 0.75rem; margin-bottom: 10px; display: inline-block; }
.hero-sides { display: grid; grid-template-rows: 1fr 1fr; gap: 15px; }

/* Ana Düzen */
.news-main-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

/* Haber Kartları */
.section-title { border-bottom: 2px solid #eee; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.section-title span { font-weight: 800; font-size: 1.2rem; color: #1e293b; }
.section-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 60px; height: 2px; background: #e11d48; }

.news-row-card { display: flex; gap: 20px; background: #fff; padding: 15px; border-radius: 12px; margin-bottom: 20px; border: 1px solid #f1f5f9; cursor: pointer; transition: 0.3s; }
.news-row-card:hover { border-color: #e11d48; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.row-img { width: 220px; height: 140px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.row-img img { width: 100%; height: 100%; object-fit: cover; }
.row-body h4 { font-size: 1.2rem; margin-bottom: 10px; color: #1e293b; }
.row-body p { font-size: 0.9rem; color: #64748b; line-height: 1.6; }
.row-meta { margin-top: 15px; display: flex; gap: 20px; color: #94a3b8; font-size: 0.8rem; }

/* Sidebar */
.trend-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid #f1f5f9; cursor: pointer; }
.trend-rank { font-size: 2rem; font-weight: 900; color: #e2e8f0; line-height: 1; }
.trend-item h5 { font-size: 0.95rem; margin-bottom: 5px; color: #334155; transition: 0.2s; }
.trend-item:hover h5 { color: #e11d48; }

/* Mobilde her şeyi alt alta getir */
@media (max-width: 992px) {
    .news-hero-grid, .news-main-layout { grid-template-columns: 1fr; height: auto; }
    .hero-main { height: 300px; }
    .news-row-card { flex-direction: column; }
    .row-img { width: 100%; height: 200px; }
}



/* Haber Detay Özel CSS */
.news-detail-wrapper { width: 100%; max-width: 1200px; margin: 0 auto; }

.news-breadcrumb { margin-bottom: 20px; font-size: 0.85rem; color: #64748b; }
.news-breadcrumb a { color: var(--primary); text-decoration: none; }
.news-breadcrumb i { font-size: 0.7rem; margin: 0 10px; opacity: 0.5; }

.detail-grid { display: grid; grid-template-columns: 8fr 4fr; gap: 30px; }

.article-header h1 { font-size: 2.2rem; line-height: 1.2; color: #1e293b; margin: 15px 0; font-weight: 800; }
.detail-cat-badge { background: var(--primary); color: white; padding: 4px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }
.article-meta { display: flex; gap: 20px; color: #94a3b8; font-size: 0.85rem; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #f1f5f9; }

.featured-image { width: 100%; border-radius: 15px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.featured-image img { width: 100%; height: auto; display: block; }

.article-spot { font-size: 1.2rem; color: #475569; font-weight: 600; line-height: 1.6; border-left: 5px solid var(--primary); padding-left: 20px; margin-bottom: 30px; }
.article-text { font-size: 1.1rem; line-height: 1.8; color: #334155; }
.article-text p { margin-bottom: 20px; }

.article-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #f1f5f9; }
.share-box { display: flex; align-items: center; gap: 15px; }
.share-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #000; }
.share-btn.wp { background: #25d366; }
.share-btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* Benzer Haberler */
.related-news { margin-top: 50px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { cursor: pointer; transition: 0.3s; }
.related-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }
.related-card h4 { font-size: 0.95rem; color: #1e293b; line-height: 1.4; }
.related-card:hover h4 { color: var(--primary); }

@media (max-width: 992px) {
    .detail-grid { grid-template-columns: 1fr; }
    .article-header h1 { font-size: 1.6rem; }
    .related-grid { grid-template-columns: 1fr; }
}

.detail-right-column { display: flex; flex-direction: column; gap: 25px; }
.right-widget { background: #fff; border: 1px solid #f1f5f9; border-radius: 12px; padding: 20px; }
.widget-title { font-weight: 800; font-size: 1rem; color: #1e293b; margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 10px; }

/* Paylaşım Kutusu */
.share-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.share-box { height: 450px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #fff; font-size: 1.2rem; transition: 0.3s; height: 45px; }
.share-box.fb { background: #1877f2; }
.share-box.x { background: #000; }
.share-box.wp { background: #25d366; }
.share-box:hover { opacity: 0.8; transform: translateY(-2px); }

/* Mini Haber Listesi */
.mini-news-item { display: flex; gap: 12px; margin-bottom: 15px; cursor: pointer; border-bottom: 1px solid #f8fafc; padding-bottom: 10px; }
.mini-news-item:last-child { border: none; margin: 0; }
.mini-img { width: 70px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.mini-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-info h5 { font-size: 0.85rem; line-height: 1.3; color: #334155; margin-bottom: 4px; font-weight: 600; }
.mini-info span { font-size: 0.7rem; color: #94a3b8; }

/* Kategori Kartı */
.cat-info-widget { background: linear-gradient(135deg, #1e293b, #334155); color: #fff; text-align: center; }
.cat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.cat-info-widget h4 { font-size: 1.4rem; margin: 10px 0; color: #fff; }
.cat-info-widget p { font-size: 0.8rem; opacity: 0.8; margin-bottom: 15px; }
.btn-cat-more { display: block; background: var(--primary); color: #fff; padding: 8px; border-radius: 6px; text-decoration: none; font-size: 0.85rem; font-weight: 600; }

/* Reklam Kutusu */
.right-ad-box { background: #f8fafc; border: 2px dashed #e2e8f0; border-radius: 12px; padding: 20px; text-align: center; color: #94a3b8; }
.right-ad-box span { font-size: 0.6rem; font-weight: 800; }
.ad-inner i { font-size: 2rem; margin: 10px 0; }
.ad-inner p { font-size: 0.85rem; line-height: 1.4; }

/* Haberler Sayfası Tamamlayıcı CSS */
.news-container { width: 100%; display: flex; flex-direction: column; gap: 30px; }

/* Kategori Başlık Kutusu */
.category-header-box {
    background: linear-gradient(135deg, var(--primary), #2d3748);
    padding: 40px; border-radius: 15px; color: white;
    display: flex; justify-content: space-between; align-items: center;
}
.cat-info h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 5px; }
.cat-info p { opacity: 0.8; font-size: 1.1rem; }
.cat-icon { font-size: 4rem; opacity: 0.15; }

/* Manşet Grid */
.news-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 15px; height: 450px; }
.hero-main, .hero-side-item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; }
.hero-main img, .hero-side-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.hero-main:hover img, .hero-side-item:hover img { transform: scale(1.05); }

.hero-content, .side-content { 
    position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; 
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); color: white; 
}
.badge-main { background: #e11d48; color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 800; margin-bottom: 10px; display: inline-block; }
.hero-sides { display: grid; grid-template-rows: 1fr 1fr; gap: 15px; }

/* Layout */
.news-main-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 35px; }

/* Kartlar */
.news-row-card { 
    display: flex; gap: 20px; background: #fff; padding: 15px; 
    border-radius: 12px; margin-bottom: 20px; border: 1px solid #f1f5f9; cursor: pointer; transition: 0.3s; 
}
.news-row-card:hover { border-color: #e11d48; transform: translateX(5px); }
.row-img { width: 200px; height: 130px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
.row-img img { width: 100%; height: 100%; object-fit: cover; }
.row-cat-tag { color: var(--primary); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.row-body h4 { font-size: 1.15rem; color: #1e293b; margin: 5px 0; }
.row-body p { font-size: 0.9rem; color: #64748b; }
.row-meta { margin-top: 10px; display: flex; gap: 15px; font-size: 0.75rem; color: #94a3b8; }

/* Uyarı */
.no-news-alert { padding: 60px; text-align: center; background: #f8fafc; border-radius: 20px; border: 2px dashed #e2e8f0; }
.no-news-alert i { font-size: 3.5rem; color: #cbd5e1; margin-bottom: 15px; display: block; }

/* Sidebar Reklam */
.sidebar-ad-box { 
    margin-top: 30px; padding: 20px; background: #f1f5f9; border-radius: 15px; text-align: center; 
}
.ad-placeholder-content { color: #94a3b8; padding: 20px; }
.ad-placeholder-content i { font-size: 2.5rem; margin-bottom: 10px; }

@media (max-width: 992px) {
    .news-hero-grid, .news-main-layout { grid-template-columns: 1fr; height: auto; }
    .hero-main { height: 280px; }
    .news-row-card { flex-direction: column; }
    .row-img { width: 100%; height: 180px; }
}

/* Masaüstünde gizle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #00f2ff; /* Senin neon mavi rengin */
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block; /* Sadece mobilde göster */
    }

    /* Menüleri mobilde başlangıçta gizle */
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Header'ın hemen altından başlasın */
        left: 0;
        background: #121212; /* Header arka plan renginle aynı */
        padding: 20px;
        z-index: 1000;
        border-bottom: 1px solid #333;
    }

    /* JavaScript ile tetiklenen aktif sınıfı */
    .nav-links.mobile-active {
        display: flex; /* Butona basınca görünür yap */
    }

    .nav-links li {
        margin: 10px 0;
    }

    .header-container {
        position: relative; /* Menü hizalaması için şart */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* İlan Ver ve Üye Ol butonlarını mobilde yan yana tut */
    .header-actions {
        display: flex;
        gap: 5px;
    }
}