peeces.eu Open in urlscan Pro
23.227.38.65  Public Scan

URL: https://peeces.eu/
Submission: On August 07 via api from US — Scanned from CA

Form analysis 7 forms found in the DOM

POST /localization

<form action="/localization" method="POST"><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="CA"><button class="recommendation-modal__close-button" type="submit"><svg aria-label="Dismiss" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" style="height: 1em; width: 1em;">
      <path d="M11.414 10l6.293-6.293a.999.999 0 1 0-1.414-1.414L10 8.586 3.707 2.293a.999.999 0 1 0-1.414 1.414L8.586 10l-6.293 6.293a.999.999 0 1 0 1.414 1.414L10 11.414l6.293 6.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z"
        fill="#313131"></path>
    </svg></button></form>

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="CA"><button class="recommendation-modal__button" type="submit" style="background-color: rgb(168, 222, 250); color: rgb(0, 0, 0);">Continue</button></form>

POST /localization

<form method="post" action="/localization" id="annbar-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><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="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="BM">
      <country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-button">
            <span class="text-start">Bermuda (USD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0" role="option" data-value="BM" aria-selected="true">
              <span class="pointer-events-none">Bermuda (USD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="annbar-localization-language"><label class="label visually-hidden no-js-hidden" for="annbar-localization-language-button">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-language-button"
            style="--custom-select-button-width: -30px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-language-opt-0" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-language-opt-1" role="option" data-value="de">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-language-opt-2" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

GET /search

<form class="main-search__form" action="/search" method="get" autocomplete="off">
  <div class="main-search__input-container">
    <input class="main-search__input" type="text" name="q" autocomplete="off" placeholder="Search our store" aria-label="Search">
    <button class="main-search__button" type="submit" aria-label="Search"><svg class="icon" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation">
        <g transform="translate(3 3)" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd">
          <circle cx="7.824" cy="7.824" r="7.824"></circle>
          <path stroke-linecap="square" d="m13.971 13.971 4.47 4.47"></path>
        </g>
      </svg></button>
  </div>
  <script src="//peeces.eu/cdn/shop/t/181/assets/search-suggestions.js?v=136224079820713396391721912733" defer=""></script>
  <search-suggestions></search-suggestions>
</form>

POST /localization

<form method="post" action="/localization" id="annbar-localizationMobileNav" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><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="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="BM">
      <country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-buttonMobileNav">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-buttonMobileNav">
            <span class="text-start">Bermuda (USD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0MobileNav" role="option" data-value="BM" aria-selected="true">
              <span class="pointer-events-none">Bermuda (USD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="annbar-localization-languageMobileNav"><label class="label visually-hidden no-js-hidden" for="annbar-localization-language-buttonMobileNav">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-language-buttonMobileNav"
            style="--custom-select-button-width: 0px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-language-opt-0MobileNav" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-language-opt-1MobileNav" role="option" data-value="de">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-language-opt-2MobileNav" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</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="prospect,newsletter">
  <p>
    <input type="email" placeholder="Your email" class="signup-form__email" value="" name="contact[email]" aria-label="Email" required="">
  </p>
  <button class="btn btn--secondary signup-form__button" type="submit">Subscribe</button>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><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="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="BM">
      <country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
            <span class="text-start">Bermuda (USD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="BM" aria-selected="true">
              <span class="pointer-events-none">Bermuda (USD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="footer-localization-language"><label class="label visually-hidden no-js-hidden" for="footer-localization-language-button">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-language-button"
            style="--custom-select-button-width: 2px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-0" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-1" role="option" data-value="de">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-2" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

Text Content

YOUR LOCATION IS SET TO CANADA

 * Shop in CAD $
 * Get shipping options for Canada

Continue
Change country/region

Skip to content
 * Facebook
 * Instagram
 * TikTok

FREE DELIVERY FROM 60€

Country/Region
Bermuda (USD $)
 * Bermuda (USD $)

Language
English
 * English
 * Deutsch
 * Français

Search




Account Search Cart

 * HOME
 * NEW IN
 * CATEGORIES
    * Highlights
       * Jumpers &amp; Hoodies
       * Tracksuit jackets
       * shirts
       * T-Shirts &amp; Polos
       * Jeans
       * Reworks
   
    * Tops
       * Sweaters &amp; Hoodies
       * Knitwear
       * T-Shirts &amp; Polos
       * Leotards &amp; Jerseys
       * shirts
       * blazer
   
    * Outerwear
       * All Jackets
       * Fleece Jackets
       * Tracksuit jackets
       * Lightweight jackets
       * Thicker jackets
       * Leather jackets
       * west
   
    * Pants
       * All pants
       * Jeans
       * Corduroy &amp; Chinos
       * Track pants
       * shorts
   
    * all products

 * BRANDS
    * All brands AZ Adidas Nike champion North Face Ralph Lauren Reebok Levi's
      Fila Tommy Hilfiger Lacoste Burberry Disney starter Vintage
    * NIKE
    * Vintage

 * ALL PIECES
 * SALE %
 * GIFT CARD

 * HOME
 * NEW IN
 * CATEGORIES
    * Highlights
       * Jumpers &amp; Hoodies
       * Tracksuit jackets
       * shirts
       * T-Shirts &amp; Polos
       * Jeans
       * Reworks
   
    * Tops
       * Sweaters &amp; Hoodies
       * Knitwear
       * T-Shirts &amp; Polos
       * Leotards &amp; Jerseys
       * shirts
       * blazer
   
    * Outerwear
       * All Jackets
       * Fleece Jackets
       * Tracksuit jackets
       * Lightweight jackets
       * Thicker jackets
       * Leather jackets
       * west
   
    * Pants
       * All pants
       * Jeans
       * Corduroy &amp; Chinos
       * Track pants
       * shorts
   
    * all products

 * BRANDS
    * All brands AZ Adidas Nike champion North Face Ralph Lauren Reebok Levi's
      Fila Tommy Hilfiger Lacoste Burberry Disney starter Vintage
    * NIKE
      Vintage

 * ALL PIECES
 * SALE %
 * GIFT CARD

Country/Region
Bermuda (USD $)
 * Bermuda (USD $)

Language
English
 * English
 * Deutsch
 * Français

 * Facebook
 * Instagram
 * TikTok

Germany's leading vintage online shop
Over 40,000 satisfied customers

Easy returns via the returns portal

40,000+ satisfied customers
NEW DROP


NEU EINGETROFFEN

SHOP NEW IN

MOTTO DROP


VINTAGE HAWAII SHIRTS

SHOP HAWAII SHIRTS
Load slide 1 of 2 Load slide 2 of 2
Previous Next


PREVIOUS NEW IN NEXT

View all

Quick buy
Screen Stars
Screen Stars 90s Vintage Taz Volunteer Print Single Stitch T-Shirt Weiß L
$48.00

Quick buy
Vintage
Vintage 90s Vintage NYC Print Single Stitch T-Shirt Grau M
$42.00

Quick buy
Ellesse
Ellesse Embroidered T-Shirt Weiß XL
$33.00

Quick buy
Fila
Fila 90s Vintage Tennis Print Polo Weiß M
$45.00

Quick buy
Umbro
Umbro 90s Vintage ASSE Embroidered T-Shirt Blau M
$37.00

Quick buy
Lacoste
Lacoste 90s Vintage Embroidered T-Shirt Lila M
$28.00

Quick buy
Vintage
Vintage Oklahoma Print T-Shirt Weiß XL
$37.00

Quick buy
Carhartt
Carhartt Basic T-Shirt Grau M
$33.00

Quick buy
Ralph Lauren
Ralph Lauren Polo Grau S
$44.00

Quick buy
Lacoste
Lacoste Classic Fit T-Shirt Blau XL
$39.00

Quick buy
Titus
Titus Print Hoodie Schwarz L
$42.00

Quick buy
Ruff Ryders
Ruff Ryders 90s Dirty Denim Embroidered Hoodie Blau XL
$167.00

Quick buy
Nike
Nike 90s Vintage Big Swoosh Embroidered Sweater Weiß L
$101.00

Quick buy
Adidas
Adidas x Erima 80s Vintage Single Stitch Trikot Blau M
$50.00

Quick buy
Puma
Puma BVB Dortmund Trikot Schwarz M
$45.00

Quick buy
Vintage
Deutschland Trikot Weiß M
$37.00

Quick buy
Hanes
Hanes 90s Vintage Silver Sage Print Single Stitch T-Shirt Grün L
$44.00

Quick buy
Fruit of the Loom
Fruit of the Loom 90s Vintage Bad Hare Day Single Stitch T-Shirt Weiß XL
$44.00

Quick buy
Vintage
Vintage 90s New Port Print Single Stitch T-Shirt Weiß L
$42.00

Quick buy
Hanes
Hanes 90s Vintage HCC Print Single Stitch T-Shirt Weiß XL
$42.00



VINTAGE T-SHIRTS




PREVIOUS VINTAGE SWEATER & HOODIES NEXT

View all

Quick buy
Titus Print Hoodie Schwarz L
$42.00

Quick buy
Ruff Ryders 90s Dirty Denim Embroidered Hoodie Blau XL
$167.00

Quick buy
Nike 90s Vintage Big Swoosh Embroidered Sweater Weiß L
$101.00

Quick buy
Tommy Hilfiger Damen Embroidered Heavy Sweater Pink XL
$39.00

Quick buy
Lacoste Basic Pullunder Weiß XL
$39.00

Quick buy
Adidas 90s Vintage Pullunder Weiß XL
$56.00

Quick buy
GAP 00s Pullunder Grau L
$42.00

Quick buy
Ralph Lauren Damen Embroidered Pullover Weiß S
$53.00

Quick buy
Puma 00s Embroidered Sweater Weiß XL
$42.00

Quick buy
Reebok 00s Embroidered Sweater Weiß L
$39.00

Quick buy
Adidas 00s V-Neck Sweater Beige L
$53.00

Quick buy
Vintage 90s Half Zip Track Top Sweater Weiß XXL
$42.00

Quick buy
Adidas 00s Embroidered Spellout Hoodie Weiß M
$42.00

Quick buy
Adidas 00s Perfomance Half Zip Sweater Blau XS
$42.00

Quick buy
Vintage 00s Diamond Girls Embroidered Sweater Grau L
$44.00

Quick buy
Gildan Lions Print Sun Faded Hoodie Schwarz XS
$34.00

Quick buy
Nike Swoosh Hoodie Blau L
$33.00

Quick buy
Fila Embroidered Sweater Schwarz M
$42.00

Quick buy
Vintage 00s Math Embroidered Hoodie Schwarz S
$39.00

Quick buy
Champion Greyhounds Embroidered Hoodie Rot S
$39.00



VINTAGE HEMDEN


VINTAGE SHORTS


PREVIOUS SALE NEXT

View all
18% off
Quick buy
Ralph Lauren 90s Vintage Heavy Hemd Blau XL
$32.00 $39.00
Sale
21% off
Quick buy
Adidas 70s Vintage 3-Stripes Sport Shorts Weiß M
$33.00 $42.00
Sale
21% off
Quick buy
Puma 00s Embroidered Shorts Blau
$27.00 $34.00
Sale
19% off
Quick buy
Dickies 00s Chino Shorts Grau
$30.00 $37.00
Sale
21% off
Quick buy
Dickies Chino Shorts Schwarz W40
$26.00 $33.00
Sale
21% off
Quick buy
Vintage 90s Tie Dye Hawaii Hemd Mehrfarbig 3XL
$26.00 $33.00
Sale
19% off
Quick buy
Vintage 90s Hawaii Hemd Grün XXL
$30.00 $37.00
Sale
19% off
Quick buy
Vintage 90s Hawaii Hemd Beige XXL
$30.00 $37.00
Sale
18% off
Quick buy
Vintage 90s Hawaii Hemd Mehrfarbig L
$32.00 $39.00
Sale
21% off
Quick buy
Vintage 00s Hawaii Hemd Rot 3XL
$27.00 $34.00
Sale
18% off
Quick buy
Vintage Accanto 90s Hawaii Hemd Rot XXL
$32.00 $39.00
Sale
20% off
Quick buy
Burberry Checked Hemd Weiß M
$45.00 $56.00
Sale
18% off
Quick buy
Vintage Hawaii Hemd Blau S
$23.00 $28.00
Sale
19% off
Quick buy
Vintage 90s Hawaii Hemd Mehrfarbig L
$30.00 $37.00
Sale
21% off
Quick buy
Ralph Lauren 90s Vintage Classic Fit Hemd Rot L
$26.00 $33.00
Sale
19% off
Quick buy
Big Mac 90s Vintage Heavy Hemd Rot XXL
$30.00 $37.00
Sale
21% off
Quick buy
s.Oliver 90s Vintage Denim Hemd Grün L
$26.00 $33.00
Sale
18% off
Quick buy
Vintage Hawaii Hemd Schwarz XXL
$23.00 $28.00
Sale
21% off
Quick buy
Vintage 90s Hawaii Hemd Mehrfarbig XS
$27.00 $34.00
Sale
21% off
Quick buy
Levi's White Tab Pattern Hemd Blau M
$26.00 $33.00
Sale


Thats what our customers say

> Shipped very quickly and neatly, everything went smoothly. Top clothing. Thank
> you very much, anytime again! :-)

— Alessandra L.

> Arrived quickly and was packaged very well. Quality is also top🤭

— Alice

> Clothes were in better shape than expected, delivered very quickly, packaged
> neatly and beautifully

— Zo La

> Fast shipping, great price, condition even better than described. Thank you

— JCR
Previous Next


WIR SIND PEECES - DEIN VINTAGE ONLINE-SHOP 

Hey, schön, dass Du auf unserer Seite gelandet bist! Wir wissen zwar nicht, wer
Du bist und warum Du hier bist - vielleicht bist Du schon länger ein
Vintage-Fan, kaufst regelmäßig nachhaltige Secondhand-Mode und möchtest endlich
einmal wissen, wer eigentlich hinter dem Unternehmen Peeces steckt - vielleicht
bist Du aber auch erst ganz neu dabei! Du möchtest dein Konsumverhalten
nachhaltiger gestalten und bist auf Vintage Mode gestoßen - und nun bei uns
gelandet. Egal, was also Deine Beweggründe sind - wir feiern es, dass Du auf
nachhaltige Mode umsteigen willst! 

Diese Sache haben wir nicht nur gemeinsam, sondern dafür stehen wir von Peeces
mit unserer gesamten Unternehmensphilosophie. Wir als gesamtes Team haben es uns
zur Aufgabe gemacht, Fast Fashion den Kampf anzusagen, und haben dabei ein
klares Ziel: Wir wollen zeigen, dass Kleidung nicht neu produziert werden muss,
um mit Qualität und Style zu überzeugen. Wir wollen möglichst vielen Menschen
die Vintage Welt näher bringen und sie dazu bewegen, nachhaltiger Kleidung zu
konsumieren. Dabei freuen wir uns über jedes Mindset, welches wir hinsichtlich
dieser Sache positiv verändern können - und wenn wir das gemeinsam schaffen,
haben wir doch schon einen großen Beitrag geleistet, oder nicht? 

Vielen, und vielleicht auch einigen von Euch, die neu dabei sind, liegen die
Gründe, weshalb man Vintage Kleidung kaufen sollte, noch nicht wirklich auf der
Hand - “gebrauchte Kleidung” ist für viele ein Wort mit negativem Beigeschmack.
Damit verbundene Fragen: Ist gebrauchte Kleidung nicht schon abgenutzt und
untragbar? Kann gebrauchte Kleidung überhaupt stylisch sein? 

Gegen diese Vorurteile kämpft Secondhand-Mode - und somit auch wir - seit eh und
je an. Es gibt unendlich viele Argumente, mit denen man sie widerlegen kann. An
dieser Stelle wollen wir aber einmal direkt mit den aussagekräftigsten Gründen
raushauen, weshalb DU Vintage kaufen solltest:


DEIN BEITRAG FÜR DIE UMWELT 

Schon gewusst? Mit dem Kauf eines einzigen Secondhand-T-Shirts sparst Du 700
Liter Wasser, welches bei der Produktion von sogenannter Fast Fashion, also neu
produzierter trendorientierter Kleidung, freigesetzt wird. Doch damit noch nicht
genug - bei der Produktion von neuer Mode schießen auch der Energieverbrauch und
die Abgasemissionen in die Höhe und es entstehen viele Abfallprodukte. Gemeinsam
können wir es schaffen, unseren Konsum an Kleidung nachhaltiger zu gestalten und
einzuschränken. 


INDIVIDUALITÄT

Dein Style sollte so einzigartig sein wie Du selbst. Du hast es satt, ständig
neuen Fast Fashion Trends hinterherzurennen, die eh bald schon wieder out sind,
und Deine Teile öfters auch an anderen zu erblicken? Wir auch! Bei Vintage
Kleidung ist jedes Piece einzigartig genau wie Du und es wird erstmal schwierig,
genau das Gleiche wiederzufinden, da es ja auch nicht noch einmal produziert
wird! Jedes Teil erzählt über die Jahre eine eigene Geschichte, vom
ursprünglichen Besitzer bis über den Aufbereitungsprozess, um als Vintage
Kleidungsstück verkauft zu werden. 

Somit rockst Du einen individuellen Style und Deine Pieces trägt außer Dir
garantiert keiner! 


QUALITÄT

Eine hohe Nachfrage durch unsere schnelllebige Konsumgesellschaft verursacht bei
der ständigen Produktion Qualitätseinbußen von Fast Fashion Kleidungsstücken,
die hauptsächlich aus Polyester oder Baumwolle bestehen. Bei Secondhand-Kleidung
ist der Stoff oftmals sehr schwer und dicht, was den Kleidungsstücken eine
bessere Qualität, eine höhere Strapazierfähigkeit und, wie wir finden, auch
einen einzigartigen “Vibe” verleiht. Dafür haben die Pieces oft sogar dennoch
verhältnismäßig niedrige Preise, teils sogar niedrigere Preise als Neuware! Das
kommt natürlich auch immer ganz auf die Marke an und die Preise werden vor allem
durch die Exklusivität des Produkts bestimmt. Allgemein muss man dabei stets die
Aufbereitung der Ware wie Sortieren, Waschen und Bügeln einkalkulieren. Das
Tolle an Vintage Kleidung ist aber einfach, dass man qualitativ hochwertige
Kleidung schon recht billig kaufen kann. So kann jeder für wenig Geld seinem
individuellen Stil nachgehen!

Klingt paradox, entspricht aber leider der Wahrheit: Vintage Kleidung wird
heutzutage oft jedoch ebenfalls neu produziert. Dabei wird meist jedoch
lediglich der Retro-Style nachgeahmt. Dies macht es schwierig, in Stores ein
Piece zu finden, das älter als 2-5 Jahre ist. Hinzu kommt, dass das Shoppen nach
Pieces, die man persönlich wirklich krass findet, sehr zeitintensiv sein kann.
Somit fährt man für eine große Auswahl eigentlich am besten, in Online-Shops
einzukaufen. Und darum ist das Shoppen von Vintage Sportswear bei Peeces
besonders krass…


WARUM DIE VINTAGE WELT VON PEECES ERKUNDEN?

Schon immer faszinieren wir uns in der Secondhand-Szene insbesondere für Vintage
Sportswear und wir machen es uns stets zum Ziel, Euch in diesem Bereich jede
Menge Heat Artikel zu bieten - was wir auch ganz gut schaffen! Denn wir sind
immer wieder selbst darüber erstaunt, an was für seltene Pieces wir oft beim
Einkauf gelangen! Deshalb reden wir gar nicht lange drumherum - Deine Vorteile
bei unserem Online-Shop:

 -Drops 2x die Woche Mittwoch und Sonntag um 18 Uhr - schnapp’ Dir Dein
Lieblings Piece!

-eine große Auswahl an Kleidung auch unabhängig von den Drops in unserem Shop -
Du kannst also jederzeit bequem bei uns online einkaufen

-ein breites Spektrum an den besten und beliebtesten Vintage Marken

-regelmäßig Mottodrops wie Nike Drop, Back To School, Winterjacken etc.

-blitzschneller Versand -  in 1-2 Werktagen ist Dein Lieblingspiece bei Dir!

- Einkaufen in unserem Online-Shop ist nicht nur bequemer, sondern die Preise
sind auch günstiger, als wenn Du die Pieces bei einem großen Retailer kaufen
würdest - fackel’ also nicht lange und schnapp’ zu!

-Regelmäßige Sale-Aktionen, beispielsweise 15 % auf alle Kleidungsstücke zur
Vintage Fashion Week - so günstig war Vintage noch nie!

-Psst: Wir arbeiten gerade an einem Größen-Guide mit Passform, den Du vielleicht
schon bald bei unseren Produkten vorfinden wirst! Bald kannst Du also ganz
individuell Deinen Lieblings-Fit für Vintage Pieces herausfinden und Deine Größe
besser einschätzen - und so gezielter bei uns auf Unikat-Jagd gehen!

-präzise Angaben zu Zustand der Pieces - nach eigener händischer Peeces-Prüfung
und Einschätzung! 

-Händisches Prüfen der Echtheit der Kleidung und somit Kleidung in gewohnter
Peeces-Vintage-Qualität

-eigene Aufbereitung der Ware wie Filtern, Sortieren und Reinigen der Kleidung

Du willst mehr über uns erfahren? Besuche uns auf Instagram: @peeces_de, melde
Dich für unseren Newsletter an oder besuche gerne unseren Blog.




Peeces - Your Vintage Online Shop

At Peeces you will find a large selection of vintage pieces, mainly from the 80s
and 90s. From the unusual vintage Adidas sweater to the casual Harrington jacket
by Ralph Lauren, you will find everything with us!

 * Facebook
 * Instagram
 * TikTok

Help
 * sizes
 * Shipment
 * returns
 * FAQ
 * Peeces Vintage Store Aachen
 * Peeces voucher

Legal
 * imprint
 * Terms and conditions and customer information
 * Data protection
 * Cancellation policy and sample cancellation form
 * Shipping costs

Newsletter

Sign up for the newsletter to receive a 10% discount code!



Subscribe
Amazon American Express Apple Pay Google Pay Maestro Mastercard PayPal Shop Pay
Union Pay Visa
Country/Region
Bermuda (USD $)
 * Bermuda (USD $)

Language
English
 * English
 * Deutsch
 * Français

© 2024 Peeces. Powered by Shopify
Your cart
Close




Checkout
Close
Your shopping basket is empty
Shop now