Don't miss our special offer!✨

HOO® Men's Casual Geometric Jacquard Lapel Single-breasted Slim Fit Short-sleeved Sweater

$69.95
Color:  Black
Size:  S
Quantity
Free worldwide shipping on order $89+
Eco-friendly fabric
Clear printing and bright colors
Diversified styles and distinctive personalities
Shipping

Description

  • SPU: HOOSS250325-1lH
  • Description:
    The Men's Casual Geometric Jacquard Lapel Single-breasted Slim Fit Short-sleeved Sweater is a unique and stylish piece that combines the sophistication of a sweater with the breezy comfort of short sleeves. Featuring a striking geometric jacquard pattern, a refined lapel collar, and a tailored slim fit, this sweater offers a modern and fashionable look perfect for smart-casual occasions.

    Key Features:

    • Eye-Catching Geometric Jacquard Pattern: The intricate geometric jacquard pattern adds visual interest and a modern touch, making this sweater a standout piece.

    • Stylish Lapel Collar: The lapel collar design elevates the sweater's aesthetic, offering a blend of relaxed and refined style suitable for various occasions.

    • Slim Fit Silhouette: Designed with a slim fit, this sweater provides a contemporary and tailored look that accentuates the body's natural shape without sacrificing comfort.

    • Comfortable Short Sleeves: The short sleeves offer practicality and comfort, making it ideal for warm weather and transitional seasons.

    • Single-breasted Closure: The single-breasted closure adds a touch of sophistication and allows for versatile styling, whether buttoned up for a more polished look or partially unbuttoned for a relaxed vibe.

    • High-Quality Fabric Blend: Made from a soft and comfortable fabric blend (e.g., cotton, viscose, or a blend thereof), this sweater ensures all-day comfort and breathability.

    • Versatile Styling Options: This sweater can be easily paired with chinos, dress pants, or jeans for a variety of stylish looks. Dress it up with loafers or keep it casual with sneakers.

    • Easy Care: This sweater is easy to care for (please refer to care instructions), ensuring it remains stylish and comfortable with minimal effort.

    • Multiple Sizes Available: Offered in a range of sizes, this sweater is designed to accommodate different body types, providing a comfortable and flattering fit for every man.

    Styling Suggestions:
    For a smart-casual ensemble, pair this sweater with chinos, loafers, and a stylish watch. Keep it more relaxed with dark wash jeans and clean sneakers. You can also layer it over a plain T-shirt for a more laid-back vibe.

    Summary:
    The Men's Casual Geometric Jacquard Lapel Single-breasted Slim Fit Short-sleeved Sweater is the perfect blend of modern style and comfortable wear. With its eye-catching geometric jacquard pattern, sophisticated lapel collar, and flattering slim fit, this sweater is an essential piece for any fashion-forward man. Elevate your wardrobe with this unique and versatile sweater!

Size Chart:

Size Length Bust Shoulder Sleeve Length
cm inch cm inch cm inch cm inch
S 66 26 105 41.3 42 16.5 22 8.7
M 68 26.8 110 43.3 44 17.3 23 9.1
L 70 27.6 115 45.3 46 18.1 24 9.5
XL 72 28.4 120 47.3 48 18.9 25 9.9
2XL 74 29.2 125 49.3 50 19.7 26 10.3

Worldwide Shipping

Total Delivery Time = Processing Time + Shipping Time

1.Processing Time:

The amount of time it takes for us to prepare your order for shipment. Our normal processing time for orders is 7-9 business days. This involves the securing of stocks, in some cases, and the checking of product quality. Orders can be cancelled or modified within 8 hours after being placed.

2.Shipping Time:

The amount of time it takes to receive your order after your order has shipped. Shipping times can vary depending on your location and shipping methods.

Standard Shipping: 12-19 business days 

Express Shipping: 7-12 bussiness days 

*For items which have stock in warehouse, items will be shipped in 24 hours.

*For some remote areas, it may take up to 20 business days to deliver the parcel.

Shipping Fee

Free shipping on orders US$89+ 

*The actual shipping cost differs depend on the shipping country and the weight of the item.

Insurance Service for Shipping:

We have opened insurance service for all customers. You can choose to use it or not when placing an order. Please note that the use of insurance service will incur insurance fees, which will be paid together when completing the order.

Note for taxes:

For most of the countries, our customers do not need to pay for importing fees, duties or VAT (Valued Additional Tax). However, for some limited countries (especially for some European countries such as Germany, Italy, UK, etc.) may need to pay duties or VAT according to your countries’ levying rules.

Hassle-free Returns

We're bummed if you're not 100% satisfied with the items you received, and we gladly accept returns within 7 days of receipt for regular items in new condition.

Step 1: Email us for the authorization
Step 2: Process the exchange/return
Step 3: Get your refund / exchange in 3-10 working days

Contact us: service@hooshops.com

For more  👉Exchange / Return / Refund Policy

NOTE: Gifts, blind boxes or clearance items are not available for exchange or return.

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.

You May Also Like

View more

#Hoo Life on Instagram

View more