/* --- TEMEL DEĞİŞKENLER --- */
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Yatay kaydırmayı tamamen öldürür */
}
:root { 
    --gold: #c5a059; 
    --dark: #121212; 
    --light: #fdfdfd; 
    --shadow: 0 10px 25px rgba(0,0,0,0.08); 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--light); 
    color: #333; 
    font-size: 14px; 
    line-height: 1.6; 
}

html { scroll-behavior: smooth; }

/* --- HEADER & LOGO --- */
header { 
    background: var(--dark); 
    color: var(--gold); 
    padding: 30px 20px; 
    text-align: center; 
    border-bottom: 3px solid var(--gold); 
}

.header-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brand-name {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* --- NAVİGASYON (DÜZENLENDİ: YAN YANA SIĞDIRMA) --- */
nav { 
    background: #1a1a1a; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}

.nav-container { 
    max-width: 1200px; /* Sığması için genişletildi */
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 15px; 
    height: 60px; 
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* Kesinlikle alt satıra geçmez */
    gap: 10px;
}

.nav-links a, .nav-item .nav-link { 
    color: #fff; 
    text-decoration: none; 
    padding: 5px 12px; 
    font-size: 11px; /* Sığması için ideal boyut */
    font-weight: 700; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    white-space: nowrap; /* Yazıyı tek satırda tutar */
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links a:hover, .nav-item:hover .nav-link { color: var(--gold); }

/* --- DROPDOWN MENÜ SİSTEMİ --- */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* Varsayılan gizli */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 9999;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-top: 3px solid var(--gold);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Hoverda açılır */
}

.dropdown-menu li a {
    padding: 10px 20px !important;
    font-size: 12px !important;
    display: block !important;
    text-align: left;
    border-bottom: 1px solid #252525;
    text-transform: capitalize !important;
}

.dropdown-menu li a:hover {
    background: #252525;
    color: var(--gold) !important;
}

/* --- BAYİ ALANI --- */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.btn-login { color: var(--gold) !important; }

.btn-register {
    background: var(--gold);
    color: #fff !important;
    padding: 6px 15px !important;
    border-radius: 4px;
}

/* --- 1. SAĞDAKİ BOŞLUĞU VE TAŞMAYI ENGELLE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Sağdaki beyaz/siyah boşluğu yok eder */
}

/* --- 2. SLIDER KONTEYNER (SİYAH ALANI YOK EDER) --- */
.slider-container {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Arka plan siyah kalsın ama resim ortalansın */
}

/* --- 3. SLAYT YAPISI --- */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* JS ile block/flex yapılacak */
    align-items: center;
    justify-content: center; /* Resmi yatayda tam ortalar */
    background-color: #000;
}

.slide.active {
    display: flex; /* Aktif slaytı göster ve içeriği ortala */
}

/* --- 4. RESİM AYARI (GÖRÜNTÜDEKİ SORUNU ÇÖZEN KISIM) --- */
.slider-media {
    max-width: 100%;
    max-height: 100%;
    width: 100%; /* Resmin konteyneri doldurmasını sağlar */
    height: 100%;
    object-fit: cover; /* Resmi kırpmadan/bozmadan tüm alana yayar (Boşluk kalmaz) */
    object-position: center; /* Resmi tam ortadan odaklar */
}

/* Eğer resmin hiçbir yerinin kesilmemesini (contain) istiyorsanız:
   object-fit: contain; yapın, ancak bu durumda yanlarda resmin boyutuna göre siyahlık kalabilir. 
   Ekranın tamamen dolması için 'cover' en iyisidir. */

/* --- 5. TUŞLARI GÖRÜNÜR YAP VE ÜSTE AL --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 160, 89, 0.4); /* Daha belirgin altın tonu */
    color: #fff;
    border: 2px solid #c5a059;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 100; /* Resmin üstünde kalmasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: #c5a059;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
}

.prev { left: 20px; }
.next { right: 20px; }

/* --- 6. YAZI KUTUSU --- */
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-left: 5px solid #c5a059;
    color: white;
    max-width: 400px;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .slider-container { height: 300px; }
    .slider-btn { width: 45px; height: 45px; font-size: 18px; }
    .slide-content { left: 10px; bottom: 20px; max-width: 80%; }
}
/* --- ÜRÜN IZGARA YAPISI (DÜZELTİLEN KISIM) --- */
.products-grid {
    display: grid !important;
    /* Masaüstünde yan yana 3 adet zorla */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 25px;
    width: 100%;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    width: 100% !important; /* Kartın dışarı taşmasını engeller */
}

.product-card:hover { 
    transform: translateY(-10px); 
}

