.products-block__wrap {
  display: flex;
  gap: clamp(20px, 0.0430570506 * 100vw + -22.6695371367px, 60px);
}
.products-block__products {
  flex: 1;
}
.products-block__products-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(clamp(180px, calc(2.8125vw + 171px), 225px), 100%), 1fr));
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.products-block__category {
  width: clamp(230px, 0.025 * 100vw + 222px, 270px);
}
.products-block__category-open {
  display: none;
}
.products-block__btn {
  margin-top: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  width: 100%;
}

@media (max-width: 767px) {
  .products-block__category {
    position: fixed;
    left: -200%;
    top: 0;
    width: 100%;
    max-width: 260px;
    height: 100%;
    z-index: 6000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    background-color: var(--head);
    overflow-y: auto;
    overflow-x: hidden;
    margin-left: 0;
    border-radius: 0;
    padding: 20px;
  }
  .products-block__category.active {
    left: 0px;
  }
  .products-block__category-open {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=block.css.map */