(18)  1,990
(16)  2,310
(17)  1,727
(16)  2,871
(16)  2,226
(18)  4,459
(16)  9,790
(17)  3,075
(17)  3,075
(16)  4,459
(16)  4,459
(16)  2,795
(18)  4,459
(16)  6,000
(17)  3,075
(12)  1,449
(12)  499
(7)  499
(17)  879
document.addEventListener("DOMContentLoaded", function() { // Check if the brandSearch element exists const input = document.getElementById("brandSearch"); if (input) { // Only add the event listener if the element exists 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"; }); }); } });