orttu.com Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://orttu.com/
Effective URL: https://orttu.com/
Submission: On May 18 via api from GB — Scanned from CA

Form analysis 4 forms found in the DOM

GET /search

<form action="/search" method="get" @submit.prevent="" class="flex flex-col h-full" role="search">
  <div class="bg-white pb-6 relative">
    <div class="search-modal__header justify-between hidden md:flex">
      <button aria-label="close search" type="button" @click="$dispatch('toggle-search')" class="icon-button -ml-8">
        <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
          class="icon icon-arrow-left ">
          <polyline points="15 18 9 12 15 6"></polyline>
        </svg>
      </button>
      <p class="text-2xl tracking-widest search-title">Search</p>
    </div>
    <div class="field">
      <input class="search__input tracking-widest field__input placeholder-shown border border-color" id="Search-In-Modal" type="search" name="q" value="" placeholder="TYPE HERE ..." x-ref="searchInput" x-model.debounce.600ms="searchQuery">
      <label class="field__label visually-hidden " for="Search-In-Modal">TYPE HERE ...</label>
      <input type="hidden" name="options[prefix]" value="last">
      <button type="button" class="search__button field__button" aria-label="TYPE HERE ...">
        <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
          class=" icon icon-arrow-right ">
          <polyline points="9 18 15 12 9 6"></polyline>
        </svg>
      </button>
    </div>
  </div>
  <div class="predictive-search-result relative h-full overflow-y-scroll hide-scrollbar">
    <template x-if="searchEmpty">
      <div class="mb-7">
        <div class="predictive-search__loading-state w-8 mx-auto mt-5">
          <svg xmlns="http://www.w3.org/2000/svg" class="rotate-center" viewBox="0 0 18.5 18.3">
            <g>
              <path fill="#3a3a3a" d="M0,9.75C0,5.76,1.13.8,8.86.8s8.86,5,8.86,9-1.12,8.5-8.86,8.5S0,13.72,0,9.75Zm13.08.12c0-2-.37-4.86-4.22-4.86S4.64,7.86,4.64,9.87s.37,4.5,4.22,4.5S13.08,11.89,13.08,9.87Z"></path>
              <polygon fill="#3a3a3a" points="18.5 4.46 14.03 0 18.5 0 18.5 4.46"></polygon>
            </g>
          </svg>
        </div>
        <p class="py-3 text-base center"> No results found. Please check the spelling or use a different word or phrase. </p>
      </div>
    </template>
    <template x-if="searchData.length > 0">
      <div class="mb-7">
        <template x-for="(item, index) in searchData">
          <div class="product-item relative border-t py-4 border-color" :class="item.handle">
            <template x-if="defaultQuery">
              <div class="flex flex-row-reverse justify-between items-center">
                <template x-if="item.featured_image">
                  <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
                </template>
                <div class="w-4/6 pr-5">
                  <h3 class="product-title pb-1 text-sm">
                    <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
                  </h3>
                  <div class="product-price text-xs opacity-60">
                    <template x-if="item.price">
                      <span class="" x-text="Unick.formatMoney(item.price)"></span>
                    </template>
                    <span x-show="!item.available"> Sold out </span>
                  </div>
                </div>
              </div>
            </template>
            <template x-if="!defaultQuery">
              <div class="flex flex-row-reverse justify-between items-center">
                <template x-if="item.featured_image.url">
                  <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
                </template>
                <div class="w-4/6 pr-5">
                  <h3 class="product-title pb-1 text-sm">
                    <a :href="item.url" x-text="item.title.replace('-', '')"></a>
                  </h3>
                  <div class="product-price text-xs opacity-60">
                    <template x-if="item.price">
                      <span class="" x-text="'$' + item.price"></span>
                    </template>
                    <span x-show="!item.available"> Sold out </span>
                  </div>
                </div>
              </div>
            </template>
          </div>
        </template>
      </div>
    </template>
    <div class="mb-7">
      <template x-for="(item, index) in searchData">
        <div class="product-item relative border-t py-4 border-color" :class="item.handle">
          <template x-if="defaultQuery">
            <div class="flex flex-row-reverse justify-between items-center">
              <template x-if="item.featured_image">
                <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
              </template>
              <div class="w-4/6 pr-5">
                <h3 class="product-title pb-1 text-sm">
                  <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
                </h3>
                <div class="product-price text-xs opacity-60">
                  <template x-if="item.price">
                    <span class="" x-text="Unick.formatMoney(item.price)"></span>
                  </template>
                  <span x-show="!item.available"> Sold out </span>
                </div>
              </div>
            </div>
          </template>
          <template x-if="!defaultQuery">
            <div class="flex flex-row-reverse justify-between items-center">
              <template x-if="item.featured_image.url">
                <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
              </template>
              <div class="w-4/6 pr-5">
                <h3 class="product-title pb-1 text-sm">
                  <a :href="item.url" x-text="item.title.replace('-', '')"></a>
                </h3>
                <div class="product-price text-xs opacity-60">
                  <template x-if="item.price">
                    <span class="" x-text="'$' + item.price"></span>
                  </template>
                  <span x-show="!item.available"> Sold out </span>
                </div>
              </div>
            </div>
          </template>
        </div>
      </template>
      <div class="product-item relative border-t py-4 border-color batiste-shirt-black-1" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/batiste-shirt-black-1">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/52_5940d005-5a05-4d71-9e44-fe66aa3c02b5.jpg?v=1652298095" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/52_5940d005-5a05-4d71-9e44-fe66aa3c02b5.jpg?v=1652298095" alt="Batiste Shirt - Black">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/batiste-shirt-black-1">Batiste Shirt  Black</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$195.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
      <div class="product-item relative border-t py-4 border-color waterfall-cardigan-with-mask-black-1" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/waterfall-cardigan-with-mask-black-1">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/50-8_645151a4-319e-4551-9b70-e67e0eec0ff8.jpg?v=1652024206" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/50-8_645151a4-319e-4551-9b70-e67e0eec0ff8.jpg?v=1652024206" alt="Waterfall Cardigan with Mask - Black">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/waterfall-cardigan-with-mask-black-1">Waterfall Cardigan with Mask  Black</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$195.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
      <div class="product-item relative border-t py-4 border-color charles-shirt-white-1" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/charles-shirt-white-1">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/36-4_dabbfd38-3210-4a9e-85c2-35696690763c.jpg?v=1651841498" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/36-4_dabbfd38-3210-4a9e-85c2-35696690763c.jpg?v=1651841498" alt="Charles Shirt - White">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/charles-shirt-white-1">Charles Shirt  White</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$220.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
      <div class="product-item relative border-t py-4 border-color matisse-top-black-1" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/matisse-top-black-1">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/79-1.jpg?v=1651767318" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/79-1.jpg?v=1651767318" alt="Matisse Top - Black">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/matisse-top-black-1">Matisse Top  Black</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$135.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
      <div class="product-item relative border-t py-4 border-color giotto-couture-kimono-print-2" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/giotto-couture-kimono-print-2">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/20_d9dfd09d-4c81-42ca-b24c-2b59f9ca089b.jpg?v=1651170286" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/20_d9dfd09d-4c81-42ca-b24c-2b59f9ca089b.jpg?v=1651170286" alt="Giotto Couture Kimono - Print">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/giotto-couture-kimono-print-2">Giotto Couture Kimono  Print</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$350.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
      <div class="product-item relative border-t py-4 border-color waterfall-cardigan-white-1" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/waterfall-cardigan-white-1">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/6-3_3e982950-ca51-4a01-a0d6-d1a9297b7cc1.jpg?v=1650458055" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/6-3_3e982950-ca51-4a01-a0d6-d1a9297b7cc1.jpg?v=1650458055" alt="Waterfall Cardigan - White">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/waterfall-cardigan-white-1">Waterfall Cardigan  White</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$189.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
      <div class="product-item relative border-t py-4 border-color dreamer-top-black" :class="item.handle">
        <template x-if="defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image">
              <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="Unick.formatMoney(item.price)"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
        <div class="flex flex-row-reverse justify-between items-center">
          <template x-if="item.featured_image">
            <a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover">
                </a>
          </template><a :href="'/products/'+item.handle" class="relative h-[132px] w-[94px]" href="/products/dreamer-top-black">
                    <img :src="item.featured_image" loading="lazy" :data-src="item.featured_image" :alt="item.title" class="h-full object-cover" src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/2_e7ab7236-63ea-40ea-afd5-ce88a667a4ac.jpg?v=1650036459" data-src="//cdn.shopify.com/s/files/1/0033/3676/5493/products/2_e7ab7236-63ea-40ea-afd5-ce88a667a4ac.jpg?v=1650036459" alt="Dreamer Top - Black">
                </a>
          <div class="w-4/6 pr-5">
            <h3 class="product-title pb-1 text-sm">
              <a :href="'/products/'+item.handle" x-text="item.title.replace('-', '')" href="/products/dreamer-top-black">Dreamer Top  Black</a>
            </h3>
            <div class="product-price text-xs opacity-60">
              <template x-if="item.price">
                <span class="" x-text="Unick.formatMoney(item.price)"></span>
              </template><span class="" x-text="Unick.formatMoney(item.price)">$135.00 USD</span>
              <span x-show="!item.available" style="display: none;"> Sold out </span>
            </div>
          </div>
        </div>
        <template x-if="!defaultQuery">
          <div class="flex flex-row-reverse justify-between items-center">
            <template x-if="item.featured_image.url">
              <a :href="item.url" class="relative h-[132px] w-[94px]">
                    <img :src="item.featured_image.url" loading="lazy" :data-src="item.featured_image.url" :alt="item.title" class="h-full object-cover">
                </a>
            </template>
            <div class="w-4/6 pr-5">
              <h3 class="product-title pb-1 text-sm">
                <a :href="item.url" x-text="item.title.replace('-', '')"></a>
              </h3>
              <div class="product-price text-xs opacity-60">
                <template x-if="item.price">
                  <span class="" x-text="'$' + item.price"></span>
                </template>
                <span x-show="!item.available"> Sold out </span>
              </div>
            </div>
          </div>
        </template>
      </div>
    </div>
  </div>
