/* breakpoints */
/* breakpoints end*/
.products__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 30px;
}

.product {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.product__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.product__body {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product__header {
  margin-bottom: 15px;
  display: flex;
  align-content: center;
}
.product__name {
  font-size: 18px;
  width: 50%;
}
.product__property {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  text-align: right;
  font-size: 14px;
}
.product__price {
  font-size: 18px;
}
.product__desc {
  margin-bottom: 15px;
}
.product__footer {
  width: 100%;
}
.product__btn {
  width: 100%;
}

@media (min-width: 576px) {
  .products__list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
  }
  .product {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .product {
    width: calc((100% - 40px) / 3);
    margin-bottom: 60px;
  }
}