Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
3/9
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
Women's Winter Cat Print Crew Neck Sweatshirt
3/9

Women's Winter Cat Print Crew Neck Sweatshirt

$24.98
$41.98
colorBeige
Please select a color
size
Please select a size
Quantity
SKU: TSNC7839-Beige-S
Weight: 0.3kg
Barcode:
class SpzSmartBlockComponent extends SPZ.BaseElement { constructor(element) { super(element); this.templates_ = null; this.container_ = null; this.i18n_ = {}; this.config_ = {}; this.show_type_ = 3; this.product_resource_id_ = ''; this.collection_resource_id_ = ''; this.cart_items_ = []; this.customer_id_ = ''; this.order_id_ = ''; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { const template_type = window.SHOPLAZZA.meta.page.template_type; if (template_type === 1) { this.show_type_ = 3; this.product_resource_id_ = window.SHOPLAZZA.meta.page.resource_id; } else if (template_type === 2) { this.show_type_ = 4; this.collection_resource_id_ = window.SHOPLAZZA.meta.page.resource_id; } else if (template_type === 15){ this.show_type_ = 5; } else if (template_type === 13){ this.show_type_ = 6; } else if (template_type === 20){ this.show_type_ = 7; this.customer_id_ = window.SHOPLAZZA.customer.customer_id; } else if (template_type === 35){ this.show_type_ = 8; this.order_id_ = window.location.pathname.split('/').pop(); } this.templates_ = SPZServices.templatesForDoc(this.element); this.setAction_(); } mountCallback() { console.log('smart mounted'); const that = this; const themeName = window.SHOPLAZZA.theme.merchant_theme_name; const isGeek = /Geek/.test(themeName); this.fetchRules().then((res) => { if (res && res.rules && res.rules.length) { const blockEl = document.getElementById('smart_recommend_block'); SPZ.whenApiDefined(blockEl).then((api) => { api.render({data: res}, true).then(() => { if (isGeek && that.show_type_ === 6) { blockEl.querySelector('.plugin_container_wrpper').style.padding = '30px 0'; } const recommendStyle = document.createElement('style'); recommendStyle.innerHTML = ` .plugin__recommend_container,.app-recommend-card { display: none !important; } `; document.head.appendChild(recommendStyle); const fetchList = []; res.rules.forEach((rule) => { fetchList.push(this.fetchRuleProductList(rule.id)); }); const fetchAll = Promise.all(fetchList); fetchAll.then((p_res) => { res.rules.forEach((rule, index) => { rule.products = p_res[index] && p_res[index].products; const ruleEl = document.getElementById('smart_recommend_rule_' + rule.id); SPZ.whenApiDefined(ruleEl).then((api) => { api.render({data: rule}, true).then(() => { that.impressListen(`#smart_recommend_rule_ul_${rule.id}`, function(){ that.trackRuleImpress(rule); }); const btnElList = document.querySelectorAll(`#smart_recommend_rule_ul_${rule.id} button`); btnElList.forEach((btnEl) => { if (btnEl && rule.config && rule.config.quick_shop_button_bg_color && rule.config.quick_shop_button_text_color) { btnEl.style.backgroundColor = rule.config.quick_shop_button_bg_color; btnEl.style.color = rule.config.quick_shop_button_text_color; } }) }); }); }); }); }) }) } else { if (window.top !== window.self) { const template_type = window.SHOPLAZZA.meta.page.template_type; const holderEl = document.getElementById('smart_recommend_preview_no_data_placeholder'); SPZ.whenApiDefined(holderEl).then((api) => { api.render({data: { isCart: template_type === 13, isCollection: template_type === 2, isProduct: template_type === 1, isIndex: template_type === 15 }}, true); }); } } }); } setAction_() { this.registerAction('quickShop', (data) => { const that = this; const product_id = data.args.product_id; const productIndex = data.args.productIndex; const rule_id = data.args.rule_id; const ssp = data.args.ssp; const scm = data.args.scm; const cfb = data.args.cfb; const ifb = data.args.ifb; const modalRender = document.getElementById('smart_recommend_product_modal_render'); if (product_id) { this.fetchProductData(product_id).then((res) => { const product = res.products && res.products.length && res.products[0] || {}; product.cfb = cfb; product.ifb = ifb; SPZ.whenApiDefined(modalRender).then((api) => { api.render({product: product, productIndex: productIndex, rule_id: rule_id, ssp: ssp, scm: scm, show_type: that.show_type_}, true).then(() => { const modalEl = document.getElementById('smart_recommend_product_modal'); SPZ.whenApiDefined(modalEl).then((modal) => { that.impressListen('#smart_recommend_product_modal', function(){ that.trackQuickShop({ rule_id: rule_id, product_id: product_id }); }); modal.open(); }); const formEl = document.getElementById('smart_recommend_product_form'); SPZ.whenApiDefined(formEl).then((form) => { form.setProduct(product); }); const variantEl = document.getElementById('smart_recommend_product_variants'); SPZ.whenApiDefined(variantEl).then((variant) => { variant.handleRender(product); }); }); }) }); } }); this.registerAction('handleScroll', (data) => { this.directTo(data.args.rule_id, data.args.direction); }); this.registerAction('handleProductChange', (data) => { const variant = data.args.data.variant; const product = data.args.data.product; const imageRenderEl = document.getElementById('smart_recommend_product_image'); SPZ.whenApiDefined(imageRenderEl).then((api) => { api.render({ variant: variant, product: product }, true); }); }); this.registerAction('handleAtcSuccess', (detail) => { const data = detail.args; data.data.product = data.data.product || {}; data.data.variant = data.data.variant || {}; const product_id = data.data.product.id; const product_title = data.data.product.title; const variant_id = data.data.variant.id; const price = data.data.variant.price; const rule_id = data.rule_id; const aid = `smart_recommend.${this.show_type_}.${rule_id}`; const ifb = data.data.product.ifb; const cfb = data.data.product.cfb; const ssp = data.ssp; const scm = data.scm; const spm = `smart_recommend_${this.show_type_}.${data.spmIndex}`; const params = { id: product_id, product_id: product_id, number: 1, name: product_title, variant_id: variant_id, childrenId: variant_id, item_price: price, source: 'add_to_cart', _extra: { aid: aid, ifb: ifb, cfb: cfb, scm: scm, spm: `..${window.SHOPLAZZA.meta.page.template_name}.${spm}`, ssp: ssp, } }; this.tranckAddToCart(params); }); this.registerAction('addATCHook', (data) => { const params = data.args; const spm = `smart_recommend_${this.show_type_}.${params.spmIndex}`; this.myInterceptor_ = window.djInterceptors && window.djInterceptors.track.use({ event: 'dj.addToCart', params: { aid: `smart_recommend.${this.show_type_}.` + params.rule_id, ssp: params.ssp, scm: params.scm, cfb: params.cfb, spm: `..${window.SHOPLAZZA.meta.page.template_name}.${spm}`, }, once: true }); }); } tranckAddToCart(detail) { if (window.$) { window.$(document.body).trigger('dj.addToCart', detail); } } fetchRules() { const payload = { show_type: this.show_type_, }; let that = this; if (this.show_type_ === 6) { let line_items = []; return this.fetchCart().then((res) => { if (res && res.cart && res.cart.line_items) { line_items = res.cart.line_items.map((item) => { return { product_id: item.product_id, variant_id: item.variant_id, quantity: item.quantity, price: item.price } }); } payload.line_items = line_items; that.cart_items_ = line_items; return that.fetchRulesRequest(payload); }); } else { if (this.show_type_ === 3) { payload.line_items = [{ product_id: this.product_resource_id_ }]; } else if (this.show_type_ === 4) { payload.collection_id = this.collection_resource_id_; } else if (this.show_type_ === 7) { payload.customer_id = this.customer_id_; } else if (this.show_type_ === 8) { payload.order_id = this.order_id_; } return this.fetchRulesRequest(payload); } } fetchRulesRequest(payload) { return fetch(window.SHOPLAZZA.routes.root + "/api/possum/recommend_query", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(payload) }).then(function(res){ if(res.ok){ return res.json(); } }); } fetchCart() { return fetch(`/api/cart/cart-select?r=${Math.random().toString(36).slice(-4)}`) .then((res) => { if (res.ok) { return res.json(); } }); } fetchRuleProductList(rule_id) { const payload = { page: 1, limit: 100, fields: ["title", "url", "image", "min_price_variant.price", "min_price_variant.compare_at_price"], rule_id: rule_id, }; if (this.show_type_ === 3) { payload.line_items = [{ product_id: this.product_resource_id_ }]; } else if (this.show_type_ === 4) { payload.collection_id = this.collection_resource_id_; } else if (this.show_type_ === 6) { payload.line_items = this.cart_items_; } else if (this.show_type_ === 7) { payload.customer_id = this.customer_id_; } else if (this.show_type_ === 8) { payload.order_id = this.order_id_; } return fetch(window.SHOPLAZZA.routes.root + "/api/possum/recommend_products", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(payload) }).then(function(res){ if(res.ok){ return res.json(); } }).catch(function(err){ console.log(err); }); } fetchProductData(product_id) { return fetch(window.SHOPLAZZA.routes.root + "/api/possum/products", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ product_ids: [product_id], fields: [ "images", "options", "min_price_variant", "variants"] }) }).then(function(res){ if(res.ok){ return res.json(); } }).catch(function(err){ console.log(err); const loadingEl = document.getElementById('smart_recommend_loading'); if (loadingEl) { loadingEl.style.display = 'none'; } }); } getStyle(ele, style) { if (!ele) return; if (window.getComputedStyle) { return window.getComputedStyle(ele)[style]; } return ele.currentStyle[style]; } directTo(id, direction) { const scrollElement = document.getElementById(`smart_recommend_rule_ul_${id}`); const blockWidth = parseInt(this.getStyle(scrollElement, 'width')); const scrollLength = (blockWidth * 0.19 - 12) * 5; const scrollPoint = scrollElement.scrollWidth - scrollElement.clientWidth; if (!scrollElement) return; if (direction === 'left') { if (document.dir === 'rtl') { scrollElement.scrollTo({ left: Math.abs(scrollElement.scrollLeft) >= scrollPoint - 100 ? 0 : scrollElement.scrollLeft - scrollLength, behavior: 'smooth' }); return; } scrollElement.scrollTo({ left: Math.max(scrollElement.scrollLeft - scrollLength, 0), behavior: 'smooth' }); } else { if (document.dir === 'rtl') { scrollElement.scrollTo({ left: Math.abs(scrollElement.scrollLeft) >= scrollPoint + 100 ? 0 : scrollElement.scrollLeft + scrollLength, behavior: 'smooth' }); return; } scrollElement.scrollTo({ left: scrollElement.scrollLeft >= scrollPoint - 100 ? 0 : scrollElement.scrollLeft + scrollLength, behavior: 'smooth' }); } } trackRuleImpress(rule) { if (window.sa && window.sa.track) { window.sa.track("plugin_common", { plugin_name: "upsell", event_type: "impressions", rule_id: rule.id, ssp: rule.ssp, scm: rule.scm, show_type: this.show_type_, support_app_block: window.SHOPLAZZA.theme.support_app_block }); window.sa.track("module_impressions", { aid: `smart_recommend.${this.show_type_}.${rule.id}`, support_app_block: window.SHOPLAZZA.theme.support_app_block }); } } trackQuickShop(data) { window.sa && sa.track && sa.track("plugin_common", { plugin_name: "upsell", event_type: "quick_shop", rule_id: data.rule_id, product_id: data.product_id, show_type: this.show_type_, }); } impressListen(selector, cb) { const el = document.querySelector(selector); const onImpress = (e) => { if (e) { e.stopPropagation(); } cb(); }; if (el && !el.getAttribute('imprsd')) { el.addEventListener('impress', onImpress) } else if (el) { onImpress(); } } } SPZ.defineElement('spz-custom-smart-block', SpzSmartBlockComponent);
  • Material:
    Cotton Blend
  • Pattern Type:
    Print/Letter
  • Sleeve Type:
    Long sleeve
  • Style:
    Casual
  • Neckline:
    Round neck
  • Theme:
    Spring/Autumn/Winter
  • Elasticity:
    Micro elasticity
  • Occasion:
    Daily
