Grey Tweed Jacket spring / autumn /winter women's jacket coat classic Small standing collar ladies tweed jacket

Free worldwide shipping
Free returns
Sustainably made
Secure payments
$32.90
259 sold
Color : Gray
Size : S
Quantity
Description

   Size

Unit:CM


S Shoulder 37 Bust 90 Length 51 Sleeve Length 57

M Shoulder 38 Bust 94 Length 52 Sleeve Length 58

L Shoulder 39 Bust 98 Length 53Sleeve Length 59.

XL Shoulder 40 Bust 102 Length 54 Sleeve Length 60

XXL Shoulder 41 Bust 106 Length 55 Sleeve Length 61.

XXXL Shoulder 42 Bust 110 Length 56 Sleeve Length 62

This can also be customized in accordance with the customized fee of $ 6-15

Note: the baby was due to differences in measurement,

 measurement, the error will be 2-3CM,

Cannot accept do not shoot

Please pay attention to the difference in the color of the display.

 

If you are unsure of your size,

 please send your size to us in the following format,

We will give you some suggestions,

Unit: CM

Bust:
Waist:
Shoulder
Hips:
Height and weight

If you need to customize the size,

you can order the time in the order message to

write the size of your clothes parameters

(Note: the clothes do the final size of the parameters)

 format is as follows:
(There is no return is customized)
Unit: CM
XL: shoulder 40 bust 100 length 55 sleeve 56 waist 80 hip102 skirt length 42.

 
 

 

 

 
 
 

 

 

Refund Policy

30 Days Guarantee

Thank you for shopping

All online purchases (except lingerie, swimwear, jewelry & accessories and final sale) returned within 30 days from the delivered date.

The customer is responsible for paying the return shipping fees.

All return items must be returned unworn, undamaged, unwashed and with all the original labels attached in original packaging. If not, the buyer is responsible for all incurred fees and no refund will be issued.

We do not accept returned items that were sent back directly without notifying us first. Any addresses on the parcel is not approved as the return address. Returned packages without an authorized return address from customer service representatives will not be refunded. We do not offer Freight To Collect (FTC) service for the packages returned. Return shipping costs for the returned packages are non-refundable.

Return Process:

Step 1: Please email our customer service representatives at services@anikang.com to request the return.

Step 2: After receiving your email with return request, our customer service representatives will send the return instructions back to you via email. Please follow the instructions to process the return.

Step 3: You will receive a refund within one week after we receive your package. We will email you once your refund is processed. FYI: There may be a delay ( about 1-2 weeks, depending on your credit card company) in processing your refund if your original payment method is credit card.

Cancellation Policy

We accept order cancellation before the product is shipped or produced. If the order is confirmed cancelled ,you will get full refund. We process the refund action within 7 days.

We do not accept order cancellation request once the product is shipped out.

The number of day taken for refunds to be processed after refund has been accepted: 7 days.

Contact Us

If you have any questions or concerns, please do not hesitate to contact us.

We would love to hear from you, contact us on: 

Email : services@anikang.com

Shipping Policy

Our goal is to offer you the best shipping options, no matter where you live. Every day, we deliver to hundreds of customers across the world, ensuring that we provide the highest levels of responsiveness to you at all times.

The time frame for order delivery is divided into two parts:

  • Processing time: Order verification, quality check and packaging. All orders are sent to the fulfillment centerfor dispatch within 24 hours after the order is placed. The fulfillment center and the postal service company process the orders, which takes an additional 3–5 days.
  • Shipping time: This refers to the time it takes for items to be shipped from ourfulfillment centerto the destination. International delivery usually takes about 4-10 business days to arrive at their destination but can take longer from time to time.

standard shipping

Countries

Delivery Time (Natural Days)

United States,Germany, United Kingdom, France, Netherlands, Spain, Singapore, Sweden, Belgium, Denmark, Luxembourg, Poland

4-7 Days

 Australia, Portugal, Hungary, Italy, New Zealand, Finland, Canada, Thailand, Malaysia, Ireland, Estonia, Cyprus, Slovakia

7-14 Days

Mexico, Greece, Croatia, Vietnam, Lithuania, Latvia

7-14 Days

Russia, Austria, Slovenia, Romania, India, Turkey

7-14 Days

UAE, Bulgaria

7-14 Days

Saudi Arabia, Pakistan

>14

DHL Express (In normal situation)

Please contact our customer service

Within 4 Days

Note:

1. Other countries not in the list, please see the actual payment page or contact our customer service.

2. This table is for reference only, please see the exact shipping cost and delivery time on the actual payment page.

 

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.