/* 🔍 Zoom-in effect on product thumbnails */
.woocommerce ul.products li.product img:hover {
  transform: scale(1.1);
  transition: transform 0.4s ease-in-out;
}
.woocommerce ul.products li.product img {
  transition: transform 0.4s ease-in-out;
}

/* 💡 Pulse animation on buttons when hovered */
button:hover, .button:hover {
  animation: pulse 0.6s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}