document.addEventListener('DOMContentLoaded', function () { const protectedSelectors = [ '.offcanvas', '.elementor-location-header', '.elementor-nav-menu--dropdown', '.elementor-search-form', '.elementor-search-form__input', 'input[type="search"]' ].join(); ['touchstart', 'touchend', 'pointerdown', 'mousedown', 'click'].forEach(function (eventName) { document.addEventListener(eventName, function (e) { if (e.target.closest(protectedSelectors)) { e.stopImmediatePropagation(); } }, true); }); });