• 3BL015-P1
1

Moon Buckle Details Leather Skinny Belt

Regular price
RM 33.00
Sale price
RM 33.00
Regular price
RM 0.00
Free Shipping (西马满RM150 / 东马满RM200) | FINE LABEL
Free Shipping (西马满RM150 / 东马满RM200)
Fast Shipment (工作日 24 小时内闪电发货) | FINE LABEL
Fast Shipment (工作日 24 小时内闪电发货)
Quality Checked Before Shipping | FINE LABEL
Quality Checked Before Shipping

Product Details

Material: Leather

Measures approx. 72 cm /  28 inch - 94 cm / 37 inch  L x 1.5 cm H

// Fine Label - Max 3 units per product page add-to-cart const quantityInput = document.getElementById('Quantity'); if (quantityInput) { const quantityWrapper = quantityInput.closest('quantity-input'); if (quantityWrapper) { const plusButton = quantityWrapper.querySelector('button[name="plus"]'); const minusButton = quantityWrapper.querySelector('button[name="minus"]'); if (plusButton) { plusButton.addEventListener('click', function () { setTimeout(function () { if (parseInt(quantityInput.value) > 3) { quantityInput.value = 3; quantityInput.dispatchEvent(new Event('change', { bubbles: true })); } }, 0); }); } if (minusButton) { minusButton.addEventListener('click', function () { setTimeout(function () { if (parseInt(quantityInput.value) < 1) { quantityInput.value = 1; quantityInput.dispatchEvent(new Event('change', { bubbles: true })); } }, 0); }); } } quantityInput.addEventListener('change', function () { let qty = parseInt(this.value) || 1; if (qty > 3) qty = 3; if (qty < 1) qty = 1; this.value = qty; }); }