/* Add custom CSS styles below */ 
document.addEventListener("DOMContentLoaded", function () {
  
  const products = document.querySelectorAll(".product-item");

  products.forEach(product => {
    
    const btn = document.createElement("button");
    btn.innerText = "أهدي من تحب 🎁";

    btn.style.cssText = `
      display:block;
      width:100%;
      margin-top:10px;
      padding:10px;
      background:#0f3d3e;
      color:#fff;
      border:none;
      border-radius:6px;
      cursor:pointer;
      font-size:14px;
    `;

    btn.onclick = function () {
      window.location.href = "/products/gift"; // غيري الرابط لمنتج الإهداء
    };

    product.appendChild(btn);
  });

});