/* .products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 216px;
  grid-template-rows: 308px;
  gap: 16px;
}
.products_row {
  grid-template-columns: auto;
  grid-template-rows: 1fr;
} */

.product {
  /* width: 100%; */
  margin-right:16px;
  position: relative;
}
.product__link {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.product__card {
  width: 216px;
  min-height: 368px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid var(--gray_light);
  overflow: hidden;
}
.product_link_all .product__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: none;
  text-align: center;
  background-color: var(--orange);
  color: var(--white);
}
.product__img {
  width: 100%;
  height: 161px;
  margin-bottom: 16px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--blue_light);
}
.product__img > img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product__price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}
.product__price_base {
  margin: 0;
  color: var(--orange);
}
.product__price_sale {
  margin: 0;
  display: inline-block;
  /* height: 30px; */
  /* padding: 2px 6px; */
  padding: 1px 6px 2px;
  border-radius: 8px;
  background-color: var(--red);
  color: var(--white);
}
.product__price_old {
  /* margin: 0 8px; */
  margin: 0;
  color: var(--black_light);
  text-decoration: line-through;
  text-decoration-color: var(--black_light);
}
.product__rbl {
  font-size: 13px;
}
.product__currency {
  font-size: 16px;
}
.product__price_old .product__currency {
  font-size: 14px;
}
.product__discount {
  font-size: 16px;
  color: var(--red);
}
.product__title {
  /* margin-bottom: 16px; */
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product__icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  max-width: calc(100% - 40px);
}
.product__icon {
  /* height: 21px; */
  padding: 1px 8px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  /* font-size: 16px; */
  background-color: var(--red);
  color: var(--white);
}
.product__button {
  margin-top: auto;
}
.product:hover .product__button {
  background-color: var(--black_title);
  color: var(--white);
}

@media (max-width: 575px) {
  /* .product__card_sale .product__title {
    -webkit-line-clamp: 1;
  } */
  .product__price_sale {
    margin-right: 120px;
  }
}

@media (min-width: 576px) {
  /* .products {
    grid-auto-columns: 261px;
    grid-template-rows: 378px;
  } */
  .product__card {
    width: 261px;
    min-height: 408px;
  }
  .product__img {
    height: 200px;
  }
  .product__price {
    margin-bottom: 16px;
    flex-wrap: nowrap;
  }
  .product__card_sale .product__price {
    margin-bottom: 14px;
  }
  .product__currency {
    font-size: 19px;
  }
  .product__price_old .product__currency {
    font-size: 17px;
  }
}

@media (min-width: 992px) {
}