/* =========================================================
   GLOBAL MOBILE TOUCH VISUAL CLEANUP
   Entire website — not menu-specific
   Removes Android/WebKit blue tap highlight without disabling text selection
========================================================= */

html,
body,
*,
*::before,
*::after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/* Keep text selectable */
html,
body,
p,
span,
strong,
em,
h1,
h2,
h3,
h4,
h5,
h6,
li,
blockquote,
a {
    -webkit-user-select: text;
    user-select: text;
}

/* Do not force selection inside controls */
button,
input,
textarea,
select,
label,
svg,
img,
[role="button"] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/* Remove touch-only focus flash, but do not interfere with keyboard focus-visible */
@media (hover: none) and (pointer: coarse) {
    :focus:not(:focus-visible) {
        outline: none !important;
        box-shadow: none !important;
    }
}
