/* Low-stock urgency badge on product cards */
.card__stock--low {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.25);
  animation: stock-pulse 2s ease-in-out 1;
}
.card__stock--low::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #d97706;
  border-radius: 50%;
  display: inline-block;
}

@keyframes stock-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .card__stock--low {
    animation: none;
  }
}
