/* Make product card a flex container */
/* Make the product card image container relative so images are stacked */
.product-card__image {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Ensure both images are stacked on top of each other */
.product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
}

/* The second image will be hidden initially */
.product-card__image img:nth-of-type(2) {
    opacity: 0;
}

/* On hover, make the first image fade out and the second fade in */
.product-card__image:hover img:nth-of-type(1) {
    opacity: 0; /* Main image fades out */
}

.product-card__image:hover img:nth-of-type(2) {
    opacity: 1; /* Hover image fades in */
}
.banners-slider banners-slider--3 {
width:300px!important
}