www.safety4you.eu Open in urlscan Pro
86.109.16.228  Public Scan

URL: https://www.safety4you.eu/
Submission Tags: sansec.io magecart Search All
Submission: On June 26 via api from US — Scanned from NL

Form analysis 5 forms found in the DOM

GET https://www.safety4you.eu/catalogsearch/result/

<form class="form minisearch" id="search_mini_form" action="https://www.safety4you.eu/catalogsearch/result/" method="get">
  <div class="relative">
    <label class="sr-only" for="search"> Doorzoek de hele winkel </label>
    <input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" type="search" class="relative w-full rounded-full border-none p-3 pl-12 transition appearance-none text-grey-800
                        focus:ring-0 focus:outline-none focus:border-transparent bg-gray-lighter" autocapitalize="off" autocomplete="off" autocorrect="off" name="q" value="" placeholder="Doorzoek de hele winkel" maxlength="128">
    <svg xmlns="http://www.w3.org/2000/svg" width="18" height="24" viewBox="0 0 16 16" fill="none" class="absolute left-5 top-3" role="img">
      <path fill-rule="evenodd" clip-rule="evenodd"
        d="M15.707 14.293L12.5947 11.2013C12.5928 11.1993 12.5908 11.1993 12.5889 11.1974C13.4707 10.0255 14 8.57522 14 7.00011C14 3.14069 10.8594 3.05176e-05 6.99998 3.05176e-05C3.1406 3.05176e-05 0 3.14069 0 7.00011C0 10.8595 3.1406 14.0001 6.99998 14.0001C8.57521 14.0001 10.0254 13.4708 11.1963 12.5899C11.1982 12.5919 11.1982 12.5939 11.2002 12.5957L14.293 15.707C14.4883 15.9024 14.7441 16.0001 15 16.0001C15.2559 16.0001 15.5117 15.9024 15.707 15.707C16.0977 15.3165 16.0977 14.6837 15.707 14.293ZM6.99998 12.0001C4.24318 12.0001 2 9.75691 2 7.00011C2 4.24319 4.24318 2.00007 6.99998 2.00007C9.75679 2.00007 12 4.24319 12 7.00011C12 9.75691 9.75679 12.0001 6.99998 12.0001Z"
        fill="currentColor"></path>
      <title>search</title>
    </svg>
  </div>
  <div id="search_autocomplete" class="search-autocomplete relative w-full" x-show="show" style="display:none;">
    <div class="absolute bg-white border border-container-lighter rounded z-50 w-full grid grid-cols-1">
      <template x-for="searchResultByType in Object.values(searchResultsByType)">
        <template x-if="searchResultByType[0].type !== 'term'">
          <div>
            <template x-if="searchResultByType.hasOwnProperty(0) &amp;&amp; templates[searchResultByType[0].type].title &amp;&amp; templates[searchResultByType[0].type].titleRenderer === undefined">
              <div class="font-bold p-4 bg-gray-50 text-center" x-text="templates[searchResultByType[0].type].title"></div>
            </template>
            <template x-if="searchResultByType.hasOwnProperty(0) &amp;&amp; templates[searchResultByType[0].type].titleRenderer !== undefined">
              <div class="font-bold p-4 bg-gray-50 pl-2 text-center" x-text="window[templates[searchResultByType[0].type].titleRenderer](searchResultByType)"></div>
            </template>
            <template x-for="searchResult in searchResultByType">
              <div class="hover:bg-gray-100">
                <template x-if="searchResult.type == 'term'">
                  <a class="w-full block p-2" x-bind:href="'https://www.safety4you.eu/catalogsearch/result/?q=' + searchResult.title" :title="searchResult.title">
        <span class="text-sm" x-text="searchResult.title"></span>
        <span class="text-sm" x-text="'(' + searchResult.num_results + ')'"></span>
    </a>
                </template>
                <template x-if="searchResult.type == 'product'">
                  <a class="w-full block" :href="searchResult.url" :title="searchResult.title">
        <div class="w-full flex flex-nowrap items-center gap-4 p-3">
            <div class="shrink-0 w-1/4 lg:w-1/6">
                <img :src="searchResult.image" class="inline-block">
            </div>
            <div>
                <span class="text-sm" x-text="searchResult.title"></span>
            </div>
            <div class="ml-auto">
                <span class="text-sm font-bold" x-html="searchResult.price"></span>
            </div>
        </div>
    </a>
                </template>
                <template x-if="searchResult.type == 'category'">
                  <a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
        <span class="text-sm italic block text-gray-500" x-text="searchResult.breadcrumb.join(' > ').concat(' > ')"></span>
        <span class="text-sm" x-text="searchResult.title"></span>
    </a>
                </template>
                <template x-if="searchResult.type == 'product_attribute'">
                  <a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
        <span class="text-sm" x-text="searchResult.title"></span>
        <span class="text-xs uppercase text-gray-500" x-text="searchResult.attribute_label" style="vertical-align: super;"></span>
    </a>
                </template>
                <script>
                  function renderEsAutocompleteTitleAttribute(data) {
                    data = data.filter(function(item) {
                      return item.type === 'product_attribute';
                    }).map(function(item) {
                      return item['attribute_label']
                    }).reduce(function(prev, item) {
                      if (item in prev) {
                        prev[item]++;
                      } else {
                        prev[item] = 1;
                      }
                      return prev;
                    }, {});
                    data = Object.entries(data).sort(function(item1, item2) {
                      return item2[1] - item1[1]
                    }).map(function(item) {
                      return item[0]
                    });
                    if (data.length > 2) {
                      data = data.slice(0, 2);
                      data.push('...');
                    }
                    return data.join(', ');
                  }
                </script>
                <template x-if="searchResult.type == 'cms_page'">
                  <a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
        <span class="text-sm" x-text="searchResult.title"></span>
    </a>
                </template>
              </div>
            </template>
          </div>
        </template>
      </template>
    </div>
  </div>
