/* =========================================
   1. DEĞİŞKENLER & TEMEL AYARLAR
   ========================================= */
:root {
    --eucerin-blue: #002e67;
    --eucerin-red: #e2001a;
    --gold: #c29355;
    --text-dark: #333;
    --bg-light: #f8f9fa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   2. HEADER & NAV (ASTA LOGO)
   ========================================= */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 8%; 
    background: #fff; 
    border-bottom: 1px solid #eee;
}

.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-asta { color: var(--gold); margin-right: 1px; }
.logo a:hover { transform: scale(1.1); color: inherit; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--eucerin-blue); font-size: 14px; font-weight: 700; }

/* =========================================
   3. ANA SAYFA HERO & GRID ALANI
   ========================================= */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    padding-left: 10%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0)), url('img/kadın.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-text { max-width: 500px; }
.hero-text span { color: var(--eucerin-red); font-weight: bold; font-size: 14px; }
.hero-text h1 { font-size: 48px; color: var(--eucerin-blue); margin: 10px 0; }

/* Ürün Grid Yapısı */
.concerns { padding: 60px 8%; text-align: center; }
/* Masaüstünde 4 ürün yan yana sığsın ve simetrik dursun */
.grid-container { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* BURASI 4 OLDU */
    gap: 20px; 
}
.grid-item { background: white; padding: 20px; border: 1px solid #eee; transition: 0.3s; text-align: center; }
.grid-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* --- YENİ EKLENEN TASARIM KODLARI --- */

/* =========================================
   KEŞFET BUTONLARI (KESİN ÇÖZÜM)
   ========================================= */

.btn-discover {
    display: inline-block !important;       /* Kutu özelliği kazandır */
    padding: 14px 40px !important;          /* Hero butonuyla aynı dolgunluk */
    background-color: var(--eucerin-blue) !important; /* Kurumsal Mavi */
    color: #ffffff !important;              /* Yazı Rengi: BEYAZ */
    text-decoration: none !important;       /* Alt çizgiyi kaldır */
    font-weight: 700 !important;            /* Kalın yazı */
    font-size: 13px !important;             /* Okunabilir boyut */
    text-transform: uppercase !important;   /* BÜYÜK HARF (KEŞFET >) */
    letter-spacing: 1px;
    border-radius: 50px !important;         /* Tam oval kenarlar */
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 46, 103, 0.2); /* Hafif gölge */
    transition: all 0.3s ease;              /* Yumuşak geçiş */
    border: none;
    line-height: 1;                         /* Yazıyı dikey ortala */
}

/* Mouse ile üzerine gelince (Hover) */
.btn-discover:hover {
    background-color: #003d8a !important;   /* Rengi hafif aç */
    transform: translateY(-3px) scale(1.05); /* Hafif yukarı ve büyüme */
    box-shadow: 0 8px 25px rgba(0, 46, 103, 0.3);
    color: #ffffff !important;
}

/* --- GÜNCELLENMİŞ MARKA DEĞERLERİ (YAN YANA GARANTİLİ) --- */

.brand-values-section {
    background-color: #fcfcfc; /* Arka plan rengi (Görseldeki gibi hafif gri/beyaz) */
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

/* Yan yana dizilimi sağlayan kilit nokta burası */
.brand-values-wrapper {
    display: flex;           /* Yan yana diz */
    justify-content: space-between; /* Aralarına eşit boşluk koy */
    gap: 30px;              /* Kartlar birbirine yapışmasın */
    align-items: stretch;   /* Kutuların boylarını eşitle */
}

/* Kart Tasarımı */
.brand-value-card {
    background: #fff;
    flex: 1;                /* Mevcut alanı eşit paylaşsınlar */
    text-align: center;     /* Yazıları ortala */
    padding: 40px 25px;
    border: 1px solid #f0f0f0; /* Çok ince gri çerçeve (Görseldeki gibi) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Kartın üzerine gelince hafif efekt */
.brand-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* İkon Kutusu (Koyu Mavi Kare) */
.bv-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--eucerin-blue); /* Senin ana rengin */
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px; /* Ortala ve altından boşluk bırak */
    border-radius: 2px; /* Keskin köşeler (Görseldeki gibi) */
}

.brand-value-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.brand-value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* =========================================
   3. İLETİŞİM & MAĞAZA KARTLARI (Yarı Saydam)
   ========================================= */
/* =========================================
   İLETİŞİM BAŞLIĞI KONUM DÜZENLEMESİ
   ========================================= */
.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #bfa37e;
    text-align: center;
    
    /* BAŞLIĞI AŞAĞI KAYDIRAN KRİTİK AYARLAR */
    margin-top: 80px;    /* Logodan aşağıya doğru boşluk bırakır */
    margin-bottom: 50px; /* Kartlarla arasındaki mesafeyi korur */
    
    letter-spacing: 5px;
    text-transform: uppercase;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Kart boylarını eşitler */
    gap: 40px;
    padding: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9); /* Yarı saydam beyaz */
    backdrop-filter: blur(10px); /* Modern cam efekti */
    padding: 45px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

