/** Shopify CDN: Minification failed

Line 163:0 Expected "}" to go with "{"

**/
.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(5rem + var(--page-width-margin)) 0 calc(5rem + 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 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
  position: relative;
  padding-bottom: 1.5rem;
}

.collection-hero__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 3px;
  background-color: #F5A623;
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  animation: hero-line-reveal 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

@keyframes hero-line-reveal {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Fallback voor browsers zonder animation-timeline */
@supports not (animation-timeline: view()) {
  .collection-hero__title::after {
    animation: hero-line-reveal 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  }
}

.collection-hero__title + .collection-hero__description {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  color: rgba(var(--color-foreground), 0.65);
}

@media screen and (min-width: 750px) {
  .collection-hero__title + .collection-hero__description {
    font-size: 1.6rem;
    margin-top: 1.8rem;
    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: 4rem 0 3.5rem;
}

.collection-hero__image-container {
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  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));
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-hero__image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--color-shadow), 0.15);
}

@media screen and (max-width: 749px) {
  .collection-hero__image-container {
    height: 22rem;
  }
}

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

  .collection-hero__image-container {
    align-self: stretch;
    flex: 1 0 50%;
    margin-left: 3rem;
    min-height: 22rem;
  }
  .collection-hero__description p,
.collection-hero__description li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 0.4rem;
  font-family: Roboto Condensed, sans-serif;
  letter-spacing: -1px;
}
.collection-hero__description h2,
.collection-hero__description h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1.6rem 0 0.4rem;
  letter-spacing: -1px;
  font-family: Roboto Condensed, sans-serif;

}