</form>

POST /cart

<form action="/cart" method="post" class="h-full relative">
  <header class="flex justify-between items-center pb-6 bg-white">
    <button type="button" class="absolute left-[-10px]" @click="$dispatch('toggle-cart')">
      <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
        class="icon icon-arrow-left w-7 h-7">
        <polyline points="15 18 9 12 15 6"></polyline>
      </svg>
    </button>
    <h3 class="text-[22px] w-full text-right uppercase">Shopping bag </h3>
  </header>
  <div class="empty-cart text-right absolute right-0 top-1/2 transform -translate-y-1/2 md:px-4 w-full">
    <h4 class="text-xl py-2 max-w-[250px] ml-auto tracking-widest"> SHOPPING BAG <br> IS EMPTY </h4>
    <p class="font-secondary text-sm py-2 tracking-normal max-w-[250px] ml-auto opacity-70"> Get in touch with us if you <br> need any assistance </p>
    <hr class="bg-[#3A3A3A] my-4 h-[0.5px] md:mr-auto md:max-w-md mx-auto w-full">
    <div class="md:mx-8">
      <button @click="$dispatch('toggle-cart')" type="button" class="mt-8 block mx-auto px-8 py-2 text-sm leading-[inherit] button-primary uppercase text-center  w-full"> Continue shopping </button>
    </div>
  </div>
</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="contact"><input type="hidden" name="utf8" value="✓">
  <div class="" x-show="formSuccess" x-transition.opacity="" style="display: none;">
    <h2 class="text-xl my-4 text-left"> THANK YOU ! </h2>
    <div class="text-sm py-3 tracking-normal font-secondary opacity-70 text-left">
      <p>We will be in touch with you as soon as possible. Talk soon!</p>
    </div>
    <hr class="bg-[#3A3A3A] my-4 h-[0.5px]">
    <button @click="$dispatch('toggle-callback');" class="button-secondary uppercase w-full mt-2 text-sm" type="button"> CONTINUE SHOPPING </button>
  </div>
  <div class="" x-show="!formSuccess" x-transition.opacity="">
    <h2 class="text-xl my-4 text-left"> WE WILL CONTACT YOU WITHIN 5 MINUTES </h2>
    <div class="text-sm py-3 tracking-normal font-secondary opacity-70 text-left">
      <p>Please enter your name and phone number below.</p>
    </div>
    <hr class="bg-[#3A3A3A] my-5 h-[0.5px]">
    <template x-if="formError">
      <div class="form-error text-red-600 text-sm mb-2" x-text="formError"> We had an issue receiving your form. Please try again later. </div>
    </template>
    <div class="flex flex-col mb-2">
      <input type="text" name="contact[name]" x-model="name" aria-label="Full name" placeholder="Full name" autocorrect="off" autocapitalize="off" class="border border-color px-2 h-[42px] placeholder-primary">
    </div>
    <div class="flex flex-col mb-2">
      <input type="text" name="contact[phone]" x-model="phone" placeholder="Phone number" autocorrect="off" aria-label="Phone number" autocapitalize="off" class="border border-color px-2 h-[42px] placeholder-primary">
    </div>
    <button type="button" @click="$dispatch('toggle-callback');" class="text-[#3a3a3a] text-[12px] opacity-50 w-full tracking-widest text-center mt-2"> Back To Assistance </button>
    <button @click="submitContact" class="button-secondary uppercase w-full mt-3 text-sm" type="button"> Submit </button>
  </div>
</form>

<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-Sd3LM9" novalidate="" tabindex="-1"
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; margin: 0px auto; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 0); background-repeat: no-repeat; background-position-y: 50%; padding: 0px;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; justify-content: center;">
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px; position: relative; flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input class="needsclick go1086380328 kl-private-reset-css-Xuajs1" type="email" name="email" tabindex="0"
            placeholder="Enter E-Mail To Subscribe" aria-label="Enter E-Mail To Subscribe" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 2px; padding: 0px 0px 0px 16px; height: 38px; text-align: left; color: rgb(36, 36, 36); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(36, 36, 36);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 3px 0px 0px; position: relative; flex: 0 1 auto;"><button
          class="needsclick go3894874857 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgb(58, 58, 58); border-radius: 0px; border-style: solid; border-color: rgb(58, 58, 58); border-width: 0px; color: rgb(255, 255, 255); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding: 11px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: auto;">SUBMIT</button>
      </div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

Text Content

FREE Worldwide Shipping & Returns

Book A Virtual Styling Consultation


Menu
TYPE HERE ...
Menu | Account
 * What's New
 * Clothing
   Clothing
    * All Clothing
    * What's New
    * Shirts
    * Tops
    * Jackets
    * Coats
    * Cardigans
    * Vests
    * Pants
    * Shorts
    * Dresses
    * Kimonos
    * Ponchos

 * Accessories
   Accessories
    * View All
    * What's New
    * Bags
    * Belts
    * Jewelry

 * Objects
   Objects
    * View All
    * What's New
    * Furniture
    * Bowls & Vases

 * Virtual Styling
 * The Magazine
 * Our Story

 * Ship to: United States (USD)
 * Assistance

 * Ship to: United States (USD)
 * Assistance



 * What's New
 * Clothing
 * Accessories
 * Objects
 * Virtual Styling
 * The Magazine
 * Our Story

My account Log in Shopping bag bag
(0)

Search

TYPE HERE ...

No results found. Please check the spelling or use a different word or phrase.

Sold out

Sold out

Sold out

Sold out

Sold out


BATISTE SHIRT BLACK

$195.00 USD Sold out

Sold out

Sold out


WATERFALL CARDIGAN WITH MASK BLACK

$195.00 USD Sold out

Sold out

Sold out


CHARLES SHIRT WHITE

$220.00 USD Sold out

Sold out

Sold out


MATISSE TOP BLACK

$135.00 USD Sold out

Sold out

Sold out


GIOTTO COUTURE KIMONO PRINT

$350.00 USD Sold out

Sold out

Sold out


WATERFALL CARDIGAN WHITE

$189.00 USD Sold out

Sold out

Sold out


DREAMER TOP BLACK

$135.00 USD Sold out

Sold out

{ "item_count": 0 }


SHOPPING BAG

SHOPPING BAG
IS EMPTY

Get in touch with us if you
need any assistance

--------------------------------------------------------------------------------

Continue shopping
Need Text


