/* Custom Star Rating UI for WooCommerce Reviews */
.custom-stars {
    display: flex;
    gap: 12px;
    font-size: 32px;
    cursor: pointer;
    color: #ff9d4d;
    /* Premium orange color from screenshot */
    margin-top: 15px;
    margin-bottom: 30px;
    user-select: none;
}

.custom-stars .star {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.15s ease-in-out;
}

.custom-stars .star:hover {
    transform: scale(1.2);
}

.custom-stars .star.hover i {
    opacity: 0.8;
}

.custom-stars .star.active i {
    text-shadow: 0 0 10px rgba(255, 157, 77, 0.3);
}

#comment-form-rating-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

.login-link-highlight {
    color: #ff9d4d !important;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.login-link-highlight:hover {
    color: #e68a3d !important;
    text-decoration: none;
}