.dog-card__price {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin: 12px 0 13px 0;
}

.dog-card__price-current {
  font-family: Buyan;
  font-weight: 700;
  font-size: 51px;
  line-height: 128%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.dog-card__price-old {
  font-family: Buyan;
  font-weight: 700;
  font-size: 51px;
  line-height: 128%;
  text-decoration: line-through;
  color: #7E7E7E;
}

.dogs-page .dog-card__buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
}

.dogs-page .dog-card__btn--primary, .dogs-page .dog-card__btn--secondary {
    height: 62px;
    width: 50%;
    color: #584D3E;
    font-family: Montserrat;
    font-weight: 800;
    font-size: 14px;
    line-height: 128%;
    text-transform: uppercase;
    border-radius: 17px;
}

@media screen and (max-width: 900px) {
  .dog-card__price {
    gap: 0;
    justify-content: space-between;
    margin: 5px 0 7px 0;
  }

  .dog-card__price-current, .dog-card__price-old {
    font-size: 41px;
  }

  .dogs-page .dog-card__buttons {
    flex-direction: column;
    gap: 15px;
  }

  .dogs-page .dog-card__btn--primary, .dogs-page .dog-card__btn--secondary {
    font-size: 10px;
    border-radius: 12px;
    width: 100%;
    height: 43px;
  }
}

@media screen and (max-width: 600px) {
  .dog-card__price {
    gap: 15px;
    margin: 8px 0 8px 0;
  }

  .dog-card__price-current, .dog-card__price-old {
    font-size: 40px;
  }

  .dogs-page .dog-card__buttons {
    gap: 9px;
  }

  .dogs-page .dog-card__btn--primary, .dogs-page .dog-card__btn--secondary {
    font-size: 12px;
    border-radius: 14px;
    height: 47px;
  }
}