Pause
Current Time 0:05
/
Duration Time 0:23
Remaining Time -0:18
Stream TypeLIVE
Loaded: 0%
Progress: 0%
0:05
Fullscreen
Video Acceleration:
On
Off

00:00
Unmute
Playback Rate
1x
 * 2x
 * 1.5x
 * 1.25x
 * 1x
 * 0.75x
 * 0.5x

Subtitles
 * subtitles off

Captions
 * captions off

Chapters
 * Chapters


Need Text


Pause
Current Time 0:05
/
Duration Time 0:23
Remaining Time -0:18
Stream TypeLIVE
Loaded: 0%
Progress: 0%
0:05
Fullscreen
Video Acceleration:
On
Off

00:00
Unmute
Playback Rate
1x
 * 2x
 * 1.5x
 * 1.25x
 * 1x
 * 0.75x
 * 0.5x

Subtitles
 * subtitles off

Captions
 * captions off

Chapters
 * Chapters




NEW ARRIVALS

DISCOVER SEE THE LOOKS


BOLD STATEMENTS

DISCOVER SEE THE LOOKS


SHOP THE COLLECTION

DISCOVER SEE THE LOOKS


--------------------------------------------------------------------------------


WHAT’S NEW THIS WEEK


WHAT’S NEW THIS WEEK

12

DISCOVER NOW
Batiste Shirt - Black




BATISTE SHIRT BLACK

Regular price $195.00 USD
Regular price Sale price $195.00 USD
Unit price /  per 
Waterfall Cardigan with Mask - Black




WATERFALL CARDIGAN WITH MASK BLACK

Regular price $195.00 USD
Regular price Sale price $195.00 USD
Unit price /  per 
Charles Shirt - White




CHARLES SHIRT WHITE

Regular price $220.00 USD
Regular price Sale price $220.00 USD
Unit price /  per 
Matisse Top - Black




MATISSE TOP BLACK

Regular price $135.00 USD
Regular price Sale price $135.00 USD
Unit price /  per 
Giotto Couture Kimono - Print

COUTURE


GIOTTO COUTURE KIMONO PRINT

Regular price $350.00 USD
Regular price Sale price $350.00 USD
Unit price /  per 
Waterfall Cardigan - White




WATERFALL CARDIGAN WHITE

Regular price $189.00 USD
Regular price Sale price $189.00 USD
Unit price /  per 
Dreamer Top - Black




DREAMER TOP BLACK

Regular price $135.00 USD
Regular price Sale price $135.00 USD
Unit price /  per 
Brunello Pearls Pants - Black




BRUNELLO PEARLS PANTS BLACK

Regular price $195.00 USD
Regular price Sale price $195.00 USD
Unit price /  per 

DISCOVER NOW

--------------------------------------------------------------------------------

lifestyle


ES DEVLIN EXHIBIT, LONDON

Following a multi-million pound conservation and restoration project, the
Pitzhanger Manor and Gallery -- a lesser-known jewel of the arts in London --
reopened this spring. Its current exhibition is a visually complex and
mesmerizing work by the visionary stage designer Es Devlin, known for her her
set designs for the Metropolitan Opera in New York and the Royal Opera House in
London, as well as for musical superstars Adele and Beyoncé, among others.
Read more 7 Minute Read

--------------------------------------------------------------------------------


HIDDEN
TREASURES

EMANUEL SHIRT

DISCOVER NOW

--------------------------------------------------------------------------------

CULTURE


CLUB KIDS, CELEBRITY, AND DECADENCE: AN INTERVIEW WITH WALT CASSIDY

Walt Cassidy is the author of New York Club Kids: By Waltpaper, a deluxe book of
images and recollections...

Read more 8 Minute Read
lifestyle


AN ARCHITECT REIMAGINES THE FUTURE HOME

Jordanian designer and architect Abeer Seikaly draws on Bedouin tent-making and
culture to reimagine architecture for the 21st...

Read more 8 Minute Read
lifestyle


REMEMBERING QUENTIN CRISP

This month marks twenty years since the passing of Quentin Crisp, one of the
most colorful, complex, and...

Read more 7 Minute Read
Load latest

--------------------------------------------------------------------------------


TASTE FOR THE FINER THINGS

Dragonfly Brooch - Gold




DRAGONFLY BROOCH GOLD

Regular price $150.00 USD
Regular price Sale price $150.00 USD
Unit price /  per 
Scorpio Brooch - Gold




SCORPIO BROOCH GOLD

Regular price $150.00 USD
Regular price Sale price $150.00 USD
Unit price /  per 
Lobster Brooch - Black




LOBSTER BROOCH BLACK

Regular price $150.00 USD
Regular price Sale price $150.00 USD
Unit price /  per 
Dali Necklace Gold




DALI NECKLACE GOLD

Regular price $290.00 USD
Regular price Sale price $290.00 USD
Unit price /  per 
Dali Earring Gold




DALI EARRING GOLD

Regular price $190.00 USD
Regular price Sale price $190.00 USD
Unit price /  per 
Dali Earring Silver




DALI EARRING SILVER

Regular price $190.00 USD
Regular price Sale price $190.00 USD
Unit price /  per 
Bug Brooch - Gold




BUG BROOCH GOLD

Regular price $150.00 USD
Regular price Sale price $150.00 USD
Unit price /  per 
Dali Necklace Silver




DALI NECKLACE SILVER

Regular price $350.00 USD
Regular price Sale price $350.00 USD
Unit price /  per 


--------------------------------------------------------------------------------


BOOK A STYLING CONSULTATION

Get complimentary, virtual advice
from one of our stylists.


LET'S TALK


SHIPPING TO

 * United States (USD)
 * United Kingdom (GBP)
 * Germany (EUR)
 * Canada (CAD)
 * Australia (AUD)
 * France (EUR)
 * Mexico (MXN)
 * Switzerland (CHF)
 * Netherlands (EUR)
 * Spain (EUR)
 * United Arab Emirates (AED)
 * Belgium (EUR)
 * Italy (EUR)
 * Hong Kong (HKD)
 * Norway (NOK)
 * Singapore (SGD)
 * Sweden (SEK)
 * Kuwait (KWD)
 * Austria (EUR)
 * Saudi Arabi (SAR)
 * Denmark (DKK)
 * Japan (JPY)
 * New Zealand (NZD)
 * Israel (ILS)
 * Qatar (QAR)
 * Ireland (EUR)
 * Greece (EUR)
 * Poland (PLN)
 * Brazil (BRL)
 * Finland (EUR)
 * Czech Republic (CZK)
 * Ukraine (UAH)
 * Colombia (COP)
 * Lithuania (Euro)
 * Taiwan (TWD)
 * Estonia (Euro)
 * Chile (CLP)
 * South Africa (LSL)
 * Romania (ROL)
 * Malaysia (MYR)
 * Portugal (EUR)
 * South Korea (KRW)
 * India (INR)
 * Iceland (ISK)
 * Cyprus (EUR)
 * Turkey (TRY)
 * Morocco (MAD)
 * Nigeria (NGN)
 * Egypt (EGP)
 * Malta (MTL)
 * Philippines (PHP)
 * Pakistan (PKR)
 * Bulgaria (BGN)
 * Trinidad and Tobago (TTD)
 * Jordan (JOD)
 * Croatia (HRK)
 * Lebanon (LBP)
 * Indonesia (IDR)
 * Ecuador (USD)
 * Slovakia (EUR)
 * Thailand (THB)
 * Bahrain (BHD)
 * Hungary (HUF)
 * China (CNY)
 * Luxembourg (EUR)
 * Reunion (EUR)
 * Latvia (EUR)
 * Peru (PEN)
 * Oman (OMR)
 * Kazakhstan (KZT)
 * Serbia (CSD)
 * Gibraltar (GIP)
 * Tunisia (TND)
 * Vietnam (VND)
 * Georgia (GEL)
 * Andorra (EUR)
 * Bermuda (BMD)
 * Argentina (ARS)
 * Costa Rica (CRC)
 * Moldova (MDL)
 * Republic of El Salvador (USD)
 * Benin (XOF)
 * Jamaica (JMD)
 * French Polynesia (XPF)
 * Macao (MOP)
 * Mozambique (MZM)
 * Jersey (GBP)
 * Montenegro (EUR)
 * New Caledonia (XPF)
 * Slovenia (EUR)
 * Albania (ALL)
 * Belarus (BYR)
 * Curaçao (ANG)
 * Macedonia (MKD)
 * Azerbaijan (AZN)




