/** Shopify CDN: Minification failed

Line 736:0 Unexpected "<"
Line 770:0 Unexpected "<"
Line 783:0 Unexpected "{"
Line 783:1 Expected identifier but found "%"
Line 785:0 Unexpected "{"
Line 785:1 Expected identifier but found "%"
Line 807:0 Unexpected "<"

**/
/* Trustbar */
.Trustbar {
    color: #000;
    display: flex;
    --image-size: 2rem;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    line-height: 1;
    margin: 0 auto 5px;
    padding: 2px 7px;
  }
  
  .Trustbar__Images {
      display: flex;
      flex-shrink: 0;
      align-items: center;
  }
  
  .Trustbar__Image {
      border-radius: 50%;
      height: var(--image-size);
      width: var(--image-size);
  }
  .Trustbar__Text {
      display: flex;
      align-items: center;
      font-size: .9rem;
      margin-top: 0;
      gap: 0.25rem;
  }
  @media screen and (max-width: 640px) {
    .Trustbar__Text{
      font-size: .9rem;
    }
  }
  
  .Trustbar__Image:nth-of-type(2) {
      transform: translateX(calc(var(--image-size)/2*-1));
  }
  
  .trustbar_proof_icon{
      margin:0 5px 0 2px;
      width:10px;
      height:auto;
  }
  
  /* Cart: Sperrgut-Hinweis & Versandzeile – gleiche Schriftgröße wie Zwischensumme/Versand/Gesamtsumme */
  .cart__shipping-message-holder.cart__summary-text-size,
  .cart__shipping-message-holder.cart__summary-text-size .cart-shipping-message,
  .cart__shipping-message-holder.cart__summary-text-size .free-shipping,
  .cart__shipping-message-holder.cart__summary-text-size .free-shipping__default-message,
  .cart__shipping-message-holder.cart__summary-text-size .free-shipping__success-message,
  .cart__shipping-message-holder.cart__summary-text-size .cart-shipping-message__text,
  .cart__shipping-message-holder.cart__summary-text-size .free-shipping span {
    font-size: var(--font-body-medium) !important;
  }
  .cart-shipping-message {
    line-height: 1.4;
    margin: 0.5rem 0;
  }
  .cart-shipping-message--sperrgut {
    padding: 0.5rem 0;
    color: inherit;
  }
  .cart-shipping-message__text {
    font-weight: 500;
  }
  .cart__shipping-message-holder {
    margin-bottom: 0.5rem;
  }
  /* Free-Shipping-Bar: volle Breite des rechten Containers (Cart-Seite + Drawer) */
  .cart__shipping-message-holder .free-shipping,
  .drawer__foot .cart__shipping-message-holder .free-shipping {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .cart__shipping-message-holder .free-shipping__progress-bar,
  .drawer__foot .cart__shipping-message-holder .free-shipping__progress-bar,
  .drawer__shipping-message .free-shipping__progress-bar {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  /* Cart Page: Hinweis unter „Warenkorb“-Überschrift */
  .cart__title-note {
    margin-top: 0.25rem;
    margin-bottom: 0;
    color: var(--color-foreground, #111);
    opacity: 0.85;
  }

  /* Kostentransparenz: 0.7rem für Zwischensumme, Versand, Gesamtsumme und Beträge */
  .cart__price__holder.body-medium .cart__total .cart__total__label,
  .cart__price__holder.body-medium .cart__total .cart__total__price {
    font-size: 0.7rem;
  }
  /* Kostentransparenz: Zeilenabstand mindestens halbiert */
  .cart__price__holder .cart__total {
    margin-top: calc(var(--inner, 15px) / 2);
    margin-bottom: calc(var(--inner, 15px) / 2);
  }
  .cart__price__holder .cart__total:first-child {
    margin-top: 0;
  }
  .cart__price__holder .cart__total:last-child {
    margin-bottom: 0;
  }
  /* Abstand Versand → Gesamtsumme 10 % größer als zwischen den anderen Zeilen */
  .cart__price__holder .cart__total.cart__total--shipping {
    margin-bottom: calc(var(--inner, 15px) * 0.6) !important;
  }
  .cart__total--total .cart__total__label {
    font-weight: 600;
  }
  .cart__total--total .cart__total__price {
    font-weight: 600;
  }
  /* Abstand zwischen Checkout-Button und Rabattcode-Hinweis halbieren */
  .cart__form .cart__note {
    margin-top: calc(var(--inner, 15px) / 4);
  }
  .drawer__foot .cart__note {
    margin-top: calc(var(--inner, 15px) / 4);
  }

  /* Abstand zwischen Gesamtsumme und Bestellhinweisen (Cart-Seite) */
  .cart__aside .cart-block .cart__widget {
    margin-top: calc(var(--inner, 15px) * 0.9);
  }

  /* Price toggle (Netto / Brutto) on PDP – ein Switch, 0% / 19% innerhalb der ovalen Fläche */
  .product__price-toggle {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
  }

  .product__price-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 72px;
    height: 36px;
    padding: 0 10px 0 0;
    border-radius: 18px;
    border: 2px solid currentColor;
    background-color: #22343a;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease;
  }

  .product__price-toggle-btn::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    transition: transform 0.2s ease;
  }

  .product__price-toggle-btn.is-gross {
    justify-content: flex-start;
    padding: 0 0 0 10px;
  }

  .product__price-toggle-btn.is-gross::before {
    transform: translateX(36px);
  }

  .product__price-toggle-label {
    position: relative;
    z-index: 1;
  }

  /* MwSt.-Hinweis unter dem Preis-Switch (PDP + Featured Product): gleiche Schriftgröße und Optik */
  #vat-info-block,
  .product__price__wrap .product__tax.product__tax--vat-info {
    font-size: 0.77em !important;
    color: #777;
    margin-top: -8px;
    line-height: 1.6;
  }

  /* Featured Product: Abstand Steuerhinweis zum Switcher und nach unten */
  .product__price__wrap--featured .product__tax.product__tax--vat-info {
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding-bottom: 0.25rem;
  }

  /* Cart Page: Mobile – Menge & Entfernen unterhalb der Varianten/Properties */
  @media only screen and (max-width: 749px) {
    .cart__items .cart__item__content__left {
      display: block;
    }

    .cart__items .cart__item__content-inner {
      width: 100%;
      margin-bottom: 0.35rem;
    }

    .cart__items .cart__price {
      width: 100%;
      padding: 0;
      text-align: left;
      margin-bottom: 0.35rem;
    }

    .cart__items quantity-input.cart__quantity-wrapper {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-top: 0.25rem;
    }

    .cart__items .cart__quantity-counter {
      margin-top: 0;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    .cart__items .cart__item__remove {
      position: static;
      display: inline-block;
      margin: 0;
      font-size: 0.75rem;
      white-space: nowrap;
    }
  }

  /* Shipping and Total */
  
.shippingAndTotal {
  display: block;
  margin: 10px 0;
}

.ShippingAndTotal__Line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    line-height: 14px;
}

.ShippingAndTotal__Line:not(:last-child) {
    margin-bottom: 8px;
}

.ShippingAndTotal__Line .HighlightText {
    color: #439775;
    font-weight: 400;
}

  /* Cart Drawer Success Message */

  .Drawer__Message--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 6px 24px;
    -webkit-box-shadow: inset 0 -1px #f6f6f6;
            box-shadow: inset 0 -1px #f6f6f6;
    color: #007600;
    font-size: 12px;
  }

  .Drawer__Message--inner img {
    margin-right: 8px;
  }

  .Drawer.show-message .Drawer__Message {
    display: block;
  }

  /* Payment Methodes */

  #payment-methodes-custom {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
  #payment-methodes-custom .payment_methodes_custom_title {
  font-size: 1.2em;
  font-weight: 600;
  color: #000;
}
.payment-icons .icon {
    width: 45px;
    height: 28px;
    margin-top: 5px;
}
.list--inline {
  padding: 0;
  margin: 0;
   justify-content: space-between;
    display: flex;

}
.list--inline li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

