Halloween Sisters Starry Night Sweatshirt

Halloween Sisters Starry Night Sweatshirt

Price
$29.00
$29.00
Color
Please select a color
Size
Please select a size
Quantity
The current produc does not participate any Rebate. Switch the participating product to check the design.
(This prompt will not be displayed on the client-side.)
if(window.self === window.top) { (window.disabled_exts ||=[]).push('product_detail_rebate'); } class SpzRebateComponent extends SPZ.BaseElement { constructor(element) { super(element); } xhr_ = SPZServices.xhrFor(this.win); viewport_ = this.getViewport(); action_ = null; lang = document.documentElement.lang || 'en-US'; i18n = {"ar-SA":{"special_offer":"عرض خاص","close":"إغلاق"},"de-DE":{"special_offer":"Sonderangebot","close":"Schließen"},"en-US":{"special_offer":"SPECIAL OFFER","close":"CLOSE"},"es-ES":{"special_offer":"Oferta especial","close":"Cerrar"},"fr-FR":{"special_offer":"Offre spéciale","close":"Fermer"},"id-ID":{"special_offer":"Penawaran istimewa","close":"Tutup"},"it-IT":{"special_offer":"Offerta speciale","close":"Chiudi"},"ja-JP":{"special_offer":"特別なオファー","close":"閉じる"},"ko-KR":{"special_offer":"특별 메뉴","close":"닫기"},"nl-NL":{"special_offer":"Speciale aanbieding","close":"sluiten"},"pl-PL":{"special_offer":"Oferta specjalna","close":"blisko"},"pt-PT":{"special_offer":"Oferta especial","close":"Fechar"},"ru-RU":{"special_offer":"Специальное предложение","close":"Закрыть"},"th-TH":{"special_offer":"ข้อเสนอพิเศษ","close":"ปิด"},"zh-CN":{"special_offer":"特价","close":"关闭"},"zh-TW":{"special_offer":"特價","close":"關閉"}}; landPage = "\/promotions\/rebate\/"; pageType = 1; cart = []; initData = null; rebateInfo = null; renderData = null; footerImage = `${this.win.SHOPLAZZA["image_domain"]}oss/operation/e8ebb03dbb710457ca3b4b6a70898ab2.svg`; isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.initData = this.getProduct(); this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction("triggerGetRenderData", () => { const event = SPZUtils.Event.create(this.win, "triggerGetRenderData", this.renderData); this.action_.trigger(this.element, "getRenderData", event); }); this.registerAction("bindPropagation", () => { document.querySelector(".product_detail_rebate_list").addEventListener("click", e => { e.stopPropagation(); this.win.sa && this.win.sa.track("plugin_rebate_promotion_click", { plugin_timestamp: Date.now(), plugin_location: "info", product_id: this.initData.product.id, discount_id: this.rebateInfo.discount_list.map((item) => item.discount_id)[0], }); }); }); } async mountCallback() { document.addEventListener("dj.variantChange", e => { const data = e.detail; if (document.querySelector("#product-select-modal.show")) return; if (this.initData && this.initData.product && data.product && this.initData.product.id === data.product.id) { this.initData = data; this.initRebate(this.initData, true); } else { this.initData = data; this.getRebateInfo(); } }); document.addEventListener("dj.addToCart", e => { const v = e.detail; this.rebateInfo && this.win.sa && this.win.sa.track("plugin_rebate_atc", { variant_discount_id: this.getVariantDiscountId(v.variant_id).map(item => item.discount_id), discount_ids: this.rebateInfo.discount_list.map(item => item.discount_id), variant_id: v.variant_id, product_id: v.product_id, price: v.item_price, number: v.number, }); }); await this.getRebateInfo(); if (document.querySelector(".plugin-container__bottom-fixed")) { this.showDiscountPopupsInfoBar(); } else { this.win.addEventListener("extloaded", () => { this.showDiscountPopupsInfoBar(); }); } } getProduct = (() => { document.addEventListener("dj.variantChange", e => { if (!e.detail || !e.detail.product) return; const productJson = document.querySelector("#product-json"); if (productJson && productJson.textContent && JSON.parse(productJson.textContent)) { productJson.textContent = JSON.stringify(e.detail); } if (this.win.jQuery && this.win.jQuery.fn && this.win.jQuery(document).data("djproduct")) { this.win.jQuery(document).data("djproduct", e.detail); } }); return () => { let productData = null; if (this.win.jQuery && this.win.jQuery.fn) { try { let product = this.win.jQuery(document).data("djproduct"); if (product) { productData = JSON.parse(JSON.stringify(product)); } else { productData = null; } } catch (error) { productData = null; } } if (!productData) { const productJson = document.querySelector("#product-json"); productData = (productJson && productJson.textContent && JSON.parse(productJson.textContent)) || null; } return productData; }; })(); initRebate = this.win.SPZCore.Types.debounce( this.win, ((data, variantChange) => { let discount_list = Object.assign([], this.rebateInfo.discount_list); /* 按子商品的多少对优惠信息进行排序 */ discount_list && discount_list.sort((a, b) => { return b.variant_ids.length - a.variant_ids.length; }); /* 选中子商品时 筛选子商品的优惠信息 */ if (data.selected && data.selected.id) { discount_list = this.getVariantDiscountId(data.selected.id); } /* 无满减信息 */ if (!(discount_list && discount_list.length)) { return; } const isSection = !!document.querySelector( `div[data-section-type^="shoplazza://apps/publicapp/blocks/rebate"] #rebate_custom_component` ); if ( (this.rebateInfo.rebate_type == "sku" && data && data.selected && data.selected.id) || this.rebateInfo.rebate_type == "spu" ) { if (discount_list[0]) { this.landPage += discount_list[0].discount_id || ""; } const info = { rebate: discount_list[0], maxShowCount: this.win.innerWidth > 768 ? 3 : 1, landPage: this.landPage, modalFooterImg: `url(${`${this.win.SHOPLAZZA["image_domain"]}oss/operation/e8ebb03dbb710457ca3b4b6a70898ab2.svg`})`, i18n: this.i18n[this.lang] }; this.renderData = info; SPZ.whenApiDefined( document.getElementById(isSection ? "app_rebate_section" : "app_rebate_block") ).then(apis => { apis.render(info, true); }); } this.insertSlideTag(this.rebateInfo.tag, variantChange); var pluginCurrencyEvent = new CustomEvent("plugin_currency_update"); document.dispatchEvent(pluginCurrencyEvent); }).bind(this), 10 ); getRebateInfo = async () => { if (this.initData && this.initData.product && this.initData.product.id) { var variant_ids = this.initData.product.variants.map(variant => variant.id); const res = await this.xhr_.fetchJson( "\/api\/discount-rebate\/product-discount", { method: "POST", body: { product_id: this.initData.product.id, product_type: this.initData.product.product_type, variant_ids: variant_ids, }, } ); if (!SPZCore.Types.isEmptyObject(res.rebate_info)) { res.rebate_info.tag = res.tag; res.rebate_info.rebate_type = res.rebate_type; this.rebateInfo = res.rebate_info; this.initRebate(this.initData); } else { if (this.win.top !== this.win.self) { const noActivity = document.getElementById("no-rebate-activity"); noActivity && (noActivity["style"].display = "block"); } } } }; getVariantDiscountId = (variant_id) => { if (!variant_id || !this.rebateInfo) return []; var rebateId = this.rebateInfo.variant_discount_map[variant_id]; return this.rebateInfo.discount_list.filter(item => item.discount_id == rebateId) || []; }; insertSlideTag = (tag, variantChange) => { setTimeout(() => { if (tag) { var tag_container; var modal = document.getElementById("product-select-modal"); if (modal && modal.classList.contains("show")) { if (!variantChange && modal.querySelector(".slider-discount-tag")) return; if ( variantChange && modal.querySelector(".slider-discount-tag:not(.rebate-tag)") ) return; tag_container = modal; } else { var product_detail_card = document.querySelector( '.page_container > [data-section-type="product_detail"], .page_container > [data-section-type="product-template"]' ); if(!product_detail_card) return; if (!variantChange && product_detail_card.querySelector(".slider-discount-tag")) return; if (variantChange && product_detail_card.querySelector(".slider-discount-tag:not(.rebate-tag)")) return; tag_container = product_detail_card; } if (tag_container.matches("#product-select-modal") && this.pageType === 13 && document.documentElement.clientWidth < 768) return; const tagDom = `<div class="slider-discount-tag dj_skin_product_title rebate-tag">${tag}</div>` if (document.querySelector(".sep-loaded-slider")) { var loadedSlider = tag_container.querySelector(".sep-loaded-slider"); loadedSlider.querySelectorAll(".slider-discount-tag").forEach(function(element) { element.remove(); }); loadedSlider.insertAdjacentHTML("beforeend", tagDom); } else { if (tag_container.querySelector(".support-slick")) { var supportSlick = tag_container.querySelectorAll(".support-slick, .sep-slider"); supportSlick.forEach((element) => { element.querySelectorAll(".slider-discount-tag").forEach((element) => { element.remove(); }); element.insertAdjacentHTML("beforeend",tagDom); }); } else { var sepSlider = tag_container.querySelector(".sep-slider"); sepSlider.querySelectorAll(".slider-discount-tag").forEach(function(element) { element.remove(); }); sepSlider.insertAdjacentHTML("beforeend",tagDom); } } if (document.documentElement.clientWidth < 768) { const sliderDiscountTagHeight = tag_container.querySelector(".slider-discount-tag").offsetHeight || 0; document.querySelector(".product-image__swiper_bullets").style.bottom = `${sliderDiscountTagHeight + 15}px`; } } }, 1000); }; fetchInfoBar = () => { let discount_ids = []; if (this.pageType === 1) { discount_ids = this.rebateInfo && this.rebateInfo.discount_list.map(item => item.discount_id); } else if (this.pageType === 38) { discount_ids = [this.win.rebateObj.rebateCollection_id] || []; } const productObj = this.getProduct(); return this.xhr_.fetchJson("\/api\/discount-rebate\/global-text", { method: "POST", body: { product_type: productObj && productObj.product && productObj.product.product_type, line_items: (this.cart.line_items || []).map(item => ({ variant_id: item.variant_id, product_id: item.product_id, quantity: item.quantity, price: item.price, selected: !item.unchecked, })), discount_ids: discount_ids, }, }); }; renderBottomBanner = res => { if (!res.tips) return; if (document.querySelector(".discount__info-bar")) return; var bar_style = `background:linear-gradient(90deg,${res.config.background_color_start},${res.config.background_color_end}); color:${res.config.color};`; let data = { tips: res.tips, landPage: this.landPage + res.id, bar_style }; const html = SPZCore.Dom.htmlFor(this.element); const banner = html([ `<a impr="1" imprevt="1" id="rebate_bottom_bar" href=${data.landPage} class="discount__info-bar text-truncate" data-activity-type="rebate" style="${data.bar_style}">${data.tips}</a>`, ]); document.querySelector(".plugin-container__bottom-fixed").appendChild(banner); const pluginCurrencyEvent = new CustomEvent("plugin_currency_update"); document.dispatchEvent(pluginCurrencyEvent); if (res.id) { var trackParams = { page: this.pageType, discount_id: res.id, product_id: this.getProduct()?.product.id, }; banner.addEventListener("click", () => { this.win.sa && this.win.sa.track("plugin_rebate_promotion_click", { plugin_timestamp: Date.now(), plugin_location: "bottom_bar", product_id: trackParams.product_id, discount_id: trackParams.discount_id, }); }); this.win.sa && this.win.sa.track("plugin_rebate_banner_pv", trackParams); } }; showDiscountPopupsInfoBar = () => { if ([13, 14, 19, 30, 31].includes(this.pageType)) return; if (document.querySelector(".plugin-container__bottom-fixed .discount__info-bar")) return; this.fetchInfoBar().then(this.renderBottomBanner); document.addEventListener("dj.cartChange", () => { this.fetchInfoBar().then(this.renderBottomBanner); }); }; } SPZ.defineElement("spz-custom-rebate", SpzRebateComponent);
Material: Cotton + Polyester

