.collection-subnav {
  background-color: var(--color--surface--base);
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
  margin: 0;
}

.collection-subnav__inner {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.collection-subnav__list {
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.collection-subnav__list--depth-0 {
  align-items: stretch;
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
}

.collection-subnav__item {
  align-items: center;
  display: flex;
  position: relative;
}

.collection-subnav__link {
  align-items: center;
  border-bottom: 4px solid transparent;
  color: var(--color-primary);
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 1.5rem;
  text-decoration: none !important;
  white-space: nowrap;
  min-height: 100%;
}
.collection-subnav__link:hover, .collection-subnav__link:focus {
  background-color: unset !important;
  box-shadow: none !important;
  color: var(--color-dark) !important;
}
.collection-subnav__link:visited {
  color: var(--color-primary);
}

a.collection-subnav__link:visited {
  color: var(--color-primary);
}

.collection-subnav__item--depth-1 > .collection-subnav__link {
  font-size: 1.25rem;
  font-weight: 700;
}

.collection-subnav__item.is-current > .collection-subnav__link,
.collection-subnav__item.is-active-trail > .collection-subnav__link {
  border-bottom-color: var(--color--primary);
  color: var(--color-primary);
}

.collection-subnav__item.has-children > .collection-subnav__link::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.375rem;
  margin-left: 0.625rem;
  transform: rotate(45deg) translateY(-2px);
  width: 0.375rem;
}

.collection-subnav__list--depth-1,
.collection-subnav__list--depth-2,
.collection-subnav__list--depth-3 {
  background-color: var(--color--surface--base);
  border: 1px solid #d2d2d2;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  left: 0;
  min-width: 16rem;
  position: absolute;
  top: 100%;
  z-index: 1000;
}

.collection-subnav__list--depth-1 .collection-subnav__link,
.collection-subnav__list--depth-2 .collection-subnav__link,
.collection-subnav__list--depth-3 .collection-subnav__link {
  border-bottom: 0;
  min-height: auto;
  padding: 1rem 1.5rem;
  white-space: normal;
}

@media screen and (max-width: 992px) {
  .collection-subnav__inner {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .collection-subnav__list--depth-0 {
    min-height: 0;
  }
  .collection-subnav__item {
    align-items: stretch;
    border-bottom: 1px solid #d2d2d2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }
  .collection-subnav__item--depth-0:last-child {
    border-bottom: 0;
  }
  .collection-subnav__item--depth-1.is-current > .collection-subnav__link {
    font-weight: 800;
    color: var(--color--text--base);
  }
  .collection-subnav__item--depth-1.is-current > .collection-subnav__link::before {
    background-color: var(--color--primary);
    content: "";
    display: block;
    flex: 0 0 3px;
    height: 32px;
    margin-right: 0.75rem;
    width: 3px;
  }
  .collection-subnav__item--depth-1 {
    border-bottom: 0;
  }
  .collection-subnav__link {
    border-bottom: 0;
    min-height: auto;
    min-width: 0;
    padding: 1.5rem 2rem;
    width: 100%;
  }
  .collection-subnav__item.has-children > .collection-subnav__link::after {
    display: none;
  }
  .collection-subnav__toggle-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    justify-self: end;
    padding-left: 8px;
    padding-right: 8px;
  }
  .collection-subnav__toggle {
    align-items: center;
    background: transparent;
    border: 0;
    box-sizing: border-box;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    margin: 0;
    min-height: 4rem;
    min-width: 4rem;
    width: 4rem;
    padding: 0;
  }
  .collection-subnav__toggle:hover, .collection-subnav__toggle:focus-visible {
    color: var(--color--primary);
  }
  .collection-subnav__toggle:focus-visible {
    outline-offset: -0.25rem;
  }
  .collection-subnav__toggle[aria-expanded=true] .collection-subnav__toggle-icon::after {
    transform: rotate(-45deg);
  }
  .collection-subnav__toggle-icon {
    display: block;
    height: 0.75rem;
    position: relative;
    width: 0.75rem;
  }
  .collection-subnav__toggle-icon::after {
    border-color: currentColor;
    border-right: 2px solid;
    border-top: 2px solid;
    content: "";
    display: block;
    height: 0.75rem;
    width: 0.75rem;
    position: absolute;
    right: 0;
    transform: rotate(134deg);
    transition: transform 160ms ease;
  }
  .collection-subnav__list--depth-1,
  .collection-subnav__list--depth-2,
  .collection-subnav__list--depth-3 {
    border: 0;
    box-shadow: none;
    display: none;
    flex-direction: column;
    grid-column: 1/-1;
    left: auto;
    min-width: 0;
    position: static;
    top: auto;
    width: 100%;
    z-index: auto;
  }
  .collection-subnav__item.is-open > .collection-subnav__list {
    display: flex;
    padding-bottom: 1.5rem;
  }
  .collection-subnav__list--depth-1 .collection-subnav__link {
    padding-left: 3rem;
  }
  .collection-subnav__list--depth-2 .collection-subnav__link {
    padding-left: 4rem;
  }
  .collection-subnav__list--depth-3 .collection-subnav__link {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 992px) and (prefers-reduced-motion: reduce) {
  .collection-subnav__toggle-icon::after {
    transition-duration: 1ms;
  }
}
@media screen and (min-width: 992px) {
  .collection-subnav {
    border: none;
  }
  .collection-subnav__list--depth-0 {
    display: flex;
    flex-direction: row;
  }
  .collection-subnav__item {
    align-items: center;
    border-bottom: 0;
    display: flex;
    width: auto;
  }
  .collection-subnav__link {
    width: auto;
    font-size: 1rem;
    font-weight: 700;
  }
  .collection-subnav__item--depth-1 > .collection-subnav__link {
    width: auto;
    font-size: 1rem;
    font-weight: 700;
  }
  .collection-subnav__item.has-children > .collection-subnav__link::after {
    display: block;
  }
  .collection-subnav__toggle-wrap {
    display: none;
  }
  .collection-subnav__list--depth-2,
  .collection-subnav__list--depth-3 {
    left: 100%;
    top: -1px;
  }
  .collection-subnav__item:hover > .collection-subnav__list,
  .collection-subnav__item:focus-within > .collection-subnav__list {
    display: flex;
  }
  .collection-subnav__list--depth-1 .collection-subnav__item,
  .collection-subnav__list--depth-2 .collection-subnav__item,
  .collection-subnav__list--depth-3 .collection-subnav__item {
    display: block;
  }
}
/*# sourceMappingURL=subnavcollection.css.map */
