/* ==========================================================================
   BAHAR HOME - KURUMSAL E-TİCARET CSS (AÇIK TEMA & KIRMIZI VURGU)
   ========================================================================== */

/* --- Global Değişkenler ve Renk Paleti --- */
:root {
    --bg-light: #faf7f5; /* Sıcak, uçuk bir krem/pudra tonu */
    --primary-accent: #d90429; /* Kurumsal ve Şık Kırmızı */
    --neon-accent: rgba(217, 4, 41, 0.3);
    --text-main: #4a403e; /* Siyah yerine daha yumuşak, sıcak koyu kahve/gri */
    --text-muted: #8c817f;
    --text-white: #ffffff; /* Butonlar ve rozetler için beyaz metin */
    --trendyol-orange: #f27a1a;
    
    /* Açık Tema Cam Efekti (Buzlu Cam) */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 1);
    --glass-shadow: rgba(217, 4, 41, 0.12); /* Gölgelere hafif kırmızı sıcaklığı katıldı */
}

/* --- Temel Ayarlar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden; 
    line-height: 1.6;
}

/* ==========================================================================
   1. ORTAK ALANLAR (NAVBAR & FOOTER & WHATSAPP)
   ========================================================================== */

/* --- Navbar (Cam Efekti) --- */
.glass-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85); /* Beyaz buzlu cam */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-accent);
    text-shadow: 0 0 10px var(--neon-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--primary-accent);
}

/* --- Footer ve Sosyal Medya --- */
.glass-footer {
    padding: 80px 5% 30px;
    background: #f5f0ee; /* Temaya uygun çok soft bir alt bilgi rengi */
    border-top: 1px solid #ede5e2;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-logo span {
    color: var(--primary-accent);
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-social a {
    color: var(--text-main); /* İkonlar koyu renk */
    font-size: 1.5rem;
    margin-left: 20px;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Sosyal Medya Özel Hover ve Neon Efektleri */
.footer-social .social-ig:hover {
    color: #E1306C;
    text-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.footer-social .social-wa:hover {
    color: #25D366;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.footer-social .social-ty:hover {
    color: var(--trendyol-orange);
    text-shadow: 0 0 15px rgba(242, 122, 26, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid #ebe0dd;
    padding-top: 30px;
}

/* --- Sabit WhatsApp Butonu (Neon & Bounce) --- */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sticky-whatsapp:hover {
    background: #1ebe57;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}


/* ==========================================================================
   2. ANA SAYFA (INDEX.HTML) ÖZEL STİLLERİ
   ========================================================================== */

/* --- Hero Section (Görsel ve Yazı Koruması) --- */
.hero-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh; /* Daha görkemli duruş */
    /* Fotoğrafın üzerine binen şeffaf koruyucu katman */
    background: linear-gradient(
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.5)
    ), 
    url('hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed; /* Paralaks efekti (Fotoğraf arkada sabit kalır) */
}

.hero-content {
    max-width: 800px;
    padding: 70px 50px;
    background: rgba(255, 255, 255, 0.75); /* Biraz daha opak buzlu cam */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 30px; 
    text-align: center;
    box-shadow: 0 20px 40px var(--glass-shadow);
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-main);
    /* Yazıyı fotoğraftan ayırmak için hafif beyaz gölge */
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
}

.highlight {
    color: var(--primary-accent);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 550px;
    font-weight: 400;
}

.btn-red {
    background: var(--primary-accent);
    color: var(--text-white);
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px var(--neon-accent);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 4, 41, 0.5); /* Kırmızı parlama */
    color: var(--text-white);
}

/* --- Öne Çıkan Ürünler (Grid Yapısı) --- */
.featured-section {
    padding: 100px 5%;
    max-width: 1240px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-main);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-accent);
    margin: 15px auto;
    border-radius: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); /* Çok hafif derinlik */
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
    box-shadow: 0 15px 35px var(--glass-shadow);
}

.img-container {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.product-card:hover img {
    transform: scale(1.08);
}

.badge-red {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-accent);
    color: var(--text-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px var(--neon-accent);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-main);
}

.btn-trendyol {
    display: block;
    border: 1px solid var(--trendyol-orange);
    color: var(--trendyol-orange); /* Açık temada turuncu yazı daha şık durur */
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    background: rgba(242, 122, 26, 0.05);
}

.btn-trendyol:hover {
    background: var(--trendyol-orange);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(242, 122, 26, 0.3);
}


/* ==========================================================================
   3. MAĞAZA SAYFASI (MAGAZA.HTML) ÖZEL STİLLERİ
   ========================================================================== */

.shop-header {
    text-align: center;
    padding: 60px 5% 30px;
}

.shop-header h1 { font-size: 2.8rem; letter-spacing: 1px; color: var(--text-main); }
.shop-header h1 span { color: var(--primary-accent); }
.shop-header p { color: var(--text-muted); margin-top: 10px; }

