/* Style for the product review tag with highlighted stars and background */
.product-review-tag-custom {
    background-color: #fff9e6; /* Light yellow background */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    color: #333;
    border-radius: 5px;
    margin-top: 10px;
    width: fit-content;
    box-sizing: border-box;
}

.product-review-tag-custom .star-rating {
    font-size: 20px; /* Adjust star size */
    color: #ffcc00; /* Full star color */
    margin-right: 5px;
    display: flex;
}

.product-review-tag-custom .star-rating .half-star {
    color: #ffcc00; /* Half star color */
    display: inline-block;
}

.product-review-tag-custom .star-rating .empty-star {
    color: #dcdcdc; /* Empty star color */
}

.product-review-tag-custom .average-rating-number {
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Adjust color of the rating number */
    margin-right: 5px;
}

.product-review-tag-custom .review-count {
    font-size: 14px;
    color: #555; /* Adjust color of the review count */
}

.woocommerce .product-review-tag-custom .star-rating::before {
    content: '' !important; /* This will remove the content */
    display: none !important; /* Alternatively, you can use this to hide the pseudo-element */
}

.woocommerce .product-review-tag-custom .star-rating {
    font-size: 1.5em;
}