/* CRO Animations */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pulse-cta {
  animation: pulse-glow 2s infinite;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
}

@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.product-card:hover .product-card__image-container img {
  transform: scale(1.05);
}
.product-card__image-container img {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