*Note
Due to manual measurements, please allow slight measurement deviations.
Due to the different display and lighting effects, the actual color of the item may be slightly different from the color displayed on the picture.

Size chart

Size Length Bust sleeve
cm inch cm inch cm inch
S 66.5 26.6 107 42.8 60 24
M 68.5 27.4 111 44.4 61.5 24.6
L 70.5 28.2 115 46 63 25.2
XL 74.5 29.8 121 48.4 65 26
XXL 77 30.8 125 50 67 26.8
3XL 79.5 31.8 129 51.6 69 27.6
4XL 82 32.8 133 53.2 71 28.4
5XL 84.5 33.8 137 54.8 73 29.2
6XL 87.5 35 141 56.4 75 30

How can I pay for my order with credit\debit card?

You can use any of the payment types listed below to pay for your order. We take your security very seriously, therefore your details are safe with us.

Please see below the payment methods we accept:

Please note that LinerSet does not collect your credit/debit card number or personal information when you make a payment. We also take fraud very seriously too, so all credit and debit card holders are subject to validation and authorisation by both us and the card issuer. To better protect our customers when making online payments by card you may be presented with 3D secure security measures when paying. This is dependent on your bank issuer and may require you to enter a password or get a security code via email or phone, or the bank issuer requires additional interaction, either through fingerprint, two-factor authentication, or similar methods based on authentication factors. For more questions regarding the authentication, please consult your card-issuing bank for information.

