www.zamt-berlin.com
Open in
urlscan Pro
23.227.38.74
Public Scan
Submitted URL: http://www.zamt-berlin.com/
Effective URL: https://www.zamt-berlin.com/
Submission: On January 22 via api from US — Scanned from US
Effective URL: https://www.zamt-berlin.com/
Submission: On January 22 via api from US — Scanned from US
Form analysis
7 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-primary-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
<template x-if="!(item.featured_image.url === null)">
<div class="flex-shrink-0 w-10 md:w-20 mr-4">
<a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
<img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
<pre x-text="item.featured_image.src"></pre>
</a>
</div>
</template>
<div class="flex-auto">
<a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
<template x-if="item.variant_title">
<p class="text-sm" x-text="item.variant_title"></p>
</template>
<template x-if="item.selling_plan_allocation">
<p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
</template>
<template x-for="property in flatProperties(item.properties)" :key="property.name">
<p class="text-sm">
<span x-text="property.name"></span>: <span x-text="property.value"></span>
</p>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="lg:hidden mt-1 text-sm text-primary-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
<div class="flex mt-1 lg:mt-2 items-center">
<button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
</svg>
</button>
<input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
@keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
<button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
</svg>
</button>
</div>
<button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
<small>Remove </small>
<span class="visually-hidden" x-text="item.title"></span>
</button>
</div>
<div class="ml-1 text-right">
<template x-if="item.line_level_discount_allocations.length">
<div>
<span class="visually-hidden">Regular price</span>
<del class="line-through" x-html="formatMoney(item.original_price)"></del>
<span class="visually-hidden">Sale price</span>
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</div>
</template>
<template x-if="!item.line_level_discount_allocations.length">
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</template>
<template x-if="item.unit_price_measurement">
<div class="text-xs">
<span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
<span x-text="item.unit_price_measurement.reference_unit"></span>
</div>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="hidden lg:block mt-1 text-sm text-primary-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
</div>
</div>
</template>
</div>
<div class="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-primary-background border-t-grid border-grid-color">
<div :class="{ 'opacity-50 cursor-wait': updating }">
<template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
<p class="flex justify-between text-primary-accent">
<span class="visually-hidden">Discount</span>
<span x-text="application.title"></span>
<span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
</p>
</template>
<p class="flex justify-between">
<span>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-primary text-right"> Taxes 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-transparent text-primary-text border-text border-primary-text hover:border-primary-accent hover:text-primary-accent" :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>
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--18062327120137__74e4681c-e10c-4740-ab3c-ffc964272558">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-template--18062327120137__74e4681c-e10c-4740-ab3c-ffc964272558" 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-secondary-accent border-b-text border-secondary-text hover:border-secondary-accent pb-1" type="submit" name="commit" id="Subscribe">
<span class=" whitespace-nowrap">Subscribe</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-primary-accent border-b-text border-primary-text hover:border-primary-accent pb-1" type="submit" name="commit" id="Subscribe">
<span class=" whitespace-nowrap">Subscribe</span>
</button>
</div>
</form>
POST /localization
<form method="post" action="/localization" id="localization_form" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data" data-disclosure-form=""><input type="hidden" name="form_type" value="localization"><input
type="hidden" name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
<div class="inline-block">
<h2 class="visually-hidden" id="currency-heading"> Currency </h2>
<div class="relative" data-disclosure-currency="">
<button type="button" class="text-sm border-b-text border-footer-text py-1" aria-expanded="false" aria-controls="currency-list" aria-describedby="currency-heading" data-disclosure-toggle=""> USD $<span
class="inline-block ml-1 w-3 fill-current">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-chevron-down" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M12 16.596L4.222 8.818l1.414-1.414L12 13.768l6.364-6.364 1.414 1.414z"></path>
</svg>
</span>
</button>
<ul id="currency-list" class="disclosure-list absolute bg-footer-background opacity-0 top-0 left-0 lg:left-auto lg:right-0 transform transition-opacity border-text border-theme-color py-2" data-disclosure-list="" inert="" aria-hidden="true">
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AED" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AED د.إ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AFN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AFN ؋</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ALL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ALL L</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AMD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AMD դր.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ANG" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ANG ƒ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AUD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AUD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AWG" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AWG ƒ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AZN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AZN ₼</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BAM" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BAM КМ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BBD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BBD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BDT" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BDT ৳</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BGN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BGN лв.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BIF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BIF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BND" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BND $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BOB" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BOB Bs.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BSD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BSD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BWP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BWP P</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BZD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BZD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CAD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CAD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CDF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CDF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CHF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CHF CHF</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CNY" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CNY ¥</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CRC" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CRC ₡</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CVE" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CVE $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CZK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CZK Kč</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DJF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DJF Fdj</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DKK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DKK kr.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DOP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DOP $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DZD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DZD د.ج</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="EGP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">EGP ج.م</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ETB" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ETB Br</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="EUR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">EUR €</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="FJD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">FJD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="FKP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">FKP £</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GBP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GBP £</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GMD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GMD D</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GNF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GNF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GTQ" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GTQ Q</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GYD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GYD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="HKD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">HKD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="HNL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">HNL L</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="HUF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">HUF Ft</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="IDR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">IDR Rp</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ILS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ILS ₪</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="INR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">INR ₹</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ISK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ISK kr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="JMD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">JMD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="JPY" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">JPY ¥</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KES" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KES KSh</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KGS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KGS som</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KHR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KHR ៛</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KMF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KMF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KRW" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KRW ₩</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KYD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KYD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KZT" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KZT 〒</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="LAK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">LAK ₭</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="LBP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">LBP ل.ل</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="LKR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">LKR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MAD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MAD د.م.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MDL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MDL L</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MKD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MKD ден</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MMK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MMK K</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MNT" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MNT ₮</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MOP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MOP P</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MUR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MUR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MVR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MVR MVR</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MWK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MWK MK</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MYR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MYR RM</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NGN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NGN ₦</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NIO" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NIO C$</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NPR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NPR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NZD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NZD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PEN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PEN S/.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PGK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PGK K</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PHP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PHP ₱</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PKR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PKR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PLN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PLN zł</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PYG" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PYG ₲</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="QAR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">QAR ر.ق</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="RON" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">RON Lei</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="RSD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">RSD РСД</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="RWF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">RWF FRw</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SAR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SAR ر.س</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SBD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SBD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SEK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SEK kr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SGD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SGD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SHP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SHP £</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SLL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SLL Le</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="STD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">STD Db</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="THB" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">THB ฿</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TJS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TJS ЅМ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TOP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TOP T$</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TTD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TTD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TWD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TWD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TZS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TZS Sh</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UAH" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UAH ₴</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UGX" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UGX USh</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" aria-current="true" data-value="USD" data-disclosure-option="" tabindex="-1">
<span class="border-footer-text border-b-text">USD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UYU" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UYU $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UZS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UZS </span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="VND" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">VND ₫</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="VUV" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">VUV Vt</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="WST" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">WST T</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XAF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XAF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XCD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XCD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XOF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XOF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XPF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XPF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="YER" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">YER ﷼</span>
</a>
</li>
</ul>
<input type="hidden" name="currency_code" id="CurrencySelector" value="USD" data-disclosure-input="">
</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="lg:flex items-center">
<label class="visually-hidden" for="Email-popup">Email address</label>
<input type="email" class="font-body border-b-text border-primary-text w-full block bg-transparent pb-1" name="contact[email]" id="Email-popup" 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-primary-accent border-b-text border-primary-text hover:border-primary-accent pb-1" type="submit" name="commit" id="Popup-Subscribe">
<span class="">Subscribe</span>
</button>
</div>
</form>
Text Content
Skip to content Menu Close * SHOP * ALL * Vegan * Accessories * Work * Bestseller * Giftcard * Eau de Parfum * BESTSELLER * HIP BAG I CAN * HIP BAG XL I DJANGO * SHOPPER | RIN * BAGS * Hip bag | CAN * Hip bag XL I DJANGO * Crossbody | Overshoulder * Tote | Shopper | Container * Backpack * Travel * CLOTHING * FAVORITES I All * FAVORITE 01 | Sweater * FAVORITE 02 | Hoodie * FAVORITE 03 | Sweatpants * FAVORITE 09 I Poncho * COLLABS * ZAMT X Studio Moki * ZAMT X Hey Hey Waldfreunde * SALE * SALE * SUSTAINABILITY * OUR TAKE ON SUSTAINABILITY * PLANT A TREE * CARE INSTRUCTIONS * OUR MATERIALS * ZAMT & WALDFREUNDE * WHERE * ZAMT & FRIENDS Store Berlin * ZAMT STOCKISTS * WHOLESALE * WHO * is ZAMT * ABOUT Search Submit * Facebook * Pinterest * Instagram * Email 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 Taxes and shipping calculated at checkout Close FREE SHIPPING IN GERMANY FROM 150€ / EUROPEWIDE FROM 200€ / WORLDWIDE FROM 250€ * SHOP SHOP ALL * Vegan * Accessories * Work * Bestseller * Giftcard * Eau de Parfum BESTSELLER * HIP BAG I CAN * HIP BAG XL I DJANGO * SHOPPER | RIN BAGS * Hip bag | CAN * Hip bag XL I DJANGO * Crossbody | Overshoulder * Tote | Shopper | Container * Backpack * Travel CLOTHING * FAVORITES I All * FAVORITE 01 | Sweater * FAVORITE 02 | Hoodie * FAVORITE 03 | Sweatpants * FAVORITE 09 I Poncho COLLABS * ZAMT X Studio Moki * ZAMT X Hey Hey Waldfreunde SALE * SALE * SUSTAINABILITY * OUR TAKE ON SUSTAINABILITY * PLANT A TREE * CARE INSTRUCTIONS * OUR MATERIALS * ZAMT & WALDFREUNDE * WHERE * ZAMT & FRIENDS Store Berlin * ZAMT STOCKISTS * WHOLESALE * WHO * is ZAMT * ABOUT Search Submit Submit Close 0 items Menu 0 items ZAMT BERLIN FW23 COLLECTION DISCOVER NOW PREMIUM. TIMELESS. SUSTAINABLE. Feel good and do good in our FAVORITES ! We create timeless and sustainable essentials with premium materials. Inspired by art and architecture. Designed in Berlin. Ethically made in Europe. SHOP HIP BAG I CAN SHOP CROSSBODY | OVERSHOULDER SHOP TOTE | SHOPPER | CONTAINER STORIES OF PATINA WINTER SALE What a treat ! Up to 40% discount on selected items. Limited availability and for limited time only :-) DISCOVER NOW SHOP TOTE BACKPACK | ELLIOT SHOP BACKPACKS SHOPPER | RIN SHOP SHOPPER | RIN BE PART OF THE CHANGE Join our newsletter and shape with us together the world of sustainable fashion. Receive special offers and first look at new products. Be part of the ZAMT community and get 10% off on your first order! Email address Subscribe BESTSELLER * HIP BAG | CAN BLACK HIP BAG | CAN BLACK $149.00 * HIP BAG XL | DJANGO VEGAN BLACK HIP BAG XL | DJANGO VEGAN BLACK Regular price$233.00 Sale price$117.00 * HIP BAG | CAN NATURAL HIP BAG | CAN NATURAL $149.00 * HIP BAG | CAN BLACK GOLD HIP BAG | CAN BLACK GOLD $149.00 * HIP BAG | CAN NATURAL GOLD HIP BAG | CAN NATURAL GOLD $149.00 * HIP BAG XL | DJANGO BLACK HIP BAG XL | DJANGO BLACK $233.00 * HIP BAG | CAN SUEDE SAND HIP BAG | CAN SUEDE SAND $149.00 * CROSSBODY | AVA BLACK CROSSBODY | AVA BLACK Regular price$158.00 Sale price$130.00 * HIP BAG | CAN NAPPA SEAWEED HIP BAG | CAN NAPPA SEAWEED $149.00 * HIP BAG | CAN OFF WHITE NAPPA HIP BAG | CAN OFF WHITE NAPPA $149.00 * TOTE BACKPACK | ELLIOT COGNAC TOTE BACKPACK | ELLIOT COGNAC $317.00 * TOTE BACKPACK | ELLIOT BLACK TOTE BACKPACK | ELLIOT BLACK $317.00 * HIP BAG | CAN NAPPA GREY HIP BAG | CAN NAPPA GREY $149.00 * HIP BAG | CAN COGNAC GOLD HIP BAG | CAN COGNAC GOLD Sold out * HIP BAG | CAN SHEARLING CARAMEL HIP BAG | CAN SHEARLING CARAMEL Regular price$177.00 Sale price$149.00 * TOTE BACKPACK | ELLIOT NAPPA SEAWEED TOTE BACKPACK | ELLIOT NAPPA SEAWEED Sold out * TOTE BACKPACK | ELLIOT NAPPA GREY TOTE BACKPACK | ELLIOT NAPPA GREY Sold out * HIP BAG XL | DJANGO SHEARLING NATURAL HIP BAG XL | DJANGO SHEARLING NATURAL Regular price$270.00 Sale price$214.00 * SHOPPER | RIN S 2.0 BLACK PATENT SHOPPER | RIN S 2.0 BLACK PATENT $252.00 * HIP BAG | CAN NAPPA TERRACOTTA HIP BAG | CAN NAPPA TERRACOTTA $149.00 NEWSLETTER Subscribe to our newsletter, be part of the ZAMT community and get 10% off on every order ! Receive special offers and first look at new products. Only good emails, we promise :-) Email address Subscribe ZAMT-BERLIN VISIT US INSTORE ZAMT BERLIN Tucholskystrasse 48, 10117 Berlin LEGAL NOTICE * Secure Payments * General Terms & Conditions * Impressum * Privacy Policy FOLLOW US * Facebook * Pinterest * Instagram * Email © 2024, ZAMT-BERLIN. Powered by Shopify PAYMENT METHODS * American Express * Apple Pay * Google Pay * Maestro * Mastercard * PayPal * Shop Pay * Union Pay * Visa CURRENCY USD $ * AED د.إ * AFN ؋ * ALL L * AMD դր. * ANG ƒ * AUD $ * AWG ƒ * AZN ₼ * BAM КМ * BBD $ * BDT ৳ * BGN лв. * BIF Fr * BND $ * BOB Bs. * BSD $ * BWP P * BZD $ * CAD $ * CDF Fr * CHF CHF * CNY ¥ * CRC ₡ * CVE $ * CZK Kč * DJF Fdj * DKK kr. * DOP $ * DZD د.ج * EGP ج.م * ETB Br * EUR € * FJD $ * FKP £ * GBP £ * GMD D * GNF Fr * GTQ Q * GYD $ * HKD $ * HNL L * HUF Ft * IDR Rp * ILS ₪ * INR ₹ * ISK kr * JMD $ * JPY ¥ * KES KSh * KGS som * KHR ៛ * KMF Fr * KRW ₩ * KYD $ * KZT 〒 * LAK ₭ * LBP ل.ل * LKR ₨ * MAD د.م. * MDL L * MKD ден * MMK K * MNT ₮ * MOP P * MUR ₨ * MVR MVR * MWK MK * MYR RM * NGN ₦ * NIO C$ * NPR ₨ * NZD $ * PEN S/. * PGK K * PHP ₱ * PKR ₨ * PLN zł * PYG ₲ * QAR ر.ق * RON Lei * RSD РСД * RWF FRw * SAR ر.س * SBD $ * SEK kr * SGD $ * SHP £ * SLL Le * STD Db * THB ฿ * TJS ЅМ * TOP T$ * TTD $ * TWD $ * TZS Sh * UAH ₴ * UGX USh * USD $ * UYU $ * UZS * VND ₫ * VUV Vt * WST T * XAF Fr * XCD $ * XOF Fr * XPF Fr * YER ﷼ Close NEWSLETTER Receive special offers and first look at new products. Be part of the ZAMT community and get 10% off on every order! Email address Subscribe * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection.