www.zamt-berlin.com Open in urlscan Pro
2620:127:f00f:e::  Public Scan

Submitted URL: http://www.zamt-berlin.com/pages/who-is-zamt
Effective URL: https://www.zamt-berlin.com/pages/who-is-zamt
Submission: On April 05 via api from US — Scanned from US

Form analysis 6 forms found in the DOM

GET /search

<form class="my-6 section-x-padding" action="/search" method="get" role="search">
  <div class="flex w-full max-w-xs items-end">
    <label for="sidebar-search" class="visually-hidden">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-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="/pages/who-is-zamt">
  <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
   * SHOP CATEGORIES
     * All
     * Vegan
     * Accessories
     * Work
     * Bestseller
     * Giftcard
     * ZAMT STORE
   * BESTSELLER
     * ALL BESTSELLER
     * HIP BAG I CAN
     * HIP BAG XL I DJANGO
     * SHOPPER | RIN
   * BAGS
     * All 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

 * SHOP
   SHOP
   
   
   SHOP CATEGORIES
   
    * All
    * Vegan
    * Accessories
    * Work
    * Bestseller
    * Giftcard
    * ZAMT STORE
   
   
   BESTSELLER
   
    * ALL BESTSELLER
    * HIP BAG I CAN
    * HIP BAG XL I DJANGO
    * SHOPPER | RIN
   
   
   BAGS
   
    * All 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

OUR TAKE ON SUSTAINABILITY


HI! WE ARE ZAMT BERLIN.

We noticed it was difficult for us to shop the items we longed for as they were
not eco, but the eco-friendly products were not desirable; thus, ZAMT was born.
We aim to create essential pieces that are fair and eco-friendly but do not
compromise on style. For us, fair production using only eco-friendly materials
should be a given – so we want to win you over by the designs and not your bad
conscience. 



Our mission is to create timeless and sustainable pieces that you will cherish
forever




LOCAL PRODUCTION

We try to make all ZAMT goods close to Berlin with our manufacturers in Poland
and Germany. Our efforts are further highlighted with our partnership with
Heyhey Waldfreunde using deer hides from wild animals from the forests of
Brandenburg. But we see ZAMT and our passion for creation and design as a
driving force to connect with people and cultures, too. So it happens that we
fall in love with people, cultures, and their skills putting some distance
between us and our artisans. Like with our partners from Izmir in Turkey. Our
Leitidee to minimize unnecessary transport stays though. Hence we source the
materials for the products from the proximity of the artisans. In Izmir, Turkey
the tannery is just a stone's throw from the atelier and the cotton for the
canvas comes from Turkey, too.


MEET OUR TEAM


 * THE FOUNDERS AND DESIGNERS
   
   Zisan Buga and Max Reinhardt were missing beautiful objects that not only
   look good but are also sustainably manufactured. That is why the two
   beautiful spirits founded ZAMT in 2018 and have been designing
   both minimalist and architecturally inspired leather accessories with great
   attention to detail. One of the most exciting and sustainable materials that
   have existed since time immemorial is used for this purpose: leather. 
   
   The name is just as clever as their products: Zisan bugA + Max reinhardT=
   ZAMT. Zisan and Max met in Paris, where they founded ZAMT and a family. Today
   they live and work with their children Can and Romy in Berlin.


 * THE PRODUCTION TEAM
   
   Our manufacturers are selected with great care, ensuring a non-exploitative
   environment, fair working conditions, and a love for nature and its
   preservation. Respecting human rights and the abolition of child labor is
   key. 
   
   In Italy, our bags are specially made by Paolo, Roberto, and their team who
   have mastered their craftsmanship working for the very best in the luxury
   leather bag industry since the 70s.
   
   
   
   The dynamic sister duo of Ana & Sara is proudly running an all-women factory
   continuing the story their father Antonio began. 



Choosing European artisans not only reduces our carbon footprint but also allows
us to support the flourishing of local artisanal craftsmanship




OUR MATERIALS

Our leather comes from a third-generation family-run tannery in Tuscany that has
mastered the artisanal process of vegetable tanning using organic tannins for a
natural, environment-friendly tanning process. The hides are a by-product of the
meat industry and would, if not refined into leather otherwise be disposed of.
Our tanneries only use European hides minimizing the negative effects of
transport and guaranteeing that the raw materials are not treated with
environmentally harming conservatives such as tanning salts used in the chrome
tanning process.

In 2021, We introduced our first vegan line with a highly sustainable
plant-based vegan leather made from cactus. Our aim is to offer products that
are cruelty-free, sustainable, without any toxic chemicals, phtalates, PVC, and
long-lasting. The cactus leather lives up to our high standards of durability,
esthetic, and sensory quality; the leather has a smooth touch and a classy look.



WE RECYCLE YOUR BAGS!

When you no longer cherish your bag, please send it in – you will be rewarded
with a 20 % voucher and we will make a new creation out of it or recycle it, and
be part of the circular economy.




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.