My payment was declined when using with credit\debit card, what should I do?

  1. Place your order again

If your payment has been declined, then you'll need to place your order again. We're not able to reinstate an order once the payment has been declined.

  1. Make the relevant checks

To help ensure your order is not declined when placing a new order we suggest checking the following:

Check the card details on your to make sure the information is correct, e.g. the expiry date .

Make sure you enter the security code correctly - that's the three digit number on the back of your card.

Your card issuer may have declined your payment - as they don't tell us the reason for this, it's best to check with them or contact your bank.

If you've checked all of the above, try paying with another card or another payment method.

  1. Next steps

If your payment has been declined through the 3D secure security measures you’ll need to contact your bank for further information.

Whereas, if you've received an error message, please contact us with as many details as you can about the issue - including the error messages you receive, and we'll try to resolve it as soon as we can.

Pay with PayPal

PayPal is an easy way to integrate today’s most popular payment methods. And PayPal makes it simple to add new payment methods whenever they become available.

Firstly, you can set up a Paypal account on the PayPal website. It only takes minutes to open a PayPal account and it’s free. And then when pay with Paypal, you will be redirected to the PayPal payment page, where you can confirm your payment by logging in with your PayPal username and password.

Also You may still check out even without a PayPal account. To do so, please click on”Pay with Debit/Credit Card” and you will be redirected to a secure page where you can enter your credit card information or complete your payment safely via PayPal.

