 // Make sure form actually submits a GET to Shopify search
  box.addEventListener('submit', () => {
    // optional: force product search type if needed
    if (!box.querySelector('input[name="type"]')) {
      const hidden = document.createElement('input');
      hidden.type = 'hidden';
      hidden.name = 'type';
      hidden.value = 'product';
      box.appendChild(hidden);
    }
  });
  // Initialize closed
  closeBox();
})();
  // Make sure form actually submits a GET to Shopify search
  box.addEventListener('submit', () => {
    // optional: force product search type if needed
    if (!box.querySelector('input[name="type"]')) {
      const hidden = document.createElement('input');
      hidden.type = 'hidden';
      hidden.name = 'type';
      hidden.value = 'product';
      box.appendChild(hidden);
    }
  });
  // Initialize closed
  closeBox();
})();