.fav-counter {
  /* Делаем блок строчным, чтобы не растягивался */
  display: inline-block;
  
  /* Фиксированный размер */
  width: 20px;
  height: 20px;
  
  /* Центрируем текст */
  text-align: center;
  line-height: 20px;
  vertical-align: middle;
  
  /* Внешний вид */
  background-color: #E51A2F;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  font-family: Inter Tight;
  border-radius: 50%;
  
  /* Убираем лишнее */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  white-space: nowrap;
}
.fav-counter {
  /* Переопределяем стили Zero Block */
  width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
}
/* Расширенный вариант для двузначных чисел */
.fav-counter.wide {
  width: auto;
  max-width: none;
  padding: 0 5px;
  border-radius: 12px;
}