/* Slider Wrapper - ye parent container hai */
.cps-slider-wrapper {
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
}

/* Swiper container */
.cps-slider-wrapper .swiper {
    overflow: visible;
    padding-bottom: 30px;
}

/* Slide base style */
.cps-slider-wrapper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Hover effect */
.cps-slider-wrapper .swiper-slide:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Link inside slide - remove underline */
.cps-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Picture box */
.cps-slider-wrapper .picture {
    width: 320px;
    height: 320px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.cps-slider-wrapper .picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}


/* Detail section */
.cps-slider-wrapper .detail {
    padding: 25px 20px;
    font-weight: 600;
    text-align: center;
}

.cps-slider-wrapper .detail h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}

.cps-slider-wrapper .detail .price {
    display: block;
    font-size: 18px;
    color: #f44336;
    font-weight: 700;
}

/* Scrollbar (agar use karna hai to) */
.cps-slider-wrapper .swiper-scrollbar {
    background-color: #ffdd95 !important;
    height: 10px;
}

.cps-slider-wrapper .swiper-scrollbar-drag {
    background-color: #9f6d04 !important;
}

/* Responsive */
@media (max-width: 1023px) {
    .cps-slider-wrapper .swiper-slide {
        width: 320px;
    }
    .cps-slider-wrapper .picture {
        width: 320px;
        height: 320px;
    }
    .cps-slider-wrapper .detail h3 {
        font-size: 18px;
        font-weight: 600;
    }
}

@media (max-width: 767px) {
    .cps-slider-wrapper .swiper-slide {
        width: 140px;
    }
    .cps-slider-wrapper .picture {
        width: 140px;
        height: 140px;
    }
    .cps-slider-wrapper .detail {
        padding: 8px;
    }
    .cps-slider-wrapper .detail h3 {
        font-size: 14px;
        margin-bottom: 5px;
        font-weight: ;
    }
    .cps-slider-wrapper .detail .price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cps-slider-wrapper .swiper-slide {
        width: 140px;
    }
    .cps-slider-wrapper .picture {
        width: 140px;
        height: 140px;
    }
    .cps-slider-wrapper .detail {
        padding: 8px 5px;
    }
    .cps-slider-wrapper .detail h3 {
        font-size: 12px;
    }
    .cps-slider-wrapper .detail .price {
        font-size: 11px;
    }
}