Men's Orthopedic Shoes Athletic Sneakers

$39.95
$49.95
Save 20%
30 Days Money Back Guarantee
Find Your Size in the "Size Guide" Below
Color : Red
Men's Size (Us) : 4
Quantity
CiiGoal Size Guide

CiiGoal Size Guide

Find Your Size in the Chart Below

If you do not know your US(UK/EU) size, use the How to Measure Foot Length prompts at the bottom of the size guide to help you find the right size. Please note that different manufacturers and brands may have slight variations in sizing standards, so it's advisable to check the our size guide when purchasing shoes to ensure the correct fit.

Scroll down to see more sizes and How to Measure Foot Length prompts.

CiiGoal Shoes Size Charts

US - Men's

US - Women's

UK

EU

Foot Length (cm)

Foot Length (inch)

US M 3

US W 4.5

UK 2.5

EU 35

21.11

8.3125

US M 3.5

US W 5

UK 3

EU 35.5

21.59

8.5

US M 4

US W 5.5

UK 3.5

EU 36

22.07

8.6875

US M 4.5

US W 6

UK 4

EU 36.5

22.38

8.8125

US M 5

US W 6.5

UK 4.5

EU 37.5

22.86

9

US M 5.5

US W 7

UK 5

EU 38

23.34

9.1875

US M 6

US W 7.5

UK 5.5

EU 38.5

23.65

9.3125

US M 6.5

US W 8

UK 6

EU 39

24.13

9.5

US M 7

US W 8.5

UK 6

EU 40

24.61

9.6875

US M 7.5

US W 9

UK 6.5

EU 40.5

24.92

9.8125

US M 8

US W 9.5

UK 7

EU 41

25.40

10

US M 8.5

US W 10

UK 7.5

EU 42

25.88

10.1875

US M 9

US W 10.5

UK 8

EU 42.5

26.19

10.3125

US M 9.5

US W 11

UK 8.5

EU 43

26.67

10.5

US M 10

US W 11.5

UK 9

EU 44

27.15

10.6875

US M 10.5

US W 12

UK 9.5

EU 44.5

27.46

10.8125

US M 11

US W 12.5

UK 10

EU 45

27.94

11

US M 11.5

US W 13

UK 10.5

EU 45.5

28.42

11.1875

US M 12

US W 13.5

UK 11

EU 46

28.73

11.3125

US M 12.5

US W 14

UK 11.5

EU 47

29.21

11.5

US M 13

US W 14.5

UK 12

EU 47.5

29.69

11.6875

US M 13.5

US W 15

UK 12.5

EU 48

30.00

11.8125

US M 14

US W 15.5

UK 13

EU 48.5

30.48

12

US M 14.5

US W 16

UK 13.5

EU 49

30.96

12.1875

US M 15

US W 16.5

UK 14

EU 49.5

31.27

12.3125

US M 15.5

US W 17

UK 14.5

EU 50

31.75

12.5

US M 16

US W 17.5

UK 15

EU 50.5

32.23

12.6875

US M 16.5

US W 18

UK 15.5

EU 51

32.54

12.8125

US M 17

US W 18.5

UK 16

EU 51.5

33.02

13

Questions about your sizing? We'd love to help! For assistance, please contact Our Customer Service.

How to Measure Foot Length

Description

Forget All Foot Problems When Wearing CiiGoal's Best Walking Shoes!

  • Helps With Plantar Fasciitis & Bunions
  • Wide Toe-Box For Wide Feet
  • Shoes for Standing All Day -  Comfortable For Whole 12-Hour Shifts
  • 3x More Lightweight Than Any Other Shoe
  • Hollow Carved Technology

Does walking feel uncomfortable and painful?

The CiiGoal Shoe is what you need:

What makes CiiGoal™ different?

  • Extra Comfort With Arch Support - Our orthotic shoes provide sufficient cushioning and comfort, a size that is broad enough to fit in. 
  • Eliminating Arch Tension - The orthotic insoles give proper support and minimize undesired stress. Even the most strenuous activities, such as rigorous exercises or lengthy runs, will not put you in danger.
  • Anatomical Frame Correcting - The shoe insoles allow for balancing foot force and modification of bad posture, which do not harm for daily usage and boost wearers' confidence.
  • Slip Resistant Outsole - Slip-resistant traction outsole with water resistance.

CiiGoal Premium Tech System

Our ergonomic cushioning sole reduces any impact that occurs after taking a step.

Every step is comfortable and smooth!

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.