/* Klarna */

.klarna{
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    text-align: left;
    color: #17120f;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border-style: solid;
    border-color: #eae7e4;
    border-radius: 0px;
    border-width: 1px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
  flex-direction: row;
    justify-content: center;
    align-items: center;
  display:flex;
}
      .klarnaicon{
        display: flex;
    align-items: center;
      }
      .klarnatext{
        margin-left: 14px;
    margin-right: 0px;
      }

      #ShopifyChat{z-index: 3 !important}
      #trustbadge-container-98e3dadd90eb493088abdc5597a70810{z-index: 3 !important}

/* YouTube Inline Video */
youtube-inline {
  display: block;
  position: relative;
  width: 100%;
}

.youtube-inline__poster {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
}

.youtube-thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #000;
}

.youtube-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-inline__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.youtube-thumbnail-wrapper {
  cursor: pointer;
}

.youtube-inline__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-inline__play-button:focus {
  outline: none;
}

.youtube-inline__play-button svg {
  display: block;
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.youtube-inline__play-button-bg {
  transition: fill 0.2s ease;
}

.youtube-inline__play-button:hover .youtube-inline__play-button-bg {
  fill: #cc0000;
}

.youtube-inline__player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}

.youtube-inline__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Content-Overlay durchklickbar machen, aber Buttons behalten */
.hero__video.has-youtube-inline ~ .hero__content__wrapper {
  pointer-events: none !important;
}

