h1 {
  text-align: center;
  font-family: var(--font-main);
  font-size: 40px;
  line-height: 1.23;
  font-weight: 600;
  color: #000;
  padding-top: 60px;
  padding-bottom: 90px;
}

.product_types {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.product_types > button {
  font-size: 20px;
  line-height: 1.35;
  font-family: var(--font-main), serif;
  font-weight: 600;
  color: #181818;
  background: none;
  border: none;
  outline: none;
}

.product_types > button.active {
  font-weight: 900;
  color: #000;
}

.product_filter {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

.search {
  width: 250px;
}

.product_sort {
  width: 300px;
}

.product_items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.product {
  width: calc(100% / 4 - 30px);
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  /* justify-content: space-between; */
}
.product_info {
  color: #000;
}
.product_price {
  color: #000;
  margin-top: auto;
}
.product > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 992px) {
  .products {
    padding-bottom: 50px;
  }

  .product_items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .product {
    width: calc(100% / 2 - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .product_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .product {
    width: calc(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