/* =========================================
   4. BUTONLAR (WP İLE AYNI BOYUT & EFEKTLİ)
   ========================================= */
.m-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* WP butonu gibi tam genişlik */
    gap: 15px;
    padding: 16px 25px; /* Büyük ve dolgun boyut */
    margin-top: 15px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease; /* Büyüme efekti için */
}

/* Mouse ile üzerine gelince Büyüme Efekti */
.m-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 1. TÜM İKONLARIN ORTAK AYARLARI (Beyazlık kodu burada YOK) */
.btn-icon {
    height: 22px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* 2. SADECE MAĞAZA İKONLARINI BEYAZLATAN KOD */
/* WhatsApp butonu (.wa-btn) haricindeki tüm butonların içindeki ikonları hedefler */
.t-yol .btn-icon, 
.h-burada .btn-icon, 
.a-zon .btn-icon {
    filter: brightness(0) invert(1); /* Sadece bu üçü beyaz olacak */
}

/* 3. WHATSAPP İKONU İÇİN ÖZEL AYAR (İsteğe bağlı) */
/* Eğer WP logosu çok büyük veya küçük durursa buradan sadece onu yönetebilirsin */
.wa-btn .btn-icon {
    filter: none; /* Hiçbir filtre uygulama, orijinal renkleri kalsın */
    height: 24px; /* WP logosunu bir tık daha belirgin yapmak için boyutuyla oynayabilirsin */
}


/* --- ANA SAYFA BUTONLARI & BÜYÜME EFEKTİ --- */

/* Hero ve Grid Butonlarının Ortak Temeli */
.btn-main, .btn-discover {
    display: inline-block;
    background-color: var(--eucerin-blue); /* Kurumsal mavi */
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px; /* Modern oval tasarım */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Yumuşak geçiş */
    text-align: center;
}

/* Ana Hero Butonu (Büyük) */
.btn-main {
    padding: 14px 40px;
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 46, 103, 0.2);
}


/* MOUSE ÜZERİNE GELDİĞİNDE BÜYÜME EFEKTİ */
.btn-main:hover {
    transform: scale(1.08); /* İstediğin %8 büyüme efekti */
    background-color: #003d8a; /* Üzerine gelince rengi hafif açılır */
    box-shadow: 0 6px 20px rgba(0, 46, 103, 0.3);
}

