/* ── Madala Promo Timer – frontend styles ──────────────────── */

.mpt-wrap {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    background: linear-gradient(135deg, #C05B25 0%, #e8843c 100%);
    border-radius: 10px;
    padding: 9px 16px;
    margin: 8px 0 14px;
    box-shadow: 0 2px 8px rgba(192, 91, 37, 0.28);
    max-width: 100%;
    width: fit-content;
}

/* ── Label ── */
.mpt-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .6px;
    white-space: nowrap;
    line-height: 1;
}

/* ── Vertical divider between label and timer ── */
.mpt-divider {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.35);
    flex-shrink: 0;
}

/* ── Timer row ── */
.mpt-timer {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #fff;
}

.mpt-flame-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 3px;
}

.mpt-clock-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: .9;
    margin-right: 4px;
}

/* ── Individual unit (number + label) ── */
.mpt-unit {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}

.mpt-n {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .5px;
    font-variant-numeric: tabular-nums;
    min-width: 1.4ch;
    text-align: center;
    display: inline-block;
}

.mpt-lbl {
    font-size: 10px;
    font-weight: 500;
    opacity: .8;
    line-height: 1;
    margin-bottom: 1px;
}

.mpt-colon {
    font-size: 15px;
    font-weight: 700;
    opacity: .6;
    line-height: 1;
    padding: 0 1px;
}

/* ── Responsive: stack on very small screens ── */
@media (max-width: 360px) {
    .mpt-wrap {
        padding: 8px 12px;
    }
    .mpt-divider {
        display: none;
    }
    .mpt-n {
        font-size: 15px;
    }
}
