/**
 * Hide the WooCommerce per-variation description on single product pages (BugHerd #418).
 *
 * The variation Description field was populated by the product import with boilerplate
 * that duplicates the main product description, showing as an "extra blurb" under the
 * variation. Suppress its display (reversible; the data is untouched).
 *
 * See pp-custom/includes/pdp-hide-variation-description.php for context.
 */

.single-product .woocommerce-variation-description {
	display: none;
}
