.product-card-description,
.product-card-description .tab-content {
  margin: 0;
}

.product .tab-content .tab-pane {
  padding-bottom: 0;
}

.how-to-buy__header {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #444444;
}

.product__how-to-buy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.how-to-buy__list {
  margin: 0;
  padding-left: 0;
}

ol.how-to-buy__list {
  list-style-type: none;
  counter-reset: my-counter;
  margin-bottom: 5px;
}
.how-to-buy__list li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  margin-right: 10px;
  width: 14px;
  display: inline-block;
  text-align: end;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #444444;
}

.how-to-buy__txt {
  margin: 0;
}

.related-products__heading {
  font-size: 33px;
  line-height: 23px;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.related-products__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.related-product-card__img {
  max-width: 240px;
  height: 191px;
}

.product-item {
  max-height: 356px;
}

.related-product-card {
  box-shadow: 0px 0px 5px 0px #dfdfdf;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.related-product-card__name {
  margin: 10px 0 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: #444444;
  max-width: 230px;
}

.related-product-card__enter-txt {
  font-size: 12px;
  line-height: 14.63px;
  margin: 0;
}

.related-product-card__footer {
  display: flex;
  width: 100%;
  flex-grow: 1;
  align-items: end;
  justify-content: space-between;
}

.related-product-card__price {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
  color: #444444;
}

.related-product-card__buy-btn {
  padding: 11px 30px;
  line-height: 11px;
  background: #e30014;
  border: 0;
  border-radius: 25px;
  color: #ffffff;
  font-weight: 500;
}

@media screen and (max-width: 720px) {
  .related-products__list {
    grid-template-columns: 1fr;
  }
}
