/* WooCommerce Second Image Hover Effect */

/* Default WooCommerce and Elementor Pro Products Widget Wrapper */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.elementor-widget-woocommerce-products ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
    overflow: hidden;
}

/* Primary Image Base Settings */
.woocommerce ul.products li.product .wp-post-image,
.elementor-widget-woocommerce-products ul.products li.product .wp-post-image {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

/* Secondary Image Wrapper */
.angie-product-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    z-index: 2;
    pointer-events: none; /* Let clicks pass through to the link */
    background-color: #fff; /* Prevent transparent image overlapping issues */
}

/* Secondary Image Settings */
.angie-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important to fill the container proportionally */
    object-position: center;
}

/* Hover States */
.woocommerce ul.products li.product:hover .wp-post-image,
.elementor-widget-woocommerce-products ul.products li.product:hover .wp-post-image {
    opacity: 0;
}

.woocommerce ul.products li.product:hover .angie-product-image-wrapper,
.elementor-widget-woocommerce-products ul.products li.product:hover .angie-product-image-wrapper {
    opacity: 1;
}
