/* Эффект плавного появления карточек */
.t-store__card {
  transition: opacity .2s ease-out;
  text-align: center;
}

/* Центровка контента */
.t-align_center {
  text-align: center;
}

/* Карточки на 3 колонки */
.t-col_3 {
  max-width: 275px;
  width: 100%;
  margin: 0 10px;
  float: left;
  display: inline-block;
  vertical-align: top;
}

/* Общая настройка колонок */
.t-col {
  box-sizing: border-box;
}

/* Сброс float на родителе */
.t-row::after {
  content: "";
  display: table;
  clear: both;
}

/* Адаптивность: по 2 карточки на планшете и 1 на мобиле */
@media (max-width: 960px) {
  .t-col_3 {
    max-width: 48%;
    margin: 1%;
  }
}

@media (max-width: 640px) {
  .t-col_3 {
    max-width: 100%;
    margin: 10px 0;
  }
}


.t-store__parts-switch-btn {
  background-color: #F5F5F7; /* светло-серый фон */
  border-radius: 36px;       /* скругления */
  padding: 10px 20px;        /* равные отступы сверху и снизу */
  color: #000;               /* цвет текста — можно заменить на #222, если нужно чуть мягче */
  border: none;              /* убираем стандартную границу */
  transition: all 0.25s ease;
}

.t-store__parts-switch-btn.t-active {
  background-color: #96C30A; /* фирменный зелёный */
  color: #FFFFFF !important;            /* белый текст */
  opacity: 1 !important;                /* убираем прозрачность */
  border: none;
  transition: all 0.25s ease;
}

.t-store__parts-switch-btn {
    margin-left: 8px !important;
    margin-right: 8px !important;
}

.t-store__parts-switch-wrapper {
    margin-bottom: 20px !important;
}


@media screen and (max-width: 960px) {
    .t-store__grid-cont .t-col, .t-store__grid-cont .t-store__stretch-col {
        margin-bottom: 15px !important; 
    }
}