Men's Cowgirl Long Live Outlaws Print Knit Sweatshirt

$39.99
$43.99
-9%
Color:  Beige
Size:  S
Quantity
people are viewing this right now

Description

SPU: P690094596899098624

Material: Polyester

Pattern Type: Art Print

Style: Casual, Retro

Length: Regular

Collar: Round Neck

Sleeve Type: Long Sleeve

Occasion: Daily

Theme: Autumn/Winter

 

SizeUSUKEUShoulderBustLengthSleeve
cminchcminchcminchcminch
S3636465722.4411143.706625.985822.83
M3838485822.8311545.286826.776023.62
L4040505923.2312047.247027.566224.41
XL4242526023.6212549.217228.356425.20
2XL4444546124.0213051.187429.136625.98
3XL4646566224.4113553.157629.926826.77
4XL4848586324.8014055.127830.717027.56
5XL5050606425.2014557.098031.507228.35
Due to manual measurement, there may be an error of 1-3cm
Due to light,display,etc,the color of the pattern may be slightly different from the physical object.

WHERE CAN lovernew DELIVER THE PACKAGE TO

lovernew can ship to most countries in the world, covering North and South America, Europe, Asia, Africa, Oceania, and more, over 200 countries & regions.

Countries not shipped to include:

Aland Island, Ascension, Azores, Balearic Islands, Bouvet Island, Caroline Islands, China Mainland, Eritrea, Northern Mariana Islands, Somalia, Somaliland, Spanish Territories Of N.Africa, Yemen, YUGOSLAVIA, Zaire.

HOW DOES lovernew SHIP YOUR ORDER

1.After placing an order, you will receive a product information confirmation e-mail;
2.After the payment, you will receive a successful payment confirmation e-mail;
3.After the order is shipped, you will receive a shipping information confirmation e-mail, contains tracking number, you can check the shipping state with the tracking number in https://www.17track.net/en or http://www.track718.com/en.

 

WHAT SHIPPING METHODS ARE OFFERED AND HOW LONG DOES IT TAKE TO SHIP

The total time it takes to receive your parcel is described as below:

Total delivery time = Processing Time + Shipping Time

Processing time = the time between when you place an order and when we ship it;

Shipping time = the time between when your order has been shipped and delivered to you;

Processing time: within 3-8 business days

The time it takes to prepare your items to ship from our warehouse. This includes preparing your items, performing quality checks, and packing for shipment.

Shipping time:

Due to COVID-19, transportation has been restricted, which affects our ability to deliver products as quickly and efficiently as we do during normal times, international deliveries may take longer than usual.

lovernew has partnered with major international shipping companies including but not limited to DHL, UPS, FedEx, IB, and EMS to offer shipping methods.

 

HOW MUCH IS THE SHIPPING COST

The price depends on the weight of product, the destination, the shipping method, and other considerations. Detailed pricing information is visible when placing an order.

Choose the correct destination, then select the shipping method, to obtain an accurate shipping cost.

Global

ZONE

SHIPPING METHOD

PROCESSING TIME

DELIVERY TIME

ORDERS

KILOGRAMS

SHIPPING FEE

Global

Standard

3-8 Business Days

15-30 Business Days

0-$69

No limit

$7.99

Global

Standard

3-8 Business Days

15-30 Business Days

over $69

No limit

Free

 

WHAT IS CUSTOMS TAX

Taxes apply for imported goods/services and is regulated by the country law. lovernew is not responsible for any tax charged on its products. The amount of customs taxes are depend on policies and tax rates applied per country. Please contact local customs for clear information.

IMPORTANT NOTES:

1. Certain items are prohibited by some shipping carriers. If your order contains these items for the shipping carrier you selected, we will re-route your order via another carrier to ensure it arrives safely. This may require additional shipping time.

2. All estimated/typical delivery time are derived from real world data collected from past orders. They are approximate times for reference only.

3. lovernew ships all packages from our warehouse and distribution center.

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.