NEED HELP?

LIVE CHAT
VIDEO CONSULTATION
+1 (888) 342-0145
info@orttu.com

--------------------------------------------------------------------------------

F.A.Q


ORDERS AND SHIPPING

Do you ship to my country?

We ship worldwide to 190+ countries. 

To change to your country and currency scroll up to the top of any page and
select the SHIP TO: COUNTRY selector on the left side.

Is express shipping really Free ?

We offer Free Express Shipping on all orders regardless of your geographical
location.

Your order is processed as soon as it comes in! If your order is placed before
1pm EST, your package will leave our warehouse in New York on the same day.

Orders within the US are shipped using Fedex Express and will arrive to your
address in 1-2 business days.

Orders outside the US are shipped using DHL Express and will arrive to your
address in 2-4 business days.

Will I have to pay international taxes & duties ?

Fear not! We have taken care of all import duties, taxes, and custom fees for
you. The price you see at checkout is the price you will pay. No surprises!
Though 99% of companies won’t do this, we LOVE going the extra mile for our
clients.

When should I expect to receive my order?

We understand that speed is of the essence when it comes to getting to enjoy
your pieces.

Your order is processed as soon as it comes in! If your order is placed before
1pm EST, your package will leave our warehouse in New York on the same day.

Orders within the US are shipped using Fedex Express and will arrive to your
address in 1-2 business days.

Orders outside the US are shipped using DHL Express and will arrive to your
address in 2-4 business days.

At ORTTU, we care about the wellbeing of our staff. Our warehouse team rests on
weekends and national holidays, so orders placed then would be shipped the
following business day.

Do you ship to P.O. boxes?

P.O. Boxes are not an option at this time.

How do I track my order?

As soon as your order leaves our warehouse, you will receive a shipping
notification email with a tracking link so that you can keep an eye on the
adventures of your ORTTU treasures.

Can I change my delivery address?

Our team moves quickly to get your order shipped out ASAP, which means that we
don’t have much time to change the address. If you need to correct your address
please contact us as fast as possible at info@orttu.com 

--------------------------------------------------------------------------------


RETURNS & REFUNDS

How do I make a return ?

Enjoy free returns worldwide. 

Need to return your ORTTU piece? Send us an email to info@orttu.com and note the
order number and whether you would like a refund or exchange an item.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

International Customers: 

We don’t play favourites, so hassle free returns are available for you
international lovelies too! 

Head to our International Returns Page, fill out the form and we will be in
touch super fast to help you with the next steps. 

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

What is your returns policy ?

If you don’t love the fit of your ORTTU piece, you have a 14 days window from
the date of order to send it back to us.  

Please note, unwanted items must be returned unworn, undamaged, and unused. Item
must be returned with all tags attached in the original packaging in which it
was received.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

What is your exchange policy ?

If you purchase an ORTTU piece and it’s just not the right size for you, we will
gladly exchange it for you. Please note you can only exchange for the same item
in a different size.

Items must be returned unworn, undamaged, and unused. Item must be returned with
all tags attached in the original packaging in which it was received.

How long does it take for a refund to be issued?

We get it, once you return your merch, you want your money back ASAP, which is
why we make every effort to ensure a prompt refund for you. 

ORTTU returns are processed within 14 days of either a Cancellation or a
Return. 

You will receive a confirmation email once your return has been processed and
your account has been credited. 

Please note, refunds may only be issued to the account used for payment.

For payments using Cryptocurrencies we can only offer exchanges and no refunds. 

--------------------------------------------------------------------------------


PRODUCT INFORMATION

How do I figure out the size I need?

At ORTTU we want to make your shopping experience as easy and convenient as
possible.

To help you determine the right size for you, we have included a handy sizing
chart for each ORTTU piece featured on our website.

You can locate the sizing chart underneath the “Add to Bag” button for the item
you’re interested in purchasing.
Simply click on “Sizing” and you will get a quick snippet about the model and
specific piece. Directly below, you will find a link to the sizing chart (in
inches).

The sizing chart includes easy to follow, precise instructions on how to measure
yourself. We want to leave no room for error!

If you still feel like you’d like some help deciding on a size, feel free to
reach out to our expert team at info@orttu.com or via our live chat.

We make exchanges and returns a breeze so, if you’re not pleased with the way
your ORTTU piece fits you, we will get you figured out in no time and with
minimal hassle!

How do I know if a product I have is authentic?

As long as you purchase your ORTTU Fashion through www.ORTTU.com, you’re good to
go.


--------------------------------------------------------------------------------


PAYMENT METHODS

What payment methods do you accept?

We are pleased to offer over 50 different payment methods including: 

Visa, MasterCard, American Express, Delta, Visa Electron, PayPal, Apple Pay,
Google Pay, Amazon checkout.

AfterPay, Klarna, ShopPay, Sezzle, Affirm. 

Alipay (only available to China Mainland, Taiwan Region, Hong Kong SAR and Macau
SAR)

UnionPay (only available to China Mainland, Taiwan Region, Hong Kong SAR and
Macau SAR)

JCB (only available to Japan)

iDEAL (only available to The Netherlands)

Sofortbanking (only available to Germany, Austria, Switzerland and Belgium) 

We now also accept following cryptocurrencies: Bitcoin, Ethereum, Dogecoin,
Litecoin, Bitcoin Cash, DAI and USDC.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds.

Which currencies can I shop in?

We currently offer 95 different currencies for your convenience. 

We now also accept following cryptocurrencies: Bitcoin, Ethereum, Dogecoin,
Litecoin, Bitcoin Cash, DAI and USDC.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

--------------------------------------------------------------------------------


HOW TO SHOP & PLACE AN ORDER

Where can I buy ORTTU?

We currently sell our products exclusively through this website and thru our New
York flagship store.

My item is out of stock. Can I get notified when it comes back?

We are sorry that your item is currently out of stock. 

If you would like to get notified when it comes back, simply go to the product
page and click on the “Notify me when back in stock” button.

You will get a notification via email or SMS when your item is back in stock.

You saw it on social media and can’t find it?

If you saw an ORTTU piece on our social media channels and can’t find it on our
website, chances are it is an item from an old collection which is no longer
being produced. 

We are sorry that you won’t be able to get it but hey, we have to make room for
new and exciting ORTTU pieces. We bet you’ll find something you’ll love here.

How do I create an ORTTU account? What do I get

You can create an ORTTU Customer Account here.
When you access your account you will be able to see your ORTTU Shopping
History.

How do I reset my password?

No worries, if you forgot your password, simply click on the “Forgot your
password?” link in our login page.

Can I place my order over the phone?

At this time we do not offer this option.

My order status says "Unfulfilled". What does that mean?

This status simply means we have successfully received your order and it is
being processed by our team. 

Once your order is shipped, the order status will change to “Fulfilled” and you
will receive an email notification with a tracking number. 

Don’t worry, “Unfulfilled” does not last long around here.

Why was my order canceled?

If your order was unexpectedly canceled, chances are that our fraud filter
marked your order as fraudulent. If you are certain that that is not true,
please order again with a Paypal account. If you do not have Paypal, you can
easily sign up at www.Paypal.com

Why have I not received an order confirmation by e-mail?

Once an order is submitted, verified and processed successfully, an automated
confirmation email is generated and sent within 10 minutes. 

During high volume times, we may take a bit longer to send out your order
confirmation. In these instances, your confirmation and/or tracking information
should be sent out within a 48 hour window. 

If you have not received an order confirmation email after this window, please
contact us so that we may look into this for you. It is possible that your order
didn’t go through or it may just be that you entered your email address
incorrectly. Kindly wait until the 48-hour window has elapsed before contacting
our team.

Did you get charged? You can rest assured that your order was successfully
processed (even in the momentary absence of a confirmation email).

--------------------------------------------------------------------------------


OTHER

How can I get in touch with you?

Shoot us an email at info@orttu.com and someone will get back to you ASAP and
definitely within a 24 hour window. 

Help us help you! Please include any relevant details in your email (order
number, pictures, etc) so that we may best assist you.

How do I become an ORTTU reseller? Do you have any authorised resellers?

While we appreciate that you want to be an ORTTU reseller, we do not currently
have a reseller or wholesale program. 

