





/* Применяем Nunito ко всему сайту */
body, .t-body, .t-text, .t-title, .t-descr, .t-name, .t-store__card {
  font-family: 'Nunito', sans-serif !important;
  font-optical-sizing: auto;
}

/* =================== КАТАЛОГ ST320N =================== */

/* Скрываем описание товаров */
.t-store__card__descr,
.t-card__descr {
  display: none !important;
}

/* Название и цена слева */
.t-store__card__title {
  text-align: left !important;
  display: block;
  margin-bottom: 4px !important;
}
.t-store__card__price {
  text-align: left !important;
  display: block;
  margin-top: 0 !important;
}

/* =================== ПАГИНАЦИЯ =================== */
.t-store__pagination {
  margin-top: 16px !important;
}

.t-store__pagination .t-store__pagination__item {
  border-radius: 0 !important;       /* квадратные */
  border: 1px solid #000 !important; /* чёрная рамка */
  width: 32px !important;
  height: 32px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  color: #000 !important;
  transition: all .2s ease-in-out;
}

/* Активная страница */
.t-store__pagination .t-store__pagination__item.t-active {
  background: #000 !important;
  color: #fff !important;
}

/* Hover эффект */
.t-store__pagination .t-store__pagination__item:hover {
  background: #f0f0f0 !important;
  cursor: pointer;
}

/* Стрелки пагинации делаем чёрными */
.t-store__pagination .t-store__pagination__item svg,
.t-store__pagination .t-store__pagination__item svg * {
  fill: #000 !important;
  stroke: #000 !important;
}


