/* Страница категории WooCommerce (archive-product) */
.products-page__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 793px;
  margin-bottom: 60px;
}

.products-page__filter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px;
}

.products-page__filter p {
  color: #737373;
  
}

.products-page__filter .field__input {
  height: 37px;
  font-size: 14px;
  width: 203px;
}

.products-page {
  padding-bottom: 140px;
}

.products-page__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.products-page__pagination {
  margin-top: 60px;
}

@media (max-width: 1080px) {
  .products-page {
    padding-bottom: 100px;
  }

  .products-page__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .products-page {
    padding-bottom: 60px;
  }

  .products-page__grid {
    grid-template-columns: 1fr;
  }

  .products-page__group {
    margin-bottom: 40px;
  }

  .products-page__filter {
    margin-bottom: 60px;
  }

  .products-page__pagination {
    margin-top: 20px;
  }
}