/** Shopify CDN: Minification failed

Line 257:3 Expected "}" to go with "{"

**/
.collection-hero__inner {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.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;
  }
}

.custom-sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 100px;
  cursor: pointer;
}

.custom-sort-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #212121;
  pointer-events: none;
  line-height: 1.2;
}

.custom-sort-label .svg-wrapper {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
}

.custom-select-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}

.custom-select-overlay option {
  opacity: 1;
  background: white;
}

.collection-hero__text-wrapper {
  flex-basis: 100%;
  max-width: 701px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  margin-inline: auto;
}

.collection__collections-links {
  display: flex;
  grid-row-gap: 12px;
  grid-column-gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: 20px;
}

@media (min-width: 1280px) {
  .collection__collections-links {
  margin-top: 56px;
    gap: 20px;
    padding-inline: 0;
  }
}

.collection-grid__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}

@media (min-width: 750px) {
  .collection-grid__item {
    gap: 12px;
  }
}

.collection-grid__item--active {}

.collection-grid__image-wrapper {
  width: 105px;
  height: 105px;
  opacity: 0.6;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 990px) {
  .collection-grid__image-wrapper {
    width: 160px;
    height: 160px;
  }
}

.collection-grid__item--active .collection-grid__image-wrapper {
  opacity: 1;
  border: 2px solid #1B7E3E;
}

.collection-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-grid__item-title {
  font-size: 12px !important;
  font-weight: 600;
  line-height: 120%;
  font-family: var(--font-body-family);
  font-style: normal;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 750px) {
  .collection-grid__item-title {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 990px) {
  .collection-hero {
    padding: 0;
  }

  .collection-hero__inner {
    align-items: center;
    padding-bottom: 0;
    padding-top: 0;
  }
}

.collection-hero__title {
  margin: 0;
  font-style: italic;
  font-size: 28px !important;
}

@media screen and (min-width: 750px) {
  .collection-hero__title {
    font-size: 40px !important;
  }
}

.collection-hero__description,
.collection-hero__description>* {
  max-width: 100%;
  line-height: 130% !important;
  font-size: 16px !important;
  font-weight: 500;
  letter-spacing: 0;
}

.collection-hero__description {
  max-width: 80%;
  margin-inline: auto;
}

@media (min-width: 750px) {
  .collection-hero__description {
    max-width: 100%;
  }

  .collection-hero__description,
  .collection-hero__description>* {
    font-size: 24px !important;
  }
}

.collection-hero__title+.collection-hero__description {
  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;
  }


  .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: 749px) {
    .collection-hero__image-container {
      height: 20rem;
    }
  }

  @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;
    }
  }