Billing Details

Your Order

ProductSubtotal
Disend, Code: W2- 202Disend, Code: W2- 202  × 1 ৳ 700
Desend, Code: GC- 33Desend, Code: GC- 33  × 1 ৳ 750
Subtotal৳ 1,450
Shipping
Total৳ 1,570
  • পণ্য হাতে পেয়ে টাকা পরিশোধ করবো ইনশাআল্লাহ।
    ব্যক্তিগত কোনো কারণে পণ্য রিসিভ না করলে
    ডেলিভারির চার্জ অবশ্যই দিয়ে দিবো।

Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our privacy policy.

Browse Categories
document.addEventListener("DOMContentLoaded", function () {const DELIVERY_CHARGE = 120; const FREE_DELIVERY_QTY = 2;function updateSummary() {const products = document.querySelectorAll(".al-product");let totalQty = 0; let subtotal = 0;products.forEach(function (product) {const check = product.querySelector(".al-check"); const qty = product.querySelector(".al-qty");if (!check || !qty) return;if (check.checked) {const q = parseInt(qty.value) || 1; const price = parseInt(product.dataset.price) || 0;totalQty += q; subtotal += q * price;}});let delivery = 0;if (totalQty > 0) {if (totalQty < FREE_DELIVERY_QTY) { delivery = DELIVERY_CHARGE; }}const grandTotal = subtotal + delivery;document.getElementById("al-total-qty").textContent = totalQty; document.getElementById("al-subtotal").textContent = "৳ " + subtotal;document.getElementById("al-delivery").textContent = delivery === 0 && totalQty > 0 ? "ফ্রি" : "৳ " + delivery;document.getElementById("al-grand-total").textContent = "৳ " + grandTotal;}document.querySelectorAll(".al-product").forEach(function (product) {const plus = product.querySelector(".al-plus"); const minus = product.querySelector(".al-minus"); const qty = product.querySelector(".al-qty"); const check = product.querySelector(".al-check");if (plus) {plus.addEventListener("click", function () {qty.value = (parseInt(qty.value) || 1) + 1;check.checked = true;updateSummary();});}if (minus) {minus.addEventListener("click", function () {let value = parseInt(qty.value) || 1;if (value > 1) {qty.value = value - 1;}updateSummary();});}if (check) {check.addEventListener("change", function () {updateSummary();});}});updateSummary();});