/* Contenedor del producto */
.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
}

/* Wrapper */
.woo-hover-image-wrapper {
    position: relative;
}

/* Imagen principal */
.woocommerce ul.products li.product img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

/* Imagen secundaria */
.woo-hover-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;

    opacity: 0;
    transition: opacity 0.3s ease;

    pointer-events: none;
}

/* Hover SOLO si hay segunda imagen */
.woocommerce ul.products li.product.has-hover-image:hover img:first-child {
    opacity: 0;
}

.woocommerce ul.products li.product.has-hover-image:hover .woo-hover-image-secondary {
    opacity: 1;
}

/* Zoom SOLO si NO hay segunda imagen */
.woocommerce ul.products li.product.no-hover-image img {
    transition: transform 0.4s ease;
}

.woocommerce ul.products li.product.no-hover-image:hover img {
    transform: scale(1.08);
}