/* İkon Boyutunu Sabitleyen Kritik Kod (Dev Logo Engelleyici) */
.m-btn img, .btn-icon, .wa-icon {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    flex-shrink: 0;
}
/* Nabız (Pulse) Efektleri (WP'deki gibi ara sıra çıkan efekt) */
.wa-btn { background: #25D366; animation: pulse-gen 3s infinite; }
.t-yol { background: #f27a1a; animation: pulse-gen 3s infinite; }
.h-burada { background: #ff6000; animation: pulse-gen 3s infinite; }
.a-zon { background: #232f3e; animation: pulse-gen 3s infinite; }

@keyframes pulse-gen {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* Marka Renkleri */
.wa-btn { background: #25D366; animation: wa-pulse 3s infinite; }
.t-yol { background: #f27a1a; }
.h-burada { background: #ff6000; }
.a-zon { background: #232f3e; }

/* =========================================
   6. MODAL & ANİMASYONLAR
   ========================================= */
.modal-overlay { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); }
.modal-content { background: #fff; margin: 10% auto; padding: 40px; width: 90%; max-width: 500px; text-align: center; position: relative; }

@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); } }

/* =========================================
   MOBİL (TELEFON) VE MODAL FİNAL DÜZENİ
   ========================================= */

@media (max-width: 768px) {
    /* 1. SIDEBAR'I KESİN GİZLE */
    .sidebar { display: none !important; }

    /* 2. TRENDYOL TEMALI ÜRÜN GRİDİ */
    .products-container { display: block !important; padding: 10px 4% !important; }
    .products-grid { width: 100% !important; }
    .grid-wrapper { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    
    .grid-item { padding: 10px !important; border-radius: 8px !important; }
    .product-img { height: 160px !important; margin-bottom: 10px !important; }
    .product-title { font-size: 13px !important; height: 34px !important; margin-bottom: 5px !important; }
    .price-box { font-size: 16px !important; }

    /* 3. TRENDYOL TARZI ÜST FİLTRE BARI */
    .mobile-filter-wrapper {
        display: block !important;
        position: sticky;
        top: 0;
        z-index: 9999;
        background: #fff;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    .mobile-filter-bar { display: flex; gap: 8px; overflow-x: auto; padding: 0 10px; }
    .mf-btn {
        flex: 1; white-space: nowrap; padding: 10px 15px; background: #fff;
        border: 1px solid #ddd; border-radius: 50px; font-size: 12px;
        font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 5px;
    }

    /* 4. MERKEZİ VE ŞIK MODAL TASARIMI */
    .filter-modal {
        display: none; position: fixed; z-index: 10000;
        left: 0; top: 0; width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    }

    .modal-content {
        background-color: #fff;
        position: fixed;
        top: 50%; left: 50%; /* TAM ORTALA */
        transform: translate(-50%, -50%);
        width: 90%; max-width: 380px;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        max-height: 80vh;
        display: flex; flex-direction: column;
        animation: modalScale 0.3s ease-out;
    }

    @keyframes modalScale { from { opacity: 0; transform: translate(-50%, -45%) scale(0.9); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

    .modal-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; font-weight: bold; font-size: 18px; }
    .close-btn { font-size: 28px; cursor: pointer; line-height: 1; padding: 5px; }

    /* YAZILARIN İÇ İÇE GİRMESİNİ ENGELLEYEN BODY */
    .modal-body {
        padding: 10px 20px;
        overflow-y: auto !important; /* KAYDIRMA AKTİF */
        flex-grow: 1;
    }

    /* Modal içindeki seçenekleri alt alta ve şık yap */
    .modal-body .radio-container, 
    .modal-body .check-container {
        display: flex !important;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #f5f5f5;
        width: 100% !important;
        font-size: 15px;
        color: #333;
        margin-bottom: 0 !important;
    }

    /* Radio ve Checkbox ikonlarını sağa yasla veya hizala */
    .modal-body .radio-checkmark, 
    .modal-body .checkmark { top: 15px !important; }

    .modal-footer { padding: 20px; border-top: 1px solid #eee; display: flex; gap: 12px; }
    .btn-clear { flex: 1; padding: 14px; background: #f5f5f5; border: none; border-radius: 8px; font-weight: 600; font-size: 14px; }
    .btn-apply { flex: 1; padding: 14px; background: var(--eucerin-blue) !important; color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: 14px; }
}

/* Mobil Uyum (Telefonda tam genişlik yerine şık dursun) */
@media (max-width: 768px) {
    .btn-discover {
        width: auto;       /* İçeriğe göre genişle */
        padding: 12px 30px !important; /* Mobilde tık daha küçük */
        font-size: 12px !important;
    }
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .btn-main {
        padding: 12px 30px;
        font-size: 13px;
    }
}
/* --- TELEFON UYUMU (2026-01-23) İLETİŞİM BÖLÜMÜ İÇİN --- */
@media (max-width: 768px) {
    .contact-grid { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; padding: 25px; }
    .page-title { font-size: 32px; }
}

/* --- MOBİL MENÜ DÜZELTME (ANA SAYFA & BİZE ULAŞIN) --- */
@media (max-width: 768px) {
    /* Menü listesinin genel yerleşimi */
    .nav-links {
        display: flex;
        justify-content: center; /* Merkeze hizalar */
        gap: 8px; /* Linkler arasındaki boşluğu daraltır */
        padding: 10px 0;
    }

    /* Menü linklerinin yazı ayarları */
    .nav-links li a {
        font-size: 11px !important; /* Yazıyı sığacak kadar küçültür */
        white-space: nowrap; /* Kelimelerin alt alta düşmesini KESİNLİKLE engeller */
        letter-spacing: 0px; /* Harf aralığını daraltarak yer kazandırır */
        font-weight: 700;
    }
}

/* --- MOBİL UYUMLULUK (TELEFON İÇİN) --- */
@media (max-width: 768px) {
    .page-title {
        margin-top: 40px; /* Telefondaki kısıtlı alanda ideal yükseklik */
        font-size: 28px;  /* Başlığın ekrana sığması için boyut ayarı */
        margin-bottom: 30px;
    }
}

/* --- TELEFON UYUMLULUĞU (MOBİL) --- */
/* Ekran 768px'den küçükse (Telefon) devreye girer */
@media (max-width: 768px) {
    .brand-values-wrapper {
        flex-direction: column; /* Yan yana yerine alt alta diz */
        gap: 20px;
    }
    
    .brand-values-section {
        padding: 40px 5%; /* Mobilde kenar boşluklarını ayarla */
    }
}


/* --- KATEGORİ LİSTESİ VE KAYDIRMA AYARLARI --- */
.filter-list {
    max-height: 400px; /* Listenin kaplayacağı maksimum yükseklik */
    overflow-y: auto;  /* Yükseklik aşılırsa kaydırma çubuğu çıkar */
    padding-right: 10px; /* Kaydırma çubuğu ile metin arası boşluk */
}

/* ÖZEL KAYDIRMA ÇUBUĞU TASARIMI (Chrome, Safari, Edge) */
.filter-list::-webkit-scrollbar {
    width: 6px; /* Çubuk genişliği */
}

.filter-list::-webkit-scrollbar-track {
    background: #f1f1f1; /* Çubuğun arkasındaki kanalın rengi */
    border-radius: 10px;
}

.filter-list::-webkit-scrollbar-thumb {
    background: #c29355; /* ASTA Gold rengi (Çubuğun kendisi) */
    border-radius: 10px;
}

.filter-list::-webkit-scrollbar-thumb:hover {
    background: #a37b46; /* Üzerine gelince biraz koyulaşır */
}

/* --- CHECKBOX TASARIMI --- */
.check-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    color: #4a4a4a;
    transition: 0.2s;
    user-select: none;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
}

.check-container:hover input ~ .checkmark { background-color: #f5f5f5; }
.check-container input:checked ~ .checkmark { background-color: var(--eucerin-blue); border-color: var(--eucerin-blue); }

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-container input:checked ~ .checkmark:after { display: block; }

/* Checkbox Tasarımı */
.check-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: 0.2s;
}

.check-container:hover { color: var(--gold); }

/* =========================================
   4. ÜRÜNLER SAYFASI - MASAÜSTÜ (PC) AYARLARI
   ========================================= */

/* Ana Kapsayıcı: Yan Yana Dizilim */
.products-container {
    display: flex !important;
    padding: 40px 8%;
    gap: 30px;
    background-color: #fcfcfc;
    align-items: flex-start; /* Sidebar yukarıda kalsın */
}

/* Sol Menü (Sidebar) Tasarımı */
.sidebar {
    width: 270px;
    flex-shrink: 0; /* Küçülmesini engelle */
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 20px;
    display: block;
}

/* Kategori Başlıkları */
.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--eucerin-blue);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
    display: block;
}

/* Arama Kutusu */
.filter-search input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Liste Kaydırma Ayarları (Masaüstü) */
.filter-list {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}
/* Scrollbar Tasarımı */
.filter-list::-webkit-scrollbar { width: 6px; }
.filter-list::-webkit-scrollbar-track { background: #f1f1f1; }
.filter-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Sağ Taraf: Ürünler Grid */
.products-grid { flex: 1; }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--eucerin-blue);
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC'de 3'lü */
    gap: 25px;
}

/* Ürün Kartı */
.grid-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}
.grid-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

.product-img {
    height: 220px; /* Resimlerin boyunu sabitle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.product-img img { max-height: 100%; object-fit: contain; }

/* --- Checkbox ve Radio (Masaüstü) --- */
.check-container, .radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    user-select: none;
}
.check-container input, .radio-container input {
    position: absolute; opacity: 0; cursor: pointer;
}
.checkmark, .radio-checkmark {
    position: absolute; top: 0; left: 0;
    height: 18px; width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px; /* Checkbox kare */
}
.radio-checkmark { border-radius: 50%; /* Radio yuvarlak */ }

.check-container:hover input ~ .checkmark { background-color: #f9f9f9; }
.check-container input:checked ~ .checkmark { background-color: var(--eucerin-blue); border-color: var(--eucerin-blue); }
.radio-container input:checked ~ .radio-checkmark { background-color: var(--eucerin-blue); border-color: var(--eucerin-blue); }

/* Tik İşareti */
.checkmark:after {
    content: ""; position: absolute; display: none;
    left: 6px; top: 2px; width: 4px; height: 8px;
    border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.check-container input:checked ~ .checkmark:after { display: block; }


/* =========================================
   5. MOBİL (TELEFON) NİHAİ DÜZENLEME
   ========================================= */

/* Varsayılan: Mobil elemanları gizle */
.mobile-filter-wrapper, .filter-modal { display: none; }

@media (max-width: 768px) {
    
    /* 1. MASAÜSTÜ SIDEBAR'I YOK ET */
    .sidebar { display: none !important; }

    /* 2. ANA DÜZENİ TEK SÜTUNA ÇEVİR */
    .products-container {
        display: block !important;
        padding: 15px 10px !important;
    }

    /* 3. MOBİL FİLTRE BARI (Yapışkan) */
    .mobile-filter-wrapper {
        display: block !important;
        position: sticky;
        top: 0;
        z-index: 999;
        background: #fff;
        padding: 10px 5px;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }

    .mobile-filter-bar {
        display: flex;
        gap: 10px;
        overflow-x: auto;
    }

    .mf-btn {
        flex: 0 0 auto;
        padding: 8px 16px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        display: flex; align-items: center; gap: 6px;
    }
    .mf-btn i { color: var(--eucerin-blue); }

    /* 4. ÜRÜN GRİDİ (MOBİLDE 2'Lİ) */
    .products-grid { width: 100% !important; }
    
    .grid-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .grid-item { padding: 10px !important; }
    
    .product-img { height: 160px !important; }
    
    .product-title { 
        font-size: 13px !important; 
        height: 36px !important; 
        overflow: hidden; 
    }

    /* 5. MODAL (PENCERE) DÜZENİ - ORTALAMA VE YAZI AYARI */
    .filter-modal {
        display: none; /* JS ile açılır */
        position: fixed;
        z-index: 10000;
        left: 0; top: 0; width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.6);
        backdrop-filter: blur(3px);
    }

    .modal-content {
        background-color: #fff;
        position: fixed;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%); /* TAM MERKEZLEME */
        width: 90%; 
        max-width: 360px;
        max-height: 85vh; /* Ekranın %85'i */
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        display: flex; flex-direction: column;
    }

    .modal-header {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex; justify-content: space-between; align-items: center;
        font-weight: bold; font-size: 16px;
    }
    
    .close-btn { font-size: 24px; padding: 5px; cursor: pointer; }

    /* İÇERİK ALANI */
    .modal-body {
        padding: 15px 20px; /* Kenarlardan boşluk bırak */
        overflow-y: auto; 
        flex: 1; 
    }

    /* --- YAZI KESİLMESİNİ VE KAYMAYI ENGELLEYEN KOD --- */
    /* Bu kısım gönderdiğin ekran görüntüsündeki hatayı çözer */
    .modal-body label {
        display: flex !important; /* Esnek kutu */
        align-items: center;      /* Dikey ortala */
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f9f9f9;
        font-size: 14px;
        color: #333;
        position: relative;
        padding-left: 35px !important; /* Soldan ikon için yer aç */
    }

    /* İkonları (Kare ve Yuvarlak) Sabitleme */
    .modal-body .checkmark, 
    .modal-body .radio-checkmark {
        left: 0 !important; /* En sola yapıştır */
        top: 50% !important; /* Dikey ortala */
        transform: translateY(-50%); /* Tam ortaya hizala */
        position: absolute;
    }
    
    .modal-body input { display: none; /* Inputu gizle, checkmark yeterli */ }

    .modal-footer {
        padding: 15px;
        border-top: 1px solid #eee;
        display: flex; gap: 10px;
        background: #fff;
        border-radius: 0 0 12px 12px;
    }

    .btn-clear { flex: 1; padding: 12px; background: #f5f5f5; border: none; border-radius: 8px; font-weight: 600; }
    .btn-apply { flex: 1; padding: 12px; background: var(--eucerin-blue) !important; color: #fff; border: none; border-radius: 8px; font-weight: 700; }
}

/* =========================================
   7. TELEFON EKRANI TAŞMA & MENÜ DÜZELTME (FİNAL)
   ========================================= */

/* 1. SAĞA SOLA KAYMAYI KÖKTEN ENGELLE */
html, body {
    overflow-x: hidden !important; /* Yatay kaydırmayı kilitler */
    width: 100% !important;
    position: relative;
}

/* 2. LOGO VE MENÜYÜ EKRANA SIĞDIR */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column !important; /* Alt alta diz */
        padding: 15px 10px !important; /* Boşlukları daralt */
        height: auto !important;
    }

    .logo a {
        font-size: 24px !important; /* Logoyu biraz küçült */
        letter-spacing: 2px !important;
        margin-bottom: 10px !important; /* Menüyle arasını aç */
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important; /* Linkler sığmazsa alt satıra geçsin */
        justify-content: center !important;
        gap: 15px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .nav-links li a {
        font-size: 12px !important; /* Yazı boyutu ideal */
        white-space: normal !important; /* Zorlarsa alt satıra geçsin */
    }

    /* 3. MOBİL FİLTRE BARINI SABİTLE VE DARALT */
    .mobile-filter-wrapper {
        width: 100vw !important; /* Ekran genişliği kadar */
        box-sizing: border-box !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 10px 5px !important;
    }
    
    /* 4. MODAL İÇİNDEKİ YAZI VE KUTUCUKLARI HİZALA (TÜM PENCERELER İÇİN) */
    /* Kategoriler, Sıralama, Cilt Tipi hepsi için geçerlidir */
    .modal-body label,
    .modal-body .radio-container,
    .modal-body .check-container {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        padding: 12px 0 12px 35px !important; /* Soldan 35px boşluk bırak (ikon için) */
        margin: 0 !important;
        border-bottom: 1px solid #f9f9f9 !important;
        font-size: 14px !important;
        color: #333 !important;
        position: relative !important;
        min-height: 44px;
        box-sizing: border-box !important;
    }

    /* İkonları (Yuvarlak ve Kare) Sol Tarafa Çivile */
    .modal-body .checkmark, 
    .modal-body .radio-checkmark {
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: absolute !important;
        margin: 0 !important;
    }
}

/* =========================================
   8. ANA SAYFA KARTLARI - MOBİL SİMETRİ VE BOYUT (FİNAL)
   ========================================= */

@media (max-width: 768px) {
    /* Bölüm Kapsayıcısı */
    .concerns {
        padding: 20px 10px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    /* KARTLARI 2 SÜTUN YAP (2x2 GÖRÜNÜM) */
    .concerns .grid-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 Yan yana */
        gap: 12px !important; /* Aralarındaki boşluk */
        width: 100% !important;
        margin: 0 !important;
    }

    /* KART KUTUSU AYARI */
    .concerns .grid-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 12px !important;
        height: 100% !important; /* Kart boylarını eşitle */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* RESİMLERİ KESİN OLARAK AYNI BOYUTA GETİR */
    /* Bu kısım 4. resmin farklı durmasını engeller */
    .concerns .card-image {
        width: 100% !important;
        height: 130px !important; /* Sabit yükseklik (Kareye yakın) */
        margin-bottom: 10px !important;
        overflow: hidden !important;
        border-radius: 4px;
    }

    .concerns .card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Resmi kutuya kırparak sığdır (Ezilmez) */
        display: block !important;
    }

    /* Yazı Boyutlarını İdeal Hale Getir */
    .concerns h3 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
        line-height: 1.3;
        min-height: 36px; /* Başlıklar için yer ayır (Hizayı bozmasın) */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .concerns .sub-text {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    
    /* Butonu Küçült ve Hizala */
    .concerns .btn-discover {
        padding: 8px 0 !important;
        width: 100% !important; /* Buton tam genişlik olsun */
        font-size: 11px !important;
        margin-top: auto !important; /* Butonu en alta it */
    }
}
/* =========================================
   9. YENİ HARİTA VE İLETİŞİM KARTI (FİNAL TASARIM)
   ========================================= */

.map-section-wrapper {
    max-width: 1200px;
    margin: 40px auto; /* Kartlar arası boşluk */
    padding: 0 20px;
}

.map-contact-card {
    display: flex; /* Yan yana düzen */
    background: #fff;
    border-radius: 12px;
    overflow: hidden; /* Köşelerin harita tarafından kesilmemesi için */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Hafif gölge */
    border: 1px solid #eee;
    min-height: 450px; /* Kartın yüksekliği */
}

/* --- SOL TARAFA (BİLGİLER) --- */
.info-side {
    flex: 1; /* Alanın yarısını kapla */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--eucerin-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

/* İkon Kutusu (SVG UYUMLU) */
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #eff2f7; /* Açık Mavi Arka Plan */
    color: var(--eucerin-blue); /* İkon Rengi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

/* İçindeki SVG çiziminin ayarları */
.icon-circle svg {
    width: 20px;       /* İkon genişliği */
    height: 20px;      /* İkon yüksekliği */
    fill: currentColor; /* Üstteki 'color' rengini (Mavi) alır */
}

/* Hover Efekti */
.contact-row:hover .icon-circle {
    background-color: var(--eucerin-blue);
    color: #fff; /* İkon beyaza döner */
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-text .value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    margin-top: 2px;
}

.hours-box {
    background: #fcfcfc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 10px;
}

.hours-title {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.hours-box ul { list-style: none; padding: 0; }
.hours-box li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
    border-bottom: 1px dotted #eee;
    padding-bottom: 3px;
}
.hours-box li:last-child { border: none; margin: 0; }

/* --- SAĞ TARAFA (HARİTA) --- */
.map-side {
    flex: 1.2; /* Harita biraz daha geniş olsun */
    background: #eee;
    position: relative;
}

.map-side iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* =========================================
   MOBİL UYUMLULUK (TELEFON İÇİN)
   ========================================= */

@media (max-width: 768px) {
    .map-contact-card {
        flex-direction: column; /* Mobilde alt alta diz */
        min-height: auto;
    }

    .info-side {
        padding: 30px 20px;
        order: 1; /* Bilgiler üstte olsun */
    }

    .map-side {
        height: 300px; /* Mobilde harita yüksekliği */
        order: 2; /* Harita altta olsun */
    }

    .map-title { font-size: 26px; }
    
    .contact-row { margin-bottom: 20px; }
}

/* =========================================
   10. HAKKIMIZDA SAYFASI TASARIMI (FİNAL)
   ========================================= */

/* A. HERO BÖLÜMÜ */
.about-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #fff;
}
.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* B. HİKAYEMİZ (FOTOĞRAFSIZ & ORTALI) */
.story-section {
    padding: 40px 20px 60px;
    background-color: #fff;
}
.story-content {
    max-width: 800px; /* Okuma kolaylığı için genişliği sınırla */
    margin: 0 auto;   /* Tam ortala */
    text-align: center;
}
.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--eucerin-blue);
    margin-bottom: 25px;
}
.story-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* C. MİSYON & VİZYON (2 KART YAN YANA) */
.mission-vision-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}
.mv-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.mv-card {
    background: #fff;
    flex: 1; /* Eşit genişlik */
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--eucerin-blue); /* Üstte şık bir çizgi */
}
.mv-card:hover { transform: translateY(-5px); }

.mv-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--eucerin-blue);
    border-radius: 4px; /* Hafif oval kare */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.mv-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}
.mv-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* D. İSTATİSTİKLER (KOYU MAVİ ARKA PLAN) */
.stats-section {
    background-color: var(--eucerin-blue); /* Koyu Mavi Zemin */
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}
.stats-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 50px;
    color: #fff;
}
.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around; /* Eşit aralık */
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    flex: 1;
    min-width: 200px;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold); /* Altın rengi rakamlar */
    margin-bottom: 10px;
}
.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* E. MOBİL UYUMLULUK (HAKKIMIZDA İÇİN) */
@media (max-width: 768px) {
    .mv-container {
        flex-direction: column; /* Kartları alt alta diz */
    }
    .stats-grid {
        flex-direction: column; /* İstatistikleri alt alta diz */
    }
    .stat-item { margin-bottom: 30px; }
    .page-title { font-size: 32px; }
    .story-content h2 { font-size: 26px; }
}

