Restaurant Menu Html | Css Codepen
/* custom scrollbar */ ::-webkit-scrollbar width: 6px; ::-webkit-scrollbar-track background: #e9e0d3; ::-webkit-scrollbar-thumb background: #b87c4f; border-radius: 8px;
// State: currently active filter category (null = show all) let activeCategory = null; // null means "All" restaurant menu html css codepen
// Helper: render menu cards based on active category function renderMenuItems() let filteredItems = menuData; if (activeCategory !== null) filteredItems = menuData.filter(item => item.category === activeCategory); ::-webkit-scrollbar-track background: #e9e0d3


