/* --- CARD PRINCIPAL --- */
.mc-cuotas-box {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 18px;
    max-width: 350px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-size: 14px;
    line-height: 1.35;
}

/* --- TÍTULO --- */
.mc-cuotas-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #222;
}

/* --- ICONOS DE TARJETAS --- */
.mc-cuotas-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.mc-cuotas-icons img {
    width: 40px;
    height: auto;
    padding: 3px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    opacity: 0.6;
    transition: 0.2s ease;
}

.mc-cuotas-icons img.active {
    opacity: 1;
    border-color: #0071a1;
    background: #e6f3ff;
}

/* --- ICONO DEL MÉTODO DE PAGO SELECCIONADO --- */
.mc-cuotas-icon {
    margin-bottom: 8px;
    text-align: left;
}

.mc-cuotas-icon img {
    width: 48px;
}

/* --- LISTA DE CUOTAS --- */
.mc-cuotas-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.mc-cuotas-list li {
    padding: 6px 10px;
    border-bottom: 1px dashed #dedede;
    font-size: 13px;
    color: #333;
}

.mc-cuotas-list li:last-child {
    border-bottom: none;
}

/* --- TEXTO SIN INTERÉS --- */
.mc-sin-interes {
    color: #0a8f20;
    font-weight: 600;
    font-size: 12px;
}

/* --- ESTADO DE CARGA --- */
#mc-cuotas-container {
    font-size: 13px;
    color: #555;
    padding-top: 5px;
}
