/**
 * Custom Swiper Carousel Styles
 */

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #DC2626 !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #DC2626 !important;
    opacity: 0.3;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* RTL Support */
[dir="rtl"] .swiper-button-next,
[dir="rtl"] .swiper-button-prev {
    transform: scaleX(-1);
}

/* Smooth transitions */
.swiper-slide {
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1.02);
}