We value each and every single customer. Our top priority is making sure the items get delivered to our customer as soon as possible.The picture below shows the process of your order from your payment to delivery.

Note : Our orders only charge product fees and shipping fees(if applicable), our customers do not need to pay for importing fees, duties or VAT(Valued Additional Tax).

Please note that our store is only open to American customers and only American customers can place orders. The information listed below is only valid for the United States, please understand.

shipping processes

Payment confirmation

  • Once the order is authorized and verified, a confirmation email will be sent to you.

processing

  • It usually takes 1-3 business days to process your order. Please note that holidays and weekends are not included.

shipping

  • Shipping takes approximately 9 to 15 business days to reach the destination.

  • When your order ships, we will send you an email notification with an tracking number.

  • Shipping fee: We charge $5.99 if the total order amount is less than $79. We ship for free on orders totaling equal to or over $79.

Delivery

  • Please Note: The time you receive your order is the sum of the order processing time and shipping time, if you order a coat, it will need 1-3 business days of processing time and then 9-15 business days of shipping time. Therefore, you can expect to receive it in 10-18 business days.
  • The system will automatically match the best distribution logistics according to factors such as the sales platform, product size and weight. If the street address of the order contains "PO Box", the system will review and judge based on the delivery logistics you choose. If the corresponding logistics method cannot be delivered to an address containing "PO Box", the system will determine that the order is an abnormal order, and the customer service staff will notify you to modify the address or cancel the order.

