/* ── Base notice ── */
.salerush-notice {
    margin: 10px 0 12px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 235, 59, 0.18);
    font-size: 14px;
    line-height: 1.4;
}

.salerush-notice strong {
    font-weight: 700;
}

/* ── Style 2: Countdown ── */
.salerush-countdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.salerush-countdown-label {
    font-size: 13px;
    font-weight: 600;
}

.salerush-timer {
    display: flex;
    gap: 6px;
    align-items: center;
}

.salerush-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 6px 10px;
    min-width: 46px;
}

.salerush-val {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.salerush-unit-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.65;
    margin-top: 2px;
}

/* ── Style 3: Progress Bar ── */
.salerush-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.salerush-progress-header {
    font-size: 13px;
}

.salerush-bar-wrap {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 99px;
    height: 8px;
    overflow: hidden;
}

.salerush-bar {
    height: 100%;
    border-radius: 99px;
    background: #f59e0b;
    transition: width 0.4s ease;
}

/* Urgency colour overrides */
.salerush-warning .salerush-bar {
    background: #f97316;
}

.salerush-urgent {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.salerush-urgent .salerush-bar {
    background: #ef4444;
}
