/* --- 🔥 ÇOK SATAN ÜRÜNLER VİTRİN STİLLERİ --- */

/* 🎯 ANİMASYONLU AÇILIŞ STİLLERİ (YUMUŞAK GEÇİŞ) */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.anim-fade-up.anim-active {
    opacity: 1;
    transform: translateY(0);
}

.coksatan-section {
    padding: 40px 0;
    background-color: #ffffff;
    margin-bottom: 40px;
    overflow: hidden; /* Animasyon kayarken yatay kaydırma çubuğu çıkmasını önler */
}

.coksatan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

/* ⚡ YENİ: BAŞLIK VE İKON TASARIMI */
.coksatan-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.coksatan-title i {
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

/* Başlığın üzerine gelindiğinde ateş ikonuna alev gibi büyüme ve açılanma efekti verir */
.coksatan-header:hover .coksatan-title i {
    transform: scale(1.15) rotate(10deg);
}

/* 🎯 TÜMÜNÜ GÖR BUTONU STİLLERİ */
.coksatan-tumunu-gor {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 6px 14px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.coksatan-tumunu-gor i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.coksatan-tumunu-gor:hover {
    color: var(--theme-color, #f97316);
    background-color: #ffffff;
    border-color: var(--theme-color, #f97316);
}

.coksatan-tumunu-gor:hover i {
    transform: translateX(3px);
}

/* 🎯 SOLDA AFİŞ, SAĞDA ÜRÜNLER (MASAÜSTÜ İÇİN) */
.coksatan-layout {
    display: grid;
    grid-template-columns: 320px 1fr; /* Sol afiş 320px, geri kalanı ürünler */
    gap: 30px;
    align-items: stretch; /* Yükseklikleri eşitler */
}

/* ⚡ YENİ: AFİŞ YOKSA 320PX SINIRINI KALDIR VE TAM EKRANA (1fr) YAYIL! */
.coksatan-layout.no-banner {
    grid-template-columns: 1fr;
}

/* 🎯 AFİŞ (BANNER) ALANI */
.coksatan-banner-area {
    width: 100%;
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coksatan-banner-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* KIRPILMAYI ÖNLEYEN KOD */
.coksatan-banner-area img, .coksatan-banner-area video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi büzmeden, kesmeden kutuya oturtur */
    display: block;
    transition: transform 0.4s ease;
}

.coksatan-banner-area:hover img, .coksatan-banner-area:hover video {
    transform: scale(1.03);
}

/* 📱 MOBİL / MASAÜSTÜ MEDYA YÖNETİMİ (YENİ EKLENDİ) */
.show-mobile {
    display: none !important;
}

/* SLIDER ALANI */
.coksatan-slider-area {
    position: relative;
    overflow: hidden; 
    padding: 10px 0; 
    width: 100%;
    height: 100%;
}

.coksatanSwiper {
    width: 100%;
    height: 100%;
}

.coksatanSwiper .swiper-slide {
    height: auto; 
}

/* SWIPER OKLARI ÖZEL TASARIM */
.coksatan-nav {
    color: #111827 !important;
    background: #ffffff;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
}

.coksatan-nav::after {
    font-size: 14px !important;
    font-weight: 900;
}

/* 📱 MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .coksatan-layout {
        grid-template-columns: 1fr; /* Mobilde alt alta dizer */
        gap: 15px;
    }
    
    .coksatan-banner-area {
        height: auto;
        display: block; 
    }

    .coksatan-banner-area img, .coksatan-banner-area video {
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }

    /* Eğer mobildeysek ve ayrı bir mobil afiş yüklenmişse: */
    .show-desktop {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
    }
}

@media (max-width: 640px) {
    .coksatan-title {
        font-size: 1.25rem;
    }
    .coksatan-tumunu-gor {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}