Track order status

  • Order status can be tracked by itself. After your order leaves our warehouse, we will send you an email to inform you that your package has been shipped with the tracking number of the order. You can see the update within 72 hours of receiving the email. 
  • If you want to track your order, please click Track Order for information.
  • If there is no update, you can send us an email to check the details.

Causes of delay

Tracking updates can be delayed when the following force majeure event happens:

  • Bad weather reasons (heavy rain/tornado/flood/earthquake, etc.)
  • Local reasons such as strikes, statutory holidays, major international conferences, etc.
  • Shortage of peak season flights & personnel and other local reasons

Our contact information

Tel : +86 173 6448 6941

E-Mail : service@ifuncoo.com

Address :Room 2107, Block A, Century Summer Palace, No. 195 Keji Road, Yanta District, Xi'an, Shaanxi Province,China

Company:Shaanxi Jinnuocheng Trading Co., Ltd.

Service Time : Mon - Fri 09:00-18:00(UTC+8)

Return Policy

  1. Items can be returned or exchanged within 30 days from the day of receipt.
  2. You can call the post office to arrange a collection or drop off at your nearest post office.We will decide whether to reimburse the freight for you according to the reason for your return. If it is our responsibility, we will reimburse you for the freight. If it is your responsibility, we will not reimburse the freight.
  3. If you have received incorrect items or damaged items. Please take clear photos and contact our customer service as soon as possible. We will re-ship or refund compensation for you according to the specific situation.
  4. Before sending back the products, please contact our customer service first for return address.

 

