
  document.addEventListener("DOMContentLoaded", function () {
    document.querySelectorAll('.t-store__filter__item').forEach(function(item) {
      if (item.textContent.trim() === 'SALE') {
        item.style.color = '#E60000';
        item.style.fontWeight = '500';
      }
    });
  });

