/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 114:0 Unexpected "<"

**/
/* assets/product-grid-actions.css */
<style>
/* Product action buttons */
.product-action-item {
  position: relative;
  display: inline-block;
  margin: 0 4px;
}

.product-action-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: currentColor;
  transition: all 0.2s ease;
  position: relative;
}

.product-action-button:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.product-action-button.loading {
  opacity: 0.7;
  cursor: wait;
}

.product-action-button.added {
  color: var(--color-accent);
}

.product-action-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Loading spinner */
.product-action-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Tooltip styles */
tooltip.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  margin-bottom: 8px;
  z-index: 10;
  pointer-events: none;
}

.product-action-item:hover tooltip.tooltip {
  visibility: visible;
  opacity: 1;
}

.toast-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 4px;
  background: #333;
  color: white;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.toast-error {
  background: #d32f2f;
}

.toast-success {
  background: #388e3c;
}

.toast-message.fade-out {
  opacity: 0;
}
</style>