/** Shopify CDN: Minification failed

Line 771:1 Unexpected "^"

**/
/* =========================================================
   LEVEYN – GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #0b0b0b;
  color: #f5f0e8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #0b0b0b;
  color: #f5f0e8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  min-height: 90px;
  margin: 0 auto;
  padding: 0 35px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}


/* =========================================================
   LINKER / RECHTER NAVIGATION
   ========================================================= */

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;

  padding: 10px 0;

  color: #f5f0e8;
  text-decoration: none;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.10em;

  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.65;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #f5f0e8;
  text-decoration: none;

  text-align: center;
  white-space: nowrap;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.20em;
  line-height: 1;
}

.logo-sub {
  margin-top: 6px;

  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.30em;

  color: rgba(245,240,232,0.65);
}


/* =========================================================
   SUCHE
   ========================================================= */

.L leveyn-search-button,
.Leveyn-search-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #f5f0e8;
  padding: 8px;
  cursor: pointer;
}

.Leveyn-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Leveyn-search-button svg {
  display: block;
}


/* =========================================================
   WARENKORB
   ========================================================= */

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-icon svg {
  display: block;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -10px;

  min-width: 16px;
  height: 16px;
  padding: 0 4px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f5f0e8;
  color: #0b0b0b;

  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.L leveyn-dropdown,
.Leveyn-dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 210px;

  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.10);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-item.has-dropdown:hover > .Leveyn-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.Leveyn-dropdown-inner {
  padding: 12px 0;
}

.Leveyn-dropdown-item {
  position: relative;
}

.Leveyn-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 18px;

  color: #f5f0e8;
  text-decoration: none;

  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
}

.Leveyn-dropdown-link:hover {
  background: rgba(255,255,255,0.05);
}


/* =========================================================
   INLINE SUCHE
   ========================================================= */

.L leveyn-inline-search,
.Leveyn-inline-search {
  display: none;
}

.Leveyn-search-open .Leveyn-inline-search {
  display: block;
}

.Leveyn-inline-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;

  padding: 18px 35px;

  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.Leveyn-inline-search-form {
  max-width: 700px;
  margin: 0 auto;

  display: flex;
  align-items: center;

  border-bottom: 1px solid rgba(245,240,232,0.35);
}

.Leveyn-inline-search-form input {
  flex: 1;

  padding: 12px 0;

  border: 0;
  outline: none;
  background: transparent;
  color: #f5f0e8;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

.Leveyn-inline-search-form input::placeholder {
  color: rgba(245,240,232,0.45);
}

.Leveyn-inline-search-form button {
  border: 0;
  background: transparent;
  color: #f5f0e8;

  font-family: 'Montserrat', sans-serif;
  font-size: 11px;

  cursor: pointer;
}


/* =========================================================
   MAIN
   ========================================================= */

.main-content {
  width: 100%;
  background: #0b0b0b;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: calc(100vh - 92px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #0b0b0b;
}


/* =========================================================
   HERO BILD
   ========================================================= */

.hero-image,
.hero img {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
  object-position: center center;

  transform: scale(0.75);

  transform-origin: center center;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.15)
    );

  pointer-events: none;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.hero-content {
  position: absolute;

  z-index: 2;

  max-width: 800px;

  padding: 3rem;

  text-align: center;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero-eyebrow {
  display: block;

  margin-bottom: 1rem;

  color: var(--auyin-gold);

  font-size: 0.65rem;

  letter-spacing: 0.4em;

  text-transform: uppercase;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  width: 100%;
  min-height: calc(100vh - 92px);

  display: flex;
  align-items: flex-start;
  justify-content: center;

  overflow: hidden;

  background: #0b0b0b;
}


/* =========================================================
   HERO BILD
   ========================================================= */

.hero .hero-image,
.hero > img,
.hero img {
  position: absolute;

  top: 0;
  left: 50%;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  object-fit: contain;
  object-position: center top;

  transform: translateX(-50%) scale(0.75);
  transform-origin: center top;

  max-width: none;

  z-index: 0;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.15)
    );

  pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
  position: relative;

  z-index: 2;

  max-width: 800px;

  padding: 3rem;

  text-align: center;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero-eyebrow {
  display: block;

  margin-bottom: 1rem;

  color: var(--auyin-gold);

  font-size: 0.65rem;

  letter-spacing: 0.4em;

  text-transform: uppercase;
}


