biotyspa.com
Open in
urlscan Pro
23.227.38.32
Public Scan
Submitted URL: https://biotyspa.myshopify.com/products/body-sculpt-kit?variant=38157588529343
Effective URL: https://biotyspa.com/products/body-sculpt-kit?variant=38157588529343
Submission: On January 19 via manual from SG — Scanned from CA
Effective URL: https://biotyspa.com/products/body-sculpt-kit?variant=38157588529343
Submission: On January 19 via manual from SG — Scanned from CA
Form analysis
7 forms found in the DOMGET /search
<form class="my-6 section-x-padding" action="/search" method="get" role="search">
<div class="flex w-full max-w-xs items-end">
<label for="sidebar-search" class="visually-hidden">Search</label>
<input class="min-w-0 flex-auto bg-transparent border-current border-b-text placeholder-current py-1.5" id="sidebar-search" type="text" name="q" placeholder="Search">
<button class="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.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
</div>
</form>
POST /cart
<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
<div class="grid grid-cols-1 gap-gutter bg-border">
<template x-for="(item, index) in state.items" :key="item.key">
<div class="flex py-4 section-x-padding 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-10 md:w-20 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">
<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" 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>
<template x-if="allocation.amount > 0">
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</template>
</li>
</template>
</ul>
</template>
<div class="flex mt-1 lg:mt-2 items-center">
<button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
</svg>
</button>
<input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm 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="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
</svg>
</button>
</div>
<button class="none lg:inline-block mt-1 lg: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-xs">
<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>
<template x-if="allocation.amount > 0">
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</template>
</li>
</template>
</ul>
</template>
</div>
</div>
</template>
</div>
<div class="bottom-0 py-4 section-x-padding bg-scheme-background border-t-grid border-grid-color">
<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">
<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">
<span>Subtotal</span>
<span class="ml-2" x-html="formatMoney(state.total_price)"></span>
</p>
<p class="my-2 md:my-4 text-sm accent-links-scheme text-right"> Tax included. <a href="/policies/shipping-policy">Shipping</a> calculated at checkout. </p>
<div class="text-right">
<div>
<input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text"
:disabled="updating" value="Check out">
</div>
</div>
</div>
</div>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<label for="search-logo_center_menu_left-desktop" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><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.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input x-ref="searchInput" id="search-logo_center_menu_left-desktop" type="text" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-transparent" aria-label="Search" data-search-input="">
<button class="py-2 ml-4" @click="searchOpen = false" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><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.586z"></path>
</svg></span>
</button>
</div>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<label for="search-logo_center_menu_left-mobile" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><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.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input x-ref="searchInput" id="search-logo_center_menu_left-mobile" type="text" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-transparent" aria-label="Search" data-search-input="">
<button class="py-2 ml-4" @click="searchOpen = false" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><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.586z"></path>
</svg></span>
</button>
</div>
</form>
POST /cart/add
<form method="post" action="/cart/add" id="product-form-template--16081448566975__main" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" data-product-form="" data-product-handle="body-sculpt-kit"
data-enable-history-state="true" x-ref="productForm"><input type="hidden" name="form_type" value="product"><input type="hidden" name="utf8" value="✓">
<div class="no-js hidden">
<label class="block mt-theme" for="variant_template--16081448566975__main">Variant</label>
<select x-ref="singleVariantSelector" name="id" id="variant_template--16081448566975__main" class="mt-2 appearance-none rounded-none bg-scheme-background text-scheme-text border-b-grid py-1 border-scheme-text text-scheme-text pr-6">
<option x-bind:selected="currentVariantId === 38157588529343" value="38157588529343" selected="selected"> Default Title </option>
</select>
</div>
<div class="add-to-cart-container mt-8 lg:w-3/4"><button id="addToCartButton" @click="$store.drawer.cartOpener = $event.currentTarget"
class="add-to-cart px-1 py-2 w-full uppercase bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text candy" type="submit"
:class="{ 'opacity-50 cursor-not-allowed': !currentVariantAvailable }" :disabled="!currentVariantAvailable || loading" style="display:none!important;visibility:hidden;position:absolute;left:-10000px;">
<span class="no-js"> Sold out </span>
<template x-if="current_variant">
<div>
<template x-if="currentVariantAvailable">
<span>Add to cart</span>
</template>
<template x-if="!currentVariantAvailable">
<span>Sold out</span>
</template>
</div>
</template>
<div>
<template x-if="currentVariantAvailable">
<span>Add to cart</span>
</template>
<span>Add to cart</span>
<template x-if="!currentVariantAvailable">
<span>Sold out</span>
</template>
</div>
<template x-if="!current_variant">
<span> Unavailable</span>
</template>
</button><button id="addToCartButton" @click="$store.drawer.cartOpener = $event.currentTarget"
class="add-to-cart px-1 py-2 w-full uppercase bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text candy candy-cloned pn-button-be1ugyodi8k"
type="submit" :class="{ 'opacity-50 cursor-not-allowed': !currentVariantAvailable }" :disabled="!currentVariantAvailable || loading">
<span class="no-js"> Sold out </span>
<template x-if="current_variant">
<div>
<template x-if="currentVariantAvailable">
<span>Add to cart</span>
</template>
<template x-if="!currentVariantAvailable">
<span>Sold out</span>
</template>
</div>
</template>
<div>
<template x-if="currentVariantAvailable">
<span>Add to cart</span>
</template>
<span>Add to cart</span>
<template x-if="!currentVariantAvailable">
<span>Sold out</span>
</template>
</div>
<template x-if="!current_variant">
<span> Unavailable</span>
</template>
</button></div>
<input type="hidden" name="product-id" value="4707267608662"><input type="hidden" name="section-id" value="template--16081448566975__main">
</form>
POST /contact#Contact-footer
<form method="post" action="/contact#Contact-footer" id="Contact-footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
<input type="hidden" name="contact[tags]" value="newsletter">
<div class="lg:ml-4 lg:flex items-end">
<label class="visually-hidden" for="Email-footer">Email address</label>
<input type="email" class="placeholder-current font-body border-b-text border-current w-full block bg-transparent pb-1" name="contact[email]" id="Email-footer" value="" placeholder="Email address" autocorrect="off" autocapitalize="off">
<button class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-scheme-accent border-b-text border-scheme-text hover:border-scheme-accent pb-1" type="submit" name="commit" id="Subscribe">
<span class="uppercase whitespace-nowrap">Subscribe</span>
</button>
</div>
</form>
POST /localization
<form method="post" action="/localization" id="md-modal__form__id" accept-charset="UTF-8" class="" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden" name="utf8" value="✓"><input
type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/products/body-sculpt-kit?variant=38157588529343">
<div class="md-modal__grid">
<div class="md-modal__grid__1">
<div class="md-modal__header__flag">
</div>
<div class="md-modal__header">
<div class="md-modal__header__title">
<span class="md-modal__header__title__span md-modal__header__custom__title" data-mdapptitle=""> Are you in the right place? </span>
</div>
<button class="md-modal-closeButton md-modal-closeButtonAction" aria-label="Close" type="button" style="display: none !important;">
<span class="md-icon">
<span class="md-visuallyHidden"></span>
<svg viewBox="0 0 20 20" class="md-icon__Svg" focusable="false" aria-hidden="true">
<path d="m11.414 10 6.293-6.293a1 1 0 1 0-1.414-1.414L10 8.586 3.707 2.293a1 1 0 0 0-1.414 1.414L8.586 10l-6.293 6.293a1 1 0 1 0 1.414 1.414L10 11.414l6.293 6.293A.998.998 0 0 0 18 17a.999.999 0 0 0-.293-.707L11.414 10z"></path>
</svg>
</span>
</button>
</div>
<div class="md-modal__body">
<div class="md-modal__bodyContent">
<p class="md-modal__bodyContent__text" data-mdapptext="">Please select your shipping country.</p>
<div class="md-modal__bodyContent__helperText" data-mdapphelpertext="">
<p>Buy from the country of your choice. Remember that we can only ship your order to addresses located in the chosen country.</p>
</div>
</div>
</div> <!-- Custom HTML -->
<div class="md-modal__formContent" data-wg-notranslate="">
<!-- BEGIN app snippet: country-selector -->
<div class="md-modal__formContent__select">
<label for="country_code" data-mdappcountrylabel="">Country </label>
<input name="country_code" type="hidden">
<button type="button" name="md-form__select__country__button" id="md-form__select__country" class="md-form__select" aria-expanded="false" aria-controls="orbeCountryList" data-value="CA">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Canada</span>
</div>
</button>
<ul id="orbeCountryList" role="list" class="md-form__select__country__list " hidden="">
<li tabindex="-1" data-name="Argentina" data-country="AR" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="AR" data-value="AR" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Argentina</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Australia" data-country="AU" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" aria-current="true" data-primarymarket="true" data-currency="AUD" data-symbol="$" data-primary="enabled" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa.com" data-country="AU" data-value="AU" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Australia</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Austria / Österreich" data-country="AT" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="AT" data-value="AT" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Austria / Österreich</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Belgium" data-country="BE" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="BE" data-value="BE" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Belgium</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Brasil" data-country="BR" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="BR" data-value="BR" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Brasil</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="CHINA / 中国大陆" data-country="CN" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="CN" data-value="CN" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">CHINA / 中国大陆</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Canada" data-country="CA" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="CA" data-value="CA" data-locales="en" data-namelocales="English" aria-current="true">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Canada</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Danmark" data-country="DK" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="DK" data-value="DK" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Danmark</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Deutschland / Germany" data-country="DE" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="DE" data-value="DE" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Deutschland / Germany</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="España" data-country="ES" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="ES" data-value="ES" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">España</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Finland" data-country="FI" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="FI" data-value="FI" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Finland</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="France" data-country="FR" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="FR" data-value="FR" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">France</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Greece / Ελλαδα" data-country="GR" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="GR" data-value="GR" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Greece / Ελλαδα</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Hong Kong SAR / 香港特別行政區" data-country="HK" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="HK" data-value="HK" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Hong Kong SAR / 香港特別行政區</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Hungary / Hungary" data-country="HU" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="HU" data-value="HU" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Hungary / Hungary</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Iceland" data-country="IS" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="IS" data-value="IS" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Iceland</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Ireland" data-country="IE" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="IE" data-value="IE" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Ireland</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Israel" data-country="IL" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="IL" data-value="IL" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Israel</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Italia / Italy" data-country="IT" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="IT" data-value="IT" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Italia / Italy</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Japan / 日本" data-country="JP" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="JP" data-value="JP" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Japan / 日本</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Luxembourg" data-country="LU" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="LU" data-value="LU" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Luxembourg</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Macau SAR / 澳門特別行政區" data-country="MO" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="MO" data-value="MO" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Macau SAR / 澳門特別行政區</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Monaco" data-country="MC" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="MC" data-value="MC" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Monaco</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="México" data-country="MX" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="MX" data-value="MX" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">México</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Nederland / Netherlands" data-country="NL" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="NL" data-value="NL" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Nederland / Netherlands</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="New Zealand" data-country="NZ" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="AUD" data-symbol="$" data-primary="enabled" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa.myshopify.com" data-country="NZ" data-value="NZ" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">New Zealand</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Norway / Norge" data-country="NO" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="NO" data-value="NO" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Norway / Norge</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Philippines" data-country="PH" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="PH" data-value="PH" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Philippines</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Polska / Poland" data-country="PL" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="PL" data-value="PL" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Polska / Poland</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Portugal" data-country="PT" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="PT" data-value="PT" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Portugal</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Russia / Россия" data-country="RU" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="RU" data-value="RU" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Russia / Россия</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Singapore" data-country="SG" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="SG" data-value="SG" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Singapore</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="South Korea / 대한민국" data-country="KR" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="KR" data-value="KR" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">South Korea / 대한민국</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Sverige / Sweden" data-country="SE" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="SE" data-value="SE" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Sverige / Sweden</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Switzerland" data-country="CH" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="CH" data-value="CH" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Switzerland</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="Taiwan China / 中國台灣TW" data-country="TW" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="TW" data-value="TW" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">Taiwan China / 中國台灣TW</span>
</div>
</a>
</li>
<li class="md-form__select__mobile" tabindex="-1" data-name="UAE - Dubai/Sharjah/Ajman/UAQ/Fujairah" data-country="AE" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="AE" data-value="AE" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">UAE - Dubai/Sharjah/Ajman/UAQ/Fujairah</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="United Kingdom" data-country="GB" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="false" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="biotyspa-usa.myshopify.com" data-country="GB" data-value="GB" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">United Kingdom</span>
</div>
</a>
</li>
<li tabindex="-1" data-name="United States" data-country="US" style="display: list-item;">
<a class="md-form__select__country__list-link" href="#" data-primarymarket="true" data-currency="USD" data-symbol="$" data-primary="undefined" data-defaultlocale="en" data-subfoldersuffix="" data-domainurl="us.biotyspa.com" data-country="US" data-value="US" data-locales="en" data-namelocales="English">
<div class="md-form__select__country__list-link-wrapper">
<span class="md-form__select__span">United States</span>
</div>
</a>
</li>
</ul>
</div>
<!-- END app snippet -->
<!-- BEGIN app snippet: language-selector -->
<div class="md-modal__formContent__select">
<label for="language_code" data-mdapplanguagelabel="">Language </label>
<input name="language_code" type="hidden">
<button type="button" name="md-form__select__language__button" id="md-form__select__language" class="md-form__select" aria-expanded="false" aria-controls="orbeLanguageList" data-value="en">
<div class="md-form__select__language__list-link-wrapper">
<span class="md-form__select__span">English</span>
</div>
</button>
<ul id="orbeLanguageList" role="list" class="md-form__select__language__list " hidden="">
<li tabindex="-1"><a href="#" class="md-form__select__language__list-link" data-value="en" aria-current="true"><div class="md-form__select__language__list-link-wrapper"><span>English</span></div></a></li>
</ul>
</div>
<!-- END app snippet -->
</div>
<div class="md-modal__footer ">
<div class="md-modal__footerContent">
<button type="submit" class="md-btn md-btn__primary" id="md-btn__form__onSubmit" data-mdappctatext="">Shop now</button>
</div>
</div>
</div>
<div class="md-modal__grid__2">
</div>
</div>
</form>
Text Content
Skip to content Menu Close * SHOP * Shop All * Best Sellers * Body * Face * Rituals * Gift Card * BODY SCULPT RITUAL * Body Sculpt Kit * Tutorials * Clinically Proven * Featured In * HOW TO * How To Use Kits & Duos * ABOUT * Our Story * Ingredients * Sustainability * Stockists * Journal * Press * FAQ Australia * Log in * Create account Search Submit * Pinterest * Instagram * TikTok * YouTube YOUR CART - 0 ITEMS Close Your cart is currently empty. Enable cookies to use the shopping cart : − Remove Regular price Sale price / − Discount Subtotal Tax included. Shipping calculated at checkout. Close FREE SHIPPING AUSTRALIA WIDE OVER $90 * SHOP * Shop All * Best Sellers * Body * Face * Rituals * Gift Card * BODY SCULPT RITUAL * Body Sculpt Kit * Tutorials * Clinically Proven * Featured In * HOW TO * How To Use Kits & Duos * ABOUT * Our Story * Ingredients * Sustainability * Stockists * Journal * Press * FAQ Log in Search Submit Submit Close Australia 0 items Menu Search Submit Submit Close 0 items * * * * * * * * * * * Previous slide Next slide BODY SCULPT KIT 4.9 Rated 4.9 out of 5 stars 4.9 Click to scroll to reviews Regular price $135.00 Sale price Sale price $147.00 Unit price / per Quantity: Variant Default Title Sold out Add to cart Sold out Add to cart Add to cart Sold out Unavailable Sold out Add to cart Sold out Add to cart Add to cart Sold out Unavailable ORGANIC & VEGAN Experience Clinically Proven Biotyspa's signature body lymphatic sculpting drainage designed by Deborah Levy, founder and therapist, using Biotyspa's innovative & original Body Sculpt Cup with soap-free hyaluronic acid enriched Hydrating Shower Gel. The stimulating massage encourages the movement and elimination of fluid, toxins and water retention. Complete the ritual with the Firming Body Oil, made from a dynamic blend of organic oils combined with coffee extract. The oil encourages lipolysis and firmer skin, while restoring softness and elasticity. ORGANIC & VEGAN Experience Clinically Proven Biotyspa's signature body lymphatic sculpting drainage designed by Deborah Levy, founder and therapist, using Biotyspa's innovative & original Body Sculpt Cup with soap-free hyaluronic acid enriched Hydrating Shower Gel. The stimulating massage encourages the movement and elimination of fluid, toxins and water retention. Complete the ritual with the Firming Body Oil, made from a dynamic blend of organic oils combined with coffee extract. The oil encourages lipolysis and firmer skin, while restoring softness and elasticity. * Clinically proven * Australian made skincare * Natural & organic * Vegan & cruelty free CLINICALLY PROVEN Biotyspa Clinical Study 20 people, 21 days * 100% found the treatment to be effective in improving skin elasticity * 95% found the treatment to be effective in improving skin firmness * 95% noticed their skin were smoother after 3 weeks of treatment * 85% found the texture of the skin appears visibly improved - See the full Clinical Study Biotyspa Clinical Study 20 people, 21 days * 100% found the treatment to be effective in improving skin elasticity * 95% found the treatment to be effective in improving skin firmness * 95% noticed their skin were smoother after 3 weeks of treatment * 85% found the texture of the skin appears visibly improved - See the full Clinical Study SET INCLUDES Set includes: x1 Body Sculpt Cup x1 Hydrating Shower Gel 100ml x1 Firming Body Oil 100ml Set includes: x1 Body Sculpt Cup x1 Hydrating Shower Gel 100ml x1 Firming Body Oil 100ml INGREDIENTS FIRMING BODY OIL 100ML Helianthus Annuus (Sunflower) Seed Oil*, Canola Oil*, Macadamia Integrifolia (Macadamia) Seed Oil*, Coffea Arabica (Coffee) Seed Extract*, Persea Gratissima (Avocado) Oil*, Prunus Armeniaca (Apricot) Kernel Oil*, Simmondsia Chinensis (Jojoba) Seed Oil*, Rosa Canina (Rosehip) Fruit Oil*, Prunus Amygdalus Dulcis (Sweet Almond) Oil*, Argania Spinosa (Argan) Kernel Oil*, Tocopherol, Juniperus Communis Fruit Oil, Citrus Limon (Lemon) Peel Oil*, Pelargonium Graveolens (Geranium) Flower Oil*, Eucalyptus Dives Leaf/Twig Oil*, Rosmarinus Officinalis (Rosemary) Leaf Oil*, Citrus Paradisi (Grapefruit) Peel Oil*, Limonene^, Linalool^, Citral^, Geraniol^, Citronellol^. *Certified Organic ^Constituents of Essential Oils. HYDRATING SHOWER GEL 100ML Aloe Vera Juice*, Coco-Betaine (coconut derived surfactant), Purified Water, Sodium Methyl Cocoyl Taurate (coconut derived mild surfactant), Sodium Cocoyl Isethionate (coconut derived mild surfactant), Gluconolactone (and) Sodium Benzoate , Glycerin*, Citrus Aurantium Bergamia (bergamot) Peel Oil, Citrus paradisi (grapefruit) Peel Oil, Citrus aurantium amara (petitgrain) Leaf/Twig Oil, Vetiveria Zizanioides (vetiver) Root Oil, Santalum Spicata (Australian sandalwood) Wood Oil, Cucumis Sativus (cucumber) Juice, Hyaluronic Acid. *Certified organic. BODY SCULPT CUP 100% medical grade silicone FIRMING BODY OIL 100ML Helianthus Annuus (Sunflower) Seed Oil*, Canola Oil*, Macadamia Integrifolia (Macadamia) Seed Oil*, Coffea Arabica (Coffee) Seed Extract*, Persea Gratissima (Avocado) Oil*, Prunus Armeniaca (Apricot) Kernel Oil*, Simmondsia Chinensis (Jojoba) Seed Oil*, Rosa Canina (Rosehip) Fruit Oil*, Prunus Amygdalus Dulcis (Sweet Almond) Oil*, Argania Spinosa (Argan) Kernel Oil*, Tocopherol, Juniperus Communis Fruit Oil, Citrus Limon (Lemon) Peel Oil*, Pelargonium Graveolens (Geranium) Flower Oil*, Eucalyptus Dives Leaf/Twig Oil*, Rosmarinus Officinalis (Rosemary) Leaf Oil*, Citrus Paradisi (Grapefruit) Peel Oil*, Limonene^, Linalool^, Citral^, Geraniol^, Citronellol^. *Certified Organic ^Constituents of Essential Oils. HYDRATING SHOWER GEL 100ML Aloe Vera Juice*, Coco-Betaine (coconut derived surfactant), Purified Water, Sodium Methyl Cocoyl Taurate (coconut derived mild surfactant), Sodium Cocoyl Isethionate (coconut derived mild surfactant), Gluconolactone (and) Sodium Benzoate , Glycerin*, Citrus Aurantium Bergamia (bergamot) Peel Oil, Citrus paradisi (grapefruit) Peel Oil, Citrus aurantium amara (petitgrain) Leaf/Twig Oil, Vetiveria Zizanioides (vetiver) Root Oil, Santalum Spicata (Australian sandalwood) Wood Oil, Cucumis Sativus (cucumber) Juice, Hyaluronic Acid. *Certified organic. BODY SCULPT CUP 100% medical grade silicone RECOMMENDED USE For the best results, we recommend to use the Body Sculpt Kit daily AM or PM for 3 weeks (21 days) at the recommended intensity, then maintain every two days. Use the Body Sculpt Cup for 3 minutes only per area, don't go too hard, it shouldn't bruise. Results come from the consistency, not the intensity. - Watch the video tutorial to know how to use the Body Sculpt Kit. For the best results, we recommend to use the Body Sculpt Kit daily AM or PM for 3 weeks (21 days) at the recommended intensity, then maintain every two days. Use the Body Sculpt Cup for 3 minutes only per area, don't go too hard, it shouldn't bruise. Results come from the consistency, not the intensity. - Watch the video tutorial to know how to use the Body Sculpt Kit. FEATURED IN WATCH HOW TO USE TRUSTED BY 25,000+ * @kourtneykardash SEE ON INSTAGRAM * @ailieway SEE ON INSTAGRAM * @cameron.nutall SEE ON INSTAGRAM * @alanahhallam SEE ON INSTAGRAM CLINICALLY PROVEN BIOTYSPA Body Sculpt ritual is backed up by science and clinically proven to be effective on microcirculation, improvement of skin firmness and skin elasticity. SEE THE RESULTS * CELLULITE IMPROVEMENT - 70% found the treatment effective in reducing the orange peel skin / visible cellulite (Biotyspa Clinical Study, 21 days, 20 people) * MICROCIRCULATION - 95% noticed their skin was smoother after 3 weeks of treatment (Biotyspa Clinical Study, 21 days, 20 people) * SKIN FIRMNESS - +5.2% improvement of skin firmness clinically recorded (Biotyspa Clinical Study, 21 days, 20 people) * SKIN ELASTICITY - +4.2% improvement of skin elasticity clinically recorded (Biotyspa Clinical Study, 21 days, 20 people) MINDFULLY DESIGNED * BESPOKE DESIGN - Biotyspa Body Sculpt Cup has been designed in Australia by Biotyspa's development team to reflect Deborah's lymphatic sculpting technique. Only Biotyspa's production tooling can produce the Body Sculpt Cup. * SUCTION CONTROL - Using 100% medical grade soft silicone material, Biotyspa's cup has been specifically designed and tested to avoid a suction too strong and to not damage the skin. The dots indicate how to position the fingers for a perfect suction. * SOFT EDGE - The edge profile has been designed and developped to be fully round in order to avoid skin rashness, without altering the suction. * ERGONOMIC HANDLE - An ergonomic profile to be held firmly in the hand in order to move easily on the body, even on the tricky areas such as the back of the leg. REVIEWS 4.9 Rated 4.9 out of 5 stars Based on 135 reviews Write a Review (Opens in a new window) 135 reviews Sort Most RecentOldestMost HelpfulHighest RatingLowest RatingLeast Helpful * Tori Verified Buyer 10/25/23 Rated 5 out of 5 stars It works! Honestly, I was sceptical about how this would work for me - but I started seeing results after using for a week. Admittedly I’ve also increased my strength training and spin classes - but the combo of movement and daily use has been unbelievable. Cellulite gone. I couldn’t be happier. Will definitely be re-purchasing when this lot runs out. So thrilled to find this wonderful product!! Read More Was this helpful? Yes, this review was helpful. 0 people voted yesNo, this review was not helpful 0 people voted no * Rachel Verified Buyer 10/14/23 Rated 5 out of 5 stars Actually works I’ve been so impressed with this kit. It’s the only thing that has reduced the appearance of cellulite on my thighs. It was uncomfortable at first but if you stick at it consistently, just 5 mins in the shower daily, it really does work. Now I use it a few times a week and my legs look and feel so much better. Roll on summer - I’ll feel much better at the pool/beach! Read More Was this helpful? Yes, this review was helpful. 0 people voted yesNo, this review was not helpful 0 people voted no * Ailie S. Verified Reviewer 10/11/23 Rated 5 out of 5 stars A postpartum must have I started using this kit when I was 10 weeks postpartum (cesarean birth) so I hadn’t been moving around much at all and I was feeling quite loose all over. Especially my stomach (obviously.) After about 2 weeks of using this product and seeing results so quickly I was hooked. My baby is only 5 months old and I’m feeling bikini season ready already! Read More Was this helpful? Yes, this review was helpful. 0 people voted yesNo, this review was not helpful 0 people voted no * Ciara 10/9/23 Rated 3 out of 5 stars I wanted to love it I really wanted to love this but unfortunately no matter how hard I try the suction cup will not suction!! Read More Was this helpful? Yes, this review was helpful. 0 people voted yesNo, this review was not helpful 0 people voted no * MW Verified Buyer 9/11/23 Rated 5 out of 5 stars Best little beauty item in my bathroom! After reading reviews and watching the 'how to' videos I finally bought the Bioty Spa kit and love it. I have been using once a day for the past 3 weeks, and I am now seeing a positive difference in my skin texture. The first two days of using the cup was really trial and error, on the third day I had little bruises all over my thighs, the following day I didn't use the suction but still went through the circular + zigzag routine on each area... day 6 all the bruising was gone. Bioty Spa is a routine and a commitment - stick with it, you will only keep noticing the benefits of smoother, firmer skin. This is a gradual detox, drink plenty of water and remember strong suction pressure does not equal better results, it's the daily gentle movement that brings good blood circulation back to these stubborn areas. You don't necessarily need to use with Bioty's wash + oil (similar natural products work too), but these are divine. I will use forever. Read More Was this helpful? Yes, this review was helpful. 0 people voted yesNo, this review was not helpful 0 people voted no Loading... Loading... Show More Reviews LoadedReviews Added FAQ Q. Can I use the Body Sculpt Kit when I'm pregnant? A. We do not recommend our Body Sculpt Kit during pregnancy as it is designed for detoxing, which you should not be doing whilst pregnant. - Q. What's the difference between the Body Sculpt Cup and the Body Sculpt Kit? A. The Body Sculpt Cup is our best seller and a good first step in targeting water retention and cellulite and improve circulation however it can not be used by itself. The Body Sculpt Kit incorporates our top three body products - our massage duo (cup and shower gel) and a leave on treating product (firming body oil) - that help to detox the body, firm the skin and achieve better results, faster. - Q. Can I use my own shower gel with the Body Sculpt Cup? A. Our soap-free Hydrating Shower Gel was specially designed to make using the cup easier while simultaneously enhancing results. Made from a blend of nourishing and hydrating oils and extracts, including Aloe Vera and Argan oil, our shower gel enables the cup to glide easily over the skin and in doing so reduces discomfort. - Q. What should I do if bruises appear after using the cup? A. Light bruising may occur after massaging with the cup, especially for the first time. If bruising does occurs, stop using the cup until the bruises have disappeared and ensure you do not apply too much suction when you resume using the cup. - Q. How often should I massage with the Body Sculpt Cup? A. We recommend using the cup daily for the first 3 weeks and then 2-3 times a week for maintenance. - Q. How long do you need to massage with the Body Sculpt Cup? A. We recommend using the cup for 5-7 minutes on each targeted area, for example on each thigh for the suggested amount of time. HOW TO RECYCLE PAPER BOX AND INSERT 01. All our boxes and inserts are made using FSC-certified 100% recycled paper 02. Fold and place in home recycling after use - FIRMING BODY OIL 100ML HYDRATING SHOWER GEL 100ML 01. Bottle is made from 100% Post-Consumer Recycled (PCR) plastic and can be placed in home recycling 02. Dispose of cap and insert plug 03. Carefully wash recycled bottle 04. Place bottle in home recycling PRECAUTIONS 01. Always use the Biotyspa Body Sculpt Cup with the Biotyspa Hydrating Shower Gel or Biotyspa Firming Body Oil. 02. The Body Sculpt Cup is designed to be used on legs, thighs, butt and stomach. 03. Massage once a day for 5-7 minutes per zone only, not less, not more. 04. Light bruises may occur after the first uses, if so adjust the cup pressure to a lighter pressure. Remember, it shouldn’t hurt. If bruising does occurs, stop using the cup until the bruises have disappeared and ensure you do not apply too much suction when you resume using the cup. 05. Do not use the Body Sculpt Cup on the face, breast or any mucous membrane. 06. Do not use the Body Sculpt Cup if you have any sunburn, injury, varicose veins, spider veins or deep vein thrombosis. 07. The Body Sculpt Cup is not recommended during pregnancy. 08. Any concerns, seek medical advice. 09. Keep out of reach of children. 10. Results can vary from one person to another. Subscribe to our newsletter to receive exclusive offers, top tips and more. Email address Subscribe * Body * Face * Rituals * Clinical Study * Tutorials * Press * FAQ * Stockists * Contact * Terms & Conditions * Shipping & Returns * Privacy Policy * Account Login * Affiliate Program * Pinterest * Instagram * TikTok * YouTube © 2024, BIOTYSPA. * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection. Your are successfully subscribed for email notifications. ✖ Notify me when available We will send you a notification as soon as this product is available again. Do you want to get recurring notifications? Your email is requried Notify Me We don't share your email with anybody x Are you in the right place? Please select your shipping country. Buy from the country of your choice. Remember that we can only ship your order to addresses located in the chosen country. Country Canada * Argentina * Australia * Austria / Österreich * Belgium * Brasil * CHINA / 中国大陆 * Canada * Danmark * Deutschland / Germany * España * Finland * France * Greece / Ελλαδα * Hong Kong SAR / 香港特別行政區 * Hungary / Hungary * Iceland * Ireland * Israel * Italia / Italy * Japan / 日本 * Luxembourg * Macau SAR / 澳門特別行政區 * Monaco * México * Nederland / Netherlands * New Zealand * Norway / Norge * Philippines * Polska / Poland * Portugal * Russia / Россия * Singapore * South Korea / 대한민국 * Sverige / Sweden * Switzerland * Taiwan China / 中國台灣TW * UAE - Dubai/Sharjah/Ajman/UAQ/Fujairah * United Kingdom * United States Language English * English Shop now