SOLVING LIFE PRO

Fast Delivery
→ 🚚

Easy Return
→ 🔁

Secure Payment
→ 🔒

"Secure Checkout Access – Please Login or Register"

"New here? Only ( Register ) below to place your first order."

❝Don't worry, it's quick and easy!❞

"Already have an account? Only ( Log in ) below to complete your checkout."

document.addEventListener('DOMContentLoaded', function () { const qtyInput = document.querySelector('input.qty'); const priceWrapper = document.querySelector('.summary .woocommerce-Price-amount'); if (qtyInput && priceWrapper) { // মূল দাম একবারই নিবো (যেমন 1200) const originalPrice = parseFloat(priceWrapper.textContent.replace(/[^0-9.]/g, '')); qtyInput.addEventListener('input', function () { const qty = parseInt(this.value) || 1; const updatedPrice = originalPrice * qty; priceWrapper.textContent = "৳" + updatedPrice.toFixed(2); }); } });