/* Last update: 2025-07-07T04:34:03+00:00 */

@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);
}
