/* ========== HERO SLIDER SHORTCODE STYLES ========== */

.cs-hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

/* Swiper Container */
.cs-hero-swiper {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.cs-hero-swiper .swiper-wrapper {
    align-items: center;
}

.cs-hero-swiper .swiper-slide {
    transition: all 0.5s ease;
    opacity: 1;
}

/* Slide Content */
.cs-hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cs-hero-slide img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
}

/* Active Slide - Make it larger */
.cs-hero-swiper .swiper-slide-active .cs-hero-slide {
    transform: scale(1.15);
}

.cs-hero-swiper .swiper-slide-active .cs-hero-slide img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* Navigation Arrows */
.cs-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cs-hero-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cs-hero-prev {
    left: 20px;
}

.cs-hero-next {
    right: 20px;
}

/* ========== RESPONSIVE STYLES ========== */

/* Extra Large Screens (1600px and up) */
@media (min-width: 1600px) {
    .cs-hero-slide img {
        max-height: 550px;
    }
    .cs-hero-nav {
        width: 60px;
        height: 60px;
    }
    .cs-hero-prev {
        left: 30px;
    }
    .cs-hero-next {
        right: 30px;
    }
    .cs-hero-swiper .swiper-slide-active .cs-hero-slide {
        transform: scale(1.2);
    }
}

/* Large Screens (1200px - 1599px) */
@media (max-width: 1599px) {
    .cs-hero-slide img {
        max-height: 480px;
    }
}

/* Medium Large Screens (992px - 1199px) */
@media (max-width: 1199px) {
    .cs-hero-slide img {
        max-height: 420px;
    }
    .cs-hero-nav {
        width: 50px;
        height: 50px;
    }
    .cs-hero-swiper .swiper-slide-active .cs-hero-slide {
        transform: scale(1.12);
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .cs-hero-slide img {
        max-height: 360px;
    }
    .cs-hero-nav {
        width: 45px;
        height: 45px;
    }
    .cs-hero-nav svg {
        width: 20px;
        height: 20px;
    }
    .cs-hero-prev {
        left: 15px;
    }
    .cs-hero-next {
        right: 15px;
    }
    .cs-hero-swiper .swiper-slide-active .cs-hero-slide {
        transform: scale(1.1);
    }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    .cs-hero-slide img {
        max-height: 320px;
        border-radius: 16px;
    }
    .cs-hero-slide {
        padding: 8px;
    }
    .cs-hero-nav {
        width: 40px;
        height: 40px;
    }
    .cs-hero-nav svg {
        width: 18px;
        height: 18px;
    }
    .cs-hero-prev {
        left: 10px;
    }
    .cs-hero-next {
        right: 10px;
    }
    .cs-hero-swiper .swiper-slide-active .cs-hero-slide {
        transform: scale(1.08);
    }
}

/* Mobile (below 576px) */
@media (max-width: 575px) {
    .cs-hero-slide img {
        max-height: 280px;
        border-radius: 14px;
    }
    .cs-hero-nav {
        width: 36px;
        height: 36px;
    }
    .cs-hero-nav svg {
        width: 16px;
        height: 16px;
    }
    .cs-hero-prev {
        left: 8px;
    }
    .cs-hero-next {
        right: 8px;
    }
    .cs-hero-swiper .swiper-slide-active .cs-hero-slide {
        transform: scale(1.05);
    }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 399px) {
    .cs-hero-slide img {
        max-height: 240px;
        border-radius: 12px;
    }
}

