/* ── Progress Bar in Loop – new style ── */

.products .wcl-progress-meter {
    margin-top: 1.2em;
    background: transparent;
}

/* Header row: 0 | Tickets Sold: X | max */
.products .wcl-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    margin-bottom: 6px;
    color: #cccccc;
}

.products .wcl-progress-header .wcl-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1em;
}

/* Bar track */
.products .wcl-bar-wrap {
    position: relative;
    background-color: #3a3a3a;
    border-radius: 4px;
    height: 28px;
    overflow: hidden;
}

/* Filled portion */
.products .wcl-bar-fill {
    position: relative;
    height: 100%;
    background-color: #e6a817;
    border-radius: 4px 0 0 4px;
    min-width: 2%;
    max-width: 100%;
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Percentage label inside bar */
.products .wcl-percent-label {
    padding-right: 8px;
    font-size: 0.82em;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

/* Footer: tickets remaining */
.products .wcl-progress-footer {
    margin-top: 6px;
    font-size: 0.82em;
    color: #cccccc;
}

/* Full state */
.products .wcl-progress-meter.full .wcl-bar-fill {
    background-color: #e63b3b;
    border-radius: 4px;
}

/* Countdown timer spacing */
.products .lottery-time-countdown.is-wc_lotery_countdown {
    margin-bottom: 3em;
}