/* 💫 حركة ناعمة لزر أضف للسلة كل 3 ثواني بدون تغيير اللون */

@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
}

/* استهداف زر أضف للسلة */
button.add-to-cart,
.add-to-cart-button,
.s-button-primary,
salla-add-product-button {
  animation: subtlePulse 3s infinite ease-in-out;
  transition: all 0.3s ease;
}