/* RNZ Image Carousel Styles */

.rnz-image-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rnz-image-carousel {
    width: 100%;
    padding: 20px 0;
}

.rnz-image-carousel .swiper-wrapper {
    align-items: center;
}

.rnz-image-carousel .swiper-slide {
    transition: opacity 0.5s ease;
    opacity: 0.25;
}

.rnz-image-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
}

.rnz-carousel-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Navigation Arrows */
.rnz-image-carousel .swiper-button-prev,
.rnz-image-carousel .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rnz-image-carousel .swiper-button-prev:after,
.rnz-image-carousel .swiper-button-next:after {
    font-size: 20px;
}

.rnz-image-carousel .swiper-button-prev:hover,
.rnz-image-carousel .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.rnz-image-carousel .swiper-button-prev {
    left: 10px;
}

.rnz-image-carousel .swiper-button-next {
    right: 10px;
}

/* Pagination */
.rnz-image-carousel .swiper-pagination {
    bottom: 0;
}

.rnz-image-carousel .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.rnz-image-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .rnz-carousel-image {
        height: 300px;
    }

    .rnz-image-carousel .swiper-button-prev,
    .rnz-image-carousel .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .rnz-image-carousel .swiper-button-prev:after,
    .rnz-image-carousel .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .rnz-carousel-image {
        height: 250px;
    }
}