/* =========================================================
   HERO TITEL
   ========================================================= */

.hero-title {
  margin: 0;

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3.5rem, 8vw, 7rem);

  font-weight: 300;

  line-height: 0.95;

  letter-spacing: 0.03em;
}


/* =========================================================
   HERO UNTERTITEL
   ========================================================= */

.hero-subtitle {
  margin-top: 1.5rem;

  color: var(--auyin-white-soft);

  font-size: 0.8rem;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px 25px;

  margin-bottom: 28px;
}

.footer-links a {
  color: rgba(245,240,232,0.72) !important;
  text-decoration: none !important;

  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff !important;
}


/* =========================================================
   ZAHLUNGSARTEN
   ========================================================= */

.footer-payment-icons {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;

  padding-top: 22px;
  margin-bottom: 28px;

  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-payment-icons > span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(245,240,232,0.55);

  white-space: nowrap;
}

.payment-icons-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-icons-fixed img {
  display: block;

  width: 42px;
  height: 27px;

  object-fit: contain;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-copy {
  width: 100%;

  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-copy p {
  margin: 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;

  color: rgba(245,240,232,0.45);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .nav-container {
    min-height: 75px;
    padding: 0 16px;
  }

  .nav-left,
  .nav-right {
    gap: 12px;
  }

  .nav-link {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .logo-text {
    font-size: 23px;
  }

  .logo-sub {
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .site-footer {
    padding: 42px 18px 22px;
  }

  .footer-brand {
    margin-bottom: 24px;
  }

  .footer-brand .logo-text {
    font-size: 24px;
  }

  .footer-brand p {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .footer-links {
    gap: 12px 18px;
    margin-bottom: 24px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .footer-payment-icons {
    padding-top: 20px;
    margin-bottom: 24px;
    gap: 10px;
  }

  .footer-payment-icons > span {
    width: 100%;
    margin-bottom: 3px;
  }

  .payment-icons-fixed {
    gap: 7px;
  }

  .payment-icons-fixed img {
    width: 38px;
    height: 25px;
  }

  .footer-copy {
    padding-top: 18px;
  }

  .footer-copy p {
    font-size: 9px;
  }
}^
/* =========================================================
   LEVEYN – KORREKTUR HEADER / HERO
   ========================================================= */

/* Das kleine "Leveyn" oben links entfernen */
#page-loader {
  display: none !important;
}


/* =========================================================
   TITELBILD – NICHT MEHR SO STARK ZOOMEN
   ========================================================= */

.hero,
.hero-section,
.hero-banner {
  width: 100% !important;
  overflow: hidden !important;
}


/* Wenn das Titelbild ein normales IMG ist */
.hero img,
.hero-section img,
.hero-banner img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;

  object-fit: contain !important;
  object-position: center center !important;

  display: block !important;
}


/* =========================================================
   HERO AUF DESKTOP
   ========================================================= */

@media (min-width: 701px) {

  .hero img,
  .hero-section img,
  .hero-banner img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

}


/* =========================================================
   HERO AUF HANDY
   ========================================================= */

@media (max-width: 700px) {

  .hero img,
  .hero-section img,
  .hero-banner img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

}
/* Footer Logo kleiner */
.site-footer .footer-brand .logo-text {
  font-size: 1.5rem !important;
  letter-spacing: 0.25em !important;
}

.site-footer .footer-brand p {
  font-size: 0.55rem !important;
  letter-spacing: 0.3em !important;
}