
/* ========== اسلاید تصویر محصول ========== */
.product-image-slide-wrapper {
    position: relative;
    overflow: hidden;
}

/* محفظهٔ داخلی اسلاید */
.slide-inner {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.4s ease;
}

/* هر تصویر */
.slide-image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    display: block;
}

.product-image-slide-wrapper img {
    width: 100%;
    height: 260px !important;
    object-fit: contain;
}

.slide-image.main img{
    object-fit: cover;
}

/* حرکت به چپ هنگام هاور */
.product-box:hover .product-image-slide-wrapper .slide-inner {
    transform: translateX(50%);
}

/* حذف افکت‌های پیش‌فرض اضافی */
.product-image-slide-wrapper .main-image,
.product-image-slide-wrapper .second-image {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .product-image-slide-wrapper img {
        height: 240px !important;
    }
}

@media screen and (max-width: 767px) {
    .product-image-slide-wrapper {
        height: auto;
    }
    .product-image-slide-wrapper img {
        height: 100% !important;
    }
    .slide-image.main img{
        height: 100% !important;
    }
    .product-image-slide-wrapper img {
        max-height: 350px;
    }
}