Enter your Payment details, your Billing Address, and your Contact Information.


Why pay with PayPal?
It's safer: shop at thousands of websites without sharing your financial details.
It's faster: with no need to type in your card details, you can check out in a few clicks.
It's easier: all you need is an email address and password to pay online.

We value each and every single customer. Our top priority is making sure the items get delivered to our customer as soon as possible. Normally you will receive your order in 12-25 business days from the date that it is placed.

Delivery Time : Processing Time+Shipping Time

Our estimated delivery dates are based on several factors, including the destination address, the shipping options you've chosen, and how quickly we can assemble and prepare your items for shipment. You can calculate delivery estimates by taking the processing time for your order and adding the delivery time based on the shipping method you've chosen.

For example, if you order a dress, it will need 4-10 business days of processing time and then 8-15 business days of shipping time if you select standard shipping. Therefore, you can expect to receive it in 12-25 business days. 

Please use the chart below to help gauge how long it will take to receive your order.

(*There is different processing time for different item. You can check the processing time from product page. Once your order is placed, you can check order shipping info from the online order status page. We will also inform you through your registered email.) However, it can also be affected by the item's stock status. For popular items experiencing stock availability issues, the processing time may be longer. 

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 and Canada, etc.) may need to pay duties or VAT according to your countries' levying rules.

