/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transform: none !important;
    transition: none !important;
}

.banner-slide:hover img,
.banner-slide.clickable:hover img,
.banner-slide img:hover {
    transform: none !important;
    scale: 1 !important;
}

.banner-slide.clickable {
    cursor: pointer;
}

/* Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff6b35;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-nav:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

/* Navigation Dots */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.banner-dot:hover {
    background: rgba(255, 107, 53, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slide img {
        height: 250px;
    }

    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .banner-nav.prev {
        left: 10px;
    }

    .banner-nav.next {
        right: 10px;
    }

    .banner-dots {
        bottom: 10px;
    }

    .banner-dot {
        width: 10px;
        height: 10px;
    }
}

/* Loading State */
.banner-slider.loading {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

@media (max-width: 768px) {
    .banner-slider.loading {
        min-height: 250px;
    }
}