.wa-product-archive-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.wa-product-archive-main__facets {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.wa-product-archive-main__facets--alt {
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .wa-product-archive__body {
    grid-template-columns: 1fr;
  }
}
.wa-product-archive__trigger {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-s);
  transition: 0.2s all ease-in-out;
  cursor: pointer;
}
.wa-product-archive__trigger:hover {
  background-color: var(--primary-hover);
}
.wa-product-archive__trigger svg {
  width: 2.4rem;
  margin-right: var(--space-xs);
}
.wa-product-archive__trigger svg path {
  stroke: var(--white);
}
.wa-product-archive__trigger--mobile {
  border-radius: var(--radius-m);
  position: fixed;
  flex-direction: column !important;
  z-index: 100;
  width: unset !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  font-size: var(--text-s) !important;
  bottom: 2.4rem;
  left: 0;
  display: flex;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1025px) {
  .wa-product-archive__trigger {
    display: none;
  }
}
.wa-product-archive-topsellers {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.wa-product-archive-topsellers__heading {
  font-size: var(--text-l);
  color: var(--base);
  font-weight: 700;
}
.wa-product-archive-topsellers__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.wa-product-archive-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  height: 100%;
}
.wa-product-archive-sidebar__box {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-m);
  background-color: var(--secondary);
  border-radius: var(--radius-m);
}
.wa-product-archive-sidebar__heading {
  font-size: var(--text-l) !important;
  font-weight: 700;
}
.wa-product-archive-sidebar__facet--price fieldset {
  margin: 0 !important;
}

@media screen and (max-width: 1024px) {
  body .wa-product-archive-sidebar {
    transform: translate(-100%);
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  body .wa-product-archive-sidebar {
    padding: var(--space-m);
    width: 80vw !important;
    min-width: 250px;
    height: 100vh;
    background: var(--shade-white);
    z-index: 10000002;
    box-shadow: 0 0 2rem var(--primary-ultra-dark-trans-10);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  body .wa-product-archive-sidebar.sidebar-opened {
    transform: translate(0%);
  }
  body .wa-product-archive-sidebar .wa-sidebar-categories {
    display: none;
  }
  body .wa-product-archive-sidebar .wa-sidebar-help-box {
    margin-bottom: 12rem;
  }
}

.sidebar-overlay__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: 10000000;
  background-color: var(--primary-ultra-dark-trans-80);
  transition: all 0.3s ease-in-out;
}
.sidebar-overlay__wrapper > span {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 10000001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-s);
  color: var(--shade-white);
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--primary);
  cursor: pointer;
}
.sidebar-overlay__wrapper > span:hover {
  background-color: var(--primary-hover);
}
