visionaryclubclothing.com
Open in
urlscan Pro
23.227.38.67
Public Scan
Submitted URL: http://visionaryclubclothing.com/
Effective URL: https://visionaryclubclothing.com/
Submission: On October 22 via api from US — Scanned from CA
Effective URL: https://visionaryclubclothing.com/
Submission: On October 22 via api from US — Scanned from CA
Form analysis
4 forms found in the DOMGET /search
<form class="mt-8" action="/search" method="get" role="search">
<div class="relative text-scheme-meta">
<label for="sidebar-search" class="visually-hidden">Search</label>
<input class="w-full flex-auto text-scheme-text bg-transparent placeholder-scheme-meta pr-2 py-2 pl-8" id="sidebar-search" type="text" name="q" placeholder="Search">
<button class="absolute top-1/2 h-5 transform -translate-y-1/2 left-0 px-1" type="submit">
<span class="inline-block w-5 h-5"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.548 17.187a6.647 6.647 0 01-6.64-6.64 6.647 6.647 0 016.64-6.639 6.647 6.647 0 016.64 6.64 6.647 6.647 0 01-6.64 6.64zm6.629-1.253a8.507 8.507 0 001.918-5.386C19.095 5.834 15.26 2 10.548 2 5.835 2 2 5.834 2 10.548c0 4.712 3.835 8.547 8.548 8.547a8.503 8.503 0 005.265-1.828L20.546 22l1.35-1.349-4.72-4.717z"
clip-rule="evenodd"></path>
</svg></span>
<span class="visually-hidden">Search</span>
</button>
</div>
</form>
POST /cart
<form action="/cart" method="post" novalidate="">
<div id="CartContainer" class="fixed top-0 right-0 bottom-0 w-11/12 max-w-md bg-scheme-background text-scheme-text transform transition-transform overflow-hidden flex flex-col px-5" x-show="$store.drawer.cartDrawerOpen"
x-transition:enter="transition ease duration-300" x-transition:enter-start="opacity-0 translate-x-full" x-transition:enter-end="opacity-100" x-transition:leave="transition ease duration-300" x-transition:leave-end="opacity-100 translate-x-full"
@click.away.prevent="$store.drawer.cartDrawerOpen = false" role="dialog" aria-modal="true" data-cart-drawer="" aria-labelledby="CartTitle" style="display: none;">
<div class="relative flex items-center justify-between py-4 border-b-theme-width border-scheme-border">
<h1 class="font-heading text-base" id="CartTitle" tabindex="-1"> Your cart - <span x-text="$store.cartCount.countWithText()">0 items</span>
</h1>
<button @click.prevent="$store.drawer.cartDrawerOpen = false" class="block top-0">
<span class="visually-hidden">Close (esc)</span>
<span class="inline-block w-7 h-7"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586l6.364-6.364z" clip-rule="evenodd"></path>
</svg></span>
</button>
</div>
<template x-if="state && !state.item_count">
<div class="py-4">
<p class="supports-cookies text-align--center" x-text="theme.strings.cartEmpty"></p>
<p class="supports-no-cookies cookie-message" x-text="theme.strings.cartCookies"></p>
</div>
</template>
<div class="py-4">
<p class="supports-cookies text-align--center" x-text="theme.strings.cartEmpty">Your cart is currently empty.</p>
<p class="supports-no-cookies cookie-message" x-text="theme.strings.cartCookies">Enable cookies to use the shopping cart</p>
</div>
<template x-if="state && state.item_count">
<div class="flex-auto flex flex-col overflow-hidden">
<div class="py-4 flex-auto overflow-hidden overflow-y-auto px-5 -mx-5">
<div class="grid grid-cols-1 gap-gutter">
<template x-for="(item, index) in state.items" :key="item.key">
<div class="flex py-4 transition bg-scheme-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
<template x-if="!(item.featured_image.url === null)">
<div class="flex-shrink-0 w-20 md:w-28 mr-4">
<a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
<img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
<pre x-text="item.featured_image.src"></pre>
</a>
</div>
</template>
<div class="flex-auto pr-4">
<a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
<template x-if="item.variant_title">
<p class="text-sm" x-text="item.variant_title"></p>
</template>
<template x-if="item.selling_plan_allocation">
<p class="text-sm mt-1 text-scheme-meta" x-text="item.selling_plan_allocation.selling_plan.name"></p>
</template>
<template x-for="property in flatProperties(item.properties)" :key="property.name">
<p class="text-sm">
<span x-text="property.name"></span>: <span x-text="property.value"></span>
</p>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="lg:hidden mt-1 text-sm text-scheme-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
<div class="flex mt-1 items-center -mx-4">
<button class="p-4 flex items-center justify-center" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
<span class="inline-block w-3 h-3"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" class="icon" viewBox="0 0 20 20">
<path d="M17.543 11.029H2.1A1.032 1.032 0 0 1 1.071 10c0-.566.463-1.029 1.029-1.029h15.443c.566 0 1.029.463 1.029 1.029 0 .566-.463 1.029-1.029 1.029z"></path>
</svg>
</span>
</button>
<input type="text" name="updates[]" class="min-w-0 w-6 py-2 text-center text-base border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
@keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
<button class="p-4 flex items-center justify-center" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
<span class="inline-block w-3 h-3"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 20 20">
<path
d="M17.409 8.929h-6.695V2.258c0-.566-.506-1.029-1.071-1.029s-1.071.463-1.071 1.029v6.671H1.967C1.401 8.929.938 9.435.938 10s.463 1.071 1.029 1.071h6.605V17.7c0 .566.506 1.029 1.071 1.029s1.071-.463 1.071-1.029v-6.629h6.695c.566 0 1.029-.506 1.029-1.071s-.463-1.071-1.029-1.071z">
</path>
</svg></span>
</button>
</div>
<button class="none lg:inline-block mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
<small>Remove </small>
<span class="visually-hidden" x-text="item.title"></span>
</button>
</div>
<div class="ml-1 text-right">
<template x-if="item.line_level_discount_allocations.length">
<div>
<span class="visually-hidden">Regular price</span>
<del class="line-through" x-html="formatMoney(item.original_price)"></del>
<span class="visually-hidden">Sale price</span>
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</div>
</template>
<template x-if="!item.line_level_discount_allocations.length">
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</template>
<template x-if="item.unit_price_measurement">
<div class="text-sm">
<span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
<span x-text="item.unit_price_measurement.reference_unit"></span>
</div>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="hidden lg:block mt-1 text-sm text-scheme-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
</div>
</div>
</template>
</div>
<div class="py-4">
<label for="CartSpecialInstructions" class="text-sm"> Add a note to your order </label>
<textarea name="note" id="CartSpecialInstructions" class="block mt-1 p-2 w-full border-theme-width border-scheme-border text-sm bg-transparent" :class="{ 'opacity-50 cursor-wait' : noteUpdating }" x-text="state.note"
@keyup.debounce.1000ms="keyupOnInput($event)" @change="updateNote($event)"> </textarea>
</div>
</div>
<div class="pt-4 lg:pt-8 pb-safe-bottom border-scheme-border border-t-theme-width">
<div :class="{ 'opacity-50 cursor-wait': updating }">
<template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
<p class="flex justify-between text-scheme-accent pb-2">
<span class="visually-hidden">Discount</span>
<span x-text="application.title"></span>
<span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
</p>
</template>
<p class="flex justify-between text-lg">
<span>Subtotal</span>
<span class="ml-2" x-html="formatMoney(state.total_price)"></span>
</p>
<p class="mt-4 text-sm accent-links-scheme text-right"> Tax included and shipping calculated at checkout </p>
<div class="text-right mt-4">
<div>
<input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full w-full btn btn-solid-primary-text" :disabled="updating" value="Check Out">
</div>
<div class="w-full md:mt-2 additional-checkout-buttons Liquid error (snippets/cart-drawer line 237): Could not find asset snippets/button-style.liquid">
<div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
</div>
</div>
</div>
</div>
</div>
</template>
</div>
</form>
GET /search
<form x-ref="searchForm" action="/search" method="get" role="search" @submit="onFormSubmit">
<div class="relative">
<input id="header-search" type="search" name="q" value="" class="header-search-input pl-9 py-2 placeholder-current font-secondary w-full" placeholder="Search" x-ref="input" aria-expanded="false" aria-owns="predictive-search-results-list"
aria-controls="predictive-search-results-list" aria-autocomplete="list" autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false" x-model="rawQuery" @input.debounce.300="onChange" @focus="onFocus">
<label class="visually-hidden" for="header-search">Search</label>
<input type="hidden" name="options[prefix]" value="last"><button class="absolute left-0 top-1/2 transform -translate-y-1/2 p-1" aria-label="Search">
<span class="inline-block w-7 h-7"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.548 17.187a6.647 6.647 0 01-6.64-6.64 6.647 6.647 0 016.64-6.639 6.647 6.647 0 016.64 6.64 6.647 6.647 0 01-6.64 6.64zm6.629-1.253a8.507 8.507 0 001.918-5.386C19.095 5.834 15.26 2 10.548 2 5.835 2 2 5.834 2 10.548c0 4.712 3.835 8.547 8.548 8.547a8.503 8.503 0 005.265-1.828L20.546 22l1.35-1.349-4.72-4.717z"
clip-rule="evenodd"></path>
</svg></span>
</button>
<button @click="close(true,true)" class="block p-1 absolute right-0 top-1/2 transform -translate-y-1/2" type="button">
<span class="visually-hidden">Close (esc)</span>
<span class="inline-block w-7 h-7"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586l6.364-6.364z" clip-rule="evenodd"></path>
</svg></span>
</button>
</div>
<div id="predictiveSearchResults" :class="{'opacity-0': !isOpen }" tabindex="-1"
class="bg-scheme-background pb-4 lg:pb-8 section-x-padding absolute bottom-border-width left-0 right-0 transform translate-y-search-results z-50 overflow-hidden overflow-y-auto max-h-screen-header opacity-0" data-color-scheme="primary">
<template x-if="loading && !results">
<div class="w-7 h-7 mx-auto" data-predictive-loading="">
<div class="loading"></div>
</div>
</template>
<template x-if="isOpen">
<div class="text-scheme-text" x-ref="results">
</div>
</template>
</div>
<span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span>
</form>
POST /contact#contact_form
<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
<div class="flex flex-row mx-auto lg:max-w-2xl justify-center mx-4">
<input type="hidden" name="contact[tags]" value="newsletter">
<label class="visually-hidden" for="Email-template--15903430443185__ffa46171-ae8b-49e2-add7-fbf3592c0992"> Email Address </label>
<input type="email" name="contact[email]" id="Email-template--15903430443185__ffa46171-ae8b-49e2-add7-fbf3592c0992" value="" placeholder="email@example.com" autocorrect="off" autocapitalize="off"
class="newsletter__input border-scheme-border flex-1 max-w-xl min-w-0 border-b-theme-width py-5 placeholder-secondary">
<button class="btn btn-outline-primary-accent lg:w-auto ml-2 lg:ml-12" type="submit" name="commit" id="Subscribe">
<span class="btn-text">Subscribe</span>
</button>
</div>
</form>
Text Content
Skip to content Close (esc) Menu Close menu Visionary Club * ACCESS NEW DROP * SHOP ALL * SHORTS * TOPS * HOODIES * ACCESSORIES * ABOUT US * OUR PURPOSE * BRAND AMBASSADOR * GIFT CARDS * CONTACT US Search Search * Instagram * Pinterest YOUR CART - 0 ITEMS Close (esc) Your cart is currently empty. Enable cookies to use the shopping cart : − Remove Regular price Sale price / − Add a note to your order Discount Subtotal Tax included and shipping calculated at checkout Free shipping on orders +$100 Menu * Instagram * Pinterest Search our site Search Close (esc) 0 0 items JUST DROPPED * VZNARY "MATRIX" T-SHIRT VZNARY "MATRIX" T-SHIRT $69.69 * VZNARY "GLOW IN THE DARK " T-SHIRT VZNARY "GLOW IN THE DARK " T-SHIRT $69.69 * VZNARY "SILVER SURFER" T-SHIRT VZNARY "SILVER SURFER" T-SHIRT $69.69 * VZNARY "MEMBERS ONLY " T-SHIRT VZNARY "MEMBERS ONLY " T-SHIRT $69.69 * VZNARY "PARADIGM SHIFT" T-SHIRT (WHITE) VZNARY "PARADIGM SHIFT" T-SHIRT (WHITE) $69.69 * VZNARY "PARADIGM SHIFT" T-SHIRT (BLACK) VZNARY "PARADIGM SHIFT" T-SHIRT (BLACK) $69.69 View All Pause slideshow Play slideshow STAND OUT FROM THE CROWD VZNARY "STARGAZING" JEANS Shop Now BEST SELLER SS7 FULL ZIP-UP PUFF PRINT HOODIE Shop Now STAND OUT FROM THE CROWD VZNARY "STARGAZING" JEANS Shop Now BEST SELLER SS7 FULL ZIP-UP PUFF PRINT HOODIE Shop Now Previous slide Next slide * * SIGNATURE FULL ZIP-UP PUFF PRINT HOODIES * SS7 FULL ZIP-UP PUFF PRINT HOODIE SS7 FULL ZIP-UP PUFF PRINT HOODIE $118.47 * "PINK BUBBLEGUM" FULL ZIP-UP PUFF PRINT "PINK BUBBLEGUM" FULL ZIP-UP PUFF PRINT $118.47 * "PURPLE RAIN" FULL ZIP-UP PUFF PRINT "PURPLE RAIN" FULL ZIP-UP PUFF PRINT $118.47 * "GLACIER ICE" FULL ZIP-UP PUFF PRINT "GLACIER ICE" FULL ZIP-UP PUFF PRINT $118.47 * "PISTACHIO GREEN" FULL ZIP-UP PUFF PRINT "PISTACHIO GREEN" FULL ZIP-UP PUFF PRINT $118.47 * "BROWN MOCHA" FULL ZIP-UP PUFF PRINT "BROWN MOCHA" FULL ZIP-UP PUFF PRINT $118.47 LOOK BOOK SIGN UP TO NEVER MISS A DROP AGAIN. Email Address Subscribe NAVIGATION * Pre-Order Policy * Shipping Policy * Chargeback Prevention Policy * Refund Policy * Privacy Policy * Terms of Service GET CONNECTED * Instagram * Pinterest © 2023, Visionary Club. Powered by Shopify ACCEPTED PAYMENTS * American Express * Apple Pay * Diners Club * Discover * Meta Pay * Google Pay * Mastercard * PayPal * Shop Pay * Venmo * Visa Close (esc) * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection. BECOME A MEMBER & GET 10% OFF YOUR FIRST ORDER Don't Miss Out On New Releases, Sales & More +1🇨🇦 🇺🇸US +1 🇨🇦CA +1 🇦🇺AU +61 🇬🇧GB +44 🇦🇫AF +93 🇦🇱AL +355 🇩🇿DZ +213 🇦🇸AS +1684 🇦🇩AD +376 🇦🇴AO +244 🇦🇮AI +1 🇦🇬AG +1268 🇦🇷AR +54 🇦🇲AM +374 🇦🇼AW +297 🇦🇹AT +43 🇦🇿AZ +994 🇧🇭BH +973 🇧🇩BD +880 🇧🇧BB +1246 🇧🇾BY +375 🇧🇪BE +32 🇧🇿BZ +501 🇧🇯BJ +229 🇧🇲BM +1 🇧🇹BT +975 🇧🇴BO +591 🇧🇦BA +387 🇧🇼BW +267 🇧🇷BR +55 🇮🇴IO +246 🇻🇬VG +1340 🇧🇳BN +673 🇧🇬BG +359 🇧🇫BF +226 🇲🇲MM +95 🇧🇮BI +257 🇰🇭KH +855 🇨🇲CM +237 🇨🇻CV +238 🇰🇾KY +1 🇨🇫CF +236 🇹🇩TD +235 🇨🇱CL +56 🇨🇳CN +86 🇨🇴CO +57 🇰🇲KM +269 🇨🇰CK +682 🇨🇷CR +506 🇭🇷HR +385 🇨🇺CU +53 🇨🇾CY +357 🇨🇿CZ +420 🇨🇩CD +243 🇩🇰DK +45 🇩🇯DJ +253 🇩🇲DM +1767 🇩🇴DO +1809 🇪🇨EC +593 🇪🇬EG +20 🇸🇻SV +503 🇬🇶GQ +240 🇪🇷ER +291 🇪🇪EE +372 🇪🇹ET +251 🇫🇰FK +500 🇫🇴FO +298 🇫🇲FM +691 🇫🇯FJ +679 🇫🇮FI +358 🇫🇷FR +33 🇬🇫GF +594 🇵🇫PF +689 🇬🇦GA +241 🇬🇪GE +995 🇩🇪DE +49 🇬🇭GH +233 🇬🇮GI +350 🇬🇷GR +30 🇬🇱GL +299 🇬🇩GD +1473 🇬🇵GP +590 🇬🇺GU +1 🇬🇹GT +502 🇬🇳GN +224 🇬🇼GW +245 🇬🇾GY +592 🇭🇹HT +509 🇭🇳HN +504 🇭🇰HK +852 🇭🇺HU +36 🇮🇸IS +354 🇮🇳IN +91 🇮🇩ID +62 🇮🇷IR +98 🇮🇶IQ +964 🇮🇪IE +353 🇮🇱IL +972 🇮🇹IT +39 🇨🇮CI +225 🇯🇲JM +1876 🇯🇵JP +81 🇯🇴JO +962 🇰🇿KZ +7 🇰🇪KE +254 🇰🇮KI +686 🇽🇰XK +383 🇰🇼KW +965 🇰🇬KG +996 🇱🇦LA +856 🇱🇻LV +371 🇱🇧LB +961 🇱🇸LS +266 🇱🇷LR +231 🇱🇾LY +218 🇱🇮LI +423 🇱🇹LT +370 🇱🇺LU +352 🇲🇴MO +853 🇲🇰MK +389 🇲🇬MG +261 🇲🇼MW +265 🇲🇾MY +60 🇲🇻MV +960 🇲🇱ML +223 🇲🇹MT +356 🇲🇭MH +692 🇲🇶MQ +596 🇲🇷MR +222 🇲🇺MU +230 🇾🇹YT +262 🇲🇽MX +52 🇲🇩MD +373 🇲🇨MC +377 🇲🇳MN +976 🇲🇪ME +382 🇲🇦MA +212 🇲🇸MS +1 🇲🇿MZ +258 🇳🇦NA +264 🇳🇷NR +674 🇳🇵NP +977 🇳🇱NL +31 🇦🇳AN +599 🇳🇨NC +687 🇳🇿NZ +64 🇳🇮NI +505 🇳🇪NE +227 🇳🇬NG +234 🇳🇺NU +683 🇳🇫NF +672 🇰🇵KP +850 🇲🇵MP +1 🇳🇴NO +47 🇴🇲OM +968 🇵🇰PK +92 🇵🇼PW +680 🇵🇸PS +970 🇵🇦PA +507 🇵🇬PG +675 🇵🇾PY +595 🇵🇪PE +51 🇵🇭PH +63 🇵🇱PL +48 🇵🇹PT +351 🇵🇷PR +1 🇶🇦QA +974 🇨🇬CG +242 🇷🇪RE +262 🇷🇴RO +40 🇷🇺RU +7 🇷🇼RW +250 🇸🇭SH +290 🇱🇨LC +1758 🇰🇳KN +1869 🇵🇲PM +508 🇻🇨VC +1784 🇼🇸WS +685 🇸🇲SM +378 🇸🇹ST +239 🇸🇦SA +966 🇸🇳SN +221 🇷🇸RS +381 🇸🇨SC +248 🇸🇱SL +232 🇸🇬SG +65 🇸🇰SK +421 🇸🇮SI +386 🇸🇧SB +677 🇸🇴SO +252 🇿🇦ZA +27 🇰🇷KR +82 🇸🇸SS +211 🇪🇸ES +34 🇱🇰LK +94 🇸🇩SD +249 🇸🇷SR +597 🇸🇿SZ +268 🇸🇪SE +46 🇨🇭CH +41 🇸🇾SY +963 🇹🇼TW +886 🇹🇯TJ +992 🇹🇿TZ +255 🇹🇭TH +66 🇧🇸BS +1 🇬🇲GM +220 🇹🇱TL +670 🇹🇬TG +228 🇹🇰TK +690 🇹🇴TO +676 🇹🇹TT +1868 🇹🇳TN +216 🇹🇷TR +90 🇹🇲TM +993 🇹🇻TV +688 🇹🇨TC +1 🇺🇬UG +256 🇺🇦UA +380 🇦🇪AE +971 🇺🇾UY +598 🇺🇿UZ +998 🇻🇺VU +678 🇻🇦VA +379 🇻🇪VE +58 🇻🇳VN +84 🇼🇫WF +681 🇾🇪YE +967 🇿🇲ZM +260 🇿🇼ZW +263 SUBMIT By signing up via text you agree to receive recurring automated marketing messages and shopping cart reminders at the phone number provided. Consent is not a condition of purchase. Reply STOP to unsubscribe. HELP for help. Msg frequency varies. Msg & Data rates may apply. View Privacy Policy & ToS