</form>

POST

<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form">
  <div class="fieldset login">
    <div class="field email required">
      <label class="label" for="form-login-username" form="login-form">
        <span>E-mail adres</span>
      </label>
      <div class="control">
        <input name="username" id="form-login-username" x-ref="customer-email" @change="errors = 0" type="email" required="" class="form-input input-text">
      </div>
    </div>
    <div class="field password required">
      <label for="form-login-password" class="label" form="login-form">
        <span>Wachtwoord</span>
      </label>
      <div class="control">
        <input name="password" id="form-login-password" type="password" class="form-input input-text" required="" x-ref="customer-password" @change="errors = 0">
      </div>
    </div>
    <input name="context" type="hidden" value="checkout">
    <div class="actions-toolbar flex justify-between pt-6 pb-2 items-center">
      <button type="submit" class="inline-flex btn btn-primary disabled:opacity-75"> Inloggen </button>
      <a href="https://www.safety4you.eu/customer/account/forgotpassword/">
                                        Wachtwoord vergeten?                                    </a>
    </div>
  </div>
</form>

POST https://www.safety4you.eu/checkout/cart/add/uenc/%25uenc%25/product/7757/

<form method="post" action="https://www.safety4you.eu/checkout/cart/add/uenc/%25uenc%25/product/7757/" class="item product product-item product_addtocart_form flex flex-col w-full rounded-2xl border
    border-container-lighter p-4 relative transition ease-in duration-200 hover:shadow-md lg:p-6">
  <input name="form_key" type="hidden" value="lYd4s8V4wNQ9Bukz"> <input type="hidden" name="product" value="7757">
  <div class="absolute left-4 top-4 lg:top-6 lg:left-6 z-10 flex flex-col gap-1 items-start">
    <div class="text-[13px] leading-[18px] font-medium py-1.5 px-4 rounded-3xl flex items-center text-center " style="background-color: #E3738F; color: #fff; border: 1px solid #E3738F;"> Nieuw</div>
  </div>
  <button x-data="initWishlist()" @click.prevent="addToWishlist(7757)" aria-label="Voeg toe aan verlanglijst Samenwerkende Pedicures Voetdeo Spray 150 ml" type="button" class="rounded-full w-8 h-8 flex items-center justify-center border border-container-darker absolute
                top-4 right-4 lg:top-6 lg:right-6 bg-white text-primary z-10">
    <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24" width="22" height="22" role="img">
      <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 0 0 0 6.364L12 20.364l7.682-7.682a4.5 4.5 0 0 0-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 0 0-6.364 0Z"></path>
      <title>heart</title>
    </svg>
  </button>
  <div>
    <a href="https://www.safety4you.eu/samenwerkende-pedicures-voetdeo-spray-150-ml" class="product photo product-item-photo relative pb-[111.111%] block mx-auto max-w-full mb-7 text-[13px]" tabindex="-1">
            <img class="object-contain absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 max-h-full product-image-photo" x-data="" @update-gallery-7757.window="$root.src = $event.detail" src="https://www.safety4you.eu/img/ZeiwzNPM6bzDGz2lUTdXInUsTIcWj6DFDHi2LdB8GZk/resize:fit:240:300/aHR0cHM6Ly93d3cuc2FmZXR5NHlvdS5ldS9tZWRpYS9jYXRhbG9nL3Byb2R1Y3QvMC81LzA1MTIyNy5qcGc_d2lkdGg9MjQwJmhlaWdodD0zMDAmc3RvcmU9bmwmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="240" height="300" alt="Samenwerkende Pedicures Voetdeo Spray 150 ml" title="Samenwerkende Pedicures Voetdeo Spray 150 ml">
        </a>
  </div>
  <div class="product-info flex flex-col grow">
    <div class="mb-2 items-center justify-center text-primary text-[13px] leading-5 md:text-[15px] md:leading-6">
      <a class="product-item-link" href="https://www.safety4you.eu/samenwerkende-pedicures-voetdeo-spray-150-ml" id="slide-desc-7757">
                Samenwerkende Pedicures Voetdeo Spray 150 ml            </a>
    </div>
    <div class="mt-auto flex flex-col gap-2">
      <script>
        function initPriceBox__667b4c6105302() {
          return {
            updatePrice(priceData) {
              const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');
              const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');
              const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');
              if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
                regularPriceLabel.classList.add('hidden');
              } else {
                regularPriceLabel.classList.remove('hidden');
              }
              regularPriceElement && (regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount));
              basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));
            }
          }
        }
      </script>
      <div class="" x-data="initPriceBox__667b4c6105302()" @update-prices-7757.window="updatePrice($event.detail);">
        <div class="price-box price-final_price" data-role="priceBox" data-product-id="7757" data-price-box="product-id-7757">
          <span x-data="" x-id="['product\u002Dprice\u002D7757']" class="price-container price-final_price tax weee">
            <span :id="$id('product\u002Dprice\u002D7757')" data-price-amount="8.95" data-price-type="finalPrice" class="price-wrapper " id="product-price-7757-1"><span class="price">€&nbsp;8,95</span></span>
          </span>
          <a href="https://www.safety4you.eu/samenwerkende-pedicures-voetdeo-spray-150-ml" class="minimal-price-link">

