Conch Clutch Chain Bag
DESCRIPTION
Conch elements, very cute,
can be held in hand or carried on the shoulder
a good choice for vacation or party wear.
Note:
Please check the size carefully
Please allow 0.5-1 inch error due to manual measurement.
Differen tmonitor settings mean colors may vary slightly
1inch=2.54cm
Size:
Please refer to the picture
DETAILS
Material:Acrylic
Thickness: Regular
Occasion: Vacation,Party
SHIPPING
1) Courier Delivery Time
|
Region |
Express |
Fast |
Standard |
|
USA |
3-5 |
6-8 |
6-10 |
|
Europe |
3-5 |
6-8 |
6-10 |
|
Canada |
3-7 |
6-8 |
6-10 |
|
Australia |
3-7 |
6-8 |
6-10 |
|
New Zealand |
3-7 |
6-8 |
6-10 |
| Japan |
3-7 |
6-8 |
6-10 |
| Asia |
5-8 |
6-10 |
8-12 |
|
Others |
5-8 |
8-12 |
10-15 |
*Time is counted by the working days.
*FREE Standard Shipping on orders with 2 and above items.
2) Order Processing Time
General items: We generally process to ship these orders within 1-3 business days. Orders placed during weekends or on holidays will process on the next consecutive business day. If the item you ordered is out of stock, we will email you the best available option.
Handmade items: To ensure each handmade product's quality and the materials' freshness, we reserve up to 2 weeks for every artisan. Please expect up to two weeks of production and processing time before shipping.
* All Express orders will be prioritized for production, which usually only takes 1-3 working days before shipping.
-
You May Like
Party Dresses
Jewelries
Recently viewed
document.addEventListener('DOMContentLoaded', function() { // 1. 自动获取当前商品信息(适配任意商品) const productMeta = { productId: document.querySelector('meta[property="product:id"]')?.content || '', name: document.querySelector('h1.product-title, .product-name')?.innerText.trim() || '商品', price: 0, variantId: '' }; // 2. 自动获取商品价格(适配不同模板) function getProductPrice() { const priceText = document.querySelector('.product-price, .price-current, [data-price], .product-detail-price')?.innerText || ''; const priceNum = parseFloat(priceText.replace(/[^\d.]/g, '')) || 0; return Math.round(priceNum * 100); // 转换为分 } // 3. 自动处理变体(有/无变体均适配) function initVariantListener() { const variantSelects = document.querySelectorAll('select[name="id"], select[data-variant-id], .variant-select, [name="variant_id"]'); if (variantSelects.length > 0) { variantSelects.forEach(select => { // 初始化默认变体 if (select.value) { productMeta.variantId = select.value; const selectedOption = select.options[select.selectedIndex]; productMeta.price = selectedOption.dataset.price ? parseInt(selectedOption.dataset.price) : getProductPrice(); } // 变体变化时更新 select.addEventListener('change', function() { productMeta.variantId = this.value; const selectedOption = this.options[this.selectedIndex]; productMeta.price = selectedOption.dataset.price ? parseInt(selectedOption.dataset.price) : getProductPrice(); }); }); } else { // 无变体:直接用商品ID和价格 productMeta.variantId = productMeta.productId; productMeta.price = getProductPrice(); } } initVariantListener(); // 4. 拦截所有商品的Buy Now按钮 const buyNowBtns = document.querySelectorAll('button[data-action="buy-now"], .buy-now-btn, [id*="buy-now"], .btn-buy-now, .add-to-cart-buy-now'); if (buyNowBtns.length === 0) return; buyNowBtns.forEach(btn => { btn.addEventListener('click', async function(e) { e.preventDefault(); // 校验商品信息 if (!productMeta.productId || productMeta.price === 0) { alert('商品信息获取失败,请重试!'); btn.removeEventListener('click', arguments.callee); btn.click(); return; } // 存储当前商品(B)到临时缓存(仅B,未添加C) const tempOrderItems = [ { product_id: productMeta.productId, variant_id: productMeta.variantId, name: productMeta.name, price: productMeta.price, quantity: 1 } ]; sessionStorage.setItem('tempOrderItems', JSON.stringify(tempOrderItems)); // 跳转结算页 window.location.href = '/checkout'; }); }); });