.t668__col {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.t431__table-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
}

/* Убираем лишний отступ у таблицы внутри */
.t431__table {
  margin: 0;
  border-collapse: collapse;
}

.t431__tdscale_1 .t431__th, .t431__tdscale_1 .t431__td {
    padding: 12px;
}

/* Если нужно скругление только визуально (без отрезания содержимого) */
.t431__table-wrapper table {
  overflow: hidden;
  width: 100%;
}

.t431__tbody tr > td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}

.t431__tbody tr > td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

/* Аналогично для заголовка */
.t431__thead tr > th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.t431__thead tr > th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}



----



/* Обновлённый фон и скругление у обёртки */
.t951__sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Кнопка фильтра */
.t-store__parts-switch-btn {
  border: 1px solid #e2e5ea;
  border-radius: 14px;
  padding: 12px 18px;
  background-color: #ffffff;
  color: #0a122a;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

/* Hover */
.t-store__parts-switch-btn:hover {
  background-color: #f8f9fb;
  border-color: #d0d5dc;
}

/* Активная */
.t-store__parts-switch-btn.t-active {
  background-color: #ffd600; /* как кнопки "Заказать" */
  color: #0A122A;
  font-weight: 300;
  border-color: #FEDD30;
  opacity: 1 !important;
}

@media screen and (min-width: 961px) {
    .t951__sidebar .t-store__parts-switch-wrapper {
        margin-bottom: 0px;

    }
}



@media screen and (max-width: 640px) {
.t-store__parts-switch-wrapper {
    margin-bottom: 0px !important;
}
}



/* Адаптив */
@media screen and (max-width: 640px) {
  .t951__sidebar-wrapper {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 16px;
    gap: 10px;
  }

  .t-store__parts-switch-btn {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

---

.t951__sidebar {
  max-width: 250px;
  width: 100%;
  box-sizing: border-box;
}

/* Обёртка с padding и фоном */
.t951__sidebar-wrapper {
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

/* Кнопки */
.t-store__parts-switch-btn {
  width: 100%;
  box-sizing: border-box;
}
.t951__sidebar {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
}



---




/* Общая карточка */
.t-store__card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #f0f1f3;
}



/* Обёртка изображения */
.t-store__card__imgwrapper {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

/* Фото — плавная смена */
.t-store__card__bgimg {
  transition: opacity 0.3s ease;
}

/* Наведение: показать второе изображение */
.t-store__card__bgimg_second {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.t-store__card__imgwrapper:hover .t-store__card__bgimg_second {
  opacity: 1;
}

/* Название товара */
.t-store__card__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
  color: #0a122a;
}

/* Подпись (оверсайз и т.д.) */
.t-store__card__descr {
  font-size: 14px;
  color: #7a7f87;
  margin-top: 4px;
}

/* Цена */
.t-store__card__price-wrapper {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #0a122a;
}

/* Кнопка */
.t-store__card__btn {
  margin-top: 16px;
  padding: 10px 24px;
  background-color: #ECF0F4 !important;
  color: #0A122A !important;
  font-weight: 600;
  border: none;
  border-radius: 12px !important;
  transition: background-color 0.2s ease;
}

.t-store__card__btn:hover {
  background-color: #ffd600  !important;
}

/* При наведении — эффект приподнятости */
.t-store__card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px !important;
}

.t-store__card {
  padding-top: 12px; /* или 16px */
}





.t-store__grid-separator {
    margin-bottom: 40px;
}



@media screen and (max-width: 640px) {
  .t951__sidebar-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 10px;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom:16px;
    
}
  }
  
@media screen and (max-width: 640px) {  
  .t-store__parts-switch-btn {

    margin-bottom: 0px !important;

  }
  }

  .t-store__parts-switch-btn {
    display: inline-block !important;
    max-width: max-content;
    padding: 8px 16px !important;
    font-size: 14px !important;
    border-radius: 999px !important;
    border: 1px solid #dde2e7;
    background-color: white;
    color: #0a122a;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    flex-grow: 0; 
}

@media screen and (max-width: 640px) {
  .t431__table {
    font-size: 12px !important;
    table-layout: auto !important;
    min-width: 640px !important;
  }

  .t431__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .t431__td,
  .t431__th {
    white-space: nowrap !important;
    padding: 12px 12px !important;
  }
}
    
    
@media screen and (max-width: 640px) {
  .t431__table-wrapper {
    padding: 8px !important;
  }
}



@media screen and (max-width: 640px) {
  .t-store__parts-switch-btn {

    border-radius: 12px !important;
margin-left: 0px !important;
    margin-right: 8px !important;
}
}


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


.custom-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin: 8px 0;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #f3f4f5;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.2s ease;
  margin-right: 10px;
  flex-shrink: 0;
}

.custom-checkbox:hover .checkmark {
  border-color: #999;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #fedd30;
  border-color: #fedd30;
}

.custom-checkbox input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0a122a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  color: #0a122a;
}



  .tabs-btn {
    margin-left: 8px !important;
  }



