noova.com Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: https://www.noova.com/
Effective URL: https://noova.com/
Submission: On May 31 via api from US — Scanned from CA

Form analysis 7 forms found in the DOM

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, '1512x')">
                      <pre x-text="item.featured_image.src"></pre>
                    </a>
          </div>
        </template>
        <div class="flex-auto blocco-info-prodotto-drawer-cart">
          <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-html="item.product_title"></a>
          <div class="price-cart-drawer">
            <template x-if="item.line_level_discount_allocations.length">
              <div>
                <span class="visually-hidden">Prezzo</span>
                <del class="line-through" x-html="formatMoney(item.original_price)"></del>
                <span class="visually-hidden">Prezzo di vendita</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="Sconto">
                <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>
          <template x-if="item.variant_title">
            <p class="taglia-carrello text-sm">
              <l class="l-it">Taglia</l>
              <l class="l-en">Size</l> <span x-text="item.variant_title"> </span>
            </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="Sconto">
              <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="'Rimuovi uno ' + 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="Quantità" 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="'Aggiungi uno ' + 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>Rimuovi </small>
            <span class="visually-hidden" x-text="item.title"></span>
          </button>
        </div>
        <div class="ml-1 text-right">
        </div>
      </div>
    </template>
  </div>
  <div class="border-t-grid border-grid-color py-4 section-x-padding">
    <label for="CartSpecialInstructions" class="text-sm"> Aggiungi note al tuo ordine </label>
    <textarea name="note" id="CartSpecialInstructions" class="block mt-1 p-2 w-full border-text border-current text-sm bg-transparent" :class="{ 'opacity-50 cursor-wait' : noteUpdating }" x-text="state.note"
      @keyup.debounce.1000ms="keyupOnInput($event)" @change="updateNote($event)">              </textarea>
  </div>
  <div class="blocco-finale-cart 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">Sconto</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 parziale-cart">
        <span>Totale parziale</span>
        <span class="ml-2" x-html="formatMoney(state.total_price)"></span>
      </p><!--
              <p class="my-2 md:my-4 text-sm accent-links-primary text-right">
                Tasse incluse e spese di spedizione calcolate al checkout

              </p>-->
      <div class="text-right">
        <div>
          <input type="submit" name="checkout"
            class="checkout-button-cart-drawer 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>
    </div>
  </div>
</form>

GET /search

<form action="/search" method="get" class="input-group search" role="search">
  <label for="search" class="hidden">Invia</label>
  <div class="flex items-center justify-between">
    <button class="py-2 mr-4" aria-label="Invia" 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">Invia</span>
    </button>
    <input x-ref="searchInput" id="search" type="text" name="q" value="" placeholder="Cerca" class="placeholder-current font-body w-full block bg-transparent" aria-label="Cerca" data-search-input="">
    <button class="py-2 ml-4" @click="searchOpen = false" type="button">
      <span class="visually-hidden">Chiudi</span>
      <span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
          <path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
        </svg></span>
    </button>
  </div>
</form>

GET /search

<form action="/search" method="get" class="input-group search" role="search">
  <label for="search" class="hidden">Invia</label>
  <div class="flex items-center justify-between">
    <button class="py-2 mr-4" aria-label="Invia" 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">Invia</span>
    </button>
    <input x-ref="searchInput" id="search" type="text" name="q" value="" placeholder="Cerca" class="placeholder-current font-body w-full block bg-transparent" aria-label="Cerca" data-search-input="">
    <button class="py-2 ml-4" @click="searchOpen = false" type="button">
      <span class="visually-hidden">Chiudi</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="newsletter l-it">
    <input type="email" name="contact[email]" class="required email" value="Il tuo indirizzo email" id="Email-template--22562579906909__section_grid_newsletter_77ziXe" required=""><input value="Iscriviti" type="submit" name="commit" id="Subscribe"
      class="button">
  </div>
  <div class="newsletter l-en">
    <input type="email" name="contact[email]" class="required email" value="Your email adress" id="Email-template--22562579906909__section_grid_newsletter_77ziXe" required=""><input value="Subscribe" type="submit" name="commit" id="Subscribe"
      class="button">
  </div>
  <div id="mce-responses" class="clear foot">
    <div class="response" id="mce-error-response" style="display:none"></div>
    <div class="response" id="mce-success-response" style="display:none"></div>
  </div>
  <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
  <!-- <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text"
                                name="b_8235c5dd33b84941ff5b1222c_203bf2224d" tabindex="-1" value=""></div> -->
  <p class="subtitle-newsletter l-it">Iscriviti per ricevere offerte esclusive.<br> Inviando la tua e-mail, accetti l'informativa<br> sulla privacy di NOOVA.</p>
  <p class="subtitle-newsletter l-en">Signup for new releases and exclusive offers.<br> By submiting your email, you agree to <br>NOOVA's privacy policy.</p>
