Sitewide Buy 3 Get 1 FREE(Add 4 to Cart)
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
1 / 9
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4
0% OFF

Sunflower Butterfly Burlap DIY Diamond Dot Art Wine Bottle Bag Set of 4

1869404.01

$15.66
0 sold
Qty 3000 in stock
Specification:

Product size: 13.94x6.06x0.39(inch)

Origin (country or region): Mainland China (Origin)

Style: Modern

Material: Resin

Product name: Linen wine bottle bag

Material: fabric + DIY dot diamond (special-shaped diamond)

Parameters: 35.4*15.4cm


Note:
Due to the different monitor and light effect, the actual color of the item might be slightly different from the color shown in the images. Thank you!
Please allow a 1-2 cm difference in measurements due to manual measuring.



4 x Irregularly Shaped Rhinestone Bag
4 Linen Wine Sleeve
4 Rhinestone Painting Tools (Dotting Tool, Speed Dial)


4pcs Burlap DIY Gem Art Drawstring Wine Bottle Cover

Features:

1. DIY Gem Placement: The DIY gem art wine bottle bags feature a clearly marked adhesive burlap canvas, making it easy to place faceted resin gem precisely to build a dazzling personalized sleeve.

2. Cinch-Tight Drawstring: Built as a burlap drawstring wine bottle cover, the cord closure draws evenly around the bottle body, securing the decorative sleeve firmly without leaving or causing uneven bunching.

3. High-Adhesion Resin Gems: resin gem wine bottle sleeve is fitted with shaped resin stones that bond strongly to the fabric adhesive, staying bright and intact through long-term decorative use.

4. Elegant Gift Presentation: Designed as wine bottle gift wrap, these burlap gem bags transform any wine or champagne bottle into a thoughtful handcrafted gift that looks polished and festive without added wrapping.

5. Included Crafting Tools: Gem art tools included with every set, such as the dotting pen and speed tray, the gem application process and make completing all four bags achievable for any skill level.

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1736477762476').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);