sweetstore.it Open in urlscan Pro
23.227.38.65  Public Scan

URL: https://sweetstore.it/
Submission Tags: sansec.io magecart Search All
Submission: On June 26 via api from US — Scanned from IT

Form analysis 7 forms found in the DOM

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">Cerca</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="Cerca">
    <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">Invia</span>
    </button>
  </div>
</form>

POST /cart

<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
  <div class="grid grid-cols-1 gap-gutter bg-border">
    <template x-for="(item, index) in state.items" :key="item.key">
      <div class="flex py-4 section-x-padding transition bg-scheme-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
        <template x-if="!(item.featured_image.url === null)">
          <div class="flex-shrink-0 w-10 md:w-20 mr-4">
            <a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
                      <img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
                      <pre x-text="item.featured_image.src"></pre>
                    </a>
          </div>
        </template>
        <div class="flex-auto">
          <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
          <template x-if="item.variant_title">
            <p class="text-sm" x-text="item.variant_title"></p>
          </template>
          <p class="text-sm" x-text="item.vendor"></p>
          <template x-if="item.selling_plan_allocation">
            <p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
          </template>
          <template x-for="property in flatProperties(item.properties)" :key="property.name">
            <p class="text-sm">
              <span x-text="property.name"></span>: <span x-text="property.value"></span>
            </p>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="lg:hidden mt-1 text-sm text-scheme-accent" aria-label="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="' ' + 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="' ' + 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>Rimuovere </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">Prezzo regolare</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-scheme-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>
      </div>
    </template>
  </div>
  <div class="border-t-grid border-grid-color py-4 section-x-padding">
    <label for="CartSpecialInstructions" class="text-sm"> Aggiungi una nota 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="bottom-0 py-4 section-x-padding bg-scheme-background border-t-grid border-grid-color">
    <div :class="{ 'opacity-50  cursor-wait': updating }">
      <template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
        <p class="flex justify-between text-scheme-accent">
          <span class="visually-hidden">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">
        <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-scheme text-right"> Tasse incluse. <a href="<span%20class='notranslate'>%7B%7B%20link%20%7D%7D</span>">Spedizione</a> calcolata al momento del pagamento. </p>
      <div class="text-right">
        <div>
          <input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full  bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text"
            :disabled="updating" value="Checkout">
        </div>
        <div class="w-full md:mt-2 additional-checkout-buttons ">
          <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
        </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"></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"></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>

