/* Delivery estimate countdown on PDP buybox */
.buybox__delivery-countdown {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #b45309;
  margin-top: 2px;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}

/* Urgency state: < 2 hours remaining */
.delivery-countdown--urgent {
  color: #dc2626;
  animation: delivery-pulse 2s ease-in-out infinite;
}

@keyframes delivery-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .65; }
}

/* Reduced motion: disable pulse */
@media (prefers-reduced-motion: reduce) {
  .delivery-countdown--urgent {
    animation: none;
    opacity: 1;
  }
}

/* Forced colors (Windows High Contrast) */
@media (forced-colors: active) {
  .buybox__delivery-countdown {
    color: LinkText;
  }
  .delivery-countdown--urgent {
    color: Mark;
    animation: none;
  }
}
