Cart

Your Cart - Scrapwaalii

🛒 Your Cart

`; return; } let table = ` `; let grandTotal = 0; cart.forEach((item, index) => { let total = item.price * (item.qty || 1); grandTotal += total; table += ` `; }); table += `
Item Rate (₹) Qty Total (₹) Remove
${item.item || item.name || "Unnamed Item"} ${item.price} ${item.qty || 1} ${total}
Grand Total: ₹${grandTotal}
`; container.innerHTML = table; } function checkout() { // Redirect to your Ninja Form page window.location.href = "https://scrapwaalii.com/proceed-to-checkout/"; } // Initial render renderCart();