#reviews .woocommerce-Reviews {
    max-width: 720px;
    margin: 0 auto;
    font-family: system-ui, -apple-system;
}

#reviews .commentlist {
    list-style: none;
    padding: 0;
}

#reviews .comment_container {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

#reviews .avatar {
    border-radius: 50%;
    height: max-content;
}

#reviews .star-rating {
    position: relative;
    font-size: 14px;
    color: #ddd;
    overflow: hidden;
}

#reviews .star-rating span {
    color: #f5b301;
    white-space: nowrap;
}

#reviews .description p {
    margin: 8px 0 0;
}

#reviews .comment-form {
    margin-top: 30px;
}

#reviews .stars-wrapper {
    font-size: 26px;
    cursor: pointer;
}

#reviews .stars-wrapper .star {
    color: #ccc;
}

#reviews .stars-wrapper .star.active {
    color: #f5b301;
}

#reviews .comment-form input,
#reviews .comment-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}

#reviews .row {
    display: flex;
    gap: 15px;
    max-width: 100%;
    padding: 0;
}

#reviews .column {
    flex: 1;
    padding: 0;;
}

#reviews .submit {
    background: #111;
    color: #fff;
    padding: 10px 28px;
    border: none;
    cursor: pointer;
}
#reviews .comment-form-sort {
    display: flex;
    justify-content:end;
        white-space: nowrap;
}
@media (max-width: 768px) {
    section.any-section.product-reviews {
        padding: 0 20px;
    }
    p.comment-form-comment {
        margin: 0;
    }
    #reviews .comment-form-sort {
        display: flex;
        justify-content: space-around;
        white-space: nowrap;
    }
    #reviews .write-review-btn.submit {
        color: #fff;
        padding: 10px;
    }
    #reviews .submit{
        width: 100%;

    }
}