<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-Y6gNxa" novalidate="" tabindex="-1"
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; max-width: 450px; 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; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; min-height: 100px; 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 id="email_85478222" class="needsclick go3101990765 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Email" aria-label="Email" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 0px; padding: 0px 0px 0px 16px; height: 40px; text-align: left; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(0, 0, 0);">
          <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: 0px; position: relative; flex: 0 1 auto;"><button
          class="needsclick go279450927 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgb(94, 23, 255); border-radius: 0px; border-style: solid; border-color: rgb(55, 63, 71); border-width: 0px; color: rgb(255, 255, 255); font-family: Poppins-Klaviyo-Hosted, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 18px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding: 0px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: 40px;">RICEVILO
          ORA</button></div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</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-template--19200948765010__4652f51e-7b71-487e-a806-6ccde2607a30">Email</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-template--19200948765010__4652f51e-7b71-487e-a806-6ccde2607a30" value="" placeholder="Email"
      autocorrect="off" autocapitalize="off">
    <button class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-scheme-accent border-b-text border-scheme-text  hover:border-scheme-accent pb-1" type="submit" name="commit" id="Subscribe">
      <span class=" whitespace-nowrap">Iscriviti&nbsp;→</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">
    <h2 class="visually-hidden" id="country-heading"> Paese </h2>
    <div class="relative" data-disclosure-country="">
      <button type="button" class="text-sm border-b-text border-scheme-text py-1" aria-expanded="false" aria-controls="country-list" aria-describedby="country-heading" data-disclosure-toggle=""> Italia (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="country-list" class="disclosure-list absolute bg-scheme-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-40">
          <a class="block p-2" href="#" data-value="FR" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">Francia (EUR €)</span>
                        </a>
        </li>
        <li class="text-sm w-40">
          <a class="block p-2" href="#" data-value="DE" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">Germania (EUR €)</span>
                        </a>
        </li>
        <li class="text-sm w-40">
          <a class="block p-2" href="#" aria-current="true" data-value="IT" data-disclosure-option="" tabindex="-1">
                          <span class="border-scheme-text border-b-text">Italia (EUR €)</span>
                        </a>
        </li>
        <li class="text-sm w-40">
          <a class="block p-2" href="#" data-value="CH" data-disclosure-option="" tabindex="-1">
                          <span class="border-transparent border-b-text">Svizzera (EUR €)</span>
                        </a>
        </li>
      </ul>
      <input type="hidden" name="country_code" id="CountrySelector" value="IT" data-disclosure-input="">
    </div>
  </div>
</form>

Text Content

Questo sito Web utilizza i cookie per assicurarti la migliore esperienza sul
nostro sito Web. Leggi di più >
Accetto
Menù
 * Abbigliamento
   * T-shirt
   * Felpe
   * Pantaloni
   * Tute intere
   * Jeans
   * Giacchetti
   * Giubbotti
   * Camicie
   * Maglioni
   * Tute
   * Canotte
   * Pantaloncini
   * Costumi da bagno
   * Vedi tutto
 * Accessori
   * Cappelli
   * Occhiali da sole
   * Zaini
   * Bracciali
   * Anelli
   * Portachiavi
   * Pochette
   * Marsupi
   * Portafogli
   * Calzini
   * Ciabatte
   * Valigie
   * Vedi tutto
 * Mystery Box
 * Mid Season Sale
 * Brand
   * !SOLID
   * 5TATE OF MIND
   * ANERKJENDT
   * Arte
   * BARBOUR
   * BARBOUR INTERNATIONAL
   * Berna
   * BIRKENSTOCK
   * Black Mirror
   * Block Eleven BL. 11
   * Calvin Klein
   * Circle
   * Clap Your Hand
   * Deus Ex Machina
   * DICKIES
   * Diego Rodriguez
   * DISCLAIMER
   * Dolly Noire
   * DON'T WASTE CULTURE
   * Double U Frenk
   * Dsquared2
   * GIANNI LUPO
   * HAMAKI-HO
   * IMPURE
   * IUTER
   * KANGOL
   * KAPPA
   * LDT Soft
   * Manifattura Borghese
   * Medicom Toy
   * MNML COUTURE
   * MUSHROOM
   * No Panic
   * Octopus Brand
   * Ookli
   * PABLIC
   * PHOBIA Archive
   * Propaganda
   * RED ZONE
   * Reebok Classic
   * Refrigiwear
   * REVOLUTION
   * Shoeshine
   * Sik Silk
   * Sprayground
   * STARTER
   * Super Tokyo
   * Sweetstore
   * Sweetstore.it
   * TEMATICO
   * THE DUDES
   * THE NEW ORIGINALS
   * TOMMY HILFIGER
   * Zero Costruction

Cerca Invia
 * Facebook
 * Instagram
 * Email


IL TUO CARRELLO - 0 ELEMENTI

Il carrello è vuoto.

Abilita i cookie per utilizzare il carrello

:

−


Rimuovere
Prezzo regolare Prezzo di vendita
/
−

Aggiungi una nota al tuo ordine

Sconto

totale parziale

Tasse incluse. Spedizione calcolata al momento del pagamento.




PAGA IN 3 COMODE RATE CON SCALAPAY - PAGAMENTO ALLA CONSEGNA - SPEDIZIONE
GRATUITA A PARTIRE DA €100 - SPEDIZIONE EXPRESS IN 24/48 ORE - PAGA IN 3 COMODE
RATE CON SCALAPAY - PAGAMENTO ALLA CONSEGNA - SPEDIZIONE GRATUITA A PARTIRE DA
€100 - SPEDIZIONE EXPRESS IN 24/48 ORE - PAGA IN 3 COMODE RATE CON SCALAPAY -
PAGAMENTO ALLA CONSEGNA - SPEDIZIONE GRATUITA A PARTIRE DA €100 - SPEDIZIONE
EXPRESS IN 24/48 ORE - PAGA IN 3 COMODE RATE CON SCALAPAY - PAGAMENTO ALLA
CONSEGNA - SPEDIZIONE GRATUITA A PARTIRE DA €100 - SPEDIZIONE EXPRESS IN 24/48
ORE -

Abbigliamento
 * T-shirt
 * Felpe
 * Pantaloni
 * Tute intere
 * Jeans
 * Giacchetti
 * Giubbotti
 * Camicie
 * Maglioni
 * Tute
 * Canotte
 * Pantaloncini
 * Costumi da bagno
 * Vedi tutto

Accessori
 * Cappelli
 * Occhiali da sole
 * Zaini
 * Bracciali
 * Anelli
 * Portachiavi
 * Pochette
 * Marsupi
 * Portafogli
 * Calzini
 * Ciabatte
 * Valigie
 * Vedi tutto

Mystery Box Mid Season Sale Brand
Ricerca
Invia
Invia
0 elementi

Menù
Ricerca
Invia
Invia
0 elementi
Sorry, your browser doesn't support embedded videos.


NUOVE COLLEZIONI SS24

Scopri Ora →
A CHI NON PIACCIONO LE SORPRESE? SCOPRI LE NOSTRE MYSTERY BOX - ARTICOLI DELLA
COLLEZIONE AUTUNNO/INVERNO IN SALDO FINO AL 60% - A CHI NON PIACCIONO LE
SORPRESE? SCOPRI LE NOSTRE MYSTERY BOX - ARTICOLI DELLA COLLEZIONE
AUTUNNO/INVERNO IN SALDO FINO AL 60% - A CHI NON PIACCIONO LE SORPRESE? SCOPRI
LE NOSTRE MYSTERY BOX - ARTICOLI DELLA COLLEZIONE AUTUNNO/INVERNO IN SALDO FINO
AL 60% - A CHI NON PIACCIONO LE SORPRESE? SCOPRI LE NOSTRE MYSTERY BOX -
ARTICOLI DELLA COLLEZIONE AUTUNNO/INVERNO IN SALDO FINO AL 60% -



ULTIMI ARRIVI

Mostra tutto →
 * T-SHIRT VIOLA STAMPA SUL RETRO
   On sale
   
   
   DISCLAIMER
   
   T-SHIRT VIOLA STAMPA SUL RETRO
   
   Prezzo regolare€59,00 Prezzo di vendita€47,20
 * JEANS 90'S STRAIGHT LIGHT
   On sale
   
   
   Calvin Klein
   
   JEANS 90'S STRAIGHT LIGHT
   
   Prezzo regolare€129,90 Prezzo di vendita€103,92
 * CAMICIA HARRIS TAILORED AMBLE SAND TARTAN
   On sale
   
   
   BARBOUR
   
   CAMICIA HARRIS TAILORED AMBLE SAND TARTAN
   
   Prezzo regolare€119,00 Prezzo di vendita€107,10
 * COSTUME CHARIZARD NERO
   On sale
   
   
   Dolly Noire
   
   COSTUME CHARIZARD NERO
   
   Prezzo regolare€70,00 Prezzo di vendita€56,00
 * CAMICIA A MANICHE CORTE CROCODILE DUSTY WHITE
   On sale
   
   
   IUTER
   
   CAMICIA A MANICHE CORTE CROCODILE DUSTY WHITE
   
   Prezzo regolare€89,00 Prezzo di vendita€71,20
 * T-SHIRT WORLDWIDE DARK NIGHT NAVY
   On sale
   
   
   TOMMY HILFIGER
   
   T-SHIRT WORLDWIDE DARK NIGHT NAVY
   
   Prezzo regolare€49,90 Prezzo di vendita€39,92
 * GIACCA MILANO FLOWERS VARSITY NERA E BIANCA
   On sale
   
   
   IUTER
   
   GIACCA MILANO FLOWERS VARSITY NERA E BIANCA
   
   Prezzo regolare€189,00 Prezzo di vendita€151,20
 * FELPA CROP VARSITY SQUADRATA NEWSPRINT
   On sale
   
   
   TOMMY HILFIGER
   
   FELPA CROP VARSITY SQUADRATA NEWSPRINT
   
   Prezzo regolare€99,90 Prezzo di vendita€79,92

 * 5TATE OF MIND •
 * BUT NOT •
 * CALVIN KLEIN •
 * DICKIES •
 * DISCLAIMER •
 * DOLLY NOIRE •
 * IUTER •
 * KANGOL •
 * MEDICOM TOY •
 * OCTOPUS •
 * PHOBIA ARCHIVE •
 * PROPAGANDA •
 * SPRAYGROUND •
 * TOMMY JEANS

Sorry, your browser doesn't support embedded videos.


SALDI FINO AL 60%

Scopri di Più →


SCOPRILI ORA

Mostra tutto →
 * JEANS 90S STRAIGHT CROPPED LIGHT
   On sale
   
   
   Calvin Klein
   
   JEANS 90S STRAIGHT CROPPED LIGHT
   
   Prezzo regolare€139,90 Prezzo di vendita€55,96
 * GIACCA DUKE WAX
   On sale
   
   
   BARBOUR INTERNATIONAL
   
   GIACCA DUKE WAX
   
   Prezzo regolare€400,00 Prezzo di vendita€280,00
 * PANTALONE TUTA NERO STAMPA BIANCA
   On sale
   
   
   DISCLAIMER
   
   PANTALONE TUTA NERO STAMPA BIANCA
   
   Prezzo regolare€89,00 Prezzo di vendita€44,50
 * FELPA CON CAPPUCCIO SPAZE NERA
   On sale
   
   
   MUSHROOM
   
   FELPA CON CAPPUCCIO SPAZE NERA
   
   Prezzo regolare€94,50 Prezzo di vendita€47,25


PROPAGANDA

Spring/Summer '24

Scopri la nuova collezione →


DOLLY NOIRE

Recap Drop

Scopri il nuovo drop →


ARTE

Streetwear couture

Guarda la nuova collezione →


PROPAGANDA

Spring/Summer '24

Scopri la nuova collezione →


DOLLY NOIRE

Recap Drop

Scopri il nuovo drop →


ARTE

Streetwear couture

Guarda la nuova collezione →


PROPAGANDA

Spring/Summer '24

Scopri la nuova collezione →
Precedente Slide Prossima Slide
 * 
 * 
 * 


50% OFF

Mostra tutto →

 * Calvin Klein
   
   –
   
   JEANS DAD DENIM LIGHT
   
   Prezzo regolare€129,90 Prezzo di vendita€51,96

 * THE NEW ORIGINALS
   
   –
   
   T-SHIRT FISHING FREDDY CREMA
   
   Prezzo regolare€65,00 Prezzo di vendita€32,50

 * Calvin Klein
   
   –
   
   GILET PADDED DENIM NERO E MARRONE
   
   Prezzo regolare€179,90 Prezzo di vendita€71,96

 * BARBOUR INTERNATIONAL
   
   –
   
   CAPPELLO NORTON DRILL NERO
   
   Prezzo regolare€65,00 Prezzo di vendita€45,50

 * Calvin Klein
   
   –
   
   JEANS 90S STRAIGHT CROPPED DENIM MEDIUM
   
   Prezzo regolare€119,90 Prezzo di vendita€47,96

 * Shoeshine
   
   –
   
   FELPA CON CAPPUCCIO OFFWHITE
   
   Prezzo regolare€69,90 Prezzo di vendita€27,96

 * THE NEW ORIGINALS
   
   –
   
   JEANS FREDDY PESCA
   
   Prezzo regolare€150,00 Prezzo di vendita€75,00

 * THE NEW ORIGINALS
   
   –
   
   GIACCA COACH CATNA NERO
   
   Prezzo regolare€190,00 Prezzo di vendita€95,00

 * STARTER
   
   –
   
   VARSITY JACKET VERDE PRATO
   
   Prezzo regolare€240,00 Prezzo di vendita€144,00

 * DISCLAIMER
   
   –
   
   PANTALONE TUTA NERO STAMPA BIANCA
   
   Prezzo regolare€89,00 Prezzo di vendita€44,50

 * MUSHROOM
   
   –
   
   FELPA CON CAPPUCCIO ALIEN SMOKE NERA
   
   Prezzo regolare€94,50 Prezzo di vendita€47,25

 * MUSHROOM
   
   –
   
   FELPA CON CAPPUCCIO SPAZE NERA
   
   Prezzo regolare€94,50 Prezzo di vendita€47,25

Sorry, your browser doesn't support embedded videos.
Scopri ora →

SUBITO IL 10% DI SCONTO

Entra nel giro! Hai il 10% di sconto subito. Lascia la tua email e fai il carico
di stile!
P.S. Tranquillo non ti rompiamo le palle con spam, solo cose fresh al momento
giusto.

RICEVILO ORA


ENTRA NEL GIRO!

Iscriviti alla nostra newsletter per rimanere aggiornato su tutte le novità

Email Iscriviti →

Ti vestiamo dalla testa ai piedi con i migliori brand del panorama streetwear e
ti assicuriamo una consegna gratuita in 24/48h dal click. Se hai problemi con il
tuo ordine o hai domande, ci trovi su WhatsApp al +44 7748 307039 o cliccando
qui.

 * Spedizioni
 * Resi e Rimborsi
 * Termini e Condizioni
 * Privacy e Cookie Policy
 * Contatti
 * Modulo reso
 * Termini e condizioni del servizio
 * Informativa sui rimborsi


FOLLOW US

 * Facebook
 * Instagram
 * Email

© 2024, Sweetstore.it.

Powered by Reka Consulting Srl

Sweetstore.it - P.IVA 03230040598


METODI DI PAGAMENTO

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


PAESE

Italia (EUR €)
 * Francia (EUR €)
 * Germania (EUR €)
 * Italia (EUR €)
 * Svizzera (EUR €)



 * 
 *