document.querySelectorAll(".card button").forEach(btn=>{
  btn.onclick=()=>{
    alert("Product Added to Cart");
  };
});