<span x-data="" x-id="['7757']" class="price-container price-final_price tax weee">
            <span class="price-label">v.a.</span>
        <span :id="$id('7757')" data-price-amount="7.95" data-price-type="" class="price-wrapper " id="7757-1">€&nbsp;7,95</span>
        </span>
        </a>
        </div>
      </div>
      <div class="mt-0.5 flex flex-wrap justify-center items-center">
        <button class="btn btn-primary justify-center text-sm w-full" aria-label="In winkelwagen Samenwerkende Pedicures Voetdeo Spray 150 ml">
          <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="63 16 16 16" width="24" height="24" class="p-1 md:!hidden" role="img">
            <path fill-rule="evenodd" clip-rule="evenodd"
              d="M78.2021 16H64.0137C63.4531 16 63 16.4473 63 17C63 17.5527 63.4531 18 64.0137 18H65V24V27C65 27.5527 65.4805 28 66.0405 28H76C76.5601 28 77 27.5527 77 27C77 26.4473 76.5601 26 76 26H67V24H76.1753C76.7354 24 77.2988 23.5654 77.4341 23.0303L78.9702 16.9697C79.106 16.4346 78.7627 16 78.2021 16ZM75.6064 22H67V18H76.1753H76.397L75.6064 22ZM67.5 29C66.6714 29 66 29.6719 66 30.5C66 31.3281 66.6714 32 67.5 32C68.3286 32 69 31.3281 69 30.5C69 29.6719 68.3286 29 67.5 29ZM73 30.5C73 29.6719 73.6714 29 74.5 29C75.3286 29 76 29.6719 76 30.5C76 31.3281 75.3286 32 74.5 32C73.6714 32 73 31.3281 73 30.5Z"
              fill="currentColor"></path>
            <title>cart</title>
          </svg>
          <span class="hidden md:inline-block leading-6 md:text-[15px]"> In winkelwagen </span>
        </button>
      </div>
    </div>
  </div>
