Italian Men's High-top Leather Boots Cap Toe Waterproof Wear-resistant Dress Boots Work Boots

$52.99 $93.99 Save 44%
Color:  khaki
Size:  US 7/UK 6
In Stock, Ships Same Day:  Regular Width
Quantity
Free shipping on orders over $70 USD
Free returns
Sustainably made
Secure payments
Share the love

⭐With 30 days no risk money back guarantee.
⭐99% of reviewers recommend this product.
⭐100% Satisfaction Guaranteed.
⭐Ship within 48 hours.

Product Description

HANDCRAFTED WITH INTEGRITY

The product you see is 100% handmade and is a result of hours of labour and craftmanship instilled in it. Every single shoe is totally hand burnished that makes it unique to any other pair of shoe. 

Reliably Rugged

The sole of these boots is crafted with our own Plyolite midsole and oil-resistant, slip-resistant rubber outsole, meeting OSHA safety standards. Made of Full-Grain Leather Upper, which is comfort, breathability, soft, Waterproof, deodorized and easy to clean. It offers top-notch durability, support, and cushioning.

The user-friendly design makes the upper close to your feet. Enjoy stylish comfort and maintain a good appearance all day long. The soft lining and insole are suitable for all-day wear.

Goodyear Stitching Process

Precision finish sutures are strong and durable.This boot is meticulously hand-stitched. Upper can withstand kinks, won't warp, and is scratch-resistant, allowing for a better experieynce and durabilit.

Full-Grain Oiled Leather Upper

After incorporating oil during the tanning process, we subject the oiled full-grain leather to a series of rigorous tests to ensure its strength and durability. This form of leather is more resistant to water and other liquid damage and requires less maintenance over time.

-Product Details-

  • Item model number: 2023 New Style
  • + Rubber sole
  • Origin: Italy
  • Application: Daily walking, Working, Parties, home, etc.
  • Fashionable and Versatile: These boots can be worn with shirts, jeans, sweaters, pullovers and more. Perfect for office, home, party, cycling, work, outdoor everyday leisure.
mens cap toe leather dress boots dress shoes boots casual walking shoes details 1
mens cap toe leather dress boots dress shoes boots casual walking shoes details 2
mens cap toe leather dress boots dress shoes boots casual walking shoes details 4
mens cap toe leather dress boots dress shoes boots casual walking shoes details 7
mens cap toe leather dress boots dress shoes boots casual walking shoes details 8
mens cap toe leather dress boots dress shoes boots casual walking shoes details 9
mens cap toe leather dress boots dress shoes boots casual walking shoes details 10
mens cap toe leather dress boots dress shoes boots casual walking shoes details 11
mens cap toe leather dress boots dress shoes boots casual walking shoes details 12
mens cap toe leather dress boots dress shoes boots casual walking shoes details 13
mens cap toe leather dress boots dress shoes boots casual walking shoes details 14
mens cap toe leather dress boots dress shoes boots casual walking shoes details 15
mens cap toe leather dress boots dress shoes boots casual walking shoes details 16
mens cap toe leather dress boots dress shoes boots casual walking shoes details 17
mens cap toe leather dress boots dress shoes boots casual walking shoes details 18
mens cap toe leather dress boots dress shoes boots casual walking shoes details 19
CLICK ADD TO CART TO ORDER YOURS NOW!
The Checkout Process is Guaranteed to be 100% Safe and Secure with Visa, MasterCard, American Express, Discover, Apple Pay or PayPal.100% Satisfaction Guaranteed With Every Order.
 
 
MONEY BACK GUARANTEE
We want you to be 100% satisfied with the products you buy from us. If for ANY reason you are not satisfied with your purchase, we offer an iron-clad money back guarantee.
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.