/**
 * Copyright © 2026 Evoxlab. All rights reserved.
 */

.product-item-photo .evoxlab-image-hover {
    display: block;
    overflow: hidden;
    position: relative;
}

.product-item-photo .evoxlab-image-hover__base,
.product-item-photo .evoxlab-image-hover__image {
    transition: opacity 180ms ease-in-out;
}

.product-item-photo .evoxlab-image-hover__image {
    height: 100%;
    left: 0;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.product-item-photo:hover .evoxlab-image-hover__base,
.product-item-photo:focus .evoxlab-image-hover__base {
    opacity: 0;
}

.product-item-photo:hover .evoxlab-image-hover__image,
.product-item-photo:focus .evoxlab-image-hover__image {
    opacity: 1;
}
