.vertical-list .product-card__bot::before {
  content: "";
  display: block;
  position: absolute;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 3rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-card__taglist {
  position: absolute;
  left: 1rem;
  z-index: 5;
  top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card__tag {
  padding: 1rem 1.5rem;
  background-color: #f4e1e5;
  color: #b5143b;
  border-radius: 1.6rem;
  line-height: 1.1;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card__code {
  position: absolute;
  left: 3rem;
  top: 2.5rem;
  z-index: 5;
  max-width: 7.5rem;
  overflow: hidden;
  white-space: nowrap;
}

.product-card__code.card__code--hidden {
  opacity: 0;
  z-index: -10;
}

.product-card__img {
  display: flex;
  width: 10rem;
  height: 10rem;
  margin-top: 3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-card__info {
  padding-left: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.product-card__info,
.product-card__top {
  width: 100%;
}

.product-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  width: 100%;
}

.product-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-card__wrap {
    margin-top: 1.5rem;
}
.product-card__price .currency {
  margin-left: 0.7rem;
}

.product-card__price span {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.product-card-more {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  margin-top: 2rem;
}

.product-card-more__item {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card-more__item span {
  text-align: left;
  line-height: 1.2;
  width: 50%;
  display: inline;
}

.product-card-more__item span:first-child {
  color: #a79f9f;
  margin-right: 0.5rem;
}

.product-card-more__item a {
  color: var(--second-theme-color);
  display: block;
}

.product-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card__bot {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card .btn {
  padding: 1rem 3.5rem;
  width: auto;
}

.product-card .btn.not__available {
  padding: 1rem 1.7rem;
  width: auto;
  background-color: #939393;
  border-color: gray;
  webkit-box-shadow: 0 2rem 4rem var(--theme-color);
  box-shadow: 0 2rem 4rem var(--theme-color);
}

.vertical-list .product-card__title {
  text-align: left;
  padding-right: 7rem;
}

.product__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: .5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product__stars span {
  width: 1.4rem;
  height: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product__stars span:not(:last-child) {
  margin-right: .2rem;
}

.product__stars span.active svg {
  fill: (--second-theme-color);
}

.product__stars span svg {
  width: 100%;
  height: 100%;
  fill: #d0d0d0;
}

@media only screen and (min-width: 600px) {
  .product-card-more__item {
    margin: .5rem;
  }
}

@media only screen and (min-width: 968px) {
  .product-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5rem 3rem 3.5rem 3rem;
    border-right: 0.1rem solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .product-card:hover .product-card__title {
    color: var(--theme-color);
  }

  .product-card__taglist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .product-card__code {
    white-space: normal;
    left: auto;
    right: 3rem;
    max-width: 53%;
    text-align: right;
    line-height: 1.4;
  }

  .product-card__img {
    width: 60%;
    height: 22rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .product-card__info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding-left: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    justify-content: space-between;
  }

  .product-card__title {
    font-size: 1.5rem;
    -webkit-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
  }

  .product-card__price {

  }

  .product-card__bot {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 0;
    max-width: 15rem;
  }

  .product-card .btn {
    padding: 1.5rem 5rem;
  }

  .product-card .btn.not__available {
    padding: 1.5rem 2.2rem;
    background-color: #9f9f9f;
    border-color: #9f9f9f;
    webkit-box-shadow: 0 2rem 4rem var(--theme-color);
    box-shadow: 0 2rem 4rem var(--theme-color);
  }

  .vertical-list .product-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .vertical-list .product-card__img {
    margin-right: 2rem;
    width: 10rem;
    height: 10rem;
  }

  .vertical-list .product-card__taglist {
    left: auto;
    right: 24rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .vertical-list .product-card__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .vertical-list .product-card .product__stars {
    width: auto;
  }

  .vertical-list .product-card__code {
    max-width: 20%;
  }

  .vertical-list .product-card__top {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 5rem;
  }

  .vertical-list .product-card__bot {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: auto;
    margin-left: 5rem;
  }

  .vertical-list .product-card__bot::before {
    height: 100vh;
    width: .1rem;
    background-color: rgba(0, 0, 0, 0.1);
    left: -5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .vertical-list .product-card-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product__stars {
    margin-bottom: auto;
    width: 100%;
  }

  .product__stars span {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media only screen and (min-width: 600px) and (max-width: 968px) {
  .product-card:nth-child(odd) {
    border-right: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
}