(function() {
  var requestToken = 0;
  var lastAppliedToken = window.elforiLastAppliedFilterToken || 0;

  if (requestToken > 0 && requestToken < lastAppliedToken) {
    return;
  }

  if (requestToken > 0) {
    window.elforiLastAppliedFilterToken = requestToken;
  }

  // Clear filter form state completely (reset() restores initial checked values)
  var sectionFilterForm = document.getElementById('filter');
  if (sectionFilterForm) {
    sectionFilterForm.querySelectorAll('input[type="checkbox"]').forEach(checkbox => {
      checkbox.checked = false;
      checkbox.defaultChecked = false;
    });
  }

  // Update products section
  var productsContainer = document.getElementById('sections-products');
  productsContainer.innerHTML = "  <div class=\"col-section-item reset--padding\">\n    <div class=\"section-item\"\n     data-code=\"0615\"\n     data-name=\"Гель для душу Alpha Complex Shower Gel 250 мл\"\n     data-brand=\"Holy Land\"\n     data-category=\"Тіло\"\n     data-category2=\"Гель для душу\"\n     data-variant=\"250 мл\"\n      data-index=\"1\">\n      <a class=\"section-item__link-overlay\" aria-label=\"Гель для душу Alpha Complex Shower Gel 250 мл\" href=\"/products/hel-dlia-dushu-alpha-complex-shower-gel\"><\/a>\n      <div class=\"section-item__img-wrap\">\n        <div class=\"section-item_lables\">\n        <\/div>\n        <div class=\"section-item_favorite\">\n            <a aria-label=\"Улюблені товари\" href=\"/cabinet/my-orders\">\n              <img class=\"section-add-favorite\" alt=\"Додати в улюблені\" src=\"/assets/icons/heart-regular-c6e55d47af52bdfced6603835f93618f13c65b3a094ab7a3b403df6b6ad16ffb.png\" />\n<\/a>        <\/div>\n          <img class=\"section-item__img\" alt=\"Гель для душу Alpha Complex Shower Gel 250 мл\" title=\"Гель для душу Alpha Complex Shower Gel 250 мл\" src=\"https://elfori.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBWlU9IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--04d9599079ef9cd54da40b4798ab6c0ef49e3589/0615_alpha-complex-shower-gel%20250ml.jpg\" />\n\n          <span class=\"stock-trigger\">Залишилось 13 штук<\/span>\n      <\/div>\n      <div class=\"section-item-desc\">\n        <div class=\"section-item__h3\">\n          Гель для душу Alpha Complex Shower Gel 250 мл\n        <\/div>\n        <div class=\"section-item-rating\">\n          <div class=\"section-item-rating\">\n          <\/div>\n        <\/div>\n        <p class=\"section-item__volume\">\n            0615 /\n            250 мл\n        <\/p>\n          <!--  B2C ACCESS BRANCH -->\n          <p class=\"section-item__price\">\n            1 690,00 ₴\n          <\/p>\n            <form class=\"product__form\" action=\"/line_items?product_id=35\" accept-charset=\"UTF-8\" data-remote=\"true\" method=\"post\">\n    <input value=\"1\" class=\"hidden-quantity counter-product\" placeholder=\"1\" aria-label=\"Кількість товару\" type=\"text\" name=\"line_item[quantity]\" id=\"line_item_quantity\" />\n    <input type=\"submit\" name=\"commit\" value=\"Купити\" class=\"product__buy category-item__detail\" />\n<\/form>\n  <!--  B2C ACCESS BRANCH -->\n\n      <\/div>\n    <\/div>\n  <\/div>\n";
  productsContainer.dataset.productsTotal = "1";
  productsContainer.dataset.productsStart = "1";
  productsContainer.dataset.productsEnd = "1";
  productsContainer.dataset.productsPages = "1";

  // Update pagination
  document.getElementById('paginate').innerHTML = "          \n<div class=\"col-lg-12\">\n  \n<\/div>\n";

  // Add click handlers to pagination elements
  document.querySelectorAll('.pagination span').forEach(span => {
    span.addEventListener('click', () => {
      window.scrollTo({
        top: 0,
        behavior: 'smooth'
      });
    });
  });

  window.elforiFilterCounts = {};
  if (typeof window.refreshActiveFiltersChips === 'function') {
    window.refreshActiveFiltersChips();
  }
})();