.hero__video.has-youtube-inline ~ .hero__content__wrapper .hero__content {
  pointer-events: none;
}

/* Nur die tatsächlichen interaktiven Elemente sind klickbar */
.hero__video.has-youtube-inline ~ .hero__content__wrapper .btn,
.hero__video.has-youtube-inline ~ .hero__content__wrapper a,
.hero__video.has-youtube-inline ~ .hero__content__wrapper button,
.hero__video.has-youtube-inline ~ .hero__content__wrapper video-popup {
  pointer-events: auto;
}

/* YouTube-Inline Element braucht höheren z-index für Klicks */
.hero__video.has-youtube-inline {
  z-index: 10;
}

.hero__video.has-youtube-inline youtube-inline {
  position: relative;
  z-index: 10;
}

.hero__video.has-youtube-inline .youtube-inline__poster {
  z-index: 10;
}

.hero__video.has-youtube-inline .youtube-inline__play-button {
  z-index: 25;
}

/* ============================================
   CUSTOM SEARCH BAR STYLES
   ============================================ */

/* Visibility Helpers */
.desktop-only {
  display: none !important;
}

.mobile-only {
  display: block !important;
}

@media screen and (min-width: 750px) {
  .desktop-only {
    display: flex !important;
  }
  
  .mobile-only {
    display: none !important;
  }
}

/* Desktop Search Bar - neben dem Hamburger-Menü */
.header__desktop__search-bar {
  flex: 1;
  max-width: 400px;
  margin-left: 15px;
}

/* ===== Logo above menu: Suchleiste exakt mittig per CSS Grid ===== */
/* Grid: linke und rechte Spalte gleich breit (1fr), Mitte = Suchleisten-Breite → echte Mitte */
[data-header-style="logo_above"] .header__desktop__upper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  justify-content: unset;
}

[data-header-style="logo_above"] .header__desktop__upper .header__desktop__bar__l,
[data-header-style="logo_above"] .header__desktop__upper .header__desktop__bar__c,
[data-header-style="logo_above"] .header__desktop__upper .header__desktop__bar__r {
  min-width: 0;
}

[data-header-style="logo_above"] .header__desktop__upper .header__desktop__bar__c.header__desktop__bar__c--logo-above {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Suchleiste: ca. 30 % breiter als vorher (420 → 546px), vertikal in einer Linie */
[data-header-style="logo_above"] .header__desktop__search-bar--logo-above {
  width: 546px;
  max-width: 100%;
  flex-shrink: 0;
}

.header__desktop__search-bar header-search-popdown {
  width: 100%;
}

.header__desktop__search-bar details {
  width: 100%;
}

/* Desktop-Suchleiste: Standard = solider Look (lesbar auf weißem Hintergrund) */
.search-bar-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.search-bar-trigger:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.25);
}

.search-bar-trigger .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #333;
}

