/* ─── FLASH SALE BANNER ────────────────────────────── */
/* Visually mirrors .promo-banner in index.html so the new
   urgent banner reads as a related surface rather than a
   parallel design system. Coral background, white type,
   Syne display font for the timer pill. */
.flash-banner {
    background: var(--coral, #D97342);
    color: white;
    text-align: center;
    padding: 10px 48px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.flash-banner-text { white-space: normal; }
.flash-banner-timer {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 4px;
    font-variant-numeric: tabular-nums;
}
.flash-banner-close {
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}
.flash-banner-close:hover { color: white; }

@media (max-width: 600px) {
    .flash-banner {
        padding: 10px 40px 10px 16px;
        font-size: 13px;
        flex-wrap: wrap;
        gap: 6px;
    }
}
