.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 45px;

  margin: 10px auto 10px;
}

.products-element {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px 30px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.products-element__name {
  margin-bottom: 0;
  font-weight: bold;
}

.products-element__img {
  width: 100%;
  height: 270px;
  object-fit: contain;
}

.products-element__price {
  margin-top: 15px;
  color: var(--color-unaccent);
}
.products-element__btn {
  margin-top: 15px;
  padding: 10px 15px;
  border: 1px solid var(--color-unaccent);
  border-radius: var(--border-radius);
  cursor: pointer;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

.products-element__btn_active {
  border: 1px solid var(--color-unaccent);
  background-image: var(--linear-gradient);
}