/* İndirim Bannerı */
.sale-banner-section {
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.sale-card {
    padding: 50px;
    /* Kırmızı/krem uyumlu sıcak bir degrade */
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.15), rgba(255, 255, 255, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.sale-badge {
    background: var(--primary-accent);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.sale-content h2 { font-size: 2.2rem; margin: 20px 0; color: var(--text-main); }
.sale-content p { margin-bottom: 30px; color: var(--text-muted); }

/* Kategori Hapları */
.filter-section {
    padding: 40px 5%;
    display: flex;
    justify-content: center;
}

.category-pills {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox için */
}

.category-pills::-webkit-scrollbar { display: none; } /* Chrome/Safari için */

.pill {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.pill:hover, .pill.active {
    background: var(--primary-accent);
    color: var(--text-white);
    border-color: var(--primary-accent);
    box-shadow: 0 5px 15px var(--neon-accent);
}

/* Fiyat Yazısı */
.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-accent); /* Fiyat bilgisini kırmızı tonuyla vurguladık */
    margin-bottom: 10px;
}

/* Ürün Filtreleme Animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   4. HAKKIMIZDA SAYFASI (HAKKIMIZDA.HTML) ÖZEL STİLLERİ
   ========================================================================== */

.about-hero {
    text-align: center;
    padding: 80px 5%;
}
.about-hero h1 { font-size: 3rem; margin-bottom: 10px; color: var(--text-main); }
.about-hero h1 span { color: var(--primary-accent); }

.about-content-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-accent);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-image { flex: 1; }
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

/* Misyon & Vizyon Kartları */
.mission-vision-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.mission-card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--glass-shadow);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-main);
}

/* SEO Bölümü */
.seo-keywords-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-keywords-section .glass-card {
    padding: 50px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.seo-keywords-section h2 { margin-bottom: 20px; color: var(--text-main); }
.seo-keywords-section p { 
    color: var(--text-muted); 
    max-width: 900px; 
    margin: 0 auto 30px;
    line-height: 1.8;
}


/* ==========================================================================
   5. İLETİŞİM SAYFASI (ILETISIM.HTML) ÖZEL STİLLERİ
   ========================================================================== */

.contact-hero {
    text-align: center;
    padding: 60px 5%;
}

.contact-hero h1 { color: var(--text-main); font-size: 3rem;}
.contact-hero h1 span { color: var(--primary-accent); }

.contact-main-section {
    padding: 40px 5%;
    max-width: 1240px;
    margin: 0 auto;
}

/* İletişim Bilgi Kutucukları */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.info-item {
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.info-item:hover {
    border-color: var(--primary-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--glass-shadow);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-accent);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form ve Harita Flex Yapısı */
.contact-flex {
    display: flex;
    gap: 30px;
}

.contact-form-area, .address-map-area {
    flex: 1;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-form-area h2, .address-map-area h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    color: var(--text-main);
}

.contact-form-area h2::after, .address-map-area h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-accent);
    margin-top: 10px;
    border-radius: 5px;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    /* Girdi alanlarının iç arka planı açık gri/beyaz tonlarında yapıldı */
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e8dede;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: #ffffff;
    box-shadow: 0 0 10px var(--neon-accent);
}

/* Adres ve Harita Detayları */
.address-detail {
    margin-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

.address-detail i {
    color: var(--primary-accent);
    margin-right: 10px;
}

.map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

/* ==========================================================================
   6. RESPONSIVE (MOBİL UYUMLULUK) AYARLARI
   ========================================================================== */

@media (max-width: 1024px) {
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-flex { flex-direction: column; }
}

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 2.8rem; }
    .about-flex { flex-direction: column; }
    .mission-grid { grid-template-columns: 1fr; }
    .about-text { padding: 30px; }
}

@media (max-width: 768px) {
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
    .footer-social { margin: 0 auto; }
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 40px 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-form-area, .address-map-area { padding: 25px; }
    
}
/* --- Tükendi (Stok Yok) Durumu İçin Özel Stiller --- */