</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="newsletter l-it">
    <input type="email" name="contact[email]" class="required email" value="Il tuo indirizzo email" id="Email-template--22562579906909__section_grid_newsletter_77ziXe" required=""><input value="Iscriviti" type="submit" name="commit" id="Subscribe"
      class="button">
  </div>
  <div class="newsletter l-en">
    <input type="email" name="contact[email]" class="required email" value="Your email adress" id="Email-template--22562579906909__section_grid_newsletter_77ziXe" required=""><input value="Subscribe" type="submit" name="commit" id="Subscribe"
      class="button">
  </div>
  <div id="mce-responses" class="clear foot">
    <div class="response" id="mce-error-response" style="display:none"></div>
    <div class="response" id="mce-success-response" style="display:none"></div>
  </div>
  <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
  <!-- <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text"
                                name="b_8235c5dd33b84941ff5b1222c_203bf2224d" tabindex="-1" value=""></div> -->
  <p class="subtitle-newsletter l-it">Iscriviti per ricevere offerte esclusive.<br> Inviando la tua e-mail, accetti l'informativa<br> sulla privacy di NOOVA.</p>
  <p class="subtitle-newsletter l-en">Signup for new releases and exclusive offers.<br> By submiting your email, you agree to <br>NOOVA's privacy policy.</p>
</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="newsletter">
    <input type="email" name="contact[email]" class="required l-en email" value="" placeholder="Your email address" id="Email-footer" required=""><input value="Subscribe" type="submit" name="commit" id="Subscribe" class="l-en button">
    <input type="email" name="contact[email]" class="required l-it email" value="" placeholder="Il tuo indirizo email" id="Email-footer" required=""><input value="Iscriviti" type="submit" name="commit" id="Subscribe" class="l-it button">
  </div>
  <div id="mce-responses" class="clear foot">
    <div class="response" id="mce-error-response" style="display:none"></div>
    <div class="response" id="mce-success-response" style="display:none"></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="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="newsletter">
  <div class="newsletter">
    <input type="email" name="contact[email]" class="required l-en email" value="" placeholder="Your email address" id="Email-footer" required=""><input value="Subscribe" type="submit" name="commit" id="Subscribe" class="l-en button">
    <input type="email" name="contact[email]" class="required l-it email" value="" placeholder="Il tuo indirizo email" id="Email-footer" required=""><input value="Iscriviti" type="submit" name="commit" id="Subscribe" class="l-it button">
  </div>
  <div id="mce-responses" class="clear foot">
    <div class="response" id="mce-error-response" style="display:none"></div>
    <div class="response" id="mce-success-response" style="display:none"></div>
  </div>
</form>

Text Content

Salta al contenuto
Menu
Chiudi
 * Uomo
   * Bast
   * Batik
   * Magic
   * Lith
   * Tron
   * Vedi Tutto
 * Donna
   * Bast
   * Batik
   * Lith
   * Vedi Tutto
 * Made in Italy
 * Collabo
 * About
 * Contatti

 * Login
   

Italiano

Inglese

English

Italian


IL TUO CARRELLO - 0 PRODOTTI

Chiudi

Il carrello è vuoto.

Abilita i cookie per utilizzare il carrello

Prezzo Prezzo di vendita
/
−

TagliaSize



:

−


Rimuovi

Aggiungi note al tuo ordine

Sconto

Totale parziale




Chiudi


Italiano

Inglese

English

Italian


 * 

 * Uomo
    * Bast
    * Batik
    * Magic
    * Lith
    * Tron
    * Vedi Tutto

 * Donna
    * Bast
    * Batik
    * Lith
    * Vedi Tutto

 * Made in Italy
 * Collabo
 * About
 * Contatti




Login
Cerca
Invia
Invia Chiudi
0

Cerca
Invia
Invia Chiudi
0


SIZE GUIDE E VESTIBILITÀ

Questa è una tabella di conversione taglie per aiutarti a trovare il tuo numero.

 * 
 * 
 * 
 * 
 * 

BEST SELLERS

Bast •• 77 Nocturne

$398.00

Batik •• 06 Oyster Nabuk

$398.00

Summer Lith •• 30 Lilium

$440.00

Tron •• 76 Klein

$328.00

UOMO >

DONNA >

SPONSOR UFFICIALE

SCOPRI LE LITH

