
        :root {
            --font-primary: 'Inter', sans-serif;
            --color-text-dark: #1a1a1a;
            --color-text-light: #ffffff;
            --color-background-light: #ffffff;
            --color-background-gray: #f0f0f0;
            --color-dark-gray: #333333;
            --color-accent-yellow: #fcee0a;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-text-dark);
            background-color: var(--color-background-light);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        a { text-decoration: none; }
        .container { max-width: 1400px; margin: 30px auto; padding: 0 20px; }

        /* --- HEADER (Basitleştirilmiş) --- */
        .simple-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 50px;
            border-bottom: 1px solid #eee;
        }
        .simple-header .logo { font-size: 2rem; font-weight: bold; letter-spacing: -1px; color: var(--color-text-dark); }
        .simple-header nav a { margin: 0 15px; color: var(--color-text-dark); font-weight: 600; }
        .simple-header .icons { display: flex; align-items: center; }
        .simple-header .icons a { margin-left: 20px; font-size: 1.2rem; color: var(--color-text-dark); position: relative; }
        .simple-header .icons .cart-count {
            position: absolute; top: -8px; right: -12px;
            background-color: red; color: white;
            border-radius: 50%; width: 18px; height: 18px;
            font-size: 11px; font-weight: bold;
            display: flex; justify-content: center; align-items: center;
        }

        /* --- HERO (MANŞET) BÖLÜMÜ --- */
        .hero-section {
            height: 85vh;
            background-size: cover;
            background-position: center;
            position: relative;
            color: var(--color-text-light);
            display: flex;
            align-items: center;
            padding-left: 10%;
        }
        .hero-section::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
        }
        .hero-content { position: relative; z-index: 2; max-width: 550px; }
        .hero-subtitle { font-size: 1rem; font-weight: 500; }
        .hero-title { font-size: 4.5rem; font-weight: 800; color: var(--color-accent-yellow); margin: 0.5rem 0; line-height: 1.1; }
        .hero-description { font-size: 1rem; margin-bottom: 2rem; max-width: 400px; }

        .btn-look {
            display: inline-block; padding: 12px 35px; text-transform: uppercase;
            font-weight: 600; transition: all 0.3s ease; cursor: pointer;
            border: 1px solid var(--color-text-light); color: var(--color-text-light);
            background-color: transparent;
        }
        .btn-look:hover { background-color: var(--color-text-light); color: var(--color-text-dark); }

        /* --- KATEGORİ GÖSTERİM BÖLÜMÜ (2x2 GRID) --- */
        .category-grid-showcase { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }

        .category-grid-card {
            position: relative; height: 95vh; background-size: cover; background-position: center;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .category-grid-card .card-content {
            position: relative; z-index: 2; text-align: center;
            transition: transform 0.4s ease;
        }
        .category-grid-card:hover .card-content { transform: translateY(-10px); }
        .card-title { font-size: 3rem; font-weight: 700; margin: 0 0 1.5rem 0; text-transform: uppercase; }
        
        /* Farklı Arka Plan Renkleri ve Stiller */
        .category-grid-card.style-dark { color: var(--color-text-light); }
        .category-grid-card.style-light { color: var(--color-text-dark); background-color: var(--color-background-gray); }
        
        .btn-grid-look {
            display: inline-block; padding: 10px 30px; background-color: transparent;
            font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
            transition: all 0.3s ease; cursor: pointer; border: 1px solid;
        }
        .category-grid-card.style-dark .btn-grid-look { color: var(--color-text-light); border-color: var(--color-text-light); }
        .category-grid-card.style-dark .btn-grid-look:hover { background-color: var(--color-text-light); color: var(--color-text-dark); }
        .category-grid-card.style-light .btn-grid-look { color: var(--color-text-dark); border-color: var(--color-text-dark); }
        .category-grid-card.style-light .btn-grid-look:hover { background-color: var(--color-text-dark); color: var(--color-text-light); }

        /* --- AVANTAJLAR (INFO BAR) BÖLÜMÜ --- */
        .features-section { padding: 80px 50px; background-color: var(--color-background-light); }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
        .feature-item .feature-icon {
            width: 84px; height: 84px; background: #000; border-radius: 50%;
            display: flex; justify-content: center; align-items: center;
            margin: 0 auto 15px auto;
        }
        .feature-item .feature-icon i { font-size: 36px; color: white; }
        .feature-item h4 { margin: 0 0 5px 0; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; }
        .feature-item p { margin: 0; font-size: 0.9rem; color: #666; }

        /* --- FOOTER (Basitleştirilmiş) --- */
        .simple-footer {
            background-color: #000; color: #fff; padding: 50px;
        }
        .footer-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px; max-width: 1400px; margin: 0 auto;
        }
        .footer-column h4 { font-size: 1rem; margin-bottom: 20px; }
        .footer-column ul { list-style: none; padding: 0; }
        .footer-column ul li { margin-bottom: 10px; }
        .footer-column ul li a { color: #aaa; font-size: 0.9rem; transition: color 0.3s; }
        .footer-column ul li a:hover { color: #fff; }
        .footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #444; color: #aaa; font-size: 0.8rem;}

        /* --- RESPONSIVE TASARIM --- */
        @media (max-width: 1200px) {
            .simple-header { padding: 15px 20px; }
        }
        @media (max-width: 992px) {
            .simple-header nav { display: none; }
            .hero-title { font-size: 3.5rem; }
            .category-grid-card { height: 60vh; }
            .card-title { font-size: 2.5rem; }
            .features-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hero-section { justify-content: center; text-align: center; padding: 0 5%; }
            .hero-section::before { background: rgba(0,0,0,0.5); }
            .category-grid-showcase { grid-template-columns: 1fr; }
            .category-grid-card { height: 60vh; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
    
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .no-gutters { margin-right: 0; margin-left: 0; }
    .no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; }

    .hero-wrapper {
        position: relative;
        width: 100%;
        height: 85vh; /* Yüksekliği biraz azalttık */
        min-height: 550px;
        overflow: hidden;
        margin-top: -30px;
        color: #fff;
    }
    .hero-bg {
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        position: absolute;
        top: 0; left: 0;
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .hero-left, .hero-right {
        padding: 0 30px;
    }
    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 1px;
    }
    .hero-title {
        font-size: 4.5rem;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.1;
        margin: 10px 0;
    }
    .text-highlight {
        color: #ffd700; /* Vurgu için sarı renk */
    }
    .hero-right .discount-text {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.2;
    }
    .hero-right p {
        font-size: 1rem;
        max-width: 400px; /* Metin genişliğini sınırlama */
        margin-top: 15px;
    }
    .btn-hero {
        background: #222;
        color: #fff;
        padding: 15px 50px;
        text-transform: uppercase;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 1.5px;
        display: inline-block;
        margin-top: 25px;
        border: 2px solid #222;
        border-radius: 5px;
    }
    .btn-hero:hover {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }
    

    /* 2. SPLIT SECTION (ÜRÜN + VİDEO/GÖRSEL) */
    .collection-split-section {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        background-color: #fdfdfd;
    }
    .content-side { padding: 80px 40px; display: flex; align-items: center; justify-content: center; min-height: 600px; }
    .media-side { position: relative; min-height: 600px; overflow: hidden; background: #000; }
    .media-fit { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; }
    .split-title { font-size: 2.8rem; font-weight: 700; margin-bottom: 15px; color: #1a1a1a; line-height: 1.2; }
    .section-subtitle { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 10px; }
    .view-all-link { color: #000; font-weight: 600; text-decoration: underline; font-size: 0.9rem; }

    /* 3. ÜRÜN KARTI & HOVER EFEKTİ */
    .productSwiper { width: 100%; padding: 10px; }
    .product-card-clean {
        display: block; text-decoration: none; position: relative; overflow: hidden;
        border: 1px solid #e9e9e9; border-radius: 8px; background: #fff;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .product-card-clean:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
    .img-box {
        width: 100%; aspect-ratio: 1 / 1; position: relative;
        overflow: hidden; background-color: #f5f5f5;
    }
    .img-box img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease, transform 0.4s ease; }
    .img-hover { position: absolute; top: 0; left: 0; opacity: 0; z-index: 2; }
    .product-card-clean:hover .img-hover { opacity: 1; }
    .product-card-clean:hover .img-default { transform: scale(1.05); }

    .info-box { text-align: center; padding: 20px 15px; min-height: 110px; display: flex; flex-direction: column; justify-content: center; }
    .product-title {
        font-size: 0.95rem; color: #222; margin-bottom: 8px; font-weight: 600;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .product-price { font-size: 1rem; color: #333; font-weight: 500; }

    /* <<< YENİ "FİYAT AL" BUTONU STİLİ >>> */
    .price-enquiry-btn {
        display: inline-block; background-color: #222; color: #fff;
        padding: 8px 20px; border-radius: 5px; font-size: 0.8rem;
        font-weight: 600; text-decoration: none !important;
        transition: background-color 0.3s ease;
        margin-top: 4px; letter-spacing: 0.5px;
        border: 1px solid #222;
    }
    .price-enquiry-btn:hover { background-color: #000; color: #fff; }
    .price-enquiry-btn i { margin-right: 8px; }

    /* 4. GRID KATEGORİLER */
    .grid-card { display: block; position: relative; height: 550px; overflow: hidden; text-decoration: none; }
    .grid-bg { width: 100%; height: 100%; }
    .grid-bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
    .grid-card:hover .grid-bg img { transform: scale(1.05); }
    .grid-card::after {
        content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 50%); z-index: 1;
    }
    .grid-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; text-align: center; z-index: 2; }
    .grid-content h3 { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 15px; }
    .btn-shop { border-bottom: 2px solid #fff; padding-bottom: 5px; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.9rem; font-weight: 600; }

    /* 5. AVANTAJLAR BÖLÜMÜ */
    .features-section { background-color: #f8f9fa; padding: 80px 0; border-top: 1px solid #f0f0f0; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .feature-item { text-align: center; padding: 30px; }
    .feature-item i { font-size: 2.2rem; color: #111; margin-bottom: 20px; }
    .feature-item h4 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .feature-item p { font-size: 0.9rem; color: #666; line-height: 1.6; }

    {{-- ... Diğer stilleriniz burada aynı kalacak ... --}}

    /* Swiper Okları */
    .swiper-button-next, .swiper-button-prev { color: #000; transform: scale(0.6); font-weight: bold; }
    
    
    /* =================================================================== */
    /* === BURADAN SONRASINI KOMPLE BU KOD İLE DEĞİŞTİRİN === */
    /* =================================================================== */

    /* RESPONSIVE DÜZENLEMELER */
    @media (max-width: 992px) {
        /* Bu bölüm masaüstü ve tablet arası içindir, dokunmuyoruz */
        .hero-title { font-size: 3.5rem; }
        .hero-right .discount-text { font-size: 2.8rem; }
    }

    /* MOBİL İÇİN NİHAİ ÇÖZÜM (768px ve altı) */
    @media (max-width: 768px) {
        
        /* === 1. HERO SLIDER MOBİL DÜZELTMESİ (SIFIRA SIFIR GÖRÜNÜM) === */
        .hero-wrapper {
            height: auto;          /* Yüksekliği otomatik ayarla */
            min-height: 0;          /* Eski min-height değerini sıfırla */
            margin-top: 0;          /* Üst boşluğu kaldır */

            /* Bu oran, görselinizin mobil ekranda en iyi şekilde görünmesini sağlar.
               Genişliğin yarısı kadar yükseklik verir. Tam istediğiniz gibi! */
            aspect-ratio: 2 / 1; 
        }

        .hero-bg {
            /* Görselin taşıyıcıyı tamamen kaplamasını sağlar (boşluk bırakmaz) */
            background-size: cover;
            /* Görselin merkezini odak noktası yapar, böylece kenarlar kırpılsa bile ana içerik görünür */
            background-position: center center;
        }

        /* Orijinal CSS'inizde bulunan ancak HTML'de olmayan .hero-content için stiller */
        .hero-content { flex-direction: column; text-align: center; }
        .hero-left { margin-bottom: 40px; }
        .hero-right p { margin-left: auto; margin-right: auto; }

        /* === 2. SPLIT SECTION BAŞLIK AYARI === */
        .split-title { font-size: 2.2rem; }

        /* === 3. GRID KATEGORİLER MOBİL DÜZELTMESİ === */
        .grid-card {
            height: auto;
            aspect-ratio: 1 / 1; /* Kare oranını koruyoruz, bu ideal */
        }
        .grid-content h3 {
             font-size: 2rem; 
        }

        /* === 4. AVANTAJLAR BÖLÜMÜ === */
        .features-grid { grid-template-columns: 1fr; }
        .feature-item { padding: 20px; } 
    }

    /* ÇOK KÜÇÜK EKRANLAR İÇİN EK DÜZENLEME (480px ve altı) */
    @media (max-width: 480px) {
        .split-title { font-size: 1.8rem; }
        .grid-content h3 { font-size: 1.8rem; }
        .product-title { font-size: 0.9rem; }
    }



        .cat-main-card { display: block; text-align: center; text-decoration: none !important; transition: transform 0.4s ease; margin-bottom: 20px; }
        .cat-main-card:hover { transform: translateY(-10px); }
        .cat-main-img { 
            width: 140px; 
            height: 140px; 
            border-radius: 50%; 
            overflow: hidden; 
            border: 4px solid #fff; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
            margin: 0 auto 15px; 
            background: #fff;
        }
        .cat-main-img img { width: 100%; height: 100%; object-fit: cover; }
        .cat-main-title { font-weight: 700; color: #222; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; display: block; line-height: 1.2; }
        
        @media (max-width: 768px) {
            .cat-main-img { width: 110px; height: 110px; }
            .cat-main-title { font-size: 0.85rem; }
        }
    

    :root { --santorino-red: #7a030e; --whatsapp-green: #25D366; }
    body { background-color: #fcfcfc; }

    /* 1. Giriş Ekranı (Büyük Daire Kartlar) */
    .cat-landing-wrapper { padding: 60px 0; text-align: center; }
    .cat-main-card { display: block; text-decoration: none !important; transition: 0.4s ease; margin-bottom: 30px; }
    .cat-main-card:hover { transform: translateY(-15px); }
    .cat-main-img { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; border: 5px solid #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.1); margin: 0 auto 20px; }
    .cat-main-img img { width: 100%; height: 100%; object-fit: cover; }
    .cat-main-title { font-weight: 800; color: #111; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }

    /* 2. Ürün Sayfası Üst Navigasyon (Küçük Daireler) */
    .cat-nav-bubbles { background: #fff; padding: 20px 0; border-bottom: 1px solid #eee; margin-bottom: 30px; }
    .bubble-container { display: flex; gap: 20px; overflow-x: auto; padding: 0 15px; justify-content: center; scrollbar-width: none; }
    .bubble-container::-webkit-scrollbar { display: none; }
    .bubble-item { flex: 0 0 auto; text-align: center; width: 90px; text-decoration: none !important; transition: 0.3s; }
    .bubble-img { width: 75px; height: 75px; border-radius: 50%; overflow: hidden; border: 2px solid #eee; margin: 0 auto 8px; transition: 0.3s; }
    .bubble-img img { width: 100%; height: 100%; object-fit: cover; }
    .bubble-item:hover .bubble-img, .bubble-item.active .bubble-img { border-color: var(--santorino-red); transform: scale(1.05); }
    .bubble-name { font-size: 12px; font-weight: 600; color: #555; }
    .bubble-item.active .bubble-name { color: var(--santorino-red); font-weight: 800; }

    /* 3. Ürün Kartı ve Favori Butonu */
    .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
    .product-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; position: relative; }
    
    .btn-wishlist { position: absolute; top: 15px; right: 15px; z-index: 10; background: rgba(255,255,255,0.9); border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.1); cursor: pointer; color: #999; transition: 0.3s; }
    .btn-wishlist:hover { transform: scale(1.1); color: var(--santorino-red); }
    .btn-wishlist.active { color: var(--santorino-red); }
    .btn-wishlist.active i { font-weight: 900; }

    .btn-whatsapp-ask { background: var(--whatsapp-green); color: #fff !important; padding: 12px; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 14px; margin-top: 15px; transition: 0.3s; }
    .btn-whatsapp-ask:hover { background: #1ebc57; transform: scale(1.02); }

    .shoe-sizes { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px; }
    .size-badge { font-size: 10px; padding: 2px 6px; border: 1px solid #eee; border-radius: 4px; color: #666; font-weight: 600; }

    @media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cat-main-img { width: 130px; height: 130px; } }
    /* PROFESYONEL FAVORİ BUTONU TASARIMI */
.wishlist-container {
    position: absolute;
    top: 12px;
    right: 12px; /* Sağ üst köşe daha profesyonel durur */
    z-index: 20;
}

.btn-fav-modern {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.85); /* Yarı saydam beyaz */
    backdrop-filter: blur(6px); /* Cam efekti */
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    outline: none;
}

.btn-fav-modern i {
    color: #888;
    font-size: 17px;
    transition: color 0.3s ease;
}

.btn-fav-modern:hover {
    background: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Aktif (Favoriye Eklenmiş) Durumu */
.btn-fav-modern.active i {
    color: #e74c3c; /* Canlı kırmızı */
}

.btn-fav-modern.active {
    border-color: rgba(231, 76, 60, 0.2);
}
/* GÖRSELLERİN YAPISINI VE HOVER ETKİSİNİ KORUYAN CSS */
.product-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Orijinal kare oranını korur */
    overflow: hidden;
    background-color: #f8f8f8;
}

.product-card-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin bozulmasını engeller */
    transition: opacity 0.3s ease; /* JS hover geçişi için */
}

/* SADECE NUMARA PANELİ - DİĞER HİÇBİR ŞEYİ ETKİLEMEZ */
.quick-size-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(102%); /* Gizli konum */
    transition: transform 0.3s ease-out;
    padding: 12px 5px;
    z-index: 10;
    border-top: 1px solid #eee;
}

/* Kartın üzerine gelince panel çıkar ama resim değişme JS'i de çalışmaya devam eder */
.product-card:hover .quick-size-overlay {
    transform: translateY(0);
}

.qs-title {
    font-size: 10px;
    font-weight: 800;
    color: #7a030e;
    text-align: center;
    margin-bottom: 8px;
}

.qs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.qs-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 30px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 4px;
}

.qs-item:hover {
    background: #7a030e;
    color: #fff;
    border-color: #7a030e;
}

/* Rozeti üste al ki panel kapatmasın */
.badge-discount {
    top: 10px !important;
    left: 10px !important;
    bottom: auto !important;
    z-index: 11;
}
    /* 1:1 KARE GÖRSEL YAPISI - BOZULMAYI ENGELLER */
    .product-card-image-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1; /* Kare formunu zorla */
        overflow: hidden;
        background-color: #f3f3f3;
    }

    .product-card-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s ease;
    }

    /* PROFESYONEL FAVORİ BUTONU */
    .wishlist-container {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 15;
    }
    .btn-fav-modern {
        width: 36px;
        height: 36px;
        background: var(--glass);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
    }
    .btn-fav-modern i { color: #999; font-size: 16px; }
    .btn-fav-modern:hover { transform: scale(1.1); background: #fff; }
    .btn-fav-modern.active i { color: #e74c3c; font-weight: 900; }

    /* HIZLI NUMARA PANELİ - RESME DOKUNMAZ */
    .quick-size-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        transform: translateY(101%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 15px 5px;
        z-index: 10;
        border-top: 1px solid #eee;
    }
    .product-card:hover .quick-size-overlay { transform: translateY(0); }

    .qs-list { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
    .qs-item {
        display: flex; align-items: center; justify-content: center;
        min-width: 34px; height: 32px; background: #fff; border: 1px solid #ddd;
        color: #333; font-size: 11px; font-weight: 700; text-decoration: none !important;
        border-radius: 4px; transition: 0.2s;
    }
    .qs-item:hover { background: var(--santorino-red); color: #fff; border-color: var(--santorino-red); }

  .custom-modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 10000; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.custom-modal-overlay.active { display: flex; }
.custom-modal-content { background: #fff; width: 90%; max-width: 380px; border-radius: 20px; position: relative; animation: modalPop 0.3s ease; }
.btn-close-modal { position: absolute; top: 15px; right: 15px; border: none; background: none; font-size: 24px; color: #999; cursor: pointer; }

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* FAVORİ BUTONU MODERN STİL */
.btn-fav-modern {
    width: 38px; height: 38px; background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-fav-modern:hover { transform: scale(1.15); background: #fff; }
.btn-fav-modern i { color: #888; font-size: 16px; transition: 0.3s; }

/* Aktif Durum (Favorideyse) */
.btn-fav-modern.active { background: #fff; }
.btn-fav-modern.active i { color: #e74c3c; font-weight: 900; }
    .custom-modal-overlay.active { display: flex; }

    /* KATEGORİ DAİRELERİ */
    .bubble-container { display: flex; gap: 15px; overflow-x: auto; padding: 15px; scrollbar-width: none; }
    .bubble-img { width: 70px; height: 70px; border-radius: 50%; border: 2px solid #eee; overflow: hidden; transition: 0.3s; }
    .bubble-item.active .bubble-img { border-color: var(--santorino-red); }
    /* İNDİRİM YÜZDESİ ROZETİ */
.badge-discount-perc {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #7a030e; /* Santorino Kurumsal Kırmızı */
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(122, 3, 14, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none; /* Resme tıklamayı engellemez */
    animation: badgeFadeIn 0.5s ease;
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
/* MODAL TETİKLEYİCİ BUTON */
.btn-filter-trigger {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-filter-trigger:hover { background: #7a030e; transform: translateY(-2px); }

/* FİLTRE MODAL ANA YAPI */
.filter-modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 100000; align-items: center; justify-content: center; backdrop-filter: blur(8px);
}
.filter-modal-overlay.active {
    display: flex !important;
    opacity: 1;
}
.filter-modal-content {
    background: #fff; width: 95%; max-width: 450px; border-radius: 24px;
    max-height: 90vh; display: flex; flex-direction: column; overflow: hidden;
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.filter-modal-header { padding: 20px 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.filter-modal-close { border: none; background: none; font-size: 30px; color: #999; cursor: pointer; }

.filter-modal-body { padding: 25px; overflow-y: auto; flex: 1; }

/* MODAL İÇİ ELEMANLAR */
.filter-label { font-size: 11px; font-weight: 800; color: #111; letter-spacing: 1px; display: block; margin-bottom: 12px; }

.modal-search-wrapper {
    background: #f5f5f5; border-radius: 12px; padding: 12px 15px; display: flex; align-items: center; gap: 12px; border: 1px solid #eee;
}
.modal-search-wrapper input { border: none; background: transparent; outline: none; width: 100%; font-size: 14px; }

.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-item { cursor: pointer; margin: 0; }
.pill-item input { display: none; }
.pill-item span {
    display: block; padding: 8px 16px; background: #f8f8f8; border: 1px solid #eee; border-radius: 10px;
    font-size: 12px; font-weight: 600; transition: 0.2s;
}
.pill-item input:checked + span { background: #7a030e; color: #fff; border-color: #7a030e; box-shadow: 0 4px 10px rgba(122,3,14,0.2); }

.form-control-modern {
    width: 100%; padding: 12px; border-radius: 12px; border: 1px solid #eee; background: #f8f8f8; font-size: 14px; outline: none;
}

.filter-modal-footer {
    padding: 20px 25px; border-top: 1px solid #eee; display: flex; align-items: center; gap: 15px; background: #fcfcfc;
}
.btn-apply-modal { flex: 1; background: #111; color: #fff; border: none; padding: 15px; border-radius: 12px; font-weight: 700; }
.btn-clear-modal { color: #999; font-weight: 600; text-decoration: none; font-size: 13px; }
.filter-modal-overlay.active {
    display: flex !important;
}
