`; return; } let table = `
| Item | Rate (₹) | Qty | Total (₹) | Remove |
`; let grandTotal = 0; cart.forEach((item, index) => { let total = item.price * (item.qty || 1); grandTotal += total; table += ` | ${item.item || item.name || "Unnamed Item"} | ${item.price} | ${item.qty || 1} | ${total} | |
`; }); table += `
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();