.template-slider-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.template-swiper {
    width: 100%;
    padding: 60px 0 80px 0;
    text-align: center;
    overflow: visible;
}

.template-swiper .swiper-slide {
    width: 350px;
    height: auto;
    transition: all 0.3s ease;
}

.template-swiper .swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.template-swiper .swiper-slide-active img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.slider-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transform-style: preserve-3d;
}



.template-swiper .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #ee0f6f;
    border-radius: 10px;
    display: inline-block;
    height: 10px;
    opacity: 1;
    width: 26px;
    transition: 0.2s;
    margin: 0 5px;
}

.template-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(to right, #ee0f6f 0%, #f89482 100%);
    border: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .template-swiper {
        padding: 40px 0 60px 0;
    }
    
    .template-swiper .swiper-slide {
        width: 280px;
    }
    
    .template-swiper .swiper-slide img {
        height: 420px;
    }
    
    .template-swiper .swiper-slide-active {
        transform: scale(1.1) translateZ(0);
    }
}

@media (max-width: 480px) {
    .template-swiper {
        padding: 30px 0 50px 0;
    }
    
    .template-swiper .swiper-slide {
        width: 250px;
    }
    
    .template-swiper .swiper-slide img {
        height: 380px;
    }
    
    .template-swiper .swiper-slide-active {
        transform: scale(1.05) translateZ(0);
    }
}