/*
 * Centers the product category archive title.
 *
 * Loaded only on a product category archive, and only while the
 * aiseo_center_category_title filter stays true. It targets WooCommerce's
 * default archive title, which carries both the .woocommerce-products-header__title
 * and .page-title classes. The .term-description is left aligned as the theme
 * sets it, so only the H1 is affected. Centering depends on the theme using
 * WooCommerce's default archive markup; a theme that renders its own header
 * may need a different selector.
 */
.woocommerce-products-header__title,
.woocommerce-products-header .page-title {
    text-align: center;
}
