/* Franja de medios de pago (checkout público y panel estudiante) */
.mc-checkout-payment-strip {
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    background: #eef1f6;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.mc-checkout-payment-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.mc-checkout-payment-strip-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9375rem;
    flex: 0 0 auto;
    line-height: 1.3;
}

.mc-checkout-payment-strip-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.mc-checkout-payment-strip-logos > li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-sizing: border-box;
    min-width: 3.75rem;
    min-height: 2.5rem;
    padding: 0.35rem 0.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}

/* Recorta y centra SVGs de Iconify (viewBoxes distintos desbordaban el chip) */
.mc-checkout-payment-strip-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 28px;
    flex: 0 0 auto;
    overflow: hidden;
    line-height: 0;
}

.mc-checkout-payment-strip-logos iconify-icon {
    display: block;
    flex-shrink: 0;
    width: 44px;
    height: 28px;
    max-width: 100%;
    max-height: 100%;
}

.mc-pay-local {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.55rem;
    border-radius: 6px;
    color: #fff;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}

.mc-pay-local--yape {
    background: linear-gradient(135deg, #5b1a6e 0%, #8b3aab 50%, #c084fc 100%);
}

.mc-pay-local--plin {
    background: #38bdf8;
    color: #fff;
    font-weight: 900;
}

.mc-pay-local--bim {
    background: linear-gradient(90deg, #0d9488 0%, #db2777 50%, #84cc16 100%);
    font-weight: 900;
}

/* Checkout público: ancho completo bajo el grid */
.checkout-wrap .mc-checkout-payment-strip {
    max-width: 100%;
}

/* Panel estudiante (tema oscuro) */
[data-bs-theme="dark"] .mc-checkout-payment-strip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .mc-checkout-payment-strip-label {
    color: #f1f5f9;
}

[data-bs-theme="dark"] .mc-checkout-payment-strip-logos > li {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.12);
}
