.stock-urgency {
    display: none;
}

.stock-urgency--show {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin: 12px 0;
    animation: stockPulse 2s ease-in-out infinite;
}

.stock-urgency__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.stock-urgency__text {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
    line-height: 1.3;
}

.stock-urgency__text span {
    font-weight: 700;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@media screen and (max-width: 780px) {
    .stock-urgency--show {
        margin: 8px 0;
        padding: 6px 12px;
    }

    .stock-urgency__text {
        font-size: 13px;
    }
}
