/* --- ⚡ FIRSAT ÜRÜNLERİ VİTRİN STİLLERİ --- */

.firsat-section {
    padding: 40px 0;
    background-color: #f8fafc;
    margin-bottom: 40px;
}

.firsat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.firsat-title {
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* 🎯 SOLDA AFİŞ, SAĞDA ÜRÜNLER (MASAÜSTÜ İÇİN) */
.firsat-layout {
    display: grid;
    grid-template-columns: 320px 1fr; /* Sol afiş 320px, geri kalanı ürünler */
    gap: 30px;
    align-items: stretch; /* Yükseklikleri eşitler */
}

/* 🎯 AFİŞ (BANNER) ALANI */
.firsat-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;
}

.firsat-banner-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* KIRPILMAYI ÖNLEYEN KOD */
.firsat-banner-area img, .firsat-banner-area video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi büzmeden, kesmeden kutuya oturtur */
    display: block;
    transition: transform 0.4s ease;
}

.firsat-banner-area:hover img, .firsat-banner-area:hover video {
    transform: scale(1.03); /* Hafif büyüme efekti */
}

/* SLIDER ALANI */
.firsat-slider-area {
    position: relative;
    overflow: hidden; 
    padding: 10px 0; 
    width: 100%;
    height: 100%;
}

.firsatSwiper {
    width: 100%;
    height: 100%;
}

.firsatSwiper .swiper-slide {
    height: auto; 
}

/* SWIPER OKLARI ÖZEL TASARIM */
.firsat-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;
}

.firsat-nav::after {
    font-size: 14px !important;
    font-weight: 900;
}

/* 📱 MOBİL UYUMLULUK (BURASI KIRPILMAYI ÇÖZÜYOR) */
@media (max-width: 1024px) {
    .firsat-layout {
        grid-template-columns: 1fr; /* Mobilde alt alta dizer */
        gap: 15px;
    }
    
    .firsat-banner-area {
        height: auto; /* Mobildeki katı yükseklik sınırını kaldırdık! */
        display: block; 
    }

    .firsat-banner-area img, .firsat-banner-area video {
        height: auto; /* Resmin kendi orijinal oranında akmasını sağlar */
        max-height: 500px; /* Çok uzunsa ekranı kaplamasın diye esnek bir sınır */
        object-fit: contain; /* Kırpılmayı engeller */
    }
}