/** Shopify CDN: Minification failed

Line 174:0 Unexpected "}"

**/
/* ========================================
   Desktop Header Anpassungen
   ======================================== */

@media screen and (min-width: 991px) {
  
  /* ALLE Icons auf exakt 24x24px - AGGRESSIVE Selektoren */
  .Header__Icon svg,
  .Header__Icon .Icon,
  .Header__SecondaryAction svg,
  .Header__SecondaryAction .Icon,
  svg.header__nav-icon,
  svg.icon-search,
  svg.icon-cart,
  [class*="wishlist"] svg,
  a[href*="wishlist"] svg,
  button[aria-label*="Search"] svg,
  button[aria-label*="Cart"] svg,
  .header__icon svg,
  .Header__Wrapper svg:not(.Header__LogoImage) {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }
  
  /* ViewBox beibehalten (wichtig für korrekte Darstellung) */
  .Header__Icon svg,
  .Header__SecondaryAction svg {
    display: block !important;
  }
  
  /* Icon-Container auch auf feste Größe */
  .Header__Icon,
  .Header__IconWrapper,
  .Header__SecondaryAction > * {
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Icon-Abstände zwischen den Icons */
  .Header__SecondaryAction {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
  }
  
  /* Wishlist + Cart Badge Anpassungen */
  [class*="wishlist"],
  .Header__CartDot {
    position: relative !important;
  }
  
  /* Wishlist Icon Linienstärke */
  [class*="wishlist"] svg path,
  a[href*="wishlist"] svg path {
    stroke-width: 0.9 !important;
  }
}

/* ========================================
   Mobile Header Anpassungen
   ======================================== */

@media screen and (max-width: 990px) {
  
  /* Header Padding reduzieren */
  .Header,
  .Header--initialized {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  .Header__Wrapper {
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  /* ALLE Icons auf exakt 24x24px */
  .Header__Icon svg,
  .Header__Icon .Icon,
  .Header__SecondaryAction svg,
  svg.header__nav-icon,
  svg.icon-search,
  svg.icon-cart,
  [class*="wishlist"] svg,
  a[href*="wishlist"] svg,
  button[aria-label*="Search"] svg,
  button[aria-label*="Cart"] svg,
  .Header__Wrapper svg:not(.Header__LogoImage) {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }
  
  /* Icon-Container */
  .Header__Icon,
  .Header__IconWrapper {
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px !important;
    margin: 0 !important;
  }
  
  /* Wishlist Icon Linienstärke */
  [class*="wishlist"] svg path,
  a[href*="wishlist"] svg path {
    stroke-width: 0.9 !important;
  }
}

/* ========================================
   Produkt Zoom Icon - Lupe durch + ersetzen
   NUR für Mobile
   ======================================== */

@media screen and (max-width: 990px) {
  
  /* Lupe SVG verstecken */
  .product-gallery__zoom-button svg.icon-zoom,
  .product-gallery__zoom-button .icon-zoom,
  button.product-gallery__zoom-button svg {
    display: none !important;
  }
  
  /* Button Hintergrund an Seitenhintergrund anpassen */
  .product-gallery__zoom-button.circle-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #EFEEE8 !important;
    border: 1px solid #1C1C1C !important;
  }
  
  /* Plus-Zeichen mit CSS erstellen */
  .product-gallery__zoom-button::before {
    content: "+" !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    color: #1C1C1C !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  /* Hover Effekt */
  .product-gallery__zoom-button:hover {
    background-color: #e5e4de !important;
    border-color: #000000 !important;
  }
}
}

}/* ===============================
   PRESTIGE – Header Custom CSS (Section)
   Startseite: transparent + dunkler Verlauf
   Hover: normaler Header (Scheme)
   =============================== */

/* Dein bisheriger Spacing/Logo-Block (behalten) */
x-header.header {
  padding-block: 15px !important;
  --header-logo-width: 140px !important;
  --container-gutter: 25px !important;
  position: relative !important;
  z-index: 40 !important;
}
x-header.header.is-sticky {
  padding-block: 6px !important;
}
x-header.header .header__logo-image {
  max-width: 140px !important;
  height: auto !important;
}
x-header.header .header__inner {
  padding-inline: 15px !important;
}
@media (max-width: 749px) {
  x-header.header {
    padding-block: 6px !important;
    --header-logo-width: 120px !important;
  }
  x-header.header .header__logo-image {
    max-width: 120px !important;
  }
}
/* Overscroll / Page background fix */
html,
body{
  background-color: #EFEEE8 !important;
}