/* ── Calculadora Cuotas Sin Interés — Webpay Plus ──────────────── */

#wcqw-calculator {
    margin: 1.4rem 0;
    font-family: inherit;
    width: 100%;
}

.wcqw-inner {
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

/* ── Header ──────────────────────────────────────────────────────── */
.wcqw-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .72rem 1rem;
    background: #CC0000;
    color: #fff;
}

.wcqw-logo {
    width: 36px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 3px;
}

.wcqw-header-text {
    display: flex;
    flex-direction: column;
    gap: .08rem;
    flex: 1;
    min-width: 0;
}

.wcqw-title {
    font-weight: 700;
    font-size: .82rem;
    line-height: 1.3;
}

.wcqw-subtitle {
    font-size: .66rem;
    opacity: .8;
}

.wcqw-badge-header {
    background: #fff;
    color: #CC0000;
    font-weight: 800;
    font-size: .7rem;
    padding: .22rem .55rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Scroll horizontal ───────────────────────────────────────────── */
.wcqw-cards-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f6f6f6;
    padding: .65rem .75rem;
}

.wcqw-cards-wrap::-webkit-scrollbar { height: 4px; }
.wcqw-cards-wrap::-webkit-scrollbar-track { background: #f6f6f6; border-radius: 2px; }
.wcqw-cards-wrap::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.wcqw-cards {
    display: flex;
    gap: .4rem;
    width: max-content;
}

/* ── Tarjeta ─────────────────────────────────────────────────────── */
.wcqw-card {
    width: 88px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #f6f6f6;
    border: 1.5px solid #e2e2e2;
    border-radius: 7px;
    padding: .55rem .4rem;
    text-align: center;
    cursor: default;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .14rem;
}

.wcqw-card-num {
    font-size: .64rem;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    line-height: 1;
}

.wcqw-card-valor {
    font-size: .92rem;
    font-weight: 800;
    color: #CC0000;
    white-space: nowrap;
    line-height: 1;
}

.wcqw-card-total {
    font-size: .62rem;
    color: #666;
    white-space: nowrap;
    line-height: 1;
}

/* ── Aviso ───────────────────────────────────────────────────────── */
.wcqw-notice {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    padding: .6rem .85rem .65rem;
    background: #fff5f5;
    border-top: 1px solid #f5cccc;
    font-size: .7rem;
    color: #555;
    line-height: 1.5;
}

.wcqw-notice-icon {
    font-size: .95rem;
    color: #CC0000;
    flex-shrink: 0;
    margin-top: .08rem;
}

.wcqw-notice strong {
    color: #CC0000;
}
