/**
 * One Product Rating Widget Styles
 */

.oe-product-rating-wrapper {
    display: block;
    width: 100%;
}

.oe-rating-inner {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Stars */
.oe-rating-stars {
    display: inline-block;
    line-height: 1;
}

.oe-rating-stars .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 16px;
    width: 5.4em;
    font-family: star;
}

.oe-rating-stars .star-rating::before {
    content: "SSSSS";
    color: #CCCCCC;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.oe-rating-stars .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.oe-rating-stars .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
    color: #FFB800;
}

/* Review Count */
.oe-rating-count {
    font-size: 14px;
    color: #666666;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .oe-rating-stars .star-rating {
        font-size: 14px;
    }
    
    .oe-rating-count {
        font-size: 13px;
    }
}
