removeProduct(id) { const cart = this.cart; const filteredItems = cart.filter(item => item.id !== id); this.cart = filteredItems; }