/* ═══════════════════════════════════════════════════
   WC Descuento Selección — Frontend Cart Notices
   ═══════════════════════════════════════════════════ */

.wcdsel-notice {
    border-radius: 8px;
    padding: 14px 18px;
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.55;
}
.wcdsel-notice p {
    margin: 0 0 10px;
}
.wcdsel-notice p:last-child {
    margin-bottom: 0;
}

/* ── Éxito: descuento aplicado ─────────────────────── */
.wcdsel-notice--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
.wcdsel-notice--success strong {
    color: #15803d;
}

/* ── Progreso: falta importe ───────────────────────── */
.wcdsel-notice--progress {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #78350f;
}
.wcdsel-notice--progress strong {
    color: #92400e;
}

/* ── Barra de progreso ─────────────────────────────── */
.wcdsel-progress {
    position: relative;
    height: 10px;
    background: #fde68a;
    border-radius: 99px;
    overflow: hidden;
    margin-top: 10px;
}
.wcdsel-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 99px;
    transition: width 0.4s ease;
    min-width: 6px;
}
.wcdsel-progress__label {
    position: absolute;
    right: 0;
    top: -18px;
    font-size: 11px;
    font-weight: 700;
    color: #92400e;
}