/* =========================================
   11. PREMIUM FOOTER TASARIMI (FİNAL)
   ========================================= */

.site-footer {
    background-color: #0b1c31; /* Görseldeki gibi çok koyu lacivert */
    color: #b0b8c6;            /* Göz yormayan gri-beyaz yazı rengi */
    padding: 70px 0 30px;
    font-size: 14px;
    margin-top: 60px;          /* İçerikle footer arasına boşluk */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Footer Sütunları */
.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Başlıklar */
.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 1. Sütun: Marka Açıklaması */
.footer-desc {
    line-height: 1.8;
    max-width: 300px;
}

/* 2. Sütun: Hızlı Erişim Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #b0b8c6;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold); /* Üzerine gelince Altın rengi olsun */
    transform: translateX(5px); /* Hafif sağa kaysın */
}

/* 3. Sütun: İletişim Bilgileri */
.contact-list {
    list-style: none;
    padding: 0;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #b0b8c6;
}

/* İkon Ayarları (SVG) */
.footer-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold); /* İkonlar Altın Rengi */
    margin-top: 3px;
}

/* Sosyal Medya (Instagram) */
.social-links {
    margin-top: 25px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: 0.3s;
}
.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.social-icon:hover {
    background: var(--eucerin-blue);
    transform: translateY(-3px);
}

/* Alt Telif Hakkı Çizgisi */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .site-footer { text-align: center; }
    .footer-container { flex-direction: column; gap: 40px; }
    .footer-col { min-width: 100%; }
    .contact-list li { justify-content: center; }
    .footer-desc { margin: 0 auto; }
}