/**
 * SH Menu A11y v1.0.0 — 44px minimum tap target for /menu/ Order links.
 *
 * Additive only: does not touch color / underline / font-weight / padding
 * from sh-rubric-fixes.php's 2026-07-13 restyle (that contrast fix is
 * intact and untouched). This just enforces a floor on the clickable box.
 * Scoped by the Toast-order href pattern, not by any class owned by another
 * plugin, so it can never accidentally target something else — and this
 * stylesheet is only enqueued on /menu/ itself (see sh-menu-a11y.php).
 *
 * !important is used narrowly on the two sizing properties only, as an
 * accessibility-minimum guarantee against being silently shrunk by any
 * future change to the upstream inline style — not used elsewhere in this
 * file.
 */
a[href*="order.toasttab.com"][href*="item-"] {
	min-height: 44px !important;
	min-width: 44px !important;
	box-sizing: border-box;
}
