/* ===========================================================================
   W2FREE_V1 — FREE-mode input fix (mobile + web)
   ---------------------------------------------------------------------------
   Problem:
     - In FREE mode the print text was editable in TWO places at once — the
       dedicated Line 1 / Line 2 fields AND the persistent footer field — both
       bound to the same value, which feels like a duplicate input.
     - On the narrow mobile canvas the preview line had no wrap guard, so a
       single line broke into 2-3 visual lines after ~5-6 characters.
   Fix:
     1) In FREE mode hide the duplicate footer input (keep Add-to-cart + price).
        Free text is then edited ONLY in the dedicated Line 1 / Line 2 fields.
     2) Free preview lines never wrap — each line stays on one line up to
        10 chars (incl. space), same as web.
   FREE mode is detected by w2free.js, which toggles `body.w2free`.
   Additive overlay: no bundle edits, reversible.
   =========================================================================== */

/* 1) Hide the duplicate footer input while in FREE mode (cart + price stay) */
body.w2free .w2-foot-input{ display:none !important; }

/* 2) Free preview lines stay on one line (no 2-3 line wrap on mobile) */
body.w2free .sh-block div,
body.w2free .shirt-overlay div{ white-space:nowrap !important; }
