/* Add to cart loading states for home page */
.product__hover .ajax_add_to_cart.loading {
  opacity: 0.6;
  pointer-events: none;
}

.product__hover .ajax_add_to_cart.loading .icon_bag_alt:before {
  content: "\f110";
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Ensure view cart buttons are hidden */
.added_to_cart {
  display: none !important;
}

/* Cart count badge styling */
.tip.cart-count[data-count="0"] {
  display: none;
}

.tip.cart-count[data-count]:not([data-count="0"]) {
  display: block;
}
