/** Shopify CDN: Minification failed

Line 182:25 Expected identifier but found whitespace
Line 182:27 Unexpected "{"
Line 182:36 Expected ":"
Line 182:68 Expected identifier but found "%"
Line 188:27 Expected identifier but found whitespace
Line 188:29 Unexpected "{"
Line 188:38 Expected ":"
Line 188:71 Expected identifier but found "%"

**/
.collection-hero__inner {
  display: flex;
  flex-direction: column;
}

.collection-hero--with-image .collection-hero__inner {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

@media screen and (min-width: 750px) {
  .collection-hero.collection-hero--with-image {
    padding: calc(4rem + var(--page-width-margin)) 0 calc(4rem + var(--page-width-margin));
    overflow: hidden;
  }

  .collection-hero--with-image .collection-hero__inner {
    padding-bottom: 0;
  }
}

.collection-hero__text-wrapper {
  flex-basis: 100%;
}

@media screen and (min-width: 750px) {
  .collection-hero {
    padding: 0;
  }

  .collection-hero__inner {
    align-items: center;
    flex-direction: row;
    padding-bottom: 0;
  }
}

.collection-hero__title {
  margin: 2.5rem 0;
}

.collection-hero__title + .collection-hero__description {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .collection-hero__title + .collection-hero__description {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .collection-hero__description {
    max-width: 66.67%;
  }

  .collection-hero--with-image .collection-hero__description {
    max-width: 100%;
  }
}

.collection-hero--with-image .collection-hero__title {
  margin: 0;
}

.collection-hero--with-image .collection-hero__text-wrapper {
  padding: 5rem 0 4rem;
}

.collection-hero__image-container {
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: 10px; 
  overflow: hidden;      
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

@media screen and (max-width: 749px) {
  .collection-hero__image-container {
    height: auto;          /* 🔑 */
    min-height: unset;
    overflow: hidden;
     border-radius: 10px;
  }
}

@media screen and (min-width: 750px) {
  .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 4rem 2rem 4rem 0;
    flex-basis: 50%;
  }

  .collection-hero__image-container {
    align-self: stretch;
    flex: 1 0 50%;
    margin-left: 3rem;
    min-height: 20rem;
     border-radius: 10px;
  }
}
/* Basis */
.collection-hero__image-container {
  position: relative;
   border-radius: 10px;
}

/* Overlay Wrapper */
.collection-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

/* Overlay Bild */
.collection-hero__overlay img {
  width: var(--overlay-size);
  max-width: 100%;
  height: auto;
   display: block;
}
/* Stack */
.collection-hero__image-stack {
 display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .collection-hero__image-stack {
    justify-content: flex-start; /* 🔑 */
  }
}


/* Hauptbild */
.collection-hero__main-image img {
   width: 100%;
  height: auto;
  display: block;
    border-radius: 10px; 
}
.collection-hero__main-image
{  display: flex;
  justify-content: center;
}

/* Zusatzbild */
.collection-hero__secondary-image {
   margin-bottom: 30px;
  margin-top: 0;
  width: var(--secondary-image-size);
  display: flex;
  justify-content: center;
}

.collection-hero__secondary-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
.collection-hero {
  --secondary-image-size: {{ section.settings.overlay_size_mobile }}%;
}

/* Desktop */
@media (min-width: 750px) {
  .collection-hero {
    --secondary-image-size: {{ section.settings.overlay_size_desktop }}%;
  }
}
.collection-hero .media > img {
  height: auto;
}


