detail
USR369 screenshot showed the Crust style field's dropdown visually overlapping the middle of its own hint text (a long multi-line description on a narrow phone screen). Root cause: .field used align-items:center, which centers the input against the FULL HEIGHT of the label column -- fine for a short single-line label, but when a long hint wraps to 7-8 lines, centering put the select box somewhere in the middle of that wrapped text instead of at the top, overlapping it. Fixed by changing to align-items:flex-start, which pins the input to the top of the row (aligned with the first line of the label) regardless of how many lines the label/hint wraps to. This looks identical for every other field with a short label (no visible change there) and only affects fields whose hint is long enough to wrap.