/* CSS Star Rating - Simplified */
.rating {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.rating .star-container {
    display: flex;
    flex-direction: row;
    position: relative;
}

.rating .star {
    position: relative;
    display: block;
    flex: 0 0 auto;
}

.rating .star svg {
    width: 24px;
    height: 24px;
    fill: #e0e0e0;
}

.rating .star.filled svg {
    fill: var(--primary, #1a73e8);
}

.rating .star.half {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.rating .star.half svg {
    fill: var(--primary, #1a73e8);
}

.rating .label-value {
    margin-left: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary, #1a73e8);
}

.rating.large .star svg {
    width: 32px;
    height: 32px;
}

.rating.small .star svg {
    width: 16px;
    height: 16px;
}

.rating.disabled {
    opacity: 0.7;
    pointer-events: none;
}