✨ Nurtured in Hooghly, Delivered Anywhere in India 🌿 India's Finest Collection of Exotic Adeniums 🌸 Rare Cactus β€’ Exotic Succulents β€’ Exceptional Elegance 🏺 Living Sculptures from Balagarh πŸ“– Every Bloom Tells a Story 🚚 Safe Travel & Healthy Arrival Guaranteed
✨ Nurtured in Hooghly, Delivered Anywhere in India 🌿 India's Finest Collection of Exotic Adeniums 🌸 Rare Cactus β€’ Exotic Succulents β€’ Exceptional Elegance 🏺 Living Sculptures from Balagarh πŸ“– Every Bloom Tells a Story 🚚 Safe Travel & Healthy Arrival Guaranteed

Pusparani Nursery

Where Nature Meets Elegance

🌿 Your Selection

Your Garden Bag

Selected Plants

Your bag is empty

Explore our collection and add some beautiful plants.

Browse Plants

Order Summary

Subtotal β‚Ή0.00
Shipping β‚Ή0.00
Total Payable β‚Ή0.00

Safe & Secure Payment



Nurtured with Love from Jirat, Hooghly

Every Plant, A Living Masterpiece
0
/* ── state ── */ var activeCode = null; // code string currently applied var activePromo = null; // tier object currently applied var baseTotal = null; // total before discount var scratchDone = false; // has canvas been fully scratched? var cardTier = null; // tier shown on current scratch card var lastTier = null; // last tier rendered (to avoid re-init) /* ── DOM shortcuts ── */ function $(id) { return document.getElementById(id); } function getRawTotal() { var el = $('lblTotal'); return el ? (parseFloat(el.innerText.replace(/[^0-9.]/g, '')) || 0) : 0; } function setTotalDisplay(val) { var el = $('lblTotal'); if (el) el.innerText = val.toFixed(2); } function calcDiscount(promo, total) { return promo.type === "percent" ? Math.round(total * promo.amount / 100 * 100) / 100 : Math.min(promo.amount, total); } /* ── pick best matching tier for a given total ── */ function getTier(total) { var best = null; for (var i = 0; i < TIERS.length; i++) { if (total >= TIERS[i].threshold) best = TIERS[i]; } return best; } /* ── lowest threshold (minimum to show reward section) ── */ var MIN_THRESHOLD = TIERS[0].threshold; }());