.search-bar-placeholder {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile Search Bar - unterhalb des Headers */
.mobile-search-bar {
  grid-column: 1 / -1;
  background: var(--bg, #fff);
  padding: 10px 15px;
  margin: 0 var(--outer-offset, -15px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Transparente Suchleisten NUR wenn echte Overlay-Section dahinter (z.B. Startseite mit Hero).
   Auf Collection/Produktseite ohne Hero bleibt die Suchleiste solid = lesbar auf weiß. */
body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .mobile-search-bar {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.2);
}

body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .mobile-search-bar__trigger {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-color: rgba(255, 255, 255, 0.3);
}

body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .mobile-search-bar__trigger .icon,
body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .mobile-search-bar__placeholder {
  color: #fff;
}

/* Desktop-Suchleiste transparent nur über Hero/Overlay */
body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .search-bar-trigger {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .search-bar-trigger:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .search-bar-trigger .icon,
body:has(.main-content > .shopify-section.section-overlay-header:first-of-type):not(:has(.main-content > .shopify-section.section-overlay-header:first-of-type > .prevent-transparent-header)) [data-header-transparent]:not(.meganav--visible):not(.js__header__stuck) .search-bar-placeholder {
  color: #fff;
}

/* ===== Wenn Header STUCK ist (nach Scroll) → Normales Styling ===== */
/* Mobile */
[data-header-transparent].js__header__stuck .mobile-search-bar {
  background: var(--bg, #fff);
  border-top-color: rgba(0, 0, 0, 0.1);
}

[data-header-transparent].js__header__stuck .mobile-search-bar__trigger {
  background: #f5f5f5;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: #e0e0e0;
}

[data-header-transparent].js__header__stuck .mobile-search-bar__trigger .icon,
[data-header-transparent].js__header__stuck .mobile-search-bar__placeholder {
  color: #666;
}

/* Desktop */
[data-header-transparent].js__header__stuck .search-bar-trigger {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(0, 0, 0, 0.15);
}

[data-header-transparent].js__header__stuck .search-bar-trigger .icon,
[data-header-transparent].js__header__stuck .search-bar-placeholder {
  color: #333;
}

.mobile-search-bar header-search-popdown {
  width: 100%;
}

.mobile-search-bar details {
  width: 100%;
}

.mobile-search-bar__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  list-style: none;
}

.mobile-search-bar__trigger::-webkit-details-marker {
  display: none;
}

.mobile-search-bar__trigger:hover,
.mobile-search-bar__trigger:focus {
  border-color: #333;
}

.mobile-search-bar__trigger .icon {
  width: 18px;
  height: 18px;
  color: #666;
  flex-shrink: 0;
}

.mobile-search-bar__placeholder {
  color: #666;
  font-size: 14px;
}

/* Hide the X icon in the search triggers */
.search-bar-trigger .icon--cancel,
.mobile-search-bar__trigger .icon--cancel {
  display: none;
}

/* Adjust header mobile left to accommodate search bar on desktop */
@media screen and (min-width: 750px) {
  .header__mobile__left {
    display: flex;
    align-items: center;
    flex: 1;
  }
}



<style>
#payment-methodes-custom {
/* -- Abstand zum Inhalt davor/danach -- */
margin-top: 10px;
margin-bottom: 10px;
/* -- Rechts, Zentriert oder Linksbündig (Icons/Text) -- */
text-align: center;
}
#payment-methodes-custom .payment_methodes_custom_title {
/* -- Schriftgrösse/Typ/Farbe -- */
font-size: 1.2em;
font-weight: 600;
color: #000;
}
.payment-icons .icon {
/* -- Grösse der Icons -- */
width: 45px;
height: 28px;
/* -- Abstand zum Titel -- */
margin-top: 5px;
/* -- Die nächsten zwei Linien ändern die Icons auf Grau, kann entfernt werden -- */
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
}
/* -- Definitionen für die Auflistung, kann bei den Shopify-Standad Themes entfernt werden (da schon vorhanden im Theme) -- */
.list--inline {
padding: 0;
margin: 0;
}
.list--inline li {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
</style>




<style>
.klarna{
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
text-align: left;
color: #17120f;
font-size: 14px;
font-weight: 400;
line-height: 20px;
{% comment %}
background-color: #FFFFFF;
{% endcomment %}
border-style: solid;
border-color: #eae7e4;
border-radius: 0px;
border-width: 1px;
padding-left: 14px;
padding-right: 14px;
padding-top: 4px;
padding-bottom: 4px;
flex-direction: row;
justify-content: center;
align-items: center;
display:flex;
}
.klarnaicon{
display: flex;
align-items: center;
}
.klarnatext{
margin-left: 14px;
margin-right: 0px;
}
</style>