/* Создаем свою надпись и задаем ей стиль */
.t-store__card__sold-out-msg {
    color: #555555 !important; /* Здесь ваш цвет */
    font-weight: bold;
    /* Другие стили по желанию */
}

@media screen and (max-width: 640px) {
  /* Скрываем полосу прокрутки для st315n */
  .t-store__grid {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex-wrap: nowrap !important;
  }
  
  /* Фикс для сетки - карточки в одну строку */
  .t-store__grid .t-col {
    flex: 0 0 260px !important;
    max-width: 260px !important;
  }
  
  /* WebKit браузеры */
  .t-store__grid::-webkit-scrollbar {
    display: none !important;
  }
}