Please email us at info@orttu.com with any pertinent information. We will be in
touch if we decide to go down that path!

I am a social media influencer - can we collaborate ?

Please send an email to info@orttu.com. Someone will be in touch if and when the
opportunity for a collaboration arises.

Do you have open any open positions?

Our team is growing rapidly! Please keep an eye on this page for upcoming
openings.

How do I unsubscribe from the E-Mail Newsletter?

We are sorry if we are cluttering your mailbox. That’s just the worst!

To unsubscribe you can click on the Unsubscribe link at the bottom of any of our
emails OR simply go to our website, scroll down to the bottom and click on
E-mail Unsubscribe.

Do you have a Press contact?

Please send your requests to info@orttu.com and someone will be in touch ASAP.


F.A.Q.


ORDERS AND SHIPPING

Do you ship to my country?

We ship worldwide to 190+ countries. 

To change to your country and currency scroll up to the top of any page and
select the SHIP TO: COUNTRY selector on the left side.

Is express shipping really Free ?

We offer Free Express Shipping on all orders regardless of your geographical
location.

Your order is processed as soon as it comes in! If your order is placed before
1pm EST, your package will leave our warehouse in New York on the same day.

Orders within the US are shipped using Fedex Express and will arrive to your
address in 1-2 business days.

Orders outside the US are shipped using DHL Express and will arrive to your
address in 2-4 business days.

Will I have to pay international taxes & duties ?

Fear not! We have taken care of all import duties, taxes, and custom fees for
you. The price you see at checkout is the price you will pay. No surprises!
Though 99% of companies won’t do this, we LOVE going the extra mile for our
clients.

When should I expect to receive my order?

We understand that speed is of the essence when it comes to getting to enjoy
your pieces.

Your order is processed as soon as it comes in! If your order is placed before
1pm EST, your package will leave our warehouse in New York on the same day.

Orders within the US are shipped using Fedex Express and will arrive to your
address in 1-2 business days.

Orders outside the US are shipped using DHL Express and will arrive to your
address in 2-4 business days.

At ORTTU, we care about the wellbeing of our staff. Our warehouse team rests on
weekends and national holidays, so orders placed then would be shipped the
following business day.

Do you ship to P.O. boxes?

P.O. Boxes are not an option at this time.

How do I track my order?

As soon as your order leaves our warehouse, you will receive a shipping
notification email with a tracking link so that you can keep an eye on the
adventures of your ORTTU treasures.

Can I change my delivery address?

Our team moves quickly to get your order shipped out ASAP, which means that we
don’t have much time to change the address. If you need to correct your address
please contact us as fast as possible at info@orttu.com 

--------------------------------------------------------------------------------


RETURNS & REFUNDS

How do I make a return ?

Enjoy free returns worldwide. 

Need to return your ORTTU piece? Send us an email to info@orttu.com and note the
order number and whether you would like a refund or exchange an item.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

International Customers: 

We don’t play favourites, so hassle free returns are available for you
international lovelies too! 

Head to our International Returns Page, fill out the form and we will be in
touch super fast to help you with the next steps. 

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

What is your returns policy ?

If you don’t love the fit of your ORTTU piece, you have a 14 days window from
the date of order to send it back to us.  

Please note, unwanted items must be returned unworn, undamaged, and unused. Item
must be returned with all tags attached in the original packaging in which it
was received.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds.

What is your exchange policy ?

If you purchase an ORTTU piece and it’s just not the right size for you, we will
gladly exchange it for you. Please note you can only exchange for the same item
in a different size.

Items must be returned unworn, undamaged, and unused. Item must be returned with
all tags attached in the original packaging in which it was received.

How long does it take for a refund to be issued?

We get it, once you return your merch, you want your money back ASAP, which is
why we make every effort to ensure a prompt refund for you. 

ORTTU returns are processed within 14 days of either a Cancellation or a
Return. 

You will receive a confirmation email once your return has been processed and
your account has been credited. 

Please note, refunds may only be issued to the account used for payment.

For payments using Cryptocurrencies we can only offer exchanges and no refunds. 

--------------------------------------------------------------------------------


PRODUCT INFORMATION

How do I figure out the size I need?

At ORTTU we want to make your shopping experience as easy and convenient as
possible.

To help you determine the right size for you, we have included a handy sizing
chart for each ORTTU piece featured on our website.

You can locate the sizing chart on the the “Size & Fit” button for the item
you’re interested in purchasing.

The sizing chart includes easy to follow, precise instructions on how to measure
yourself.

If you still feel like you’d like some help deciding on a size, feel free to
reach out to our expert team at info@orttu.com or via our live chat.

We make exchanges and returns a breeze so, if you’re not pleased with the way
your ORTTU piece fits you, we will get you figured out in no time and with
minimal hassle!

How do I know if a product I have is authentic?

As long as you purchase your ORTTU Fashion through www.ORTTU.com, you’re good to
go.


--------------------------------------------------------------------------------


PAYMENT METHODS

What payment methods do you accept?

We are pleased to offer over 50 different payment methods including: 

Visa, MasterCard, American Express, Delta, Visa Electron, PayPal, Apple Pay,
Google Pay, Amazon checkout.

AfterPay, Klarna, ShopPay, Sezzle, Affirm. 

Alipay (only available to China Mainland, Taiwan Region, Hong Kong SAR and Macau
SAR)

UnionPay (only available to China Mainland, Taiwan Region, Hong Kong SAR and
Macau SAR)

JCB (only available to Japan)

iDEAL (only available to The Netherlands)

Sofortbanking (only available to Germany, Austria, Switzerland and Belgium) 

We now also accept following cryptocurrencies: Bitcoin, Ethereum, Dogecoin,
Litecoin, Bitcoin Cash, DAI and USDC.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds.

Which currencies can I shop in?

We currently offer 95 different currencies for your convenience. 

We now also accept following cryptocurrencies: Bitcoin, Ethereum, Dogecoin,
Litecoin, Bitcoin Cash, DAI and USDC.

Please note that for payments using Cryptocurrencies we can only offer exchanges
and no refunds. 

--------------------------------------------------------------------------------


HOW TO SHOP & PLACE AN ORDER

Where can I buy ORTTU?

We currently sell our products exclusively through this website and thru our New
York flagship store.

My item is out of stock. Can I get notified when it comes back?

We are sorry that your item is currently out of stock. 

If you would like to get notified when it comes back, simply go to the product
page and click on the “Notify me when back in stock” button.

You will get a notification via email or SMS when your item is back in stock.

You saw it on social media and can’t find it?

If you saw an ORTTU piece on our social media channels and can’t find it on our
website, chances are it is an item from an old collection which is no longer
being produced. 

We are sorry that you won’t be able to get it but hey, we have to make room for
new and exciting ORTTU pieces. We bet you’ll find something you’ll love here.

How do I create an ORTTU account? What do I get

You can create an ORTTU Customer Account here.
When you access your account you will be able to see your ORTTU Shopping
History.

How do I reset my password?

No worries, if you forgot your password, simply click on the “Forgot your
password?” link in our login page.

Can I place my order over the phone?

At this time we do not offer this option.

My order status says "Unfulfilled". What does that mean?

This status simply means we have successfully received your order and it is
being processed by our team. 

Once your order is shipped, the order status will change to “Fulfilled” and you
will receive an email notification with a tracking number. 

Don’t worry, “Unfulfilled” does not last long around here.

Why was my order canceled?

If your order was unexpectedly canceled, chances are that our fraud filter
marked your order as fraudulent. If you are certain that that is not true,
please order again with a Paypal account. If you do not have Paypal, you can
easily sign up at www.Paypal.com

Why have I not received an order confirmation by e-mail?

Once an order is submitted, verified and processed successfully, an automated
confirmation email is generated and sent within 10 minutes. 

During high volume times, we may take a bit longer to send out your order
confirmation. In these instances, your confirmation and/or tracking information
should be sent out within a 48 hour window. 

If you have not received an order confirmation email after this window, please
contact us so that we may look into this for you. It is possible that your order
didn’t go through or it may just be that you entered your email address
incorrectly. Kindly wait until the 48-hour window has elapsed before contacting
our team.

Did you get charged? You can rest assured that your order was successfully
processed (even in the momentary absence of a confirmation email).

--------------------------------------------------------------------------------


OTHER

