/* ===== BANNER SLIDER - FINAL VERSION (NO SHADOW) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner-wrapper {
    width: 100%;
    background: #f8fafc;
    padding: 10px 0;
}

/* Header ke exact width ke saath aligned */
.banner-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px; /* Desktop pe 20px padding */
}

.banner-section {
    width: 100%;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch; /* Mobile smooth scroll */
}

.banner-row::-webkit-scrollbar {
    display: none;
}

/* Banner Card - 460x224 exact size */
.banner-card {
    flex: 0 0 460px;
    width: 460px;
    height: 224px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    /* box-shadow HATAYA */
}

.banner-card:hover {
    transform: translateY(-4px);
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.banner-card:hover .banner-image {
    transform: scale(1.05);
}

/* Navigation Arrows - HATAYE */
.slider-arrow {
    display: none;
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #e44d2e;
    width: 30px;
    border-radius: 15px;
}

.slider-dot:hover {
    background: #e44d2e;
}

/* ===== RESPONSIVE ===== */

/* Desktop - 3.5 banners */
@media (min-width: 1200px) {
    .banner-card {
        flex: 0 0 460px;
        height: 224px;
    }
}

/* Small Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
    .banner-card {
        flex: 0 0 400px;
        height: 195px;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
    .banner-card {
        flex: 0 0 340px;
        height: 166px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .banner-wrapper {
        padding: 10px 0;
    }
    
    .banner-container {
        padding: 0 12px; /* Mobile pe 12px padding */
    }
    
    .banner-card {
        flex: 0 0 calc(100% - 24px);
        width: 100%;
        height: auto;
        aspect-ratio: 460/224;
        scroll-snap-align: start;
    }
    
    .banner-row {
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .slider-dots {
        margin-top: 5px;
        gap: 10px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .banner-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .banner-row {
        gap: 8px;
    }
}