</form>

POST https://www.safety4you.eu/checkout/cart/add/uenc/%25uenc%25/product/7593/

<form method="post" action="https://www.safety4you.eu/checkout/cart/add/uenc/%25uenc%25/product/7593/" class="item product product-item product_addtocart_form flex flex-col w-full rounded-2xl border
    border-container-lighter p-4 relative transition ease-in duration-200 hover:shadow-md lg:p-6">
  <input name="form_key" type="hidden" value="lYd4s8V4wNQ9Bukz"> <input type="hidden" name="product" value="7593">
  <div class="absolute left-4 top-4 lg:top-6 lg:left-6 z-10 flex flex-col gap-1 items-start">
    <div class="text-[13px] leading-[18px] font-medium py-1.5 px-4 rounded-3xl flex items-center text-center " style="background-color: #fff; color: #E3738F; border: 1px solid #E3738F;"> 15% korting</div>
  </div>
  <button x-data="initWishlist()" @click.prevent="addToWishlist(7593)" aria-label="Voeg toe aan verlanglijst Massagebank Luna Black Walnut" type="button" class="rounded-full w-8 h-8 flex items-center justify-center border border-container-darker absolute
                top-4 right-4 lg:top-6 lg:right-6 bg-white text-primary z-10">
    <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24" width="22" height="22" role="img">
      <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 0 0 0 6.364L12 20.364l7.682-7.682a4.5 4.5 0 0 0-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 0 0-6.364 0Z"></path>
      <title>heart</title>
    </svg>
  </button>
  <div>
    <a href="https://www.safety4you.eu/massagebank-luna-black-walnut" class="product photo product-item-photo relative pb-[111.111%] block mx-auto max-w-full mb-7 text-[13px]" tabindex="-1">
            <img class="object-contain absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 max-h-full product-image-photo" x-data="" @update-gallery-7593.window="$root.src = $event.detail" src="https://www.safety4you.eu/img/8vQIypwnJIP20QYNpl6R0jlwplMGMIgPEE0X0cLrq_M/resize:fit:240:300/aHR0cHM6Ly93d3cuc2FmZXR5NHlvdS5ldS9tZWRpYS9jYXRhbG9nL3Byb2R1Y3QvMS82LzE2MzA2OS1ocS1id18xXy5qcGc_d2lkdGg9MjQwJmhlaWdodD0zMDAmc3RvcmU9bmwmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="240" height="300" alt="Massagebank Luna Black Walnut" title="Massagebank Luna Black Walnut">
        </a>
  </div>
  <div class="product-info flex flex-col grow">
    <div class="mb-2 items-center justify-center text-primary text-[13px] leading-5 md:text-[15px] md:leading-6">
      <a class="product-item-link" href="https://www.safety4you.eu/massagebank-luna-black-walnut" id="slide-desc-7593">
                Massagebank Luna Black Walnut            </a>
    </div>
    <div class="mt-auto flex flex-col gap-2">
      <script>
        function initPriceBox__667b4c6107ec7() {
          return {
            updatePrice(priceData) {
              const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');
              const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');
              const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');
              if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
                regularPriceLabel.classList.add('hidden');
              } else {
                regularPriceLabel.classList.remove('hidden');
              }
              regularPriceElement && (regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount));
              basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));
            }
          }
        }
      </script>
      <div class="" x-data="initPriceBox__667b4c6107ec7()" @update-prices-7593.window="updatePrice($event.detail);">
        <div class="price-box price-final_price" data-role="priceBox" data-product-id="7593" data-price-box="product-id-7593">
          <span class="special-price">
            <span x-data="" x-id="['product\u002Dprice\u002D7593']" class="price-container price-final_price tax weee">
              <span class="price-label">Speciale prijs</span>
              <span :id="$id('product\u002Dprice\u002D7593')" data-price-amount="1950" data-price-type="finalPrice" class="price-wrapper " id="product-price-7593-1"><span class="price">€&nbsp;1.950,00</span></span>
            </span>
          </span>
          <span class="old-price">
            <span x-data="" x-id="['old\u002Dprice\u002D7593']" class="price-container price-final_price tax weee">
              <span class="price-label">Normale prijs</span>
              <span :id="$id('old\u002Dprice\u002D7593')" data-price-amount="2300" data-price-type="oldPrice" class="price-wrapper " id="old-price-7593-1"><span class="price">€&nbsp;2.300,00</span></span>
            </span>
          </span>
        </div>
      </div>
      <div class="mt-0.5 flex flex-wrap justify-center items-center">
        <button class="btn btn-primary justify-center text-sm w-full" aria-label="In winkelwagen Massagebank Luna Black Walnut">
          <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="63 16 16 16" width="24" height="24" class="p-1 md:!hidden" role="img">
            <path fill-rule="evenodd" clip-rule="evenodd"
              d="M78.2021 16H64.0137C63.4531 16 63 16.4473 63 17C63 17.5527 63.4531 18 64.0137 18H65V24V27C65 27.5527 65.4805 28 66.0405 28H76C76.5601 28 77 27.5527 77 27C77 26.4473 76.5601 26 76 26H67V24H76.1753C76.7354 24 77.2988 23.5654 77.4341 23.0303L78.9702 16.9697C79.106 16.4346 78.7627 16 78.2021 16ZM75.6064 22H67V18H76.1753H76.397L75.6064 22ZM67.5 29C66.6714 29 66 29.6719 66 30.5C66 31.3281 66.6714 32 67.5 32C68.3286 32 69 31.3281 69 30.5C69 29.6719 68.3286 29 67.5 29ZM73 30.5C73 29.6719 73.6714 29 74.5 29C75.3286 29 76 29.6719 76 30.5C76 31.3281 75.3286 32 74.5 32C73.6714 32 73 31.3281 73 30.5Z"
              fill="currentColor"></path>
            <title>cart</title>
          </svg>
          <span class="hidden md:inline-block leading-6 md:text-[15px]"> In winkelwagen </span>
        </button>
      </div>
    </div>
  </div>
