๐Ÿ‘Ÿ Unisex 360° Thermal Anti-Slip Orthopedic Winter Shoes

$26.98
Retail $49.90
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'd223bfb8-e121-4feb-8e1d-302ff2d89ed7'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // ๅŠ ่ดญไธญ็Šถๆ€ } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // ็›‘ๅฌไบ‹ไปถ this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = '4571761d-10a6-417c-adce-a11e2c0c3590'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // ้‡ๆ–ฐๆธฒๆŸ“ ๆŠ–ๅŠจ้—ฎ้ข˜ๅค„็† this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // ็ป‘ๅฎšไบ‹ไปถ bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // ๆ˜ฏๅฆpopover้ขๆฟ็‚นๅ‡ป่Œƒๅ›ด if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // ๅ…ผๅฎนไธป้ข˜ this.toggleProductSticky(true); }) // ็›‘ๅฌๅ˜ไฝ“ๅ˜ๅŒ– document.addEventListener('dj.variantChange', async(event) => { // ้‡ๆ–ฐๆธฒๆŸ“ const variant = event.detail.selected; if (variant.product_id == '4571761d-10a6-417c-adce-a11e2c0c3590' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // ๅ…ผๅฎนไธป้ข˜ handleFitTheme() { // top ๅฑžๆ€งๅฝฑๅ“ๆŠ–ๅŠจ let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // ๅ…ผๅฎน wind/flash /hero ไธป้ข˜ (stickyๅฑžๆ€งๅฝฑๅ“ popover ๅฑ‚็บงๅฑ•็คบ, ไผš่ขซๅ…ถไป–ๅ…ƒ็ด ่ฆ†็›–) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // ่ฟ˜ๅŽŸ่ฏฅไธป้ข˜ๅŽŸๆœ‰็š„stickyๅฑžๆ€งๅ€ผ productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // ๅ…ผๅฎนไธป้ข˜ this.toggleProductSticky(); }); // ๅŠ ่ดญไบ‹ไปถ this.registerAction('handleAddToCart', (invocation) => { // ้˜ปๆญขไบ‹ไปถๅ†’ๆณก const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // ๅฆ‚ๆžœๆญฃๅœจๅŠ ่ดญไธญ๏ผŒ็›ดๆŽฅ่ฟ”ๅ›ž if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // ๅŠ ่ดญๆ–นๆณ• async addToCart(quantity) { // ่ฎพ็ฝฎๅŠ ่ดญไธญ็Šถๆ€ this.isAddingToCart_ = true; const productId = '4571761d-10a6-417c-adce-a11e2c0c3590'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // ่งฆๅ‘ๅŠ ่ดญๆˆๅŠŸๆ็คบ this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // ๆ— ่ฎบๆˆๅŠŸๅคฑ่ดฅ๏ผŒ้ƒฝ้‡็ฝฎๅŠ ่ดญ็Šถๆ€ this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // ่งฆๅ‘ๅŠ ่ดญๆˆๅŠŸๆ็คบ triggerAddToCartToast_() { // ๅฆ‚ๆžœไธป้ข˜ๆœ‰่‡ชๅทฑ็š„ๅŠ ่ดญๆ็คบ๏ผŒๅˆ™ไธๆ˜พ็คบ const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // ๆ˜พ็คบๅบ”็”จ็š„ๅŠ ่ดญๆˆๅŠŸๆ็คบ this.showToast_("Added successfully"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
Color : White Lining
Us Size : US 5
Width : Standard
Quantity
Description

Description

Stop Suffering Through Winter

Winter shouldn’t mean cold, aching feet and dangerous icy steps. Every year, low-quality shoes fail to protect you — they slip, soak through, and leave you shivering and sore after just a few minutes outdoors.

The 2026 ours 360° Thermal Anti-Slip Orthopedic Winter Shoes are built to change that.

With 360° Ultra Heat Insulation, orthopedic support, and an advanced anti-slip traction sole, they keep you warm, dry, and perfectly steady on snow, ice, or rain-slick ground. Lightweight, waterproof, and engineered for all-day comfort — finally, a winter shoe that moves with you, not against you.

360° Ultra Heat Insulation System 

Crafted with Fleece-Lined Canvas Oxford Fabric, these shoes combine soft thermal comfort with breathable protection.

