/* Core structure */
.wpex-product-reviews-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
/* Star display logic */
.wpex-star-rating {
    font-family: 'star';
    color: var(--star-inactive, #e0e0e0);
}
.wpex-star-rating::before {
    content: "\73\73\73\73\73"; /* WooCommerce standard empty stars */
}
.wpex-star-rating span::before {
    content: "\53\53\53\53\53"; /* WooCommerce standard full stars */
    color: var(--star-active, #FFD700);
}
.wpex-comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
}
.wpex-comment-avatar img {
    border-radius: 50%;
}
.wpex-comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.wpex-submit-btn, .wpex-load-more-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}
/* Hide default WC rating select and convert to clickable stars via JS */
.comment-form-rating select {
    display: none;
}
.stars a {
    color: var(--star-active, #FFD700);
}