/* Remove hover effects from product images */
.product-inner .thumb .image img {
    transition: none !important;
    transform: none !important;
}

.product-inner .thumb:hover .image img {
    transform: none !important;
    opacity: 1 !important;
}

.product-inner .thumb .image:hover img {
    transform: none !important;
    opacity: 1 !important;
}

/* Remove any scale or transform effects */
.product .thumb img,
.product-inner .thumb img {
    transition: none !important;
    transform: scale(1) !important;
}

.product .thumb:hover img,
.product-inner .thumb:hover img {
    transform: scale(1) !important;
}