kuurth.com Open in urlscan Pro
23.227.38.66  Public Scan

Submitted URL: http://kuurth.de/
Effective URL: https://kuurth.com/
Submission: On March 09 via api from US — Scanned from DE

Form analysis 6 forms found in the DOM

POST /localization

<form action="/localization" method="POST" class="recommendation-modal__form"><input name="_method" type="hidden" value="PUT"><input name="source" type="hidden" value="geolocation_recommendation"><input name="return_to" type="hidden" value="/"><input
    name="country_code" type="hidden" value="DE"><input name="locale_code" type="hidden" value="de"><button class="recommendation-modal__button" type="submit" style="background-color: rgb(0, 0, 0); color: rgb(255, 255, 255);">Fortfahren</button>
</form>

GET /search

<form class="my-6 section-x-padding" action="/search" method="get" role="search">
  <div class="flex w-full max-w-xs items-end">
    <label for="sidebar-search" class="visually-hidden">Search</label>
    <input class="min-w-0 flex-auto bg-transparent border-current border-b-text placeholder-current py-1.5" id="sidebar-search" type="text" name="q" placeholder="Search">
    <button class="px-1" type="submit">
      <span class="inline-block w-5 h-5"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
          <path fill-rule="evenodd"
            d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
          </path>
        </svg></span>
      <span class="visually-hidden">Submit</span>
    </button>
  </div>
</form>

POST /cart

<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
  <div class="grid grid-cols-1 gap-gutter bg-border">
    <template x-for="(item, index) in state.items" :key="item.key">
      <div class="flex py-4 section-x-padding transition bg-primary-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
        <template x-if="!(item.featured_image.url === null)">
          <div class="flex-shrink-0 w-10 md:w-20 mr-4">
            <a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
                      <img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
                      <pre x-text="item.featured_image.src"></pre>
                    </a>
          </div>
        </template>
        <div class="flex-auto">
          <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
          <template x-if="item.variant_title">
            <p class="text-sm" x-text="item.variant_title"></p>
          </template>
          <template x-if="item.selling_plan_allocation">
            <p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
          </template>
          <template x-for="property in flatProperties(item.properties)" :key="property.name">
            <p class="text-sm">
              <span x-text="property.name"></span>: <span x-text="property.value"></span>
            </p>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="lg:hidden mt-1 text-sm text-primary-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                </li>
              </template>
            </ul>
          </template>
          <div class="flex mt-1 lg:mt-2 items-center">
            <button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
              </svg>
            </button>
            <input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
              @keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
            <button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
              </svg>
            </button>
          </div>
          <button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
            <small>Remove </small>
            <span class="visually-hidden" x-text="item.title"></span>
          </button>
        </div>
        <div class="ml-1 text-right">
          <template x-if="item.line_level_discount_allocations.length">
            <div>
              <span class="visually-hidden">Regular price</span>
              <del class="line-through" x-html="formatMoney(item.original_price)"></del>
              <span class="visually-hidden">Sale price</span>
              <span class="" x-html="formatMoney(item.final_line_price)"></span>
            </div>
          </template>
          <template x-if="!item.line_level_discount_allocations.length">
            <span class="" x-html="formatMoney(item.final_line_price)"></span>
          </template>
          <template x-if="item.unit_price_measurement">
            <div class="text-xs">
              <span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
              <span x-text="item.unit_price_measurement.reference_unit"></span>
            </div>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="hidden lg:block mt-1 text-sm text-primary-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                </li>
              </template>
            </ul>
          </template>
        </div>
      </div>
    </template>
  </div>
  <div class="bottom-0 py-4 section-x-padding bg-primary-background border-t-grid border-grid-color">
    <div :class="{ 'opacity-50  cursor-wait': updating }">
      <template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
        <p class="flex justify-between text-primary-accent">
          <span class="visually-hidden">Discount</span>
          <span x-text="application.title"></span>
          <span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
        </p>
      </template>
      <p class="flex justify-between">
        <span>Total</span>
        <span class="ml-2" x-html="formatMoney(state.total_price)"></span>
      </p>
      <p class="my-2 md:my-4 text-sm accent-links-scheme text-right"> Taxes included. </p>
      <div class="text-right">
        <div>
          <input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full  bg-primary-text text-primary-text-overlay hover:bg-primary-accent hover:text-primary-accent-overlay border-primary-text hover:border-primary-accent border-text"
            :disabled="updating" value="CHECKOUT">
        </div>
        <div class="msg">
          <p class="number term">By clicking on checkout I confirm that I have read and accept the <a target="_blank" href="/pages/general-conditions-of-purchase" style="text-decoration:underline;">purchase conditions</a> and the
            <a target="_blank" href="/pages/privacy-policy" style="text-decoration:underline;">privacy policy</a>. </p>
        </div>
      </div>
    </div>
  </div>
