/* ==========================================================================
   Shortcode [rfq_product_price] — estilos de precio de producto
   ========================================================================== */

.rfq-product-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rfq-sale-price {
    font-weight: 600;
    font-size: 31px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(255, 103, 0, 1);
}

.rfq-regular-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    text-decoration: line-through;
    color: rgba(160, 162, 163, 1);
}

.rfq-from-label {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive — hasta 1024px: Sale Price y Regular Price en columna */

@media (max-width: 1024px) {

    .rfq-product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

}