How can I get in touch with you?

Shoot us an email at info@orttu.com and someone will get back to you ASAP and
definitely within a 24 hour window. 

Help us help you! Please include any relevant details in your email (order
number, pictures, etc) so that we may best assist you.

How do I become an ORTTU reseller? Do you have any authorised resellers?

Please email us at info@orttu.com with any pertinent information.

I am a social media influencer - can we collaborate ?

Please send an email to info@orttu.com. Someone will be in touch if and when the
opportunity for a collaboration arises.

Do you have open any open positions?

Our team is growing rapidly! Please keep an eye on our official Linkedin page
for upcoming openings.

How do I unsubscribe from the E-Mail Newsletter?

To unsubscribe you can click on the Unsubscribe link at the bottom of any of our
emails.

Do you have a Press contact?

Please send your requests to info@orttu.com and someone will be in touch ASAP.




REQUEST CALL BACK


THANK YOU !

We will be in touch with you as soon as possible. Talk soon!

--------------------------------------------------------------------------------

CONTINUE SHOPPING


WE WILL CONTACT YOU WITHIN 5 MINUTES

Please enter your name and phone number below.

--------------------------------------------------------------------------------

We had an issue receiving your form. Please try again later.


Back To Assistance Submit



LEGAL NOTICE


TERMS AND CONDITIONS

The General Terms and Conditions of Sale detailed below apply to all orders
placed with ORTTU Online LLC for all products and services offered on the
Website (the “T&C’s”). They can be accessed at any times on the Website.

When we refer to "we", "us", "our" or “Orttu”, we mean ORTTU Online LLC. Where
we refer to "you" or "your" or “client” we mean you, the person using the
Services. We have used headings to help you understand these Terms and
Conditions and to easily locate information. These Terms and Conditions are only
available in the English language.

We reserves the right to adapt or modify the T&C’s at any time, the version of
the Terms and Conditions of Sale applicable to any transaction is the T&C’s
published at the date of the order. Consequently, placing an order by a client
implies complete adherence, without reservation, to these terms and conditions.

GUARANTEES AND RESPONSIBILITY

ORTTU Online LLC is only required to deliver products which are compliant with
the contractual provision. Products are considered as compliant if the following
conditions fulfilled :

they shall be compliant with the description and have the features mentioned on
the Website;they shall be compliance with the uses which may reasonably be
expected of it;they shall compliant with the quality and strength which may
reasonably be expected of similar products.

It should be noted that confidentiality of data exchanges is not guaranteed over
the Internet, and that every internet user is required to take all appropriate
measures to protect their own data and/or software from contamination of any
possible viruses circulating on the Internet.

We will not be liable to you or any user for any loss or damage, whether in
contract, tort (including negligence), breach of statutory duty, or otherwise,
arising under or in connection with: (i) use of, or inability to use, the
Website; or (ii) use of or reliance on any content displayed on the Website.

Please note that we only provide the Website for domestic and private use and,
as such, we have no liability to you for any loss of profit, loss of business,
business interruption, or loss of business opportunity.

We will not be liable for any loss or damage caused by a virus, distributed
denial-of-service attack, or other technologically harmful material that may
infect your computer equipment, computer programs, data or other proprietary
material due to your use of the Website or to your downloading of any content on
it, or on any website linked to it. We do not in any way exclude or limit our
liability for: 1.death or personal injury caused by our negligence; 2. fraud or
fraudulent misrepresentation; 3. any other liability which cannot be limited by
law. Different limitations and exclusions of liability will apply to liability
arising as a result of our supply of the Services to you.

APPLICABLE LAW AND JURISDICTION

These General T&Cs are governed by the laws of Texas. In the event of a dispute
between the Client and Company concerning the interpretation, performance or
termination of this T&C’s, ORTTU Online LLC strongly encourages the Client to
contact the company in the first instance to attempt to resolve the disagreement
amicably.

All your account information is only used in the context of your business
relationship with www.orrtu.com. This information is never shared with third
parties or resold. Finally, ORTTU Online LLC does not store any bank details.
Transactions are processed entirely by secure payment module of our partner
SHOPIFY.

To improve our service, the Website may use cookies. A cookie is a computer file
stored on Client’s hard disk, allowing the Client to be recognized, without time
limitation. Clients can of course delete these cookies by disabling their use in
their browser.

SECURE PAYMENTS

Every purchase on our website is made with maximum security thanks to the use of
SHOPIFY secure servers and the implementation of the most advanced encryption
services (SSL). We only use protected connections, as demonstrated by the
"https" URL prefix and the lock symbol that appears in the browser's address
bar.

To safeguard your credit card purchases, you will always be asked to enter your
CVV code for every order. Our Payments department may carry out anti-fraud
checks before approving the transaction and for greater protection, they may
contact you for further details before confirming the order.

 SMS/MMS MOBILE MESSAGE MARKETING PROGRAM TERMS AND CONDITIONS

ORTTU Online LLC (hereinafter, “We,” “Us,” “Our”) is offering a mobile messaging
program (the “Program”), which you agree to use and participate in subject to
these Mobile Messaging Terms and Conditions and Privacy Policy (the
“Agreement”). By opting in to or participating in any of our Programs, you
accept and agree to these terms and conditions, including, without limitation,
your agreement to resolve any disputes with us through binding, individual-only
arbitration, as detailed in the “Dispute Resolution” section below. This
Agreement is limited to the Program and is not intended to modify other Terms
and Conditions or Privacy Policy that may govern the relationship between you
and Us in other contexts.

User Opt In: The Program allows Users to receive SMS/MMS mobile messages by
affirmatively opting into the Program, such as through online or
application-based enrollment forms. Regardless of the opt-in method you utilized
to join the Program, you agree that this Agreement applies to your participation
in the Program. By participating in the Program, you agree to receive autodialed
or prerecorded marketing mobile messages at the phone number associated with
your opt-in, and you understand that consent is not required to make any
purchase from Us. While you consent to receive messages sent using an
autodialer, the foregoing shall not be interpreted to suggest or imply that any
or all of Our mobile messages are sent using an automatic telephone dialing
system (“ATDS” or “autodialer”). Message and data rates may apply.

User Opt Out: If you do not wish to continue participating in the Program or no
longer agree to this Agreement, you agree to reply STOP, END, CANCEL,
UNSUBSCRIBE, or QUIT to any mobile message from Us in order to opt out of the
Program. You may receive an additional mobile message confirming your decision
to opt out. You understand and agree that the foregoing options are the only
reasonable methods of opting out. You also understand and agree that any other
method of opting out, including, but not limited to, texting words other than
those set forth above or verbally requesting one of our employees to remove you
from our list, is not a reasonable means of opting out.

Duty to Notify and Indemnify: If at any time you intend to stop using the mobile
telephone number that has been used to subscribe to the Program, including
canceling your service plan or selling or transferring the phone number to
another party, you agree that you will complete the User Opt Out process set
forth above prior to ending your use of the mobile telephone number. You
understand and agree that your agreement to do so is a material part of these
terms and conditions. You further agree that, i f you discontinue the use of
your mobile telephone number without notifying Us of such change, you agree that
you will be responsible for all costs (including attorneys’ fees) and
liabilities incurred by Us, or any party that assists in the delivery of the
mobile messages, as a result of claims brought by individual(s) who are later
assigned that mobile telephone number. This duty and agreement shall survive any
cancellation or termination of your agreement to participate in any of our
Programs.

YOU AGREE THAT YOU SHALL INDEMNIFY, DEFEND, AND HOLD US HARMLESS FROM ANY CLAIM
OR LIABILITY RESULTING FROM YOUR FAILURE TO NOTIFY US OF A CHANGE IN THE
INFORMATION YOU HAVE PROVIDED, INCLUDING ANY CLAIM OR LIABILITY UNDER THE
TELEPHONE CONSUMER PROTECTION ACT, 47 U.S.C. § 227, et seq., OR SIMILAR STATE
AND FEDERAL LAWS, AND ANY REGULATIONS PROMULGATED THEREUNDER RESULTING FROM US
ATTEMPTING TO CONTACT YOU AT THE MOBILE TELEPHONE NUMBER YOU PROVIDED.

Program Description: Without limiting the scope of the Program, users that opt
into the Program can expect to receive messages concerning the marketing and
sale of newest designer collections.

