/* Add custom CSS styles below */ 

.s-product-card-image-contain:hover {
    animation: pulse 0.8s ease-in-out;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}