Return Conditions

  1. For items with no quality issue, please ensure the returned items are unworn, unwashed, undamaged, have the original tags attached and the original packaging. All return requests must be authorized by our customer service team before shipping to our returned address.
  2. For items with quality issue or items are incorrect, please contact our customer service with some clear photos to show the problem. Once confirmed, return address will be send to you immediately.

    For below circumstances, customers could contact us for return or refund:

    1) Received wrong or damaged item(s)

    2) Received faulty item(s)

    3) Don't like the item(s). (We do not reimburse the return shipping cost)

 

Return Process

Please carefully follow our return process to minimize any delays: 

  1. If you want to return, please contact our customer service stating your:
  • Order number
  • SKU number or product name
  • Reason for return
  1. Our customer service team will respond to your request within 24 hours. (In business day)
  2. Please return the items to the return address we provided and send us return proof in the form of the tracking number and a valid return receipt.
  3. Once we have received the returned item(s), we will email you and arrange refund or exchange as requested immediately.

 

Important Notice

  1. Please do not send your return to the sender's address on your package. This is not the return address and will affect the processing of your return. You should only send it to the address that our customer service provide to you.
  2. Please make sure you don't include non-ifuncoo items in your return package by accident. We will not be responsible for sending those items back to you.
  3. We are not liable for any return packages that may become lost or stolen in-transit. Please keep your proof of return tracking number when shipping back your returns.

Refund Policy

  1. -Any misprinted / damaged / defective items caused by our production or transportation are covered at our expense and you will get a full refund.And We will reimburse the return shipping cost
  2.  -Your order will be fully refunded if it is cancelled within 24 hours of purchase.
  3. -Your order will be fully refunded if it is cancelled before shipping.
  4. We will NOT accept order cancellation request if the orders have been shipped.
  5. -If parcels lost in transit, we will cover your loss by issuing a full refund 
  6. -If you provide an address that the courier is not able to recognize, the shipment will be returned to our facility. You will be liable for reshipment costs once we have confirmed an updated address (if and as applicable).
  7. -If you provide a wrong address when you place an order and do not contact us to change the address, you will be responsible for all the loss.
  8. -Items returned with obvious use, makeup, animal hair, dander, deodorant, perfume, or similar product stains may be subject to denial and will not get a refund.
  9. Please note that processing of refunds can take up to 7 business days to show on your account due to varying processing times between payment providers.
How will customers get the return label?
1.For defective products
This happens when the product is incorrect, damaged by the carrier.
Need to Download/print
2.For customer remorse
This happens when the customer purchased the wrong product, it doesn't fit, or they no longer want the item.
It's Customer responsibility

Our contact information

Tel : +86 173 6448 6941

E-Mail : service@ifuncoo.com

Address :Room 2107, Block A, Century Summer Palace, No. 195 Keji Road, Yanta District, Xi'an, Shaanxi Province,China

Company:Shaanxi Jinnuocheng Trading Co., Ltd.

Service Time : Mon - Fri 09:00-18:00(UTC+8)