.explore-product .image-hover-wrapper {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
}

.explore-product .image-hover-wrapper .normal-state,
.explore-product .image-hover-wrapper .active-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.explore-product .image-hover-wrapper .normal-state {
    opacity: 1;
    z-index: 2;
}

.explore-product .image-hover-wrapper .active-state {
    opacity: 0;
    z-index: 1;
}

.explore-product .card:hover .image-hover-wrapper .normal-state {
    opacity: 0;
}

.explore-product .card:hover .image-hover-wrapper .active-state {
    opacity: 1;
}

.explore-product .image-hover-wrapper img,
.explore-product .image-hover-wrapper picture {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}

.explore-product .image-hover-wrapper picture img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}