Cost and Frequency: Message and data rates may apply. The Program involves
recurring mobile messages, and additional mobile messages may be sent
periodically based on your interaction with Us.

Support Instructions : For support regarding the Program, text “HELP” to the
number you received messages from or email us at info@orttu.com. Please note
that the use of this email address is not an acceptable method of opting out of
the program. Opt outs must be submitted in accordance with the procedures set
forth above.
MMS Disclosure: The Program will send SMS TMs (terminating messages) if your
mobile device does not support MMS messaging.
Our Disclaimer of Warranty: The Program is offered on an "as-is" basis and may
not be available in all areas at all times and may not continue to work in the
event of product, software, coverage or other changes made by your wireless
carrier. We will not be liable for any delays or failures in the receipt of any
mobile messages connected with this Program. Delivery of mobile messages is
subject to effective transmission from your wireless service provider/network
operator and is outside of Our control. T-Mobile is not liable for delayed or
undelivered mobile messages.

Participant Requirements: You must have a wireless device of your own, capable
of two-way messaging, be using a participating wireless carrier, and be a
wireless service subscriber with text messaging service. Not all cellular phone
providers carry the necessary service to participate. Check your phone
capabilities for specific text messaging instructions.
Age Restriction: You may not use of engage with the Platform if you are under
thirteen (13) years of age. If you use or engage with the Platform and are
between the ages of thirteen (13) and eighteen (18) years of age, you must have
your parent’s or legal guardian’s permission to do so. By using or engaging with
the Platform, you acknowledge and agree that you are not under the age of
thirteen (13) years, are between the ages of thirteen (13) and eighteen (18) and
have your parent’s or legal guardian’s permission to use or engage with the
Platform, or are of adult age in your jurisdiction. By using or engaging with
the Platform, you also acknowledge and agree that you are permitted by your
jurisdiction’s Applicable Law to use and/or engage with the Platform.

Prohibited Content: You acknowledge and agree to not send any prohibited content
over the Platform. Prohibited content includes:

- Any fraudulent, libelous, defamatory, scandalous, threatening, harassing, or
stalking activity;
- Objectionable content, including profanity, obscenity, lasciviousness,
violence, bigotry, hatred, and discrimination on the basis of race, sex,
religion, nationality, disability, sexual orientation, or age;
- Pirated computer programs, viruses, worms, Trojan horses, or other harmful
code;
- Any product, service, or promotion that is unlawful where such product,
service, or promotion thereof is received;
- Any content that implicates and/or references personal health information that
is protected by the Health Insurance Portability and Accountability Act
(“HIPAA”) or the Health Information Technology for Economic and Clinical Health
Act (“HITEC” Act); and
- Any other content that is prohibited by Applicable Law in the jurisdiction
from which the message is sent.
Dispute Resolution: In the event that there is a dispute, claim, or controversy
between you and Us, or between you and 317 LABS, INC. or any other third-party
service provider acting on Our behalf to transmit the mobile messages within the
scope of the Program, arising out of or relating to federal or state statutory
claims, common law claims, this Agreement, or the breach, termination,
enforcement, interpretation or validity thereof, including the determination of
the scope or applicability of this agreement to arbitrate, such dispute, claim,
or controversy will be, to the fullest extent permitted by law, determined by
arbitration in ORTTU Online LLC, Miami before one arbitrator.

The parties agree to submit the dispute to binding arbitration in accordance
with the Commercial Arbitration Rules of the American Arbitration Association
(“AAA”) then in effect. Except as otherwise provided herein, the arbitrator
shall apply the substantive laws of the Federal Judicial Circuit in which ORTTU
Online LLC’s principle place of business is located, without regard to its
conflict of laws rules. Within ten (10) calendar days after the arbitration
demand is served upon a party, the parties must jointly select an arbitrator
with at least five years’ experience in that capacity and who has knowledge of
and experience with the subject matter of the dispute.

If the parties do not agree on an arbitrator within ten (10) calendar days, a
party may petition the AAA to appoint an arbitrator, who must satisfy the same
experience requirement. In the event of a dispute, the arbitrator shall decide
the enforceability and interpretation of this arbitration agreement in
accordance with the Federal Arbitration Act (“FAA”). The parties also agree that
the AAA’s rules governing Emergency Measures of Protection shall apply in lieu
of seeking emergency injunctive relief from a court.

The decision of the arbitrator shall be final and binding, and no party shall
have rights of appeal except for those provided in section 10 of the FAA. Each
party shall bear its share of the fees paid for the arbitrator and the
administration of the arbitration; however, the arbitrator shall have the power
to order one party to pay all or any portion of such fees as part of a
well-reasoned decision. The parties agree that the arbitrator shall have the
authority to award attorneys’ fees only to the extent expressly authorized by
statute or contract.

The arbitrator shall have no authority to award punitive damages and each party
hereby waives any right to seek or recover punitive damages with respect to any
dispute resolved by arbitration. The parties agree to arbitrate solely on an
individual basis, and this agreement does not permit class arbitration or any
claims brought as a plaintiff or class member in any class or representative
arbitration proceeding. Except as may be required by law, neither a party nor
the arbitrator may disclose the existence, content, or results of any
arbitration without the prior written consent of both parties, unless to protect
or pursue a legal right. If any term or provision of this Section is invalid,
illegal, or unenforceable in any jurisdiction, such invalidity, illegality, or
unenforceability shall not affect any other term or provision of this Section or
invalidate or render unenforceable such term or provision in any other
jurisdiction. If for any reason a dispute proceeds in court rather than in
arbitration, the parties hereby waive any right to a jury trial. This
arbitration provision shall survive any cancellation or termination of your
agreement to participate in any of our Programs.

Miscellaneous: You warrant and represent to Us that you have all necessary
rights, power, and authority to agree to these Terms and perform your
obligations hereunder, and nothing contained in this Agreement or in the
performance of such obligations will place you in breach of any other contract
or obligation. The failure of either party to exercise in any respect any right
provided for herein will not be deemed a waiver of any further rights hereunder.

If any provision of this Agreement is found to be unenforceable or invalid, that
provision will be limited or eliminated to the minimum extent necessary so that
this Agreement will otherwise remain in full force and effect and enforceable.
Any new features, changes, updates or improvements of the Program shall be
subject to this Agreement unless explicitly stated otherwise in writing.

We reserve the right to change this Agreement from time to time. Any updates to
this Agreement shall be communicated to you. You acknowledge your responsibility
to review this Agreement from time to time and to be aware of any such changes.
By continuing to participate in the Program after any such changes, you accept
this Agreement, as modified.


PRIVACY POLICY

ORTTU Online LLC Privacy Policy of www.orttu.com Privacy Policy Effective date:
March 19, 2022 ORTTU Online LLC ("us", "we", or "our") operates the
www.orttu.com website (the "Service").


This page informs you of our policies regarding the collection, use, and
disclosure of personal data when you use our Service and the choices you have
associated with that data. This Privacy Policy for ORTTU Online LLC is powered
by FreePrivacyPolicy.com. We use your data to provide and improve the Service.

By using the Service, you agree to the collection and use of information in
accordance with this policy. Unless otherwise defined in this Privacy Policy,
terms used in this Privacy Policy have the same meanings as in our Terms and
Conditions, accessible from www.orttu.com Information Collection And Use We
collect several different types of information for various purposes to provide
and improve our Service to you.

Types of Data Collected Personal Data While using our Service, we may ask you to
provide us with certain personally identifiable information that can be used to
contact or identify you ("Personal Data").

Personally identifiable information may include, but is not limited to: Email
address First name and last name Phone number Address, State, Province,
ZIP/Postal code, City Cookies and Usage Data Usage Data We may also collect
information how the Service is accessed and used ("Usage Data").

This Usage Data may include information such as your computer's Internet
Protocol address (e.g. IP address), browser type, browser version, the pages of
our Service that you visit, the time and date of your visit, the time spent on
those pages, unique device identifiers and other diagnostic data.

Tracking & Cookies Data We use cookies and similar tracking technologies to
track the activity on our Service and hold certain information. Cookies are
files with small amount of data which may include an anonymous unique
identifier. Cookies are sent to your browser from a website and stored on your
device.

Tracking technologies also used are beacons, tags, and scripts to collect and
track information and to improve and analyze our Service. You can instruct your
browser to refuse all cookies or to indicate when a cookie is being sent.

