var options = { key: "rzp_live_SDAx5dkQYPb3EV", // 🔑 āĻāĻ–āĻžāύ⧇ āϤ⧋āĻŽāĻžāϰ LIVE Razorpay Key ID āĻŦāϏāĻžāĻŦ⧇ amount: order.amount, currency: "INR", name: "New Girlfriend Chat Guide", description: "PDF Guide", order_id: order.id, // ✅ Razorpay popup auto-fill prefill: { name: customerName, contact: customerMobile }, handler: function (response) { fetch('verify.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ razorpay_order_id: response.razorpay_order_id, razorpay_payment_id: response.razorpay_payment_id, razorpay_signature: response.razorpay_signature, name: customerName, mobile: customerMobile }) }) .then(function(res){ return res.json(); }) .then(function(data){ if (data.status === "success") { window.location.href = "download.php"; } else { alert("Payment verification failed. Please try again."); } }) .catch(function(){ alert("Verification error. Please contact support."); }); } };