.product-card img { 
    width: 100% !important; 
    height: 350px !important;    
    object-fit: contain !important; 
    background: #fdfdfd;
    padding: 15px; 
    display: block;
}

.product-details { 
    padding: 20px; 
    text-align: center; 
    background: #fff;
    border-top: 1px solid #f5f5f5;
    flex-grow: 1; /* Kart boylarını eşitler */
}

.product-details h4 { 
    font-size: 15px; 
    color: var(--dark); 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 8px; 
}

.product-details p { 
    color: var(--gold); 
    font-weight: 700; 
    font-size: 13px; 
}

/* --- BUTONLAR VE ALT ALAN --- */
.more-products-container {
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    text-align: center;
    clear: both; /* Üstteki öğelerle çakışmayı önler */
}

.btn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: var(--dark);
    color: var(--gold);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: 0.3s;
}

.btn-more:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}

/* --- MOBİL VE TABLET UYUMU --- */

/* Tabletlerde 2'li dizi */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Telefonlarda tekli dizi */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }
    
    .product-card img {
        height: 280px !important;
    }
}
/* --- İLETİŞİM --- */
.contact-section { margin-top: 60px; }
.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    background: var(--dark); 
    border-radius: 20px; 
    overflow: hidden; 
}

.contact-info { padding: 40px; color: white; }
.info-item { margin-bottom: 15px; display: flex; align-items: center; }

/* --- FOOTER --- */
footer { 
    background: var(--dark); 
    color: #777; 
    text-align: center; 
    padding: 40px 20px; 
    margin-top: 60px;
    border-top: 1px solid #222; 
}

@keyframes fade { from {opacity: 0.5} to {opacity: 1} }

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .nav-container { height: auto; padding: 10px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) { 
    .contact-wrapper { grid-template-columns: 1fr; }
    .brand-name { font-size: 26px !important; }
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .product-card img { height: 250px !important; padding: 10px; }
}
/* --- ÜRÜNLER SAYFASI ÖZEL EKLEMELERİ (ANA STİLİ BOZMAZ) --- */

/* Ürünler Sayfası Yan Menü Yapısı */
.product-page-wrapper { 
    display: flex; 
    gap: 30px; 
    max-width: 1200px; 
    margin: 50px auto; 
    padding: 0 20px; 
}

.sidebar { 
    width: 280px; 
    flex-shrink: 0; 
    background: #fff; 
    padding: 25px; 
    border-radius: 15px; 
    box-shadow: var(--shadow); 
    height: fit-content; 
    border: 1px solid #eee;
}

#category-list a {
    display: block;
    padding: 10px 15px;
    margin-bottom: 5px;
    color: #444;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: 600;
}

#category-list a:hover, #category-list a.active-cat {
    background: var(--dark);
    color: var(--gold);
}

/* Modal (Ürün Detay Pop-up) Stilleri */
.modal-overlay { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.85); 
    z-index: 10000; /* Sidebar vb. her şeyin üstünde olması için yükseltildi */
    justify-content: center; 
    align-items: center; 
    padding: 20px; 
}

/* --- MODAL ANA YAPI: EKRANA SABİTLEME --- */
.modal-content { 
    background: #fff; 
    width: 100%; 
    max-width: 850px; 
    height: 90vh; /* Sabit yükseklik: Ekranın %90'ı */
    border-radius: 20px; 
    position: relative; 
    display: flex; /* Yan yana dizilim */
    flex-direction: row; /* Masaüstünde yan yana */
    overflow: hidden; /* Dışarı taşmayı kesinlikle yasaklar */
    animation: modalAcilis 0.3s ease-out;
}

/* --- SOL TARAF: RESİM BÖLMESİ --- */
.modal-left { 
    flex: 1; 
    background: #fdfdfd; 
    padding: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    max-height: 100%; /* Dışarı çıkamaz */
}

.modal-left img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; /* Resmi bozmadan sığdırır */
}

/* --- SAĞ TARAF: İÇERİK BÖLMESİ (KAYDIRILABİLİR) --- */
.modal-right { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    height: 100%; /* Modalın tam boyu */
    position: relative;
}

/* KRİTİK: Sadece yazıların ve stokların kayacağı alan */
.modal-right-body {
    padding: 40px 40px 10px 40px;
    overflow-y: auto; /* Yazı çoksa burada kaydırma çubuğu çıkar */
    flex: 1; /* Kalan boşluğu doldurur */
}

/* --- SABİT ALT KISIM (WP BUTONU BURADA) --- */
.modal-footer {
    padding: 10px 40px 30px 40px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0; /* Butonun küçülmesini engeller */
}

