/* Add custom CSS styles below */ 

.product-card__discount{
  animation: discountPulse 1.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes discountPulse {
  0%, 100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.08);
  }
}