.stars-outer {
    position: relative;
    display: inline-block;
    color: #ffd700;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.stars-outer::before {
    content: "\2605\2605\2605\2605\2605";
    color: #e0e0e0;
    display: block;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: width 0.3s ease;
}

.stars-inner::before {
    content: "\2605\2605\2605\2605\2605";
    color: #ffd700;
    display: block;
}

.stars-hover {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stars-hover::before {
    content: "\2605\2605\2605\2605\2605";
    color: rgba(255, 215, 0, 0.4);
    display: block;
}

.stars-interact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
}

.stars-interact span {
    flex: 1;
    height: 100%;
}

.rating-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.rating-info .avg-val {
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}
