Free shipping on international orders of $100

Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
1 / 5
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
Corywear Premium Gentlemen Coat
1 / 5

Corywear Premium Gentlemen Coat

$125.99
$0.00 0% Off
Color
Size

Our latest tailored coat is designed for the classic gentleman who doesn't compromise on quality. Crafted from the finest fabrics, this 2-button coat has been carefully put together to ensure exceptional finish and quality.

  • Fit: Fits true to size. Take your normal coat size. If you are unsure, choose one size bigger than your usual size.

FEATURES:

  • Material: Wool-Polyester Blend
  • Including 1x Corywear Premium Gentlemen Coat

OUR GUARANTEE:

  •  ☑️  Tracking number for every order
  •  ☑️  Safe payments credit card® and Paypal®
  •  ☑️  24/7 assistance service@corywear.com
  •  ☑️  No hidden fees!

Size Chart:

Size Shoulder Bust  Length Sleeve
cm inch cm inch cm inch cm inch
M 43.10 16.97 104.00 40.94 77.00 30.31 59.50 23.43
L 44.30 17.44 108.00 42.56 79.00 31.10 61.00 24.02
XL 45.50 17.92 112.00 44.09 81.00 31.89 62.50 24.61
2XL 46.70 18.39 116.00 45.67 83.00 32.68 64.00 25.20
3XL 47.90 18.86 120.00 47.24 85.00 33.46 65.00 25.59
4XL 49.10 19.33 124.00 48.82 87.00 34.25 66.00 25.98
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.