Women's Silver PU Leather Pointed Toe Chunky Heel Side Zipper Ankle Boots

$29.99
$56.99
Save $27.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

Style: Daily, Casual

Color: Silver, Black, Gold

Material: PU Leather, Rubber

Size Fit: True To Size

Type: Ankle Boots

Pattern Type: Solid

Design: Pointed Toe, Chunky Heel, Side Zipper

High Heel: 6cm-8cm

Product Type: Instock

Item ID: SQ000895

SIZE CHART
European SizeUS SizeHeel to Toe(inch)
3558.86
3669.06
376.59.25
387.59.45
3989.65
408.59.84
419.510.04
421010.24
4310.510.43
*This data was obtained from manually measuring the product, it may be off by 2-3 CM.
1
Select product
Selected 0 item(s)
Silver/ 35
Silver/ 36
Silver/ 37
Silver/ 38
Silver/ 39
Silver/ 40
Silver/ 41
Silver/ 42
Silver/ 43
Black/ 35
Black/ 36
Black/ 37
Black/ 38
Black/ 39
Black/ 40
Black/ 41
Black/ 42
Black/ 43
Gold/ 35
Gold/ 36
Gold/ 37
Gold/ 38
Gold/ 39
Gold/ 40
Gold/ 41
Gold/ 42
Gold/ 43
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)