Document
24h Flash Sale: An extra 53% off
Limited Time Offer
00h
:
00m
:
00s
Check out
High Stretch Men's Classic Pants
£39.99 USD
18.99 (53%OFF)
Buy 2 Free Shipping
Buy now
Size Guide

Super stretch

men's suit trousers

for total comfort!
ALL DAY COMFORT
Made with elastic fabric, the classic pants are designed to be breathable, wrinkle-resistant, and have a 4-way stretch that will keep you comfortable all day.
3D waist adjustment
Mid rise design Reasonably lifting buttocks

Refinement curve Slim, comfortable, and elegant

high-quality elastic cotton
Comfortable quality and high-quality elastic cotton

High elasticity/unrestricted/free movement

Comfortable and

Stretchless elastic material

Product diagram
SPECIFICATION

Skin safety

Comfortable

Elastic

  • Style: Business casual
  • Pants type: loose
  • Pants length: long pants
  • Waist: high waist
  • Thickness: normal
  • Pattern: Solid color
  • Main fabric composition: polyester, cotton
  • Stretch: high stretch
  • Colors: NOIR, BLUE, GRAY, KHAKI, WINE RED
  • Product Dimensions (L x W x H): 29-42W × 40-41L
  • PACKAGE INFORMATION:
  • 1× Men's Classic High Elasticity Suit Pants

These dress pants provide the ultimate sophistication without hindering your comfort. The easy care of machine washing will make these your favorite pants!

INCH.
CM.
24h Flash Sale: An extra 53% off
Limited Time Offer
00h
:
00m
:
00s
High Stretch Men's Classic Pants

£39.99 USD

18.99 (53%OFF)
Color
Black
Blue
Gray
Khaki
Wine Red
Size
29W x 30L
30W x 30L
31W x 31L
32W x 31L
33W x 30L
34W x 31L
35W x 31L
36W x 31L
38W x 31L
40W x 31L
  • 42W x 32L
  • 43W x 32L
  • 44W x 32L
  • 45W x 32L
  • 46W x 32L
  • 48W x 32L
  • 50W x 32L
  • 52W x 32L
Size Guide
Quantity
Add to cart
Buy 2 Free Shipping
Buy now
Free Shipping for Orders Over £30
Worldwide shipping
Free returns
24/7 customer support
Secure payments
Tips:
  • All goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!!!
  • If you are not satisfied with the goods you received, please contact us within 14 days after receiving, we will give you the best help!
  • Shipping>>Worldwide express shipping available.
  • 92.86% of customers buy 2 or more
Buyer Protection

Full Refund if you don’t receive your order

Full or Partial Refund, if the item is not as described

Size Guide
Size:
in.
cm.
How to Measure ?
1
WAIST

Measure around waist at the narrowest point

2
HIPS

Stand with hills together and measure around the fullest part of the hips.

Care instructions
  • Machine Wash with Cold Water
  • lron on Low Heat
  • Tumble Dry
  • Do Not Bleach
ltem added to your cart
  • High Stretch Men's Classic Pants
    29W
Buy 2 Free Shipping
View cart(1)
Check out

Continue shopping

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.