</form>

GET /search

<form action="/search" method="get" class="input-group search" role="search">
  <label for="search" class="hidden">Submit</label>
  <div class="flex items-center justify-between">
    <button class="py-2 mr-4" aria-label="Submit" type="submit">
      <span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
          <path fill-rule="evenodd"
            d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
          </path>
        </svg></span>
      <span class="visually-hidden">Submit</span>
    </button>
    <input x-ref="searchInput" id="search" type="text" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-transparent" aria-label="Search" data-search-input="">
    <button class="py-2 ml-4" @click="searchOpen = false" type="button">
      <span class="visually-hidden">Close</span>
      <span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
          <path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
        </svg></span>
    </button>
  </div>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="newsletter">
  <div class="lg:ml-4 lg:flex items-end">
    <label class="visually-hidden" for="Email-footer">Email address</label>
    <input type="email" class="placeholder-current font-body border-b-text border-current w-full block bg-transparent pb-1" name="contact[email]" id="Email-footer" value="" placeholder="Email address" autocorrect="off" autocapitalize="off">
    <div class="msg">
      <input type="checkbox" class="number term3">&nbsp; I have read and accept the <a target="_blank" href="/pages/privacy-policy" style="text-decoration:underline;">privacy policy.</a>
      <br>
      <p class="notice3 hide" style="color:red">Please accept our policies to continue.</p>
    </div>
    <button class="hide submitCheckout3 mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-primary-accent border-b-text border-primary-text  hover:border-primary-accent pb-1" type="submit" name="commit"
      id="Subscribe">
      <span class="uppercase whitespace-nowrap">Subscribe</span>
    </button>
    <button onclick="myFunction3()" class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-primary-accent border-b-text border-primary-text  hover:border-primary-accent pb-1" type="button"
      name="commit" id="Subscribe">
      <span class="uppercase whitespace-nowrap">Subscribe</span>
    </button>
  </div>
</form>

POST /localization

