(11)  999
(13)  850
(12)  650
(12)  4,500
(1)  1,210
(7)  850
(5)  550
(7)  1,098
(7)  895
(6)  1,012
(19)  820
(17)  450
(6)  335
(17)  879
(18)  995
window.addEventListener("load", function() { // Check if 'brandSearch' element exists in the page const input = document.getElementById("brandSearch"); if (input) { // Only run the script if the element exists on the page input.addEventListener("keyup", function() { const filter = input.value.toLowerCase(); const items = document.querySelectorAll("ul.pwb-row li"); items.forEach(function(item) { const text = item.textContent.toLowerCase(); item.style.display = text.includes(filter) ? "block" : "none"; }); }); } });