* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterRegular.woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterSemiBold.woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterBold.woff2");
  font-display: swap;
  font-weight: 700;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #282828;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
  max-width: 980px;
  list-style: none;
  gap: 20px;
}

.products__item {
  flex: 1;
  max-width: 300px;
  min-width: 250px;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 16px;
  min-height: 420px;
  background: #111827;
}

.product__pic {
  display: block;
  border-radius: 16px;
  margin-bottom: 12px;
  max-width: 100%;
}

.product__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.product__link {
  text-decoration: none;
  color: inherit;
}

.product__descr {
  margin: 0;
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #94a3b8;
}

.product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 20px;
}

.product__price {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.product__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: #3b82f6;
  cursor: pointer;
  transition: background 0.3s;
}

.product__btn:hover {
  background: #8ab0ee;
}

.product__link::after {
  content: "";
  position: absolute;
  inset: 0;
}
