/* Product Category Page Styles */

/* Secondary image display toggle - hide on load, show on hover */
body.woocommerce-shop .products li.product .woocommerce-image__wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body.woocommerce-shop .products li.product .woocommerce-image__wrapper a.woocommerce-LoopProduct-link img:not(.secondary-image) {
    transition: opacity 0.4s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.woocommerce-shop .products li.product .woocommerce-image__wrapper a.woocommerce-LoopProduct-link img.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

body.woocommerce-shop .products li.product:hover .woocommerce-image__wrapper a.woocommerce-LoopProduct-link img:not(.secondary-image) {
    opacity: 0;
}

body.woocommerce-shop .products li.product:hover .woocommerce-image__wrapper a.woocommerce-LoopProduct-link img.secondary-image {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.4s ease-in-out;
}