The self-heating insulation keeps your feet at a steady 30°C, while the dense fleece lining wraps them in plush warmth. Its moisture-wicking fibers keep your feet dry and fresh, never sticky or overheated.

Despite the cozy feel, the lining stays light and breathable, giving all-day comfort even during long wear.

#1 Orthopedist Recommended Shoes

Experience next-level comfort with orthopedic design that keeps your body aligned, pain-free, and supported all day. Each step is cushioned by a premium memory foam insole that adapts to your feet, absorbs impact, and relieves pressure on heels, knees, and lower back.

The 3-Point Arch Support System ensures even weight distribution and promotes a balanced, natural gait, while the ergonomic toe box helps realign toes and reduce bunion discomfort. Lightweight yet stable, every detail enhances comfort, posture, and all-day stability.

Anti-Slip, & Shock-Absorbing Sole

The advanced multi-traction rubber sole delivers superior grip on wet or uneven ground, while the dual-layer EVA cushion absorbs shock and relieves joint pressure. Flexible, durable, and built for all-day support — no slips, no strain.

Easy Slip-On Design

Designed for effortless wear — no laces, no fuss. The flexible side panels stretch to let you slip the boots on and off in seconds, while ensuring a secure, comfortable fit for every foot shape. 

Perfect for busy mornings, office wear, or seniors who value comfort and ease without compromising on style.

Premium & Waterproof & Lightweight Materials 

Crafted from high-density woven fabric, the upper is durable, water-repellent, and stain-resistant — keeping your shoes clean with minimal care.

The reinforced rubber sole ensures strong grip, anti-abrasion durability, and long-term shape retention, while its ultra-flexible design moves naturally with your feet.

Dual-layer weaving prevents pilling and maintains a smooth, refined texture for lasting comfort and lightweight flexibility indoors or outdoors.

Why To Choose Our 360° Thermal Anti-Slip Orthopedic Winter Shoes?

While most winter shoes only focus on warmth or style, our Shoes delivers complete winter protection — blending advanced thermal technology, orthopedic comfort, and anti-slip safety into one powerful design.

โ˜‘๏ธ 360° Ultra Heat Insulation: locks warmth up to 30°C

โ˜‘๏ธ Orthopedic Memory Foam Support: aligns posture, and reduces foot, knee, and back pain.

โ˜‘๏ธ High-Density Waterproof Fabric: blocks water and snow while staying breathable.

โ˜‘๏ธ Multi-Traction Anti-Slip Sole: enhanced grip and shock absorption on icy or wet ground.

โ˜‘๏ธ Feather-Light & Flexible Build: comfort for long walks or daily wear.

What Our Customers Say About the Shoes

“I bought these shoes before my winter vacation in Canada, and honestly, they exceeded my expectations. The double fur lining kept my feet warm even in -10°C weather, and the non-slip soles gave me great traction on icy sidewalks. The outer fabric also repels snow and stains, which is super practical. They’re lightweight yet feel very secure. Definitely one of my best winter purchases!” - Philip Elliot, 35, Alaska, US

“I got these as a Christmas gift for my mom — she loves them! She says they’re lightweight, waterproof, and warm, perfect for walking her dog on cold mornings. The slip-on fit with side stretch panels makes them so easy to wear. She also mentioned her knees and ankles feel more supported thanks to the arch-cushioned insole.” Sharon Galliher, 26, Labrador, Canada 

“I spend long hours standing at work, and finding comfortable shoes in winter has always been tough. These shoes changed that completely. The 3-point arch support keeps my posture aligned and reduces fatigue in my back and knees. The wedge sole adds stability without feeling bulky, and the fleece lining keeps my feet warm yet breathable. They also look really nice. I’ve had coworkers ask where I got them! Totally worth the price.” - Georgette Scott, 32, Seattle, WA

Packaging Includes

  • 1 X 360° Thermal Anti-Slip Orthopedic Winter Shoes

Why Choose Us?

  • We work directly with manufacturers all over the world to ensure the best quality of our products. We have a Quality Control department which helps us to keep our promise!

  • Price is always competitive.
  • Awesome Customer Service
  • Amazing products along with High Quality
  • Read reviews from our lovely customers