/**
 * Copyright © Aldo. All rights reserved.
 */

/* Stelle rating - garantire che le stelle gialle siano visibili */
.review-rating-stars {
    position: relative;
    display: inline-block;
    width: 105px;
    height: 1.25rem;
}

.review-rating-stars-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #d1d5db;
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: 0.2em;
    z-index: 1;
}

.review-rating-stars-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
}

/* Dynamic width based on data attribute - using CSS custom properties set by JS */
.review-rating-stars[data-rating-percent] .review-rating-stars-active {
    width: var(--rating-width, 0%);
}

.review-rating-stars-active-inner {
    color: #ffc107 !important;
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: 0.2em;
}
