body {
  margin: 0;
  background-color: #ffffff;
  color: #0d0417;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0 none;
  clip-path: inset(100%);
}

.link {
  transition: color, box-shadow 0.2s ease-in-out 0s;
  outline: none;
  box-shadow: 0 1px 0 #0d0417;
  color: #0d0417;
  text-decoration: none;
}

.link:visited {
  color: #797980;
}

.link:hover {
  transition: color, box-shadow 0.2s ease-in-out 0s;
  box-shadow: 0 1px 0 #0d0417;
  color: #0d0417;
}

.link:focus,
.link:active {
  transition: color, box-shadow 0.2s ease-in-out 0s;
  box-shadow: 0 2px 0 #f8d456;
  color: #0d0417;
}

.button {
  box-sizing: border-box;
  padding: 0;
  border: 0 none;
  cursor: pointer;
}

.card-list-container {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  min-width: 1366px;
  max-width: 1366px;
  margin: 1em auto 0;
  padding: 98px;
  list-style: none;
}

.card-list-container__item {
  box-sizing: border-box;
  flex-basis: calc((100% - 3 * 30px) / 4);
  height: 357px;
  max-height: 357px;
  margin-bottom: 30px;
}

.card-list-container__item:not(:nth-of-type(4n)) {
  margin-right: 30px;
}

.card-item {
  display: grid;
  position: relative;
  box-sizing: border-box;
  grid-template-rows:
    calc(200px + 1px * 2)
    min-content
    1fr
    min-content;
  height: 100%;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 8px;
  background-color: #ffffff;
}

.card-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: 100%;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #e8e8e8;
  border-radius: inherit;
  background-color: inherit;
}

.card-item:hover {
  transition: all 0.2s ease-in-out 0s;
  box-shadow: 0 4px 15px rgba(76, 75, 77, 0.1);
}

.card-item:hover::before {
  top: -10px;
  left: -10px;
  padding: 10px;
  transition: all 0.2s ease-in-out 0s;
}

.card-item > * {
  position: relative;
  z-index: 1;
}

.card-item__chevron {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 15px;
  box-sizing: border-box;
  margin: 0;
  padding: 3px 10px 4px 10px;
  border-radius: 4px;
  color: #ffffff;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.card-item__chevron--new {
  background-color: #1ea5fc;
}

.card-item__chevron--hit {
  background-color: #8962f8;
}

.card-item__chevron--sale {
  background-color: #fd7441;
}

.card-item__link {
  display: block;
  border: 1px solid #e8e8e8;
  border-radius: 8px 8px 0 0;
}

.card-item__info-block {
  display: flex;
  box-sizing: border-box;
  justify-content: flex-end;
  margin-top: 0.9em;
  margin-bottom: 0.6em;
  padding: 0 10px;
}

.card-item__title {
  box-sizing: border-box;
  max-width: 98%;
  margin: 0;
  padding: 0 10px;
  color: #0d0417;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.card-item__footer {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  padding: 0 10px 18px;
}

.card-item__img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
}

.card-item__code {
  margin: 0 auto 0 0;
  color: #787878;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.card-item__rating {
  position: relative;
  margin: 0;
  padding-left: calc(13px + 0.6em);
  color: #0d0417;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.card-item__rating::before {
  content: url(img/svg/star.svg);
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 13px;
  height: 13px;
}

.card-item__link-to-reviews {
  margin-left: 1.05em;
  box-shadow: 0 1px 0 #787878;
  color: #787878;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.card-item__price {
  margin: 0 auto 0 0;
  color: #0d0417;
  font-family: "Noto Sans",  "Arial", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.card-item__price s {
  margin-left: 0.5em;
  color: #787878;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.card-item__button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.card-item__button:last-of-type {
  margin-left: 1.8em;
}

.card-item__button::before {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: -15px;
}

.card-item__button--favourite {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(32, 14, 50, 0.08);
}

.card-item__button--favourite::before {
  content: url("img/heart.svg");
}

.card-item__button--cart {
  background-color: #f8d456;
  box-shadow: 0 2px 4px rgba(32, 14, 50, 0.08);
}

.card-item__button--cart::before {
  content: url("img/cart.svg");
}