<form method="post" action="/localization" id="localization_form" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data" data-disclosure-form=""><input type="hidden" name="form_type" value="localization"><input
    type="hidden" name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="inline-block mr-4">
    <h2 class="visually-hidden" id="lang-heading"> Language </h2>
    <div class="relative" data-disclosure-locale="">
      <button type="button" class="text-sm border-b-text border-footer-text py-1" aria-expanded="false" aria-controls="lang-list" aria-describedby="lang-heading" data-disclosure-toggle=""> English <span class="inline-block ml-1 w-3 fill-current">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-chevron-down" viewBox="0 0 24 24">
            <path fill-rule="evenodd" d="M12 16.596L4.222 8.818l1.414-1.414L12 13.768l6.364-6.364 1.414 1.414z"></path>
          </svg>
        </span>
      </button>
      <ul id="lang-List" class="disclosure-list absolute bg-footer-background opacity-0 top-0 lg:left-auto lg:right-0 transform transition-opacity border-text border-theme-color py-2" data-disclosure-list="" inert="" aria-hidden="true">
        <li class="text-sm">
          <a class="block p-2" href="#" lang="en" aria-current="true" data-value="en" data-disclosure-option="" tabindex="-1">
                          <span class="border-footer-text border-b-text">English</span>
                        </a>
        </li>
        <li class="text-sm">
          <a class="block p-2" href="#" lang="de" data-value="de" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">Deutsch</span>
                        </a>
        </li>
        <li class="text-sm">
          <a class="block p-2" href="#" lang="es" data-value="es" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">Español</span>
                        </a>
        </li>
        <li class="text-sm">
          <a class="block p-2" href="#" lang="fr" data-value="fr" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">français</span>
                        </a>
        </li>
        <li class="text-sm">
          <a class="block p-2" href="#" lang="it" data-value="it" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">Italiano</span>
                        </a>
        </li>
      </ul>
      <input type="hidden" name="locale_code" id="LocaleSelector" value="en" data-disclosure-input="">
    </div>
  </div>
  <div class="inline-block">
    <h2 class="visually-hidden" id="currency-heading"> Currency </h2>
    <div class="relative" data-disclosure-currency="">
      <button type="button" class="text-sm border-b-text border-footer-text py-1" aria-expanded="false" aria-controls="currency-list" aria-describedby="currency-heading" data-disclosure-toggle=""> EUR €<span
          class="inline-block ml-1 w-3 fill-current">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-chevron-down" viewBox="0 0 24 24">
            <path fill-rule="evenodd" d="M12 16.596L4.222 8.818l1.414-1.414L12 13.768l6.364-6.364 1.414 1.414z"></path>
          </svg>
        </span>
      </button>
      <ul id="currency-list" class="disclosure-list absolute bg-footer-background opacity-0 top-0 left-0 lg:left-auto lg:right-0 transform transition-opacity border-text border-theme-color py-2" data-disclosure-list="" inert="" aria-hidden="true">
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="AED" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">AED د.إ</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="ARS" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">ARS $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="AUD" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">AUD $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="BRL" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">BRL R$</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="CAD" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">CAD $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="CHF" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">CHF CHF</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="CLP" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">CLP $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="CRC" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">CRC ₡</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="DKK" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">DKK kr.</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" aria-current="true" data-value="EUR" data-disclosure-option="" tabindex="-1">
                          <span class="border-footer-text border-b-text">EUR €</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="GBP" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">GBP £</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="JPY" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">JPY ¥</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="MXN" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">MXN $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="NOK" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">NOK kr</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="NZD" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">NZD $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="PLN" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">PLN zł</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="SEK" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">SEK kr</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="USD" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">USD $</span>
                        </a>
        </li>
        <li class="text-sm w-20">
          <a class="block p-2" href="#" data-value="UYU" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">UYU $</span>
                        </a>
        </li>
      </ul>
      <input type="hidden" name="currency_code" id="CurrencySelector" value="EUR" data-disclosure-input="">
    </div>
  </div>
</form>

Text Content

Cookie Policy
Kuurth uses its own and third party cookies to offer you a good browsing
experience.More information
PreferencesCloseAccept all



DEIN STANDORT IST AUF DEUTSCHLAND FESTGELEGT

 * In EUR € einkaufen
 * Versandoptionen für Deutschland anzeigen
 * Die Sprache ist auf Deutsch festgelegt

Fortfahren
Land und Sprache ändern

Skip to content
Menu
Close
 * Home
 * Broken era
 * Jewelry
   * Categories
     * Rings
     * Necklaces
     * Earrings
     * Bracelets
     * Watches
     * View all
   * Collections
     * Broken era
     * Lumière
     * V2
     * Cupid and love
     * Old skull
     * Arcane
     * Quotes
 * Best sellers

 * Log in
 * Create account
 * Locate your order
 * Contact

Search Submit
 * Facebook
 * Pinterest
 * Instagram
 * Email


YOUR CART - 0 ITEMS

Close


15% OFF WITH THE CODE: WINTER




Discover our collections



Your cart is currently empty.


Discover our collections

Enable cookies to use the shopping cart

:

−


Remove
Regular price Sale price
/
−

Discount

Total

Taxes included.

By clicking on checkout I confirm that I have read and accept the purchase
conditions and the privacy policy.



Close

15% OFF WITH THE CODE: WINTER

0
Days
:
19
Hours
:
27
Min.
:
41
Sec.




Home Broken era
Jewelry


CATEGORIES

 * Rings
 * Necklaces
 * Earrings
 * Bracelets
 * Watches
 * View all


COLLECTIONS

 * Broken era
 * Lumière
 * V2
 * Cupid and love
 * Old skull
 * Arcane
 * Quotes

Best sellers
Log in
Search
Submit
Submit Close
0 items

