/**
 * ModernCart quantity-control visual fallback -- commerce cleanup pass.
 *
 * Behavior-level status (live-verified): clicking ModernCart's quantity
 * +/- buttons triggers real `wp-admin/admin-ajax.php` requests (confirmed
 * via Network panel -- two new POSTs fired per click), not a client-side-
 * only counter. This means the quantity control IS a genuine WooCommerce
 * cart update, so WooCommerce's own server-side cart validation -- which
 * enforces the `woocommerce_is_sold_individually` filter added in
 * inc/digital-store.php -- applies to it: quantity above 1 should already
 * be rejected/reset functionally once that filter is live.
 *
 * ModernCart's own UI does NOT re-check is_sold_individually() to decide
 * whether to render the +/- buttons -- confirmed by testing this exact CSS
 * fallback live: the buttons render regardless (a competing ID-anchored
 * ModernCart rule, `#moderncart-slide-out .moderncart-cart-item-quantity
 * button { display: block }` from the plugin's own cart.css, keeps them
 * visible/clickable no matter what). This is the "does not respect the
 * underlying WooCommerce behavior, CSS fallback needed" case, not a
 * precaution -- confirmed necessary, not preemptive.
 *
 * !important is used because that competing rule is ID-anchored
 * (specificity 10101) -- live-verified a plain class-scoped override
 * (`.moderncart-panel .quantity__button--up`, ~200) loses outright; adding
 * !important was the smallest change that reliably wins, verified live.
 *
 * Hides only the two stepper buttons -- the quantity number itself stays
 * visible (correctly reading "1" once the filter is live), and nothing
 * else in the drawer (product row, remove link, subtotal/total, coupon UI,
 * checkout CTA) is touched.
 *
 * .moderncart-panel is a unique, sitewide third-party-plugin class already
 * used safely in utility-commerce-typography.css's ModernCart section --
 * same scoping, same reasoning: not homepage/checkout-specific, loads via
 * the normal enqueue system everywhere (unlike the checkout template).
 */
.moderncart-panel .quantity__button--up,
.moderncart-panel .quantity__button--down {
	display: none !important;
}
