warm1-urgency-strip.warm1-urgency {
  display: grid;
  width: 100%;
  gap: 6px;
  color: rgb(var(--color-text, 33 33 33));
  font: inherit;
}

.warm1-urgency__viewers {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 26px;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(20, 28, 38, 0.055);
  color: rgba(var(--color-text, 33 33 33), 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.warm1-urgency__viewers strong {
  color: rgb(var(--color-text, 33 33 33));
  font-weight: 650;
}

.warm1-urgency__stock {
  position: relative;
  min-height: 40px;
  padding: 9px 11px 10px;
  overflow: hidden;
  border: 1px solid rgba(235, 78, 82, 0.36);
  border-radius: 8px;
  background: rgba(235, 78, 82, 0.035);
}

.warm1-urgency__stock-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  line-height: 1.35;
}

.warm1-urgency__stock-line strong {
  color: #e84348;
  font-size: 15px;
  font-weight: 750;
}

.warm1-urgency__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4d52;
  box-shadow: 0 0 0 3px rgba(239, 77, 82, 0.12);
  animation: warm1-urgency-pulse 1.8s ease-in-out infinite;
}

.warm1-urgency__progress {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(20, 28, 38, 0.10);
}

.warm1-urgency__progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #ef4d52;
  transition: width 360ms ease;
}

@keyframes warm1-urgency-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.86); }
}

@media (max-width: 749px) {
  warm1-urgency-strip.warm1-urgency { gap: 5px; }
  .warm1-urgency__viewers { min-height: 24px; padding: 3px 8px; font-size: 11px; }
  .warm1-urgency__stock { min-height: 36px; padding: 7px 9px 9px; }
  .warm1-urgency__stock-line { font-size: 12px; }
  .warm1-urgency__stock-line strong { font-size: 14px; }
  .warm1-urgency__progress { right: 8px; bottom: 4px; left: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .warm1-urgency__dot { animation: none; }
  .warm1-urgency__progress i { transition: none; }
}