</form>

POST https://www.safety4you.eu/newsletter/subscriber/new/

<form class="form subscribe" action="https://www.safety4you.eu/newsletter/subscriber/new/" method="post" x-data="initNewsletterForm()" @submit.prevent="submitForm()" id="newsletter-validate-detail" aria-label="Abonneren op de nieuwsbrief">
  <div class="flex flex-wrap justify-center gap-2">
    <label for="newsletter-subscribe" class="sr-only"> E-mail adres </label>
    <input name="email" type="email" required="" id="newsletter-subscribe" class="form-input relative border-none pl-8 h-12 sm:h-20 rounded-full inline-flex w-full" placeholder="Voer uw e-mailadres in" aria-describedby="footer-newsletter-heading">
    <input name="form_key" type="hidden" value="lYd4s8V4wNQ9Bukz">
    <div class="control">
      <input type="hidden" value="" name="g-recaptcha-response">
    </div>
    <button class="sm:absolute max-sm:justify-center max-sm:w-full right-4 bottom-6 inline-flex shrink-0 ml-auto xl:mt-0 py-2.5 text-white btn btn-size-lg btn-primary-darker"> Inschrijven </button>
  </div>
  <div>
    <template x-if="displayErrorMessage">
      <p class="flex items-center text-red">
        <span class="inline-block w-8 h-8 mr-3">
          <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24" width="24" height="24" role="img">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"></path>
            <title>exclamation-circle</title>
          </svg>
        </span>
        <template x-for="errorMessage in errorMessages">
          <span x-html="errorMessage"></span>
        </template>
      </p>
    </template>
  </div>
