/* Wrapper – ensures each slider stays isolated */
.custom-product-gallery-slider {
    position: relative;
    width: 100%;
}
 
/* Main slider images */
.custom-product-gallery-slider .swiper[class*="main-slider"] img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}
 
/* Thumbnail slider images */
.custom-product-gallery-slider .swiper[class*="thumbnail-slider"] .swiper-slide img {
    width: 100%;
    height: 100%;
    padding: 5px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    cursor: pointer;
    object-fit: cover;
}
 
/* Arrow buttons (thumb slider only) */
.custom-product-gallery-slider [class*="thumb-next"],
.custom-product-gallery-slider [class*="thumb-prev"] {
    width: 30px;
    height: 30px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    top: 65% !important;
    position: absolute;
}
 
/* Arrow icons */
.custom-product-gallery-slider [class*="thumb-next"]:after,
.custom-product-gallery-slider [class*="thumb-prev"]:after {
    font-size: 16px;
    color: #fff;
}

.custom-product-gallery-slider {
    z-index: 0;
}
 
/* Mobile responsive */
@media (max-width: 767px) {
 
    .custom-product-gallery-slider .swiper[class*="main-slider"] img {
        height: 300px;
    }
 
    .custom-product-gallery-slider [class*="thumb-next"],
    .custom-product-gallery-slider [class*="thumb-prev"] {
        width: 22px;
        height: 22px;
        top: 75% !important;
    }
 
    .custom-product-gallery-slider [class*="thumb-next"]:after,
    .custom-product-gallery-slider [class*="thumb-prev"]:after {
        font-size: 12px;
    }
}

.zoom-container {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}
.zoom-container img {
    width: 100%;
    transition: transform 0.2s ease;
}
.zoom-container:hover img {
    transform: scale(2);
}
.zoom-container {
    cursor: zoom-in;
}