/* DE Smart Coupons — Frontend */

.desc-tier-progress {
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin: 16px 0;
    position: relative;
    height: 32px;
}

.desc-tier-bar {
    background: linear-gradient(90deg, #4caf50, #2e7d32);
    height: 100%;
    border-radius: 8px;
    transition: width 0.6s ease;
    min-width: 4px;
}

.desc-tier-msg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin: 0;
    padding: 0 12px;
    text-shadow: 0 0 4px rgba(255,255,255,.6);
}

#desc-flash-banner .desc-flash-timer {
    font-variant-numeric: tabular-nums;
    letter-spacing: .5px;
    background: rgba(0,0,0,.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 600px) {
    #desc-flash-banner {
        flex-direction: column;
        gap: 8px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .desc-tier-progress {
        height: 28px;
    }

    .desc-tier-msg {
        font-size: 11px;
    }
}
