/** Shopify CDN: Minification failed

Line 125:18 Unexpected "{"
Line 125:21 Expected ":"
Line 125:24 Unexpected "{"

**/
.header__main {
  transition: top 0.3s ease-in-out;
}
.header__main.hide {
  top: -100% !important;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav ul {
  display: flex;
  align-items: center;
}
.header__nav ul li a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 125%;
  color: #fff;
}
.header__nav ul li a span {
  position: relative;
}
.header__nav ul li a span:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.header__nav ul li a:not(.active):hover span:after {
  width: 100%;
}
.header__nav ul li a.active span:after {
  width: 100%;
}
.header__icons-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__icons-wrapper a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 131%;
  color: #fff;
}
.header__icons-wrapper a.product__buy {
}
.header__icons-wrapper a.product__buy .global__btn-icon {
}
.cart__drawer-open {
  position: relative;
}
.cart__drawer-open span {
  font-size: 10px;
  line-height: 1.2;
  position: absolute;
  right: 5px;
  top: -10px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffff;
  color: #000;
}

@media screen and (max-width: 768px) {
  .drawer__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }
  .drawer__menu.open {
    left: 0;
  }
  .drawer__menu-wrapper {
    padding: 20px 16px;
  }
  .drawer__menu-close {
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .drawer__menu-wrapper nav ul li a {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    padding: 10px 0;
  }
  .drawer__menu-wrapper nav ul li:not(:last-child) {
    margin: 0 0 10px;
  }
  .header__icons-wrapper a.burger__icon {
    padding: 10px;
    border-radius: 10px;
  }
}

#shopify-section-{{id}} {
  background: rgba(255, 255, 255, 0.7); /* Weiße, halbtransparente Farbe */
  backdrop-filter: blur(10px); /* Blur-Effekt */
  -webkit-backdrop-filter: blur(10px); /* Safari-Unterstützung */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}
