Billing Details

Your Order

ProductSubtotal
Haji Shaheb, Code: HS- 214Haji Shaheb, Code: HS- 214  × 1 ৳ 800
Jotey Panjabi, Code: JP-1004, Size-44Jotey Panjabi, Code: JP-1004, Size-44  × 1 ৳ 850
Subtotal৳ 1,650
Shipping
Total৳ 1,770
  • পণ্য হাতে পেয়ে টাকা পরিশোধ করবো ইনশাআল্লাহ।
    ব্যক্তিগত কোনো কারণে পণ্য রিসিভ না করলে
    ডেলিভারির চার্জ অবশ্যই দিয়ে দিবো।

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();});