/* CSS Minimaliste - Animations Subtiles */

/* Transitions douces uniquement */
.product-card-enhanced {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Image zoom léger */
.product-image-wrapper img {
    transition: transform 0.3s ease;
}

.product-card-enhanced:hover .product-image-wrapper img {
    transform: scale(1.03);
}

/* Prix highlight subtil */
.price-highlight {
    transition: color 0.2s ease;
}

.product-card-enhanced:hover .price-highlight {
    color: #ea580c;
}

/* Étoiles */
.rating-star {
    transition: transform 0.2s ease;
}

.rating-stars:hover .rating-star.filled {
    transform: scale(1.1);
}

/* Bouton favoris */
button {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.95);
}

/* Fin - CSS ultra-léger */