Menu
0 items
BROKEN ERA
LUMIÈRE
BROKEN ERA
LUMIÈRE
BROKEN ERA
LUMIÈRE
Previous slide Next slide
 * 
 * 

 * Starry Night - Ring BE
   Inspired by Van Gogh
   
   Starry Night - Ring BE
   
   €79,95
 * The Great Wave off Kanagawa - Ring BE
   Inspired by Hokusai
   
   The Great Wave off Kanagawa - Ring BE
   
   €84,95
 * Soft Watch Exploding - Gold Ring
   Inspired by Salvador Dalí
   
   Soft Watch Exploding - Gold Ring
   
   €69,95
 * Soft Watch Exploding - Ring
   Inspired by Salvador Dalí
   
   Soft Watch Exploding - Ring
   
   €64,95
 * Skull of a Skeleton with Burning Cigarette - Ring BE
   Inspired by Van Gogh
   
   Skull of a Skeleton with Burning Cigarette - Ring BE
   
   €54,95
 * Skull of a Skeleton with Burning Cigarette - Gold Necklace
   Inspired by Van Gogh
   
   Skull of a Skeleton with Burning Cigarette - Gold Necklace
   
   €64,95
 * Skull of a Skeleton with Burning Cigarette - Necklace
   Inspired by Van Gogh
   
   Skull of a Skeleton with Burning Cigarette - Necklace
   
   €54,95
 * Soft Watch Exploding - Gold Bracelet
   Inspired by Salvador Dalí
   
   Soft Watch Exploding - Gold Bracelet
   
   €94,95

 * Rings
 * Necklaces
 * Earrings
 * Bracelets
 * Watches


 * Starry Night - Ring
   Inspired by Van Gogh
   
   Starry Night - Ring
   
   €54,95
 * Starry Night - Gold Ring
   Inspired by Van Gogh
   
   Starry Night - Gold Ring
   
   €59,95
 * Water Lilies - Gold Ring
   Inspired by Monet
   
   Water Lilies - Gold Ring
   
   €59,95
 * Water Lilies - Ring
   Inspired by Monet
   
   Water Lilies - Ring
   
   €54,95
 * The Arles Sunflowers - Gold Ring LC
   Inspired by Van Gogh
   
   The Arles Sunflowers - Gold Ring LC
   
   SOLD OUT
 * The Arles Sunflowers - Ring LC
   Inspired by Van Gogh
   
   The Arles Sunflowers - Ring LC
   
   €54,95
 * Impression, Sunrise - Ring
   Inspired by Monet
   
   Impression, Sunrise - Ring
   
   €49,95
 * Impression, Sunrise - Gold Ring
   Inspired by Monet
   
   Impression, Sunrise - Gold Ring
   
   €54,95




BEST SELLERS

 * Fallen Angel - Ring
   Inspired by Cabanel
   
   Fallen Angel - Ring
   
   €47,95
 * Fallen Angel - Necklace V2
   Inspired by Cabanel
   
   Fallen Angel - Necklace V2
   
   €49,95
 * Fallen Angel - Necklace
   Inspired by Cabanel
   
   Fallen Angel - Necklace
   
   €44,95
 * Almond Blossom - Ring
   Inspired by Van Gogh
   
   Almond Blossom - Ring
   
   €39,95
 * Starry Night - Ring
   Inspired by Van Gogh
   
   Starry Night - Ring
   
   €54,95
 * Water Lilies - Ring
   Inspired by Monet
   
   Water Lilies - Ring
   
   €54,95
 * Skull of a Skeleton with Burning Cigarette - Ring
   Inspired by Van Gogh
   
   Skull of a Skeleton with Burning Cigarette - Ring
   
   €54,95
 * Rhythms - Ring
   Inspired by Robert Delaunay
   
   Rhythms - Ring
   
   Regular price€39,95 Sale price€37,95
 * The creation of Adam - Ring V3
   Inspired by Michelangelo
   
   The creation of Adam - Ring V3
   
   €49,95
 * Bedroom in Arles - Ring
   Inspired by Van Gogh
   
   Bedroom in Arles - Ring
   
   €44,95
 * The creation of Adam - Ring
   Inspired by Michelangelo
   
   The creation of Adam - Ring
   
   from €37,95
 * Vitruvian Man - Ring
   Inspired by Da Vinci
   
   Vitruvian Man - Ring
   
   €39,95


