/*
 * Frontend CSS for WP Update & Comment Lockdown.
 *
 * When comments and/or WooCommerce reviews are disabled, we still need to
 * suppress any output that themes or plugins might attempt to display. This
 * stylesheet hides comment forms, comment lists and WooCommerce review
 * components to ensure a clean front end. Only enqueued when the plugin
 * options indicate comments or reviews should be disabled.
 */

/* Hide WordPress comment areas */
.comments-area,
#comments,
.comment-respond,
#respond {
    display: none !important;
}

/* Hide WooCommerce review sections */
.woocommerce-Reviews,
div#reviews,
div#tab-review {
    display: none !important;
}