• 3S006-GR-1
  • 3S006-GR-2
1

Elegant Bow Square Toe Mary Jane Flats with Single Strap (Grey)

Regular price
RM 99.00
Sale price
RM 99.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

Measurements are in cm


36

37

38

39

Foot Length 

23

23.5

24

24.5


Shoes Are Neither Returnable Nor Exchangeable 
鞋子 不能退换呀。

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