/* =========================================
   COMPONENTE PROPIO: PRODUCT RATING
   Estrellitas de valoracion aleatorias
   ========================================= */

.product-rating {

    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
    white-space: nowrap;

}

.product-rating__star {

    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;

}

/* nro al lado de las estrellas */
.product-rating__value {

    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-regular-price);

}


/* Estrella completa */
.product-rating__star--full {

    color: #F4C542;

}


/* Media estrella */
.product-rating__star--half {

    color: #F4C542;

}


/* Estrella vacía */
.product-rating__star--empty {

    color: #D6D1C8;

}


/* Ajuste para pantallas pequeñas */
@media (max-width: 480px) {

    .product-rating__star {

        width: 18px;
        height: 18px;
        flex-basis: 18px;

    }

    .product-rating {

        gap: 1px;
        
    }
}