However, if you do not accept cookies, you may not be able to use some portions
of our Service. Examples of Cookies we use: Session Cookies. We use Session
Cookies to operate our Service. Preference Cookies. We use Preference Cookies to
remember your preferences and various settings. Security Cookies.

We use Security Cookies for security purposes. Use of Data ORTTU Online LLC uses
the collected data for various purposes: To provide and maintain the Service To
notify you about changes to our Service To allow you to participate in
interactive features of our Service when you choose to do so To provide customer
care and support To provide analysis or valuable information so that we can
improve the Service To monitor the usage of the Service To detect, prevent and
address technical issues Transfer Of Data Your information, including Personal
Data, may be transferred to — and maintained on — computers located outside of
your state, province, country or other governmental jurisdiction where the data
protection laws may differ than those from your jurisdiction.

If you are located outside United States and choose to provide information to
us, please note that we transfer the data, including Personal Data, to Ukraine
and process it there.

Your consent to this Privacy Policy followed by your submission of such
information represents your agreement to that transfer. ORTTU Online LLC will
take all steps reasonably necessary to ensure that your data is treated securely
and in accordance with this Privacy Policy and no transfer of your Personal Data
will take place to an organization or a country unless there are adequate
controls in place including the security of your data and other personal
information.

Disclosure Of Data Legal Requirements ORTTU Online LLC may disclose your
Personal Data in the good faith belief that such action is necessary to: To
comply with a legal obligation To protect and defend the rights or property of
ORTTU Online LLC To prevent or investigate possible wrongdoing in connection
with the Service To protect the personal safety of users of the Service or the
public To protect against legal liability Security Of Data The security of your
data is important to us, but remember that no method of transmission over the
Internet, or method of electronic storage is 100% secure. While we strive to use
commercially acceptable means to protect your Personal Data, we cannot guarantee
its absolute security.

Service Providers

We may employ third party companies and individuals to facilitate our Service
("Service Providers"), to provide the Service on our behalf, to perform
Service-related services or to assist us in analyzing how our Service is used.

These third parties have access to your Personal Data only to perform these
tasks on our behalf and are obligated not to disclose or use it for any other
purpose.

Analytics We may use third-party Service Providers to monitor and analyze the
use of our Service. Google Analytics Google Analytics is a web analytics service
offered by Google that tracks and reports website traffic. Google uses the data
collected to track and monitor the use of our Service. This data is shared with
other Google services. Google may use the collected data to contextualize and
personalize the ads of its own advertising network. You can opt-out of having
made your activity on the Service available to Google Analytics by installing
the Google Analytics opt-out browser add-on.

The add-on prevents the Google Analytics JavaScript (ga.js, analytics.js, and
dc.js) from sharing information with Google Analytics about visits activity. For
more information on the privacy practices of Google, please visit the Google
Privacy & Terms web page: https://policies.google.com/privacy?hl=en Links To
Other Sites Our Service may contain links to other sites that are not operated
by us.

If you click on a third party link, you will be directed to that third party's
site. We strongly advise you to review the Privacy Policy of every site you
visit.

We have no control over and assume no responsibility for the content, privacy
policies or practices of any third party sites or services.

Text Marketing and notifications

By subscribing to text notifications you agree to receive recurring automated
marketing messages at the phone number provided.

Consent is not a condition of purchase. Reply STOP to unsubscribe. HELP for
help. Msg & Data rates may apply. More info view Privacy Policy and ToS.
Children's Privacy Our Service does not address anyone under the age of 18
("Children"). We do not knowingly collect personally identifiable information
from anyone under the age of 18.

If you are a parent or guardian and you are aware that your Children has
provided us with Personal Data, please contact us. If we become aware that we
have collected Personal Data from children without verification of parental
consent, we take steps to remove that information from our servers.

Changes To This Privacy Policy We may update our Privacy Policy from time to
time. We will notify you of any changes by posting the new Privacy Policy on
this page. We will let you know via email and/or a prominent notice on our
Service, prior to the change becoming effective and update the "effective date"
at the top of this Privacy Policy.

You are advised to review this Privacy Policy periodically for any changes.
Changes to this Privacy Policy are effective when they are posted on this page.
Contact Us If you have any questions about this Privacy Policy, please contact
us: By email: info@orttu.com By phone number: +380 73 507 50 77



Feel more. Love more. Be more. It’s what ORTTU stands for. It’s why we’ve always
combined individuality with beauty, quality, imagination, and a sense of
optimism. We believe in finding, seeing, and cultivating the best in ourselves
and in life. And we believe that beauty reflects our deepest inner reality.


GET ON THE LIST

SUBMIT

Stay in the loop with the latest news and get an exclusive 10% off when you
subscribe to our emails. Learn more about our Privacy Policy here

   
 * Back to top
 * Our Story
 * Client Care
 * Instagram
 * Facebook
 * FAQ's
 * Careers
 * Toggle Accessibility
 * Legal Notice
 * Ship to: United States (USD)

 * Choosing a selection results in a full page refresh.

Enable accessibility


ACCESSIBILITY

Close icon Close accessibility widget
Reset All Checked mark Statement


ACCESSIBILITY STATEMENT

Accessibility widget is committed to making sites accessible for all, including
people with disabilities. We are continuously improving the service we provide
through our app to comply with increased accessibility standards, guidelines,
and to make the browsing experience better for everyone.


CONFORMANCE STATUS

The app uses the Web Content Accessibility Guidelines (WCAG) defined
requirements to improve accessibility for people with disabilities. It defines
three levels of conformance: Level A, Level AA, and Level AAA. Accessibility
widget is following the best guidelines and is partially conformant with WCAG
2.0 level AA.


TECHNICAL INFORMATION

Accessibility widget is an app supported in Shopify and Wordpress environments.
The app relies on the following technologies:

 * HTML
 * CSS
 * JavaScript
 * PHP
 * MySQL


ACCESSIBILITY WIDGET FEATURES

When a site has Accessibility widget installed, the website can be adjusted with
keyboard navigation using the “tab” key (WCAG 2.1/2.1.1). Additionally, see the
list of all provided Accessibility widget features and tools for better website
experience:

ZOOM | WCAG 2.1 / 1.4.4

This feature enables users to enhance the size of the text to up to three times
the original text for better text readability.

BIGGER CURSOR

Makes the cursor bigger and more prominent. Increases the size for better site
browsing.

INVERT COLORS

Invert the colors of the website content. For those with decreased vision, the
high contrast greatly helps to read the site better.

TWEAK CONTRAST | WCAG 2.1 / 1.4.6

This feature lets users manually select from two options: to enhance the
contrast of the website or to decrease the contrast.

TWEAK BRIGHTNESS | WCAG 2.1 / 1.4.6

This feature lets users update the brightness on the site. The content can
either be made brighter or darker.

GRAYSCALE | WCAG 2.1 / 1.4.6

Users can turn on grayscale, making the website content appear only in shades of
gray. This benefits people with visual impairment.

HIGHLIGHT LINKS

Highlight links to make them more prominent.

HIDE IMAGES

Hide images on the site. This provides better site readability for people with
visual impairment.

READ PAGE

A feature that allows a voice to read the text on your site out loud to
visitors.


NOTES & FEEDBACK

We always try to update our services and operate in the best possible manner to
benefit all of our clients and their site visitors. If you experience any issues
with the Accessibility widget provided service, however, please email our
developer hujjatnazari@gmail.com. He respond within 3 business days.

We cannot control or correct problems with third-party sites, but please let us
know if you encounter difficulty with any sites we link to so we can pass the
information along to the site owners. You may also want to address your concerns
directly to these third parties.

Adjust font size Checked mark Font size

Screen Reader Checked mark Screen Reader Contrast Checked mark Contrast Inverted
Low Contrast High Contrast

Highlight Links Checked mark Highlight Links Change Cursor Checked mark Cursor
Text align Text left Text right Checked mark Text Align Left Center Right
=
Saturation icon Checked mark Saturation Low Saturation High Saturation Grayscale

Line Height Checked mark Line Height

Letter Spacing Checked mark Letter Spacing

Stop Animations Checked mark Stop Animations Mute sounds Checked mark Mute
Sounds Hide Image Checked mark Hide Images


POWERED BY SMART ACCESSIBILITY ↗