/* --- 📐 ANA MANŞET (HERO SECTION) İÇ STİLLERİ --- */

/* Yeni Izgara (Grid) Yapımız */
.hero-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr; /* Sol %70, Sağ %30 */
    gap: 20px;
    width: 100%;
    /* KANKACIM: height: 500px; sınırını SİLDİK! Yüksekliği resimler ve oran belirleyecek. */
}

/* ⬅️ SOL SLIDER ALANI */
.hero-slider-area {
    width: 100%;
    height: auto;
    /* KANKACIM İŞTE SİHİRLİ KOD: Senin 850x450 ölçünü tam oranladık! Cuk oturacak! */
    aspect-ratio: 850 / 450; 
    border-radius: 12px;
    overflow: hidden; 
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mainHeroSwiper {
    width: 100%;
    height: 100%;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kutu oranı resimle aynı olduğu için ARTIK ASLA KIRPMIYOR */
}

/* ➡️ SAĞ BANNER ALANI */
.hero-banners-area {
    display: grid;
    grid-template-rows: 1fr 1fr; 
    gap: 20px;
    height: 100%; /* Sol tarafın yüksekliğine tam uyum sağlar */
}

.hero-banner-item {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.hero-banner-item:hover {
    transform: translateY(-5px);
}

.hero-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🎯 OKLAR VE SAYFALAMA */
.hero-nav-btn {
    color: #111827 !important;
    background: rgba(255, 255, 255, 0.9);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0; 
    transition: opacity 0.3s ease;
}

.hero-slider-area:hover .hero-nav-btn {
    opacity: 1; 
}

.hero-nav-btn::after {
    font-size: 18px !important;
    font-weight: 800;
}

.hero-pagination .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme-color, #f97316); 
    width: 25px;
    border-radius: 5px;
}

/* 📱 MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .hero-grid {
        display: flex; 
        flex-direction: column; 
        height: auto;
        gap: 15px; /* Mobilde dikey aradaki boşluğu biraz açtık */
    }

    .hero-slider-area {
        height: auto; 
        aspect-ratio: 850 / 450; /* Mobilde de oran korunsun! */
        border-radius: 12px !important; /* Mobilde de kavisli güzel durur */
    }

    .hero-main-img {
        object-fit: cover; /* Oran aynı olduğu için mobilde de tam oturacak */
        background-color: transparent; 
    }

    .hero-banners-area {
        display: flex;
        flex-direction: row; 
        gap: 15px; 
        height: auto;
    }

    .hero-banner-item {
        flex: 1; 
        height: auto; 
        aspect-ratio: 850 / 450; /* Yan bannerlar da orantılı küçülsün */
        border-radius: 12px !important; 
    }

    .hero-nav-btn { display: none !important; }
}