/* ── VT CUP/USD Prices — Frontend ─────────────────────────────────────────── */

/* Wrapper general */
.vt-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Bloque de precios dual */
.vt-dual-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 0.88em;
    line-height: 1.4;
    margin-top: 3px;
}

/* Precio USD */
.vt-price-usd {
    color: #1a56a4;
    font-weight: 600;
    white-space: nowrap;
}

/* Precio CUP */
.vt-price-cup {
    color: #c0392b;
    font-weight: 700;
    white-space: nowrap;
}

/* Separador */
.vt-price-sep {
    color: #aaa;
    font-weight: 400;
}

/* Badge de tasa */
.vt-rate-badge {
    display: block;
    width: 100%;
    font-size: 0.78em;
    color: #777;
    font-weight: 400;
    font-style: italic;
    margin-top: 1px;
}

/* Info de tasa en producto individual */
.vt-single-rate-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f7ff;
    border: 1px solid #c5dff8;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.85em;
    color: #2c5282;
    margin-bottom: 10px;
}
.vt-rate-icon {
    font-size: 1.1em;
}

/* ── Carrito ─────────────────────────────────────────────────────────────── */
.vt-total-cup-row th,
.vt-total-cup-row td {
    padding: 8px 0 !important;
    border-top: 2px dashed #e0e0e0 !important;
}
.vt-total-cup {
    color: #c0392b;
    font-size: 1.1em;
}
.vt-total-cup-note {
    display: block;
    font-size: 0.78em;
    color: #999;
    font-style: italic;
}

/* ── Adaptación para WoodMart (grids de productos) ───────────────────────── */
.wd-entities-title ~ .price .vt-dual-price,
.product-grid-item .price .vt-dual-price,
.woodmart-product-info .price .vt-dual-price {
    font-size: 0.82em;
}

/* En tarjetas pequeñas ocultar el badge para no saturar */
.products .product .vt-rate-badge {
    display: none;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .vt-dual-price {
        font-size: 0.82em;
    }
    .vt-price-sep {
        display: none;
    }
    .vt-price-usd,
    .vt-price-cup {
        display: block;
        width: 100%;
    }
}
