Women's Round Neck Leopard Print Cotton and Linen Casual Suit

$39.99
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'd873b3b4-b527-4c68-9537-2ea523b44db0'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'c09f4f95-0ee0-49d3-b651-87c6d8dfa34a'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == 'c09f4f95-0ee0-49d3-b651-87c6d8dfa34a' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = 'c09f4f95-0ee0-49d3-b651-87c6d8dfa34a'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("Added successfully"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
Color:  brown
Size:  XS(US 4/UK 8/EU 36)
Quantity

Description

 
🔥 [WILD & COMFY] Leopard Love! Women's Round Neck Cotton-Linen 2-Piece Casual Suit Set – Effortless Chic Meets Boho Vibes! 🔥
Slay the Casual Game! Unleash your inner fashionista with this trendy leopard print coordinated set. Perfect for weekend errands, coffee dates, travel, beach cover-ups, or anytime you want to feel relaxed yet runway-ready! 💫👑
🐆 Why This Set is a TOTAL VIBE:
  • 🎨 Classic Leopard Print Design: Timeless animal print that NEVER goes out of style! Bold yet versatile, this pattern adds instant edge and personality to your wardrobe. Pair with neutrals or go wild – you decide! ✨
  • 🌿 Premium Cotton-Linen Blend: Crafted from breathable, skin-friendly natural fibers that keep you cool in summer and cozy in spring. Soft texture, moisture-wicking, and gets even comfier after every wash! 🌬️
  • 👗 Perfectly Matched 2-Piece Set: Includes: ① Round neck relaxed-fit top with subtle detailing ② Elastic-waist casual pants with easy drawstring. Wear together for a coordinated look, or mix & match with your favorite denim and tanks!
  • 🎯 Flattering Relaxed Fit: Designed for comfort WITHOUT sacrificing style! The loose silhouette skims over curves, while the high-rise pants elongate your legs. Perfect for all body types – hello, confidence boost! 💃
  • 🤎 Earthy Neutral Base: The warm brown/black leopard palette pairs effortlessly with boots, sneakers, sandals, or heels. Dress it up or down – this set does IT ALL!
📏 Size Guide: Available in XS, S, M, L, XL, XXL, XXXL!
(Model wears Size S / US 4, height 5'7". Fits true to size. Prefer oversized boho chic? Size up!)
👉 US 2-16 covered. Check the detailed size chart in photos for your perfect match!
🧼 Care Tips:
✅ Machine wash cold on gentle cycle (inside-out recommended)
✅ Hang dry or tumble dry low to preserve print & fabric softness
❌ Avoid bleach, high-heat ironing directly on print, or wringing
🎁 Perfect For:
✅ Weekend Casual & Loungewear Looks 🛋️
✅ Coffee Dates, Brunch & Shopping Trips ☕🛍️
✅ Spring/Summer Travel & Vacation Outfits ✈️🏖️
✅ Beach Cover-ups & Resort Wear 🌴
✅ Instagram OOTDs, Lifestyle Content & Travel Photos 📸
✅ Music Festivals & Outdoor Events 🎪
✅ Gift for your trendy bestie, mom, sister, or treat YOURSELF! 💝
💰 Limited-Time Flash Deal:
$65.00 ➡️ NOW ONLY $42.99! (Save $22!)
🎉 BUNDLE SAVINGS: Buy 2 sets get 10% OFF | Buy 3 get 15% OFF + Free Priority Shipping!
🚚 Fast Worldwide Shipping • Easy 30-Day Returns • 100% Quality & Comfort Guarantee
⚠️ Heads Up: This wild beauty is selling FAST! Over 5,200+ happy customers already rocking their leopard confidence! 🐆✨
🛒 Don't Wait – Embrace Your Wild Side!
👉 Click "Add to Cart" NOW before your size or favorite print runs out! Your new go-to casual-chic set is waiting! 🛍️💫

Tops Size:

 Size Length Bust Sleeve Length
CM inch CM inch CM inch
XS 72 28.3 95 37.4 38 15.0
S 73 28.7 99 39.0 39 15.4
M 74 29.1 104 40.9 40 15.7
L 75 29.5 109 42.9 41 16.1
XL 76 29.9 114 44.9 42 16.5
2XL 77 30.3 119 46.9 43 16.9
3XL 78 30.7 124 48.8 44 17.3

 Pants Size:

 Size Waist Hips Length
CM inch CM inch CM inch
XS 64 25.6 100 40.0 106 42.4
S 68 26.8 104 40.9 108 42.5
M 73 28.7 109 42.9 109 42.9
L 78 30.7 114 44.9 110 43.3
XL 83 32.7 119 46.9 111 43.7
2XL 88 34.6 124 48.8 112 44.1
3XL 93 36.6 129 50.8 113 44.5

 *This data was obtained from manually measuring the product, it may be off by 1-2 CM.