Women's High Top Thick Sole Martin Boots

$39.99
$69.99
Save $30.00
1 sold
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

With a comfortable, modern, and durable design, the boots are finished with a fashion  upper to keep you looking good and feeling comfortable.

1
Select product
Selected 0 item(s)
White/ US 4/UK 2/EU 35
White/ US 5/UK 3/EU 36
White/ US 6/UK 4/EU 37
White/ US 7/UK 5/EU 38
White/ US 8/UK 6/EU 39
White/ US 8.5/UK 6.5/EU 40
Brown/ US 4/UK 2/EU 35
Brown/ US 5/UK 3/EU 36
Brown/ US 6/UK 4/EU 37
Brown/ US 7/UK 5/EU 38
Brown/ US 8/UK 6/EU 39
Brown/ US 8.5/UK 6.5/EU 40
Black/ US 4/UK 2/EU 35
Black/ US 5/UK 3/EU 36
Black/ US 6/UK 4/EU 37
Black/ US 7/UK 5/EU 38
Black/ US 8/UK 6/EU 39
Black/ US 8.5/UK 6.5/EU 40
White - Cotton/ US 4/UK 2/EU 35
White - Cotton/ US 5/UK 3/EU 36
White - Cotton/ US 6/UK 4/EU 37
White - Cotton/ US 7/UK 5/EU 38
White - Cotton/ US 8/UK 6/EU 39
White - Cotton/ US 8.5/UK 6.5/EU 40
Brown-Cotton/ US 4/UK 2/EU 35
Brown-Cotton/ US 5/UK 3/EU 36
Brown-Cotton/ US 6/UK 4/EU 37
Brown-Cotton/ US 7/UK 5/EU 38
Brown-Cotton/ US 8/UK 6/EU 39
Brown-Cotton/ US 8.5/UK 6.5/EU 40
Black - Cotton/ US 4/UK 2/EU 35
Black - Cotton/ US 5/UK 3/EU 36
Black - Cotton/ US 6/UK 4/EU 37
Black - Cotton/ US 7/UK 5/EU 38
Black - Cotton/ US 8/UK 6/EU 39
Black - Cotton/ US 8.5/UK 6.5/EU 40
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)