/* Product Detail Images Fix */
.single-product-img .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
}

.single-product-thumb .swiper-slide img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-product-img .swiper-slide img {
        height: 350px;
    }
    
    .single-product-thumb .swiper-slide img {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .single-product-img .swiper-slide img {
        height: 300px;
    }
    
    .single-product-thumb .swiper-slide img {
        height: 80px;
    }
}