.subnav-separator {
  display: inline-block;
  font-size: 22px;
  color: #1a1a1a;
  opacity: 0.5;

  @media screen and (min-width: 990px) {
    display: none;
  }
}

.section-collection-heading {
  background-color: #ede5da;
}

.collection-heading-wrapper {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
  @media screen and (min-width: 990px) {
    gap: 10rem;
  }
  .collection-heading__item {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
  }
  .collection-heading__item-image {
    transition: all 0.3s linear;
    width: auto;
    height: 45px;
  }

  .collection-heading__item {
    &.active {
      .collection-heading__item-title {
        color: #707070;
      }
      .collection-heading__item-image {
        filter: grayscale(1);
      }
    }
  }

  .collection-heading__item-title {
    color: rgb(var(--color-background));
    text-transform: uppercase;
    text-decoration: none;
    font-size: 2.3rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 900;
    transition: all 0.3s linear;

    @media screen and (min-width: 990px) {
      font-size: 5.6rem;
    }
    &:hover {
      opacity: 0.6;
      .collection-heading__item-image {
        filter: grayscale(1);
      }
    }
  }
}
