.tovarka__title {
  font-size: 20px;
  margin-bottom: 15px;
}

.tovarka__text_top {
  margin-bottom: 40px;
}

.tovarka__text_bottom {
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0;
  text-transform: uppercase;
}

.tovarka {
  display: grid;
  gap: 10px;
}

.tovar_card {
  position: relative;
  -webkit-box-shadow: 4px 4px 25px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 4px 25px 0px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  background: rgb(26, 26, 26);
  border: 2px solid rgb(26, 26, 26);
  padding: 30px 30px 30px 40px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tovar_card:hover {
  border-color: #930025;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.tovar_title {
  font-size: 20px;
  margin-bottom: 5px;
}

.tovar_old_price,
.tovar_discount {
  display: none;
}

.tovar_new_price {
  font-size: 14px;
  font-weight: 700;
}

.tovar__card_img {
  margin-top: -18px;
  margin-bottom: 25px;
}

.tovar_button {
  width: 63.63%;
  margin: auto;
  padding: 10px;
  line-height: 1;
  margin-bottom: 15px;
}

.tovar__info_btn {
  font-size: 12px;
  width: 100%;
  color: inherit;
  cursor: pointer;
}
.tovar__info_btn:hover + .tovar__info {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.tovar__info_wrap {
  position: relative;
}

.tovar__info {
  position: absolute;
  bottom: calc(100% + 10px);
  left: -40px;
  right: -30px;
  background-color: #930025;
  padding: 25px 20px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-box-shadow: 4px 4px 25px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 4px 25px 0px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .tovarka {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .tovarka__title {
    font-size: 30px;
  }
  .tovarka__text_top {
    margin-bottom: 60px;
  }
  .tovar_card {
    padding: 40px;
  }
  .tovar__card_top {
    text-align: left;
  }
  .tovar_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .tovar_new_price {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .tovar__card_img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: min(62%, 630px);
  }
  .tovar_button {
    width: 160px;
    margin: 0 0 45px;
    font-size: 16px;
    padding: 16px;
  }
  .tovar__info_btn {
    font-size: 14px;
    width: auto;
  }
  .tovar__info {
    left: auto;
    width: 85%;
    font-size: 14px;
  }
  .tovarka__text_bottom {
    margin: 65px 0;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .tovar_title {
    font-size: 30px;
  }
}