/* Tükendi Rozeti (Kırmızı yerine koyu gri) */
.badge-soldout {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4a403e; /* Ana metin rengimizle uyumlu antrasit */
    color: var(--text-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Tükendi Butonu (Tıklanamaz ve soluk) */
.btn-disabled {
    display: block;
    background: #e8dede;
    color: #8c817f;
    border: 1px solid #e8dede;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    cursor: not-allowed; /* Fare ikonunu 'yasak' işaretine çevirir */
    pointer-events: none; /* Tıklanmayı tamamen iptal eder */
}

/* Tükenen ürünün fotoğrafını hafif soluklaştırma efekti */
.img-soldout img {
    opacity: 0.6;
    filter: grayscale(50%); /* Fotoğrafı hafif siyah-beyaz yapar */
}
/* --- PROFESYONEL FOOTER TASARIMI --- */
.pro-footer {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 5% 20px;
    color: var(--text-main);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--primary-accent, #d90429);
    margin-bottom: 20px;
    font-weight: 600;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-top: 15px;
}

.links-col ul {
    list-style: none;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.links-col ul li a:hover {
    color: var(--primary-accent, #d90429);
    padding-left: 5px;
}

.contact-col p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-col p i {
    color: var(--primary-accent, #d90429);
    font-size: 1.2rem;
}

/* Büyük ve Şık Sosyal Medya İkonları */
.big-socials {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px; /* Soft ve modern görünüm için hafif oval */
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.whatsapp { background: #25D366; }
.social-btn.trendyol { background: #F27A1A; }

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.eye-design {
    color: var(--primary-accent, #d90429);
    font-weight: 600;
    text-decoration: none;
}
/* =========================================
   MÜKEMMEL MEGA MENÜ & HOVER TASARIMI
========================================= */
.nav-item-mega { position: relative; }
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px);
    width: 800px; max-width: 90vw;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6); border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); padding: 35px;
    opacity: 0; visibility: hidden; transition: 0.3s ease; z-index: 9999;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px;
}
.nav-item-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col h4 {
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: #2c3e50;
    border-bottom: 2px solid var(--primary-accent, #d90429); display: inline-block;
    padding-bottom: 5px; margin-bottom: 15px; font-weight: 600;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li { margin-bottom: 10px; }
.mega-col ul li a { color: #555; text-decoration: none; font-size: 0.95rem; transition: 0.2s; display: block; }
.mega-col ul li a:hover { color: var(--primary-accent, #d90429); padding-left: 8px; font-weight: 500; }

/* Ürün Kartı Hover Efekti */
.img-container { position: relative; overflow: hidden; }
.img-main { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.img-hover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease; z-index: 2; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-main { opacity: 0; }

/* =========================================
   KUSURSUZ FOOTER TASARIMI (Tüm sayfalarda bozulmayı önler)
========================================= */
.glass-footer { background: rgba(255, 255, 255, 0.8) !important; backdrop-filter: blur(15px) !important; border-top: 1px solid rgba(255, 255, 255, 0.5) !important; padding: 60px 5% 20px !important; margin-top: 50px !important; width: 100% !important; }
.footer-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; gap: 40px !important; max-width: 1240px !important; margin: 0 auto !important; padding-bottom: 30px !important; border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important; }
.footer-col h4 { font-size: 1.1rem !important; color: var(--primary-accent, #d90429) !important; margin-bottom: 20px !important; font-weight: 600 !important; }
.footer-col p { font-size: 0.95rem !important; line-height: 1.6 !important; color: #444 !important; margin-top: 15px !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.footer-col ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-col ul li { margin-bottom: 12px !important; }
.footer-col ul li a { color: #444 !important; text-decoration: none !important; font-size: 0.95rem !important; transition: 0.3s ease !important; }
.footer-col ul li a:hover { color: var(--primary-accent, #d90429) !important; padding-left: 5px !important; }
.footer-col p i { color: var(--primary-accent, #d90429) !important; font-size: 1.1rem !important; width: 20px !important; text-align: center !important; margin-right: 0 !important; }
.footer-bottom-pro { display: flex !important; justify-content: space-between !important; align-items: center !important; flex-wrap: wrap !important; gap: 10px !important; max-width: 1240px !important; margin: 0 auto !important; padding-top: 20px !important; }
/* =========================================
   SABİT (STICKY) WHATSAPP BUTONU
========================================= */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sticky-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    color: white;
}
/* =========================================
   KUSURSUZ MOBİL OPTİMİZASYON (SON SÜRÜM)
========================================= */
html, body { overflow-x: hidden; width: 100%; }

.menu-toggle { display: none; font-size: 1.6rem; color: var(--primary-accent, #d90429); cursor: pointer; z-index: 999999 !important; position: relative; }

@media (max-width: 900px) {
    /* --- NAVBAR VE MENÜ DÜZENİ --- */
    .menu-toggle { display: block; }
    .glass-navbar { padding: 10px 0; overflow: visible !important; } 
    .nav-container { padding: 0 5%; width: 100%; display: flex; justify-content: space-between; align-items: center; }
    .logo { font-size: 1.5rem; z-index: 1000; position: relative; }
    
    /* Sağdan Kayarak Gelen Menü */
    .nav-links {
        display: flex !important; 
        position: fixed !important; top: 0; right: -120%; 
        width: 280px; max-width: 80vw; height: 100vh; height: 100dvh; 
        background: rgba(255, 255, 255, 0.98) !important; backdrop-filter: blur(20px);
        flex-direction: column; align-items: flex-start; padding: 80px 20px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; 
        box-shadow: -10px 0 20px rgba(0,0,0,0.2);
        overflow-y: auto; 
        z-index: 99998 !important; 
    }
    
    .nav-links.active { right: 0 !important; }
    
    .nav-links li { width: 100%; margin-bottom: 12px; }
    .nav-links li a { display: block; width: 100%; font-size: 1.05rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; color: #333; }
    
    /* Mobil Mega Menü (Aşağı Doğru Açılan Akordiyon) */
    .nav-item-mega { width: 100%; display: flex; flex-direction: column; }
    
    .nav-item-mega .mega-menu { 
        display: none !important; 
        position: relative !important; 
        top: 0 !important; 
        left: 0 !important; 
        right: auto !important;
        transform: none !important; 
        width: 100% !important; 
        box-shadow: none !important; 
        padding: 10px 0 10px 15px !important; 
        border: none !important; 
        background: transparent !important; 
        opacity: 1 !important; 
        visibility: visible !important; 
    }
    
    .nav-item-mega.active-mobile .mega-menu { display: block !important; } 
    
    .mega-col { margin-bottom: 15px; width: 100%; }
    .mega-col h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--primary-accent, #d90429); border: none; }
    .mega-col ul li a { font-size: 0.9rem; padding: 5px 0; border: none; color: #666; }
    
    /* Genel Boşluk Küçültmeleri */
    .hero-section { padding: 80px 5% 40px; }
    .hero-section h1, .contact-hero h1, .about-header h1 { font-size: 1.8rem !important; }
    .shop-header { padding: 90px 5% 20px !important; }
    
    /* Footer Merkezleme */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 20px !important; }
    .footer-col p { justify-content: center !important; text-align: center; }
    .big-socials { justify-content: center !important; }
}

@media (max-width: 600px) {
    /* --- E-TİCARET TELEFON GÖRÜNÜMÜ --- */
    
    /* 1. Ürün Kartları: Yanyana 2'li Izgara ve Sınırlandırma */
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; padding: 0 10px !important; } 
    .product-card { border-radius: 10px; }
    .img-container { height: 160px; } 
    .product-info { padding: 10px; }
    .product-info h3 { 
        font-size: 0.8rem; margin-bottom: 5px; height: 36px; 
        overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; 
    }
    .price-box { margin-bottom: 10px; }
    .price-new { font-size: 0.95rem; }
    .price-old { font-size: 0.75rem; }
    .btn-trendyol, .btn-disabled { padding: 8px; font-size: 0.75rem; border-radius: 6px; }

    /* 2. Kategoriler (Hap Butonlar): Taşmayan Kaydırma */
    .category-pills, .sub-category-pills { 
        display: flex !important; flex-wrap: nowrap !important; overflow-x: auto; 
        justify-content: flex-start; padding: 5px 15px 15px; width: 100%;
        -webkit-overflow-scrolling: touch; scrollbar-width: none; 
    }
    .category-pills::-webkit-scrollbar, .sub-category-pills::-webkit-scrollbar { display: none; } 
    .pill, .sub-pill { flex: 0 0 auto; font-size: 0.8rem; padding: 6px 14px; margin-right: 8px; }
    .sub-category-pills { display: none !important; } 
    .sub-category-pills.active { display: flex !important; }

    /* 3. Hakkımızda & İletişim Kartları Daraltması */
    .story-section { padding: 25px 15px; border-radius: 15px; }
    .story-content h2 { font-size: 1.5rem; }
    .story-image { height: 200px; }
    .contact-card, .vm-card { padding: 30px 20px; }
    .contact-card i, .vm-card i { font-size: 2.5rem; }

    /* 4. Sabit WhatsApp Butonunu Ekrana Uydurma */
    .sticky-whatsapp { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
}
/* Vitrin fiyat düzeni */
.price-box { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    margin-top: 10px; 
}
.price-old { 
    text-decoration: line-through; /* İşte sihirli kod bu */
    color: #95a5a6; 
    font-size: 0.85rem; 
}
.price-new { 
    color: var(--primary-accent); 
    font-weight: 600; 
    font-size: 1.1rem; 
}
@media (max-width: 768px) {
    /* Menü ikonu mobilde görünsün */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--text-main, #333);
    }

    /* Linkler başlangıçta gizli ve yukarı kaymış olsun */
    .nav-links {
        position: absolute;
        top: 100%; /* Navbar'ın hemen altına iner */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        
        /* Animasyon için kapalı durumu */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* JS 'active' sınıfını eklediğinde menü açılsın */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    /* Mobilde Mega Menü düzgün görünsün diye */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none; /* Mobilde alt alta çok yer kaplamaması için başlangıçta gizlenebilir */
    }
    
    .nav-item-mega:hover .mega-menu {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
}