/** Shopify CDN: Minification failed

Line 113:1 Expected "}" to go with "{"

**/
/* Target the inner container that limits content width */
.collection-hero__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* Keep existing padding variables if they are set in the theme */
  padding-left: var(--page-width-padding, 2rem); /* Add a fallback value */
  padding-right: var(--page-width-padding, 2rem); /* Add a fallback value */
}

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

@media screen and (min-width: 1200px) {
  .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: 1200px) {
  .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: 1200px) {
/* To truly make the *banner background* wider if it's currently constrained,
   you might need to target the main .collection-hero element and remove its max-width
   or set it to 100% or something larger than default.
   However, the default Dawn collection hero often goes full width already,
   and it's the inner content that's constrained by `page-width` variables. */
.collection-hero {
  /* You might not need this if the banner already spans full width,
     but if it's not, try overriding any max-width here */
  max-width: none; /* or 100% */
}

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

  .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: 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));
}

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

@media screen and (min-width: 1200px) {
  .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;
  }
 