www.vertere-berlin.com
Open in
urlscan Pro
23.227.38.74
Public Scan
Submitted URL: http://www.vertere-berlin.com/
Effective URL: https://www.vertere-berlin.com/
Submission: On February 01 via api from US — Scanned from CA
Effective URL: https://www.vertere-berlin.com/
Submission: On February 01 via api from US — Scanned from CA
Form analysis
12 forms found in the DOMGET /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-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>
<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="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 cart-item__qty-input" 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>
<div class="cart-item__error-wrapper hidden" style="margin-top: .4rem;">
<p class="cart-item__error" style="font-size: .8rem; color: #d13434;"></p>
</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-scheme-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="border-t-grid border-grid-color py-4 section-x-padding">
<label for="CartSpecialInstructions" class="text-sm"> Add a note to your order </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">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>Subtotal</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"> Tax included and shipping calculated at checkout </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="Check out">
</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">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>
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">
<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 " type="submit" name="commit" id="Subscribe">
<span class="uppercase whitespace-nowrap">Subscribe →</span>
</button>
</div>
</form>
DIALOG
<form method="dialog" data-ref="form">
<fieldset class="fieldset-popup__warning" data-ref="fieldset" role="document">
<legend data-ref="message" id="ls3osyom"></legend>
<div data-ref="template"></div>
</fieldset>
<menu class="menu-popup__warning">
<button data-ref="cancel"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg></button>
<button data-ref="accept" value="default"></button>
</menu>
</form>
GET /search
<form action="/search" method="get" class="input-group search__bar" role="search" data-searchwishlist="" onsubmit="return false;">
<input type="search" name="q" value="" placeholder="Search wishlists" class="input-group-field" aria-label="Search our store" data-wishlistsearch="" tabindex="5">
</form>
<form>
<ul class="choose-wishlist-option" data-userwishlists="">
</ul>
<ul class="choose-wishlist-option">
<li data-opencreatesection="">
<a href="#" class="creat_link">
<span class="icon-wishlist-plus hulkThemeColor" style="color: #030303"></span><span data-createwishlisttext="" class="hulkThemeColor" style="color: #030303">Create a new wishlist</span>
</a>
</li>
<li data-addnewwishlist="" style="display: none">
<div class="input-group">
<button class="close-new-wishlist-input" data-closenewwishlistinput="" style="font-size: 10px;float: right;padding: 6px; color: #aaa;">
<span class="icon-wishlist-cross"></span>
</button>
<label for="newWishlist" class="wishlist-checkbox"><span></span><input data-newwishlist="" type="text" placeholder="Ex. Watch" value=""></label>
<button class="wishlist-btn hulkBtnStyle" data-savenewwishlist="" style="background-color: #030303; border: 1px solid #030303; color: white;">Save</button>
</div>
</li>
</ul>
</form>
POST /share-wishlist
<form action="/share-wishlist" method="post" class="floating-form" role="share-wishlist" data-hulkemailform="">
<div class="floating-label">
<input type="text" class="floating-input" placeholder=" " name="name" value="" aria-label="Search our store">
<span class="highlight"></span>
<label id="from_name_label">Sender Name*</label>
</div>
<div class="floating-label">
<input type="email" class="floating-input" placeholder=" " name="email" value="" aria-label="Search our store">
<span class="highlight"></span>
<label id="email_label">Recipients Email*</label>
</div>
<div class="floating-label">
<input type="text" class="floating-input" placeholder=" " name="subject" value="" aria-label="Search our store">
<span class="highlight"></span>
<label id="subject_label">Subject*</label>
</div>
<div class="floating-label">
<textarea id="body" class="floating-input" placeholder=" " name="body" rows="4" style="width: 100%"></textarea>
<span class="highlight"></span>
<label for="body" id="email_body_label">Message*</label>
</div>
<div class="floating-label" style="margin-bottom: 20px;">
<button type="submit" class="wishlist-btn hulkBtnStyle" data-hulksendemailbutton="" style="background-color: #030303; border: 1px solid #030303; color: white;">SHARE WISHLIST</button>
</div>
</form>
<form class="input-group search-bar" style="padding: 0;">
<input type="text" id="shareURL" value="" class="input-group-field" data-shareurl="" readonly="">
<span class="input-group-btn">
<button type="button" class="wishlist-btn hulkBtnStyle" data-copyshareurlbutton="" style="background-color: #030303; border: 1px solid #030303; color: white;"> </button>
</span>
</form>
POST /subscribe
<form action="/subscribe" method="post" class="input-group search-bar" role="subscribe" data-hulksubscribeform="">
<input type="email" name="email" value="" placeholder="user@gmail.com" class="input-group-field" aria-label="Search our store">
<span class="input-group-btn">
<button type="submit" class="wishlist-btn hulkBtnStyle" data-hulksubscribebutton="" style="background-color: #030303; border: 1px solid #030303; color: white;">Subscribe</button>
</span>
</form>
POST /cart/update
<form method="post" action="/cart/update" id="currency_form" accept-charset="UTF-8" class="currency-selector small--hide" enctype="multipart/form-data"><input type="hidden" name="form_type" value="currency"><input type="hidden" name="utf8"
value="✓"><input type="hidden" name="return_to" value="/"><input type="hidden" name="currency" value="CurrencyDrop"></form>
Text Content
This website uses cookies to ensure you get the best experience on our website. Learn More Got it! x -------------------------------------------------------------------------------- by Timesact This website uses cookies to ensure you get the best experience on our website. Learn More Got it! Skip to content Menu Close * MEN * COLLECTION * 𝙎𝘼𝙇𝙀 & 𝙊𝙐𝙏𝙇𝙀𝙏 * NEW IN * HIGHLIGHTS * ALL PRODUCTS * MEN'S FITS * T-SHIRTS & SHIRTS * SWEATERS & HOODIES * JACKETS & FLEECE * PANTS & SHORTS * ACCESSORIES * ALL ACCESSORIES * BEANIES, CAPS & SCARVES * SOCKS * GIFTS & OBJECTS * WOMEN * COLLECTION * 𝙎𝘼𝙇𝙀 & 𝙊𝙐𝙏𝙇𝙀𝙏 * NEW IN * HIGHLIGHTS * ALL PRODUCTS * WOMEN'S FITS * T-SHIRTS & SHIRTS * SWEATERS & HOODIES * JACKETS & FLEECE * PANTS & SHORTS * ACCESSORIES * ALL ACCESSORIES * BEANIES, CAPS & SCARVES * SOCKS * GIFTS & OBJECTS * GIFTS & ACCESSORIES * ENTER VERTERE * ENTER VERTERE * ABOUT US * SHIRT-ID, ANYONE? * STRICTLY DANCEFLOOR BUSINESS * SUSTAINABILITY * STOCKISTS * JOB OFFERS * COLLABS * DJ HELL * THE THIRD ROOM * LES ANIMAUX SAUVAGES * OMBRA INTL. X VERTERE BERLIN * REGAL X VERTERE BERLIN * HUGO BOSS X VERTERE BERLIN * NBB GALLERY X VERTERE BERLIN * DUAT X VERTERE BERLIN * Log in * Create account Search Submit YOUR CART - 0 ITEMS Close Your cart is currently empty. Enable cookies to use the shopping cart : − Remove Regular price Sale price / − Add a note to your order Discount Subtotal Tax included and shipping calculated at checkout Close END OF SEASON SALE // UP TO 50% OFF * MEN COLLECTION * 𝙎𝘼𝙇𝙀 & 𝙊𝙐𝙏𝙇𝙀𝙏 * NEW IN * HIGHLIGHTS * ALL PRODUCTS MEN'S FITS * T-SHIRTS & SHIRTS * SWEATERS & HOODIES * JACKETS & FLEECE * PANTS & SHORTS ACCESSORIES * ALL ACCESSORIES * BEANIES, CAPS & SCARVES * SOCKS * GIFTS & OBJECTS * WOMEN COLLECTION * 𝙎𝘼𝙇𝙀 & 𝙊𝙐𝙏𝙇𝙀𝙏 * NEW IN * HIGHLIGHTS * ALL PRODUCTS WOMEN'S FITS * T-SHIRTS & SHIRTS * SWEATERS & HOODIES * JACKETS & FLEECE * PANTS & SHORTS ACCESSORIES * ALL ACCESSORIES * BEANIES, CAPS & SCARVES * SOCKS * GIFTS & OBJECTS * GIFTS & ACCESSORIES * ENTER VERTERE ENTER VERTERE * ABOUT US * SHIRT-ID, ANYONE? * STRICTLY DANCEFLOOR BUSINESS * SUSTAINABILITY * STOCKISTS * JOB OFFERS COLLABS * DJ HELL * THE THIRD ROOM * LES ANIMAUX SAUVAGES * OMBRA INTL. X VERTERE BERLIN * REGAL X VERTERE BERLIN * HUGO BOSS X VERTERE BERLIN * NBB GALLERY X VERTERE BERLIN * DUAT X VERTERE BERLIN Log in Search Submit Submit Close 0 items Menu Search Submit Submit Close 0 items STREETWEAR FROM THE HEART OF BERLIN'S TECHNO SCENE. MEN WOMEN ⭐⭐⭐⭐⭐ 4.8/5 Star RATING AT TRUSTED SHOPS 🌐 WORLDWIDE SHIPPING ⚡ 10% OFF FIRST ORDER VIA NEWSLETTER SIGNUP VERTERE BERLIN WORLD TOUR * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 * 24 HIGHLIGHTS View all → * 30% OFF UNISEX MOTION PUFFER JACKET - BLACK MOTION PUFFER JACKET - BLACK Regular price$208.00 Sale price$146.00 S, M, L, XL & XXL * 30% OFF UNISEX MOTION PUFFER JACKET - GREY MOTION PUFFER JACKET - GREY Regular price$208.00 Sale price$146.00 S, M, L, XL & XXL * 20% OFF UNISEX SMILE FOR ME SHERPA JACKET - BLACK SMILE FOR ME SHERPA JACKET - BLACK Regular price$193.00 Sale price$155.00 S, M, L, XL & XXL * 30% OFF UNISEX MOTION SHERPA JACKET - SAND/ BLACK MOTION SHERPA JACKET - SAND/ BLACK Regular price$193.00 Sale price$135.00 S, M, L, XL & XXL * 30% OFF UNISEX DANCEFLOOR PHARMACY T-SHIRT - BLACK DANCEFLOOR PHARMACY T-SHIRT - BLACK Regular price$67.00 Sale price$47.00 S, M, L & XL * UNISEX ROUGHNESS BOMBER JACKET - BLACK ROUGHNESS BOMBER JACKET - BLACK $208.00 XS, S, M, L, XL & XXL * 30% OFF UNISEX DUO QUARTERZIP FLEECE - BLACK DUO QUARTERZIP FLEECE - BLACK Regular price$149.00 Sale price$104.00 S, M, L, XL & XXL * 30% OFF UNISEX CHILDREN OF LOVE HOODIE - BLACK CHILDREN OF LOVE HOODIE - BLACK Regular price$149.00 Sale price$104.00 S, M, L, XL & XXL WOMEN MEN SALE & OUTLET View all → * 30% OFF UNISEX DANCEFLOOR PHARMACY T-SHIRT - BLACK DANCEFLOOR PHARMACY T-SHIRT - BLACK Regular price$67.00 Sale price$47.00 S, M, L & XL * 30% OFF UNISEX MOTION PUFFER JACKET - GREY MOTION PUFFER JACKET - GREY Regular price$208.00 Sale price$146.00 S, M, L, XL & XXL * 30% OFF UNISEX MOTION PUFFER JACKET - BLACK MOTION PUFFER JACKET - BLACK Regular price$208.00 Sale price$146.00 S, M, L, XL & XXL * 30% OFF PUFF JACKET - BLACK PUFF JACKET - BLACK Regular price$208.00 Sale price$146.00 XS, S, M, L & XL * 50% OFF UNISEX CHROME ROSE PUFFER JACKET - BLACK CHROME ROSE PUFFER JACKET - BLACK Regular price$208.00 Sale price$104.00 S, M, L & XL * 30% OFF UNISEX CIRCLE LOGO FLEECE SWEATER - BLACK CIRCLE LOGO FLEECE SWEATER - BLACK Regular price$149.00 Sale price$104.00 S, M, L, XL & XXL * 50% OFF UNISEX TITLE 1 FLEECE SWEATER - WHITE TITLE 1 FLEECE SWEATER - WHITE Sold out * 30% OFF UNISEX DUO QUARTERZIP FLEECE - BLACK DUO QUARTERZIP FLEECE - BLACK Regular price$149.00 Sale price$104.00 S, M, L, XL & XXL BEANIES & SCARVES HOODIES & SWEATERS JACKETS & FLEECE View all → * UNISEX ROUGHNESS BOMBER JACKET - BLACK ROUGHNESS BOMBER JACKET - BLACK $208.00 XS, S, M, L, XL & XXL * 30% OFF UNISEX MOTION PUFFER JACKET - BLACK MOTION PUFFER JACKET - BLACK Regular price$208.00 Sale price$146.00 S, M, L, XL & XXL * 30% OFF UNISEX MOTION PUFFER JACKET - GREY MOTION PUFFER JACKET - GREY Regular price$208.00 Sale price$146.00 S, M, L, XL & XXL * 30% OFF UNISEX DUO QUARTERZIP FLEECE - BLACK DUO QUARTERZIP FLEECE - BLACK Regular price$149.00 Sale price$104.00 S, M, L, XL & XXL * 30% OFF UNISEX CIRCLE LOGO FLEECE SWEATER - BLACK CIRCLE LOGO FLEECE SWEATER - BLACK Regular price$149.00 Sale price$104.00 S, M, L, XL & XXL * 20% OFF UNISEX SMILE FOR ME SHERPA JACKET - BLACK SMILE FOR ME SHERPA JACKET - BLACK Regular price$193.00 Sale price$155.00 S, M, L, XL & XXL * 30% OFF UNISEX MOTION SHERPA JACKET - SAND/ BLACK MOTION SHERPA JACKET - SAND/ BLACK Regular price$193.00 Sale price$135.00 S, M, L, XL & XXL * 50% OFF UNISEX CHROME ROSE PUFFER JACKET - BLACK CHROME ROSE PUFFER JACKET - BLACK Regular price$208.00 Sale price$104.00 S, M, L & XL NEW IN: PREMIUM POSTERS * EUPHORIA POSTER - A1 (59 x 84 cm) - 200 g/m² premium poster - High quality digital printing technique - Designed & printed in Germany SHOP NOW → * UNIVERSAL BODY TALK POSTER - A1 (59 x 84 cm) - 200 g/m² premium poster - High quality digital printing technique - Designed & printed in Germany SHOP NOW → * HOUSE PARTY POSTER - A1 (59 x 84 cm) - 200 g/m² premium poster - High quality digital printing technique - Designed & printed in Germany SHOP NOW → T-SHIRTS * 30% OFF UNISEX DANCEFLOOR PHARMACY T-SHIRT - BLACK DANCEFLOOR PHARMACY T-SHIRT - BLACK Regular price$67.00 Sale price$47.00 S, M, L & XL * UNISEX PAN-POT FORTE T-SHIRT - BLACK PAN-POT FORTE T-SHIRT - BLACK $75.00 S, M, L & XL * UNISEX PAN-POT FORTE SET PAN-POT FORTE SET $89.00 S, M, L & XL * UNISEX FOG T-SHIRT - BLACK FOG T-SHIRT - BLACK $67.00 S, M, L, XL & XXL * UNISEX AMORE T-SHIRT - BLACK AMORE T-SHIRT - BLACK $75.00 XS, S, M, L, XL & XXL * UNISEX EUPHORIC T-SHIRT - BLACK EUPHORIC T-SHIRT - BLACK $75.00 S, M, L, XL & XXL * UNISEX DJ HELL SOCCER JERSEY - BLACK DJ HELL SOCCER JERSEY - BLACK $104.00 S, M, L & XL * UNISEX SMILE FOR ME T-SHIRT - BLACK SMILE FOR ME T-SHIRT - BLACK $75.00 S, M, L, XL & XXL * 29% OFF UNISEX PLEATED T-SHIRT - BLACK PLEATED T-SHIRT - BLACK Regular price$89.00 Sale price$63.00 S, M, L, XL & XXL * UNISEX CIG T-SHIRT - WHITE CIG T-SHIRT - WHITE $75.00 XS, S, M, L, XL & XXL * 20% OFF UNISEX FROZEN IN A DREAM T-SHIRT - BLACK FROZEN IN A DREAM T-SHIRT - BLACK Regular price$75.00 Sale price$60.00 S, M, L, XL & XXL * 20% OFF UNISEX GATORAVE T-SHIRT - WHITE GATORAVE T-SHIRT - WHITE Regular price$75.00 Sale price$60.00 S, M, L, XL & XXL vertere/social → Follow us on Instagram @vertere_berlin Subscribe to our newsletter Email address Subscribe → * About Us * Sustainability * Stockists * Jobs * Contact & Customer Care * Payments & Shipping * Size Guide * Returns * Imprint * Legal Notice * Privacy Policy * Refund Policy * Terms of Service * Facebook * Instagram © 2024, Vertere Berlin. PAYMENT METHODS * American Express * Apple Pay * Maestro * Mastercard * PayPal * Union Pay * Visa * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection. word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 YOUR WISHLIST Please add product to your wishlist to see them here. Login to see your wishlist! * Select All * Move to cart * Delete Login Explore more products Add products Close ADD TO WISHLIST Choose your wishlist to be added * Create a new wishlist * Save My wishlist Save SHARE LIST VIA EMAIL Sender Name* Recipients Email* Subject* Message* SHARE WISHLIST -------------------------------------------------------------------------------- OR SHARE VIA * * * * SUBSCRIBE AND GET ALERTS ABOUT YOUR WISHLIST We will notify you on events like Low stock, Restock, Price drop or general reminders so that you don’t miss the deal Subscribe Move to cart See Product Details ARE YOU SURE YOU WANT TO DELETE THIS WISHLIST? Yes No ARE YOU SURE YOU WANT TO DELETE SELECTED WISHLIST PRODUCTS? Yes No OUT OF STOCK PRODUCTS WILL BE NOT MOVE. ARE YOU WANT TO MOVE SELECTED WISHLIST PRODUCTS? Yes No WISHLIST MANAGEMENT PAGE * This page allows you to manage and add wishlist items directly to the cart. * Share your public wishlist on social media, through links, and via custom email. * You can subscribe to get update about your wishlist items YOU HAVE BEEN UNSUBSCRIBED YOU WILL NO LONGER RECEIVE EMAILS ABOUT WISHLIST ACTIVITIES FROM THIS STORE. Close ×