body {
  -webkit-font-smoothing: antialiased;
  --colum-count: 1;
  box-sizing: border-box;
  color: #060b35;
  min-height: 100vh;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.main {
  grid-template-columns: repeat(var(--colum-count), 200px);
  justify-content: center;
  gap: 46px 48px;
  padding: 50px 40px;
  display: grid;
}

@media (width >= 488px) {
  .main {
    --colum-count: 2;
  }
}

@media (width >= 768px) {
  .main {
    --colum-count: 3;
  }
}

@media (width >= 1024px) {
  .main {
    --colum-count: 4;
  }
}

.stars {
  margin: 0;
  display: flex;
}

.stars__star {
  background-image: url("star.fa806e3c.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  margin-inline: 2px;
}

.stars--1 .stars__star:nth-child(-n+1), .stars--2 .stars__star:nth-child(-n+2), .stars--3 .stars__star:nth-child(-n+3), .stars--4 .stars__star:nth-child(-n+4), .stars--5 .stars__star:nth-child(-n+5) {
  background-image: url("star-active.2be54011.svg");
}

.card {
  box-sizing: border-box;
  border: 1px solid #f3f3f3;
  border-radius: 5px;
  width: 200px;
  height: 100%;
  padding: 32px 0 16px;
  transition: transform .3s, background-color .3s, border .3s, color .3s;
}

.card__content {
  display: block;
}

.card__back {
  width: 160px;
  height: 134px;
  margin-inline: 19px;
}

.card__title {
  margin: 37px 16px 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.card__product {
  color: #616070;
  margin: 0 16px;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
}

.card__rating {
  justify-content: space-between;
  margin: 18px 16px 16px;
  display: flex;
}

.card__reviews {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
}

.card__price {
  justify-content: space-between;
  margin: 24px 16px 15px;
  display: flex;
}

.card__price-text {
  margin: 0;
}

.card__price-text:first-child {
  font-size: 12px;
  font-weight: 350;
  line-height: 20px;
}

.card__price-text:last-child {
  font-size: 16px;
  font-weight: 700;
}

.card__buy {
  box-sizing: border-box;
  color: #fff;
  background-color: #00acdc;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 166px;
  height: 40px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: flex;
}

.card__buy:hover {
  color: #00acdc;
  background-color: #fff;
  border: 1px solid #00acdc;
}

.card:hover {
  transform: scale(1.2);
}

.card:hover .card__title {
  color: #34568b;
}

.header {
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 50px;
  display: flex;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.menu > li:not(:last-child) {
  margin-right: 20px;
}

.menu__first {
  position: relative;
}

.menu__first .is-active {
  text-transform: uppercase;
  color: #00acdc;
  align-items: center;
  height: 60px;
  text-decoration: none;
  display: flex;
}

.menu__first:after {
  content: "";
  background: #00acdc;
  border-radius: 2px;
  width: 37px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menu__link, .header__link {
  color: #060b35;
  text-transform: uppercase;
  align-items: center;
  height: 60px;
  display: flex;
}

.menu__link:hover, .header__link:hover {
  color: #00acdc;
}

.menu__link:link, .header__link:link {
  text-decoration: none;
}
/*# sourceMappingURL=index.e378193d.css.map */