.btn-whatsapp-modal { 
    display: block;
    background: #25d366; 
    color: #fff !important;
    text-decoration: none; 
    padding: 16px; 
    text-align: center; 
    border-radius: 12px; 
    font-weight: 600; 
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .modal-content { 
        flex-direction: column; /* Mobilde alt alta */
        height: 95vh;
    }
    .modal-left { 
        height: 250px; 
        min-height: 250px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .modal-right { height: calc(95vh - 250px); }
    .modal-right-body { padding: 20px; }
    .modal-footer { padding: 10px 20px 20px 20px; }
}

/* Kapatma Butonu Sabit */
.modal-close { 
    position: absolute; 
    top: 15px; right: 20px; 
    z-index: 1000;
    background: #fff;
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* --- MOBİL İÇİN KRİTİK DOKUNUŞ --- */
@media (max-width: 600px) {
    .modal-overlay { padding: 10px; }
    .modal-content { max-height: 95vh; }
    .modal-left { padding: 20px; min-width: 100%; }
    .modal-left img { max-height: 250px; }
    .modal-right { padding: 25px; min-width: 100%; }
    .modal-right h2 { font-size: 20px; }
}

/* Ürünler Sayfası Mobil Düzenleme */
@media (max-width: 768px) { 
    .product-page-wrapper { flex-direction: column; }
    .sidebar { width: 100%; position: sticky; top: 60px; z-index: 100; }
    .modal-content { flex-direction: column; max-height: 90vh; overflow-y: auto; }
    .modal-right { padding: 25px; }
    
}
/* --- MOBİL NAVİGASYON KESİN ÇÖZÜM --- */

@media (max-width: 992px) {
    /* Navigasyonun ekranı kaplamasını engelle */
    nav {
        height: auto !important; /* Sabit 60px iptal */
        min-height: 50px;
    }

    .nav-container {
        height: auto !important;
        padding: 5px 10px !important;
        flex-direction: column; /* Logodan sonra gelen menüyü hizala */
    }

    .nav-links {
        display: flex;
        flex-wrap: nowrap !important; /* Alt satıra geçmeyi zorla iptal et */
        overflow-x: auto; /* Sağa kaydırılabilir yap */
        width: 100%;
        justify-content: flex-start;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
    }

    /* Scroll barı gizle (Görüntü kirliliği olmasın) */
    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a, .nav-item .nav-link {
        font-size: 10px !important; /* Yazıları küçült */
        padding: 6px 10px !important;
        background: rgba(255,255,255,0.05); /* Buton gibi durması için */
        border-radius: 5px;
    }

    /* Bayi Giriş / Kayıt kısmını küçült ve hizala */
    .nav-auth {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
        justify-content: center;
        padding-bottom: 8px;
        gap: 5px;
    }

    .btn-register {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }

    /* Dropdown mobilde çok yer kaplamasın */
    .dropdown-menu {
        position: fixed; /* Ekranın ortasına odakla */
        top: 50px;
        left: 5%;
        width: 90%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 10px; /* Header alanını daralt */
    }
    
    .brand-name {
        font-size: 18px !important; /* Marka ismini küçült */
        letter-spacing: 1px;
    }

    /* Slider'ın mobilde ekranı boğmasını engelle */
    .slider-container {
        height: 180px !important;
        margin-bottom: 20px;
    }
}
/* --- MOBİL CİHAZLAR İÇİN EK OPTİMİZASYONLAR (SON HALİ) --- */

@media (max-width: 992px) {
    /* Menüyü yan yana kaydırılabilir yap (Touch friendly) */
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap;
        padding: 10px 5px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox için scrollbar gizle */
    }

    /* Mobilde her menü elemanına biraz nefes aldır */
    .nav-links a, .nav-item .nav-link {
        display: inline-block;
        background: rgba(197, 160, 89, 0.1); /* Hafif Gold arka plan */
        border: 1px solid rgba(197, 160, 89, 0.3);
        margin-right: 5px;
        padding: 8px 15px !important;
        border-radius: 20px !important;
        font-size: 11px !important;
    }

    /* Dropdown mobilde karmaşaya sebep olur, tıklamayı kolaylaştıralım */
    .nav-item.dropdown:hover .dropdown-menu {
        display: none; /* Mobilde hover yerine script ile açmak daha iyidir ama CSS ile gizleyip basitleştiriyoruz */
    }
}

@media (max-width: 768px) {
    /* Ürün Kartları Optimizasyonu */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Yan yana 2 adet */
        gap: 12px !important;
        padding: 5px;
    }

    .product-card img {
        height: 180px !important; /* Mobilde görseller çok büyük olmasın */
        padding: 8px !important;
    }

    .product-details {
        padding: 12px !important;
    }

    .product-details h4 {
        font-size: 13px !important;
        height: 32px; /* Başlıklar çok uzunsa tasarımı bozmasın */
        overflow: hidden;
    }

    .product-details p {
        font-size: 11px !important;
    }

    /* Slider mobilde daha kompakt olsun */
    .slider-container {
        height: 220px !important;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    /* Modal (Pop-up) Mobilde Tam Ekran */
    .modal-content {
        width: 95%;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-left, .modal-right {
        flex: 100% !important; /* Alt alta gelsin */
        padding: 20px !important;
    }

    .modal-left img {
        max-height: 250px !important;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar (iPhone SE vb.) */
    .brand-name {
        font-size: 20px !important;
        letter-spacing: 1px;
    }

    .nav-auth {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .btn-login, .btn-register {
        font-size: 10px !important;
        padding: 5px 10px !important;
    }
    
    /* Stok kutuları yan yana */
    .modal-stock-container {
        flex-direction: row;
        gap: 8px;
    }
    
    .stock-box {
        font-size: 11px;
        padding: 8px;
    }
}

/* --- EKSTRA: Dokunmatik Ekranlarda Scrollbar Gizleme --- */
.nav-links::-webkit-scrollbar {
    display: none;
}
/* --- ÜRÜNLER SAYFASI KATEGORİ SİDEBAR MOBİL OPTİMİZASYONU --- */

@media (max-width: 768px) {
    /* Yan menü (Sidebar) yapısını üstte yatay sıraya dönüştür */
    .product-page-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .sidebar {
        width: 100% !important;
        position: sticky;
        top: 60px; /* Navigasyonun hemen altında kalsın */
        z-index: 99;
        padding: 10px !important;
        background: #fff;
        border-radius: 0; /* Mobilde tam genişlik daha iyi durur */
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        border: none;
        border-bottom: 1px solid #eee;
    }

    /* Sidebar başlığını mobilde gizle veya küçült (isteğe bağlı) */
    .sidebar h3 {
        display: none; 
    }

    /* Kategori listesini yan yana diz ve kaydırılabilir yap */
    #category-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 10px !important;
        padding: 5px 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #category-list::-webkit-scrollbar {
        display: none;
    }

    /* Kategori butonlarını mobilde modernize et */
    .category-item {
        display: flex !important;
        align-items: center;
        background: #f1f1f1 !important;
        padding: 8px 15px !important;
        border-radius: 50px !important;
        border-bottom: none !important; /* Masaüstü çizgisini kaldır */
        font-size: 12px !important;
        color: #333 !important;
        flex-shrink: 0; /* Butonların daralmasını engelle */
    }

    .category-item span:last-child {
        margin-left: 8px;
        background: var(--gold) !important;
        color: #fff !important;
    }

    /* Aktif kategori için belirginlik */
    .category-item:active, .category-item:hover {
        background: var(--dark) !important;
        color: var(--gold) !important;
    }
}
/* Etiketlerin Ortak Yapısı */
.product-card {
    position: relative; /* Etiketlerin kart içinde kalması için şart */
}

.badge-common {
    position: absolute;
    top: 12px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px; /* Hafif oval, kurumsal duruş */
    z-index: 10;
    letter-spacing: 0.5px;
}

/* YENİ ETİKETİ - Sağ Üstte Altın Sarısı */
.badge-new {
    right: 12px;
    background: linear-gradient(135deg, #c5a059 0%, #ecd4a4 100%);
    color: #121212;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.4);
}

/* KAMPANYA ETİKETİ - Sol Üstte Kırmızı */
.badge-sale {
    left: 12px;
    background: #e74c3c;
    color: #fff;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}
/* --- TEMEL DEĞİŞKENLER --- */
:root { 
    --gold: #c5a059; 
    --dark: #121212; 
    --light: #fdfdfd; 
    --shadow: 0 10px 25px rgba(0,0,0,0.08); 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--light); 
    color: #333; 
    font-size: 14px; 
    line-height: 1.6; 
    overflow-x: hidden; /* Yatay kaymayı kökten engeller */
}

html { scroll-behavior: smooth; }

/* --- HEADER & LOGO --- */
header { 
    background: var(--dark); 
    color: var(--gold); 
    padding: 30px 20px; 
    text-align: center; 
    border-bottom: 3px solid var(--gold); 
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* --- NAVİGASYON --- */
nav { 
    background: #1a1a1a; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 15px; 
    height: 60px; 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a, .nav-item .nav-link { 
    color: #fff; 
    text-decoration: none; 
    padding: 8px 12px; 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    white-space: nowrap; 
    text-transform: uppercase;
}

.nav-links a:hover, .nav-item:hover .nav-link { color: var(--gold); }

/* --- DROPDOWN --- */
.nav-item.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 200px;
    border-top: 3px solid var(--gold);
    list-style: none;
}
.nav-item.dropdown:hover .dropdown-menu { display: block; }

/* --- ÜRÜN KARTLARI --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    gap: 25px;
    padding: 20px 0;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid #eee;
}

.product-card img { 
    width: 100%; 
    height: 350px;    
    object-fit: contain; 
    padding: 15px; 
}

.badge-new {
    position: absolute; top: 15px; left: 15px;
    background: #ff4757; color: white;
    padding: 5px 12px; font-size: 11px; font-weight: 800;
    border-radius: 5px; z-index: 2;
}

/* --- MODAL --- */
.modal-overlay { 
    display: none; position: fixed; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(0,0,0,0.85); 
    z-index: 9999; justify-content: center; align-items: center; padding: 20px; 
}
.modal-content { 
    background: #fff; width: 100%; max-width: 850px; 
    border-radius: 20px; display: flex; flex-wrap: wrap; 
}

/* ==========================================================================
   YENİLENMİŞ MOBİL VE TABLET OPTİMİZASYONU (KESİN ÇÖZÜM)
   ========================================================================== */

@media (max-width: 992px) {
    /* Genel Navigasyon Düzeni */
    nav {
        height: auto !important;
        background: #1a1a1a;
    }

    .nav-container {
        height: auto !important;
        flex-direction: column;
        padding: 10px 0 !important;
    }

    /* Menü Linkleri: Yatay Kaydırılabilir Modern Yapı */
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        width: 100%;
        padding: 10px 15px !important;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .nav-links::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    .nav-links a, .nav-item .nav-link {
        display: inline-block;
        background: rgba(197, 160, 89, 0.1);
        border: 1px solid rgba(197, 160, 89, 0.2);
        padding: 8px 16px !important;
        border-radius: 25px !important;
        font-size: 11px !important;
        white-space: nowrap;
    }

    /* Giriş / Kayıt Alanı */
    .nav-auth {
        width: 100%;
        justify-content: center;
        margin: 5px 0 10px 0;
        padding: 0;
        border-left: none;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Header ve Logo */
    header { padding: 20px 10px !important; }
    .brand-name { font-size: 22px !important; letter-spacing: 1px; }

    /* Slider */
    .slider-container { 
        height: 220px !important; 
        border-radius: 12px;
        margin-bottom: 30px;
    }

    /* Ürün Izgarası (2'li Sistem) */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 10px;
    }

    .product-card img { height: 200px !important; padding: 10px !important; }
    .product-details { padding: 15px !important; }
    .product-details h4 { font-size: 12px !important; height: 34px; overflow: hidden; }

    /* Ürünler Sayfası: Kategori Sidebar Dönüşümü */
    .product-page-wrapper { flex-direction: column !important; gap: 20px !important; }
    
    .sidebar {
        width: 100% !important;
        position: sticky;
        top: 0; /* Nav yapışkansa burayı nav yüksekliğine göre ayarla */
        z-index: 100;
        padding: 10px !important;
        border-radius: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .sidebar h3 { display: none; } /* Mobilde başlığı gizle space kazan */

    #category-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 8px;
        scrollbar-width: none;
    }

    #category-list::-webkit-scrollbar { display: none; }

    .category-item {
        flex-shrink: 0;
        background: #f1f1f1 !important;
        padding: 8px 14px !important;
        border-radius: 50px !important;
        font-size: 12px !important;
        border: none !important;
    }

    /* Modal (Pop-up) Optimizasyonu */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        flex-direction: column;
    }

    .modal-left, .modal-right { flex: 100% !important; padding: 20px !important; }
    .modal-left img { max-height: 280px !important; }
    .modal-right h2 { font-size: 20px; }
}

@media (max-width: 480px) {
    .brand-name { font-size: 18px !important; }
    .product-grid { gap: 8px !important; }
    .product-card img { height: 160px !important; }
    .btn-register, .btn-login { font-size: 10px !important; padding: 6px 10px !important; }
}
/* --- MOBİL DİKEY YÜKSEKLİK VE ÜST ÜSTE BİNMEYİ DÜZELTME --- */

@media (max-width: 992px) {
    /* Navigasyonun dikeyde devleşmesini engelle */
    nav {
        position: sticky;
        top: 0;
        height: auto !important;
        max-height: 120px; /* Maksimum dikey sınır */
        overflow: hidden;
    }

    .nav-container {
        padding: 5px 0 !important;
        gap: 0 !important;
    }

    /* Linklerin dikey alanı işgal etmesini önle, sadece yatayda kalsınlar */
    .nav-links {
        padding: 8px 10px !important;
        margin: 0 !important;
        height: 45px; /* Dikey yüksekliği sabitle */
        align-items: center;
    }

    /* Giriş/Kayıt butonlarının dikey boşluğunu daralt */
    .nav-auth {
        margin: 0 !important;
        padding-bottom: 5px !important;
        height: 35px;
    }

    /* Header (Logo) kısmını mobilde dikeyde daralt */
    header {
        padding: 15px 10px !important;
    }

    /* Ürünler sayfasındaki kategori menüsünün nav ile çakışmasını önle */
    .sidebar {
        top: 110px !important; /* Nav + Auth toplam yüksekliğine göre konumlandır */
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlarda header'ı daha da küçülterek içeriğe yer aç */
    header {
        padding: 10px 5px !important;
    }
    
    .brand-name {
        font-size: 16px !important;
        letter-spacing: 0.5px;
    }

    /* Slider'ın dikeyde çok yer kaplayıp içeriği aşağı itmesini engelle */
    .slider-container {
        height: 160px !important;
    }
}

/* --- DOKUNMATİK EKRAN KAYDIRMA İYİLEŞTİRMESİ --- */
.nav-links, #category-list {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.nav-links a, .category-item {
    scroll-snap-align: start;
}
/* --- DUYURULAR SAYFASI TASARIMI (GOLD & DARK) --- */

/* Renk Değişkenleri - Eğer yukarıda yoksa ekleyebilirsin */
:root {
    --gold-primary: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --dark-deep: #0a0a0a;
    --dark-card: #141414;
    --text-silver: #e0e0e0;
}

.announcement-header {
    padding: 60px 0 30px;
    text-align: center;
}

.announcement-header h1 {
    font-size: 2.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gold-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.announcement-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px; /* Daha premium/keskin bir görünüm için */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.announcement-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px var(--gold-glow);
}

.image-container {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--gold-primary);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Biraz daha dramatik hava katar */
    transition: transform 0.6s ease;
}

.announcement-item:hover .image-container img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.content-area {
    padding: 25px;
}

.content-area h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.content-area p {
    color: var(--text-silver);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.meta-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-tag {
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .announcement-header h1 { font-size: 1.8rem; }
    .announcement-grid { padding: 30px 20px; }
}
/* --- ÜRÜN ÖZELLİKLERİ KAYDIRMA (SCROLL) --- */
#m-description-list {
    max-height: 150px; /* Belirli bir yükseklikten sonra kaydır */
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #f1f1f1;
}

/* Scrollbar görünümü (Chrome/Safari) */
#m-description-list::-webkit-scrollbar { width: 6px; }
#m-description-list::-webkit-scrollbar-track { background: #f1f1f1; }
#m-description-list::-webkit-scrollbar-placeholder { background: var(--gold); }

/* --- RESİM BÜYÜTME (ZOOM) EFEKTİ --- */
.modal-left {
    overflow: hidden; /* Taşmayı engelle */
    cursor: zoom-in;
}

#m-img {
    transition: transform 0.5s ease; /* Yumuşak geçiş */
}

.modal-left:hover #m-img {
    transform: scale(1.5); /* Resmin üzerine gelince %50 büyüt */
}

/* Mobilde Zoom'u devre dışı bırakalım (Kullanımı zorlaştırır) */
@media (max-width: 768px) {
    .modal-left:hover #m-img { transform: scale(1); }
    .modal-left { cursor: default; }
}
/* --- 1. TEMEL DEĞİŞKENLER VE SIFIRLAMA --- */
:root { 
    --gold: #c5a059; 
    --dark: #121212; 
    --light: #fdfdfd; 
    --shadow: 0 10px 25px rgba(0,0,0,0.08); 
    --gold-primary: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --dark-card: #141414;
    --text-silver: #e0e0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--light); 
    color: #333; 
    font-size: 14px; 
    line-height: 1.6; 
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* --- 2. HEADER & LOGO --- */
header { 
    background: var(--dark); 
    color: var(--gold); 
    padding: 30px 20px; 
    text-align: center; 
    border-bottom: 3px solid var(--gold); 
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* --- 3. NAVİGASYON VE DROPDOWN --- */
nav { 
    background: #1a1a1a; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 15px; 
    height: 60px; 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a, .nav-item .nav-link { 
    color: #fff; 
    text-decoration: none; 
    padding: 8px 12px; 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    white-space: nowrap; 
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links a:hover, .nav-item:hover .nav-link { color: var(--gold); }

.nav-item.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 200px;
    border-top: 3px solid var(--gold);
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}
.nav-item.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 10px 20px !important; display: block !important; text-transform: capitalize !important; border-bottom: 1px solid #252525; }

/* --- 4. BAYİ / AUTH ALANI --- */
.nav-auth { display: flex; align-items: center; gap: 10px; margin-left: 10px; padding-left: 15px; border-left: 1px solid rgba(255,255,255,0.1); }
.btn-login { color: var(--gold) !important; }
.btn-register { background: var(--gold); color: #fff !important; padding: 6px 15px !important; border-radius: 4px; }

/* --- 5. ÜRÜN KARTLARI VE IZGARA --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    gap: 25px;
    padding: 20px 0;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.product-card:hover { transform: translateY(-10px); }

.product-card img { 
    width: 100%; 
    height: 350px;   
    object-fit: contain; 
    padding: 15px; 
    background: #fdfdfd;
}

.badge-new {
    position: absolute; top: 15px; left: 15px;
    background: #ff4757; color: white;
    padding: 5px 12px; font-size: 11px; font-weight: 800;
    border-radius: 5px; z-index: 2; box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-details { padding: 20px; text-align: center; border-top: 1px solid #f5f5f5; }
.product-details h4 { font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.product-details p { color: var(--gold); font-weight: 700; }

/* --- 6. MODAL (ÜRÜN DETAY) --- */
.modal-overlay { 
    display: none; position: fixed; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(0,0,0,0.85); 
    z-index: 9999; justify-content: center; align-items: center; padding: 20px; 
}
.modal-content { 
    background: #fff; width: 100%; max-width: 850px; 
    border-radius: 20px; display: flex; flex-wrap: wrap; position: relative; overflow: hidden;
    animation: modalAcilis 0.3s ease-out;
}
@keyframes modalAcilis { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.modal-left { flex: 1; min-width: 300px; padding: 30px; text-align: center; overflow: hidden; cursor: zoom-in; }
#m-img { transition: transform 0.5s ease; width: 100%; max-height: 450px; object-fit: contain; }
.modal-left:hover #m-img { transform: scale(1.5); } /* Masaüstü Zoom */

.modal-right { flex: 1; min-width: 300px; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
#m-description-list { max-height: 150px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--gold) #f1f1f1; }

/* --- 7. DUYURULAR SAYFASI --- */
.announcement-header { padding: 60px 0 30px; text-align: center; }
.announcement-header h1 { font-size: 2.8rem; color: var(--gold-primary); letter-spacing: 5px; font-weight: 800; }
.announcement-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; padding: 50px 5%; }
.announcement-item { background: var(--dark-card); border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 2px; transition: 0.4s; }
.announcement-item:hover { border-color: var(--gold-primary); transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 15px var(--gold-glow); }

/* --- 8. MOBİL VE TABLET OPTİMİZASYONU (KESİN ÇÖZÜM) --- */

@media (max-width: 992px) {
    nav { height: auto !important; max-height: none; }
    .nav-container { height: auto !important; flex-direction: column; padding: 5px 0 !important; }
    
    /* Yatay Kaydırılabilir Menü */
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        width: 100%;
        padding: 10px 15px !important;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a, .nav-item .nav-link {
        background: rgba(197, 160, 89, 0.1);
        border: 1px solid rgba(197, 160, 89, 0.2);
        padding: 8px 15px !important;
        border-radius: 20px !important;
    }

    .nav-auth { width: 100%; justify-content: center; margin: 5px 0; border-left: none; }
}

@media (max-width: 768px) {
    .brand-name { font-size: 22px !important; letter-spacing: 1px; }
    header { padding: 20px 10px !important; }

    /* Slider ve Ürünler */
    .slider-container { height: 200px !important; margin-bottom: 25px; }
    .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Mobilde yan yana 2 tane sığdırır */
    gap: 15px;
    padding: 10px;
    width: 100%; /* Dışarı taşmasını engeller */
}
    .product-card img { height: 180px !important; }
    .product-details h4 { font-size: 12px !important; height: 34px; overflow: hidden; }

    /* Sidebar Kategori Menüsü (Mobilde Yatay) */
    .product-page-wrapper { flex-direction: column !important; }
    .sidebar { 
        width: 100% !important; position: sticky; top: 0; z-index: 100; 
        padding: 10px !important; border-radius: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    }
    .sidebar h3 { display: none; }
    #category-list { 
        display: flex !important; flex-direction: row !important; 
        overflow-x: auto !important; gap: 8px; -webkit-overflow-scrolling: touch; 
    }
    .category-item { flex-shrink: 0; background: #f1f1f1 !important; border-radius: 50px !important; padding: 8px 14px !important; font-size: 12px !important; border: none !important; }

    /* Modal Mobil */
    .modal-content { width: 95%; max-height: 90vh; overflow-y: auto; flex-direction: column; }
    .modal-left, .modal-right { flex: 100% !important; padding: 20px !important; }
    .modal-left:hover #m-img { transform: scale(1); } /* Mobilde Zoom Kapalı */
    .modal-left { cursor: default; }
    .modal-left img { max-height: 250px !important; }
}

@media (max-width: 480px) {
    .brand-name { font-size: 18px !important; }
    .slider-container { height: 160px !important; }
    .btn-register, .btn-login { font-size: 10px !important; padding: 5px 10px !important; }
    
}
/* ==========================================
   ULTRA-PREMIUM MINIMALIST DESIGN
   ========================================== */

:root {
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #ecd4a4 100%);
    --dark-royal: #1a1a1a;
    --soft-gray: #f8f9fa;
    --glass-shadow: 0 30px 60px rgba(0,0,0,0.07);
    --border-radius: 30px;
}

body {
    background-color: #fcfcfc;
    color: var(--dark-royal);
    line-height: 1.6;
}

.product-page-container {
    max-width: 1200px; /* Biraz daha daraltarak odak noktasını artırdık */
    margin: 80px auto;
    padding: 0 20px;
}

.master-grid {
    display: flex;
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 20px; /* İçeriden genel boşluk */
    gap: 20px;
}

/* RESİM ALANI: DAHA KÜÇÜK VE ZARİF */
.image-side {
    flex: 0.8; /* Sağ tarafa göre daha dar yaptık */
    min-width: 350px;
    height: 600px; /* Yüksekliği sabitledik */
    background: var(--soft-gray);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: 10px; /* Etrafında boşluk bırakarak "havada" durmasını sağladık */
}

.image-side img {
    max-width: 75%; /* Resmi küçülttük, tüm alanı kaplamıyor */
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* BİLGİ ALANI */
.order-side {
    flex: 1.2;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b-cat {
    color: #c5a059;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #111;
}

.b-price {
    font-size: 44px;
    font-weight: 300; /* Daha modern ve ince font ağırlığı */
    color: #111;
    margin-bottom: 35px;
}

.b-price small {
    font-size: 16px;
    color: #999;
    letter-spacing: 1px;
}

/* SİPARİŞ KUTUSU */
.order-box {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.label {
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.yon-group {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.yon-btn {
    flex: 1;
    padding: 14px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.yon-btn:hover {
    border-color: #c5a059;
    color: #c5a059;
}

.yon-btn.active {
    background: var(--dark-royal);
    color: #fff;
    border-color: var(--dark-royal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.qty-row {
    display: flex;
    gap: 15px;
}

input[type="number"] {
    width: 70px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.btn-add {
    flex: 1;
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-add:hover:not(:disabled) {
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
}

/* TEKNİK LİSTE */
.specs {
    margin-top: 35px;
}

.specs ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Özellikleri yan yana iki sütun yaptık */
    gap: 10px;
}

.specs li {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
}

.specs li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #c5a059;
    border-radius: 50%;
    margin-right: 10px;
}

/* MOBİL */
@media (max-width: 992px) {
    .master-grid { flex-direction: column; }
    .image-side { min-width: 100%; height: 400px; }
    .specs ul { grid-template-columns: 1fr; }
}/* ==========================================
   PREMIUM TOP INFO BAR & EXTRA STYLES
   ========================================== */

.premium-top-bar {
    background: var(--dark-royal);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold-primary);
}

.premium-top-bar span {
    color: var(--gold-primary);
    font-weight: 700;
}

/* Fiyat Kilidi Revize (Daha Şık) */
.price-locked {
    background: #fff;
    border: 1.5px solid #eee;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.3s;
}

.price-locked::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
}

.price-locked:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

/* Teknik Liste İkon Revize */
.specs ul li::before {
    content: "L"; /* Özel bir L harfi veya SVG ikon için yer tutucu */
    transform: rotate(45deg);
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
    width: 5px;
    height: 10px;
    display: inline-block;
    margin-right: 15px;
    background: transparent; /* Önceki noktayı iptal ettik */
}
/* --- YENİ MODELLER İÇİN ÖZEL ROZET (TREND/YENİ) --- */
.badge-trend {
    position: absolute;
    top: 15px;
    right: 15px; /* New rozeti soldaysa, bu sağda durur */
    background: linear-gradient(135deg, #c5a059 0%, #ecd4a4 100%); /* Gold degrade */
    color: #121212;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px; /* Oval tasarım */
    z-index: 5;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulseBadge 2s infinite; /* Dikkat çekmesi için hafif parlama efekti */
}

/* Rozet Parlama Efekti */
@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Mobilde Rozet Boyutu Ayarı */
@media (max-width: 768px) {
    .badge-trend {
        padding: 4px 10px;
        font-size: 9px;
        top: 10px;
        right: 10px;
    }
}