/**
 * Styles pour l'image de survol des produits
 * Affiche une image secondaire au survol dans la grille des produits
 */

/* Container de l'image produit */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Image principale */
.product-image-wrapper img {
    transition: opacity 0.3s ease-in-out;
    display: block;
    width: 100%;
    height: auto;
}

/* Image secondaire (survol) - cachée par défaut */
.product-image-wrapper .product-secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

/* Au survol : afficher l'image secondaire */
.product-image-wrapper:hover .product-secondary-image {
    opacity: 1;
}

/* Optionnel : masquer légèrement l'image principale au survol */
.product-image-wrapper:hover img:not(.product-secondary-image) {
    opacity: 0;
}

/* Pour les appareils tactiles, désactiver l'effet de survol */
@media (hover: none) {
    .product-image-wrapper .product-secondary-image {
        display: none;
    }
}