.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  display: flex;
  gap: 16px;
  padding: 30px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.scroll-item {
  flex: 0 0 auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #f0f0f0;
  text-align: center;
  line-height: 90px;
  font-size: 14px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: background-color 0.3s;
}

.scroll-item:hover {
  background-color: #e0e0e0;
}

/* Адаптация для телефона */
@media (max-width: 640px) {
  .scroll-item {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 12px;
  }
}
.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 20px;
}

.scroll-item {
  flex: 0 0 auto;
  text-align: center;
}

.scroll-item .t-circle {
  width: 120px;
  height: 120px;
  background: yellow;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.scroll-item .t-label {
  margin-top: 8px;
  font-size: 14px;
  color: #000;
}
.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 20px;
  align-items: flex-start; /* это важно! */
}

.scroll-item {
  flex: 0 0 auto;
  text-align: center;
}

.t-circle {
  width: 120px;
  height: 120px;
  background: yellow;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 8px;
}

.t-label {
  font-size: 14px;
  color: #000;
  display: block;
}
.t-store__card__sold-out-msg {
  visibility: hidden;
}
.t-store__card__sold-out-msg:after {
  content:'Текст’; 
  visibility: visible;
  display: block;
  color: #333333; (https://m.youtube.com/hashtag/333333)
}