/**
 * Subscription Model Project (Teamwork tasklist 2579973): display-only frontend styling
 * additions, kept separate from the theme so this stays removable alongside includes/submodel/.
 */

/* Hides the "Category:" line on the subscription product's own page. The product_cat term
 * relationship is untouched, this is display-only. See submodel-org-registration.php for the
 * body_class filter that adds this class.
 *
 * !important is needed here: the theme's `body.woocommerce #agendtheme-content .product_meta > *`
 * rule (skin-2020) outranks a plain class selector on specificity alone, thanks to its ID
 * selector. Narrowly scoped to this one property/selector, not a site-wide override. */
body.submodel-hide-product-category .posted_in {
	display: none !important;
}