We are excited to offer international shipping for most destinations of the world. The super savings option will take 10 to 30 business days. For faster delivery, we offer Express Shipping Service that can ship to most of the international location in 7 to 15 business days. If you have any further questions, please contact us at service@linerset.com

Note for Free Shipping:

Please notice: the clearance item, which has the label of FinalSale in the item title, is not applicable to freeshipping policy.

Important Notes
Total Delivery Time=Processing Time + Shipping Time

NOTE:Other countries may be different, depending on the product details page. For popular items experiencing stock availability issues, the processing time may be longer.

We are not responsible for late shipments due to inclement weather, holidays, natural disasters, or carrier delays. Please keep in mind holidays do not count as a business day and should be considered when calculating shipping times.


Sometimes unexpected delay is caused due to thorough inspection, out of stock issue, especially during high-volume periods.
In case of any question and unexpected delay you can always contact with our customer service.

If you don’t receive the parcel within this period, please contact us.

Sorry that we don’t provide phone at this time. If you run into any issues, feel free to drop us an email.

Customer service: service@linerset.com

Thank you for shopping at Linerset.

If you are not entirely satisfied with your purchase, we're here to help. 

Exchange or Return for a Refund

The products can be returned within 14 days after they have been received. A new product may be exchanged for another product or returned for a refund. 

To be eligible, please make sure that.

-The product is in its original packaging

-The product isn't used or damaged

-Buyer is responsible for return shipping cost.

Products that do not meet these criteria will not be considered for return. 

To return the products, please submit items change request to customer service via service@Linerset.com.

Most returns are processed within 5 business days after we receive your package. 

We’ll issue the refund to your wallet in amount of few days if we are not otherwise informed to refund to your payment account in advance. Wallet balance can be used on your next purchase or be withdrawn to your payment account. Once your refund has been issued, you will receive a confirmation email.

We do not accept any request of exchange&return once the "specials" are sold. 

Purchase Not Eligible for Return:

-Final sale item(s) is not eligible for return or exchange. 

-Swimwear is not eligible for return or exchange.

-Swimwear can only be returned/exchanged if it is defective/damaged or wrong item.

 -You must email us a picture showing the problem/defect when you submitting the return/exchange request.

After you receive confirmation from our customer service, please send the product along with the product list which includes the product ID. A tracking No. of the returning parcel is required; we will deal with the product exchange or refund after we get your returning parcel.

Damaged items

If you received a damaged product, please notify us immediately for assistance.

Note:

Can I return to the address on the received package?

No, the address on the package is the overseas transshipment warehouse of the logistics party. You need to return the items to our warehouse, and you will get authorization from us by email with our return address after you submit your return request.

Where can I return the item to ?
Products will be returned to our Chinese Return Center.

What shipping company can I choose for return?
Usually you can use any shipping carrier to ship the parcels back to us . You are supposed to choose the cheaper method like postal shipping, which is best and convenient for both of us .

Order Cancellation

We offer full refund if the order is cancelled within 24 hours of your purchase.

You should submit an order cancellation request to our customer service via service@Linerset.com once you decide to cancel the order.

For orders cancelled after 24 hours of purchase but have not been shipped, we will offer partial refund after charging a 15% cancellation fee.

We will NOT accept order cancellation request if the orders have been shipped.

Refunds

Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund. If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within 7-15 business days. Buyer is responsible for return shipping.

If you haven't received a refund yet, first check your bank account again.

Then contact your credit card company, it may take some time before your refund is officially posted. Next contact your bank. There is often some processing time before a refund is posted. 

If you’ve done all of this and you still have not received your refund yet, please contact us at service@Linerset.com.