/**
 * The theme's quantity wrapper on the product page.
 *
 * WooCommerce's own input is already a hidden field by this point, but the theme
 * draws its own .ux-quantity around it with plus and minus buttons, and those
 * are not part of the core template. Scoped to the product form, so the cart
 * page and the drawer keep theirs.
 */
/*
 * Descendant, not direct child. A variable product renders the quantity inside
 * .woocommerce-variation-add-to-cart, so a child combinator matched only simple
 * products and left 39px plus two 16px flex gaps sitting above the button.
 */
.single-product form.cart .quantity,
.single-product form.cart .ux-quantity {
	/*
	 * !important only because the child theme already used it:
	 * .product-summary .quantity { display: inline-flex !important } in style.css.
	 * Importance beats specificity, so a plain display:none lost to it however
	 * specific the selector was. At equal importance these selectors win on their
	 * own, so nothing is escalated beyond matching.
	 */
	display: none !important;
}

/* the button was sharing a row with the field it no longer sits beside */
.single-product form.cart .single_add_to_cart_button {
	margin-left: 0;
}