ABOUT NOOVA


LA RICERCA E LA RIVOLUZIONE
NEI MATERIALI


RESEARCH AND REVOLUTION
IN MATERIALS

Utilizziamo solo i materiali più pregiati per assicurare che le nostre sneakers
non solo abbiano un aspetto straordinario,
ma siano anche incredibilmente comode.

Utilizziamo solo i materiali più pregiati
per assicurare che le nostre sneakers non solo abbiano un aspetto straordinario,
ma siano anche incredibilmente comode.

We use only the finest materials to ensure that our sneakers no only look
greats, but also
incredibly comfortable.

We use only the finest materials
to ensure that our sneakers no only look greats, but also
incredibly comfortable.

Scopri di più

Discover more

BAST | ICONIC SNEAKER SOPHISTICATION

LITH | THE FUTURE OF RUN

TRON | VERSATILE STYLE STATEMENTS

BAST | ICONIC SNEAKER SOPHISTICATION

LITH | THE FUTURE OF RUN

TRON | VERSATILE STYLE STATEMENTS


ISCRIVITI ALLA NOSTRA NEWSLETTER


SIGN UP TO OUR NEWSLETTER

Iscriviti per ricevere offerte esclusive.
Inviando la tua e-mail, accetti l'informativa
sulla privacy di NOOVA.

Signup for new releases and exclusive offers.
By submiting your email, you agree to
NOOVA's privacy policy.


ISCRIVITI ALLA NOSTRA NEWSLETTER


SIGN UP TO OUR NEWSLETTER

Iscriviti per ricevere offerte esclusive.
Inviando la tua e-mail, accetti l'informativa
sulla privacy di NOOVA.

Signup for new releases and exclusive offers.
By submiting your email, you agree to
NOOVA's privacy policy.

Scopri Noova, l'eccezionale luminosità incontra uno stile iconico. Le nostre
scarpe Noova, ispirate alla brillantezza della stella Supernova, sono
caratterizzate da materiali riflettenti che rendono ogni sneaker unica.
Realizzate con competenza e passione in Veneto, le nostre calzature sono
sinonimo di alta qualità ed eleganza senza tempo. Esplora la nostra collezione,
che include l'iconico modello Bast 01, ed entrate in un mondo in cui la qualità
incontra lo stile.

FREE RETURNS

14-days free return policy.

SPEDIZIONI E RESI GRATUITI

Restituzione gratuita di 14 giorni.

PAGAMENTI SICURI

Accettiamo tutte le principali carte di credito.

SECURED PAYMENTS

we accept all major credit cards.

CUSTOMER SERVICE

Contattaci

CUSTOMER SERVICE

Top notch customer service


CONTATTI


CONTACT

contact@noova.it

+39 0381 1970426

Lunedì - Venerdì 8:30-17:30 CEST

Monday - Friday 8:30-17:30 CEST

Accettiamo:

We accept:


HELP


HELP

Spedizione

Delivery Information

Termini e condizioni di vendita

Sale Terms & Conditions

Resi

Returns & Refunds

Privacy Policy

Privacy Notice

FAQs

Shopping FAQs


MENU

Made in Italy

Made in Italy

Collabo

Collabo

Man

Uomo

Woman

Donna

About Us

About Us


CONTATTACI


LET’S STAY IN TOUCH

Join the newsletter.
Keep up to date with our latest
news and special offers.

Iscriviti alla newsletter.
TIeniti aggiornato sulle nostre ultime
novità e offerte speciali.

Instagram

Facebook

© 2024, Noova Space



All Rights Reserved


CONTATTI


CONTACT

contact@noova.it

+39 0381 1970426

Lunedì - Venerdì 8:30-17:30 CEST

Monday - Friday 8:30-17:30 CEST

Accettiamo:

We accept:


HELP


HELP

Spedizione

Delivery Information

Termini e condizioni di vendita

Sale Terms & Conditions

Resi

Returns & Refunds

Privacy Policy

Privacy Notice

FAQs

Shopping FAQs


MENU

Made in Italy

Made in Italy

Collabo

Collabo

Man

Uomo

Woman

Donna

About Us

About Us


CONTATTACI


LET’S STAY IN TOUCH

Join the newsletter.
Keep up to date with our latest
news and special offers.

Iscriviti alla newsletter.
TIeniti aggiornato sulle nostre ultime
novità e offerte speciali.

Instagram

Facebook

© 2024, Noova Space



All Rights Reserved



 * La scelta di una selezione si traduce in un aggiornamento completo della
   pagina.
 * Premere il tasto spazio quindi i tasti freccia per effettuare una selezione.