</form>

Text Content

Ga naar de inhoud
check Voor 15:00 uur besteld, zelfde werkdag verzonden
check Punten sparen voor leuke kortingen
check 25.000+ klanten gingen je voor

8.8 Beoordeling

menu
x
chat
Chat of bel (0513) 43 54 53

Showroom
Trainingen
Taal
Nederlands chevron-down nl
Français
Doorzoek de hele winkel search


chat
Chat of bel (0513) 43 54 53
Taal
Nederlands chevron-down nl
Français
user Account
Inloggen Account aanmaken
heart Toggle minicart, Cart is empty shopping-cart 0
 * Schoonheidsspecialist
   Schoonheidssalon
   Behandelstoelen
   Receptiedesks
   Tabouretten
   Werktafels
   Salonsets
   Cosmetische accessoires
   Pincetten
   Penselen
   Kwasten
   Sponsjes
   Naalden
   Hars en paraffine
   Harssoorten
   Harsverwarmers
   Harsbenodigdheden
   Paraffinebaden
   Paraffine
   Gezichtsmaskers
   Gouden maskers
   Poedermaskers
   Vliesmaskers
   Gaasmaskers
   Accessoires
   Wimpers en wenkbrauwen
   Binacil ®
   RefectoCil ®
   PMU-line ®
   Verzorging
   Voor- en nazorg
   Huidverzorging
   Aromatherapie
   Werkkleding
   Tunieken
   Broeken
 * Manicure
   Nagelsalon
   Manicuretafels
   Receptiedesks
   Werktafels
   Tabouretten
   Presentatie
   Nagelapparatuur
   Freesmachines
   Freesbitjes
   LED-lampen
   Tafellampen
   Stofafzuiging
   Nagelaccessoires
   Nagelriemolie
   Depperflessen
   Manicureborstels
   Oefenhanden
   Armsteunen
   Nagelsoorten
   Gellak
   Rubberbase
   Polyacrylgel
   Base- en topcoat
   Nail-art
   Mixcoco Gellak
   True Color Red
   True Color Pink
   True Color Naked
   True Color Brown
   True Color Cream Grey
   True Color Purple
   True Color Blue
   True Color Green
   True Color Yellow
   Shine Color
   Nagelbenodigdheden
   Penselen
   Nageltips
   Sjablonen
   Nagelwipes
   Schuurrolletjes
   Bokkenpootjes
   Nageltangen
   Vloeistoffen
   Nagelvijlen
   Moon
   Recht
   Jumbo
   Trapeze
   Boomerang
   Buffer
   Polijst
   Diverse
 * Pedicure
   Pedicuresalon
   Behandelstoelen
   Spastoelen
   Voetenbaden
   Receptiedesks
   Voetverzorging
   Footlogix Pediceuticals ®
   Samenwerkende Pedicures ®
   Swann Morton ®
   Benodigdheden
   Patiëntenservetten
   Voetvijlen
   Slippers
 * Wellness
   Wellnessruimte
   Massagebanken
   Spastoelen
   Apparatuur
   Receptiedesks
   Behandelingen
   Maderotherapie
   Aromatherapie
   Hotstone
   Accessoires
   Kussens
   Knierollen
   Oliën
 * Apparatuur
   Salonapparatuur
   Vapozones
   Loupelampen
   Handdoekwarmers
   Ultrasoonreinigers
   Sterilizers
   Mobiele apparatuur
   Ultrasound
   Skin Scrubber
   Hoog Frequent
   Borstelapparaat
   Overige
   Microneedling
   Microderma
   Pennen
   Naalden
   Rollers
   Accessoires
   Permanente make-up
   Machines
   Pigmenten
   Microblading
   Accessoires
   Nazorg
   Non-invasieve mesotherapie
   Verdovingscrème
   MESO Power Pen
   MESO Cocktails
   MESO Peeling
   5-staps behandeling
   Thuisverzorging
   Specialistische apparatuur
   Coagulatie
   Dermabrasie
   Mesotherapie
   LED Therapie
   Huidanalyse
   Multifunctioneel
   Hoogwaardige apparatuur
   Laser
   IPL
   Plasma
   HIFU
   Oxygen
   Cryo
   Trainingen
 * Huidverzorging
   Luxe lijnen 25+
   Sensitive Skin
   Hyaluronic
   Chocolate
   Vitamin C
   Luxe lijnen 30+
   Luminance Pearl
   Cellular Revitalizing Fruit
   Olive & Herbs
   Skin Relaxant
   Luxe lijnen 35+
   Golden Line
   Caviar & DNA Marine
   Collagen
   Lifting
   Lichaamsverzorging
   Afslanken
   Massage
   Maskers
   Scrubs
   Gezichtsverzorging
   Reiniging
   Maskers
   Crèmes
   Serums
   Scrubs
   Ogen
   Behandelingen
   ADO Kruidenpeeling
   AHA Fruitzuurpeeling
   Meso Cocktails
   Hydra Solutions
   Whitening
   Kits
   Overige
   Zonbescherming
   Miniverpakkingen
   Proefpakketten
   Draagtassen
   Accessoires
   Evenementen
   Summer Sale
   10% korting
   15% korting
   25% korting
   30% korting
 * Hygiëne
   Handschoenen
   Nitril poedervrij
   Latex gepoederd
   Latex poedervrij
   Vinyl poedervrij
   Diversen
   Disposables
   Mondmaskers
   Papierwaren
   Haarnetjes
   Ondergoed
   Schorten
   Reiniging
   Vloeistoffen
   Huiddesinfectans
   Instrumentenreiniging
   Oppervlaktereiniging
   Ultrasoonreinigers
   Textiel
   Werkkleding
   Bandeaus
   Stoelhoezen
   Kompresdoeken
 * Merken
 * Sale
   Weekaanbiedingen
   Behandelstoelen
   Salonapparatuur
   Beautymaskers
   Tabouretten
   Nagelvijlen
   Werktafels
   Summer Beauty Sale
   Tot 10% korting
   10% - 15% korting
   15% - 20% korting
   20% - 25% korting
   25% - 30% korting
   Vanaf 30% korting
   Tweede kans
   Behandelstoelen
   Apparatuur
   Inrichting
   Manicure
   Hars/paraffine
   Diverse
   Uitverkoop
   Disposables
   Gezichtsmaskers
   Pedicureproducten
   Nagelproducten
   Harspatronen
   Kapper
 * Investeren

