
/* =========================================================
   PRECIOS NORMALES Y PRECIOS EN OFERTA
   ========================================================= */

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    gap: 4px;
}

.product-price__regular,
.product-price__sale {
    color: #ffffff;
    font-size: 1.16rem;
    font-weight: 900;
}

.product-price__old {
    color: #778aa8;
    font-size: .78rem;
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-decoration-color: #ff657c;
}

.product-price--offer .product-price__sale {
    color: #ffffff;
}

.detail-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-price strong {
    font-size: 2.2rem;
    color: #ffffff;
}

.detail-price del {
    order: -1;
    color: #7b8da8;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-decoration-color: #ff657c;
}

.offer-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 195, 40, .13);
    border: 1px solid rgba(255, 195, 40, .34);
    color: #ffc328;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

@media (max-width: 650px) {
    .product-price__regular,
    .product-price__sale {
        font-size: 1rem;
    }

    .product-price__old {
        font-size: .7rem;
    }
}