BLOG POSTS

More ART FOR ALL


 1. THE GENIUS OF LEONARDO DA VINCI
    
    "IS IT STRANGE THAT A LEADING SCIENTIST AND ENGINEER IS ALSO ONE OF THE BEST
    ARTISTS OF HIS TIME?"
    
    There are few people in the history of the world whose intellect and
    creative powers are as revered as Leonardo da Vinci (1452-1519). His
    voracious appetite for learning and his tremendous powers of observation
    made him both a great inventor and artist.
    
    Though his name is legendary, many people still do not know about the man
    himself. Who was Leonardo da Vinci? He was an inventor, engineer, architect,
    draftsman, artist, and more. He lived around Florence much of his life,
    making a living working on commissions for both art and engineering.
    
    Read more


 2. THE UNFORGETTABLE BEAUTY OF POST-IMPRESSIONISM
    
    "BEYOND WHAT THE EYE SEES, REACHING OUT TO WHAT THE HEART FEELS"
    
    For centuries, the ideal had been to make it impossible to see brush strokes
    altogether. And there was a strict hierarchy of subject matter, with
    historical and religious scenes at the top moving all the way down to the
    lowly still-life. The Impressionists came along and changed that. They
    experimented with brush strokes and painted scenes from everyday life.
    
    The Post-Impressionists picked up on those innovations, but they pushed them
    even further. A painter like Van Gogh infuses his canvases with lots of life
    — going beyond what his eye saw and into what his heart felt.
    
    Read more


 3. SANDRO BOTTICELLI’S ICONIC PAINTING THE BIRTH OF VENUS
    
    "THE BIRTH OF BEAUTY"
    
    The Birth of Venus gave the Italian Renaissance one of its most important
    treasures. Painted sometime around 1485, the idyllic vision of Venus
    arriving from the ocean on a seashell grips us even today.
    
    Read more

Subscribe to our newsletter

Email address
  I have read and accept the privacy policy.


Please accept our policies to continue.

Subscribe Subscribe
 * Art for all
 * About Kuurth
 * Distribution & Retail
 * FAQ
 * Jewelry care

 * Contact
 * Locate your order
 * Shipping
 * Cookie policy
 * General conditions of purchase
 * Exchanges and returns
 * Privacy Policy
 * Impressum

 * Facebook
 * Pinterest
 * Instagram
 * Email

© 2023, KUURTH.




PAYMENT METHODS

 * American Express
 * Apple Pay
 * Google Pay
 * Maestro
 * Mastercard
 * PayPal
 * Shop Pay
 * Visa


LANGUAGE

English
 * English
 * Deutsch
 * Español
 * français
 * Italiano


CURRENCY

EUR €
 * AED د.إ
 * ARS $
 * AUD $
 * BRL R$
 * CAD $
 * CHF CHF
 * CLP $
 * CRC ₡
 * DKK kr.
 * EUR €
 * GBP £
 * JPY ¥
 * MXN $
 * NOK kr
 * NZD $
 * PLN zł
 * SEK kr
 * USD $
 * UYU $



 * Choosing a selection results in a full page refresh.
 * Press the space key then arrow keys to make a selection.




CHOOSE TYPE OF COOKIES YOU ACCEPT USING




Strictly Required Cookies

These cookies are required for the website to run and cannot be switched off.
Such cookies are only set in response to actions made by you such as language,
currency, login session, privacy preferences. You can set your browser to block
these cookies but this might affect the way our site is working.


Analytics and Statistics

These cookies allow us to measure visitors traffic and see traffic sources by
collecting information in data sets. They also help us understand which products
and actions are more popular than others.


Marketing and Retargeting

These cookies are usually set by our marketing and advertising partners. They
may be used by them to build a profile of your interest and later show you
relevant ads. If you do not allow these cookies you will not experience targeted
ads for your interests.


Functional Cookies

These cookies enable our website to offer additional functions and personal
settings. They can be set by us or by third-party service providers that we have
placed on our pages. If you do not allow these cookies, these or some of these
services may not work properly.


Accept Selected Accept All
*By clicking on the above buttons, I give my consent on collecting my IP and
email (if registered). For more check GDPR Compliance