Showroom
Trainingen


WINKELWAGEN 10 OF 0 PRODUCTS IN CART DISPLAYED

Cart is empty
Cart is empty

x









Subtotaal:

Afrekenen of Naar winkelwagen
loader
Laden...
x

Reken af met uw account

E-mail adres

Wachtwoord

Inloggen Wachtwoord vergeten?


Afrekenen als een nieuwe klant

Het aanmaken van een account heeft vele voordelen:

 * Bekijk bestelling en verzendstatus
 * Bekijk bestelgeschiedenis
 * Reken sneller af

Account aanmaken



SUMMER SALE

Kortingen tot 60%, get ready for summer!

Shop direct


BEHANDELSTOELEN

Verrijk jouw salonervaring met onze luxe behandelstoelen!

Ontdek meer



chevron-left

chevron-right


POPULAIRE CATEGORIEËN

Handschoenen
Werkkleding
Behandelstoelen
Manicuretafels
Freesmachines
Handdoekwarmers
Tabouretten
Huidverzorging

arrow-circle-right Alle nieuwe producten
Nieuwe producten
heart

Hyaluronic Sun Care Fluid SPF50 Silk & Dry Touch 50 ml
Klik hier om contact met ons op te nemen.

check In voorraad

Nieuw
heart

Samenwerkende Pedicures Voetdeo Spray 150 ml
€ 8,95 v.a. € 7,95
cart In winkelwagen
heart

Salicylic Purifying & Brightening Lotion 100 ml
Klik hier om contact met ons op te nemen.

check In voorraad

15% korting
heart

Massagebank Luna Black Walnut
Speciale prijs € 1.950,00 Normale prijs € 2.300,00
cart In winkelwagen


ALLES VOOR DE BEAUTY BRANCHE

Gestart vanuit een passie voor schoonheid en welzijn hebben wij ons ontwikkeld
tot een vertrouwde naam voor alles wat een beauty professional nodig heeft.
Vanuit ons diepe begrip van de beautybranche en de behoeften van professionals,
bieden wij een breed scala aan hoogwaardige, kwalitatieve en betaalbare
beautyproducten!

Lees meer


EXCLUSIVE PREMIUM MERKEN

arrow-circle-right Alle merken bekijken

arrow-circle-right Alle merken bekijken
star saloon-chair manicure
De nummer 1 groothandel voor beauty professionals
foot stool hairstyle


VOLG ONS OP INSTAGRAM

arrow-circle-right Volg ons op @safety4you

arrow-circle-right Volg ons op @safety4you


LAAT JE VERRASSEN

Ontvang de laatste acties, nieuwste producten en persoonlijke tips in je mailbox

E-mail adres

Inschrijven

exclamation-circle


PRODUCTEN VERGELIJKEN

Vergelijken Clear all


MIJN VERLANGLIJST

In winkelwagen

Ga naar verlanglijst


KLANTENSERVICE CHEVRON-RIGHT

 * Betalen
 * Bezorgen
 * Retourneren
 * Garantie
 * Vragen
 * Contact


OVER S4U CHEVRON-RIGHT

 * Het bedrijf
 * Assortiment
 * Ons team
 * Showroom
 * Trainingen
 * Eventagenda


BEZOEK ONZE SHOWROOM CHEVRON-RIGHT

 * Uraniumweg 10
 * 8445 PH Heerenveen
 * Maandag t/m vrijdag
 * 08:30 - 17:00 uur


ONZE BEAUTY SPECIALISTEN STAAN VOOR JE KLAAR

phone (0513) 43 54 53 mail klantenservice@safety4you.eu
paypal ideal maestro bancontact mastercard
Volg ons op facebook instagram linkedin youtube
Copyright © Safety4you 2023
Algemene Voorwaarden Privacy- en cookiebeleid Disclaimer beauty-trade

8.8 Beoordeling