/**
 * AECS Design & Display — storefront tweaks.
 *
 * Hide WC's native quantity input on product pages when the
 * `aecs_show_quantity_input` policy resolves to hidden (the module tags
 * <body> with .aecs-hide-qty). Product-block ships its own block-specific
 * rule for the same body class.
 */
body.aecs-hide-qty.single-product div.product form.cart .quantity,
body.aecs-hide-qty form.cart.variations_form .woocommerce-variation-add-to-cart .quantity,
body.aecs-hide-qty .elementor-widget-woocommerce-product-add-to-cart form.cart .quantity,
body.aecs-hide-qty .elementor-widget-wc-add-to-cart form.cart .quantity {
	display: none !important;
}
