/* Add-To-Cart Button Loading State Styles */

[data-add-to-cart] {
  transition: all 0.2s ease;
}

[data-add-to-cart]:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.add-to-cart-success {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
}

.add-to-cart-error {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}
