.t-promo-notification {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: #e74c3c;
}


/* ME606 (t976) делаем в одну строку с прокруткой */
.t976__wrapper {    
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    height: 46px;
}

.t976__list-item {
    white-space: nowrap;
}

/* Скрываем скроллбар по умолчанию */
.t976__wrapper {
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE и Edge */
}
.t976__wrapper::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari, Opera */
}

/* Показываем скроллбар при наведении */
.t976__wrapper:hover {
  scrollbar-width: thin;          /* Firefox: тонкий скроллбар */
  -ms-overflow-style: auto;       /* IE и Edge */
  transition: all 1s cubic-bezier(.25, .8, .25, 1) !important;
}

/* Для Chrome и Safari делаем кастомный скроллбар на hover */
.t976__wrapper:hover::-webkit-scrollbar {
  display: block;
  height: 8px;                    /* Высота полосы прокрутки */
  background: #eee;
}
.t976__wrapper:hover::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}


/* Добавляем window container для любых блоков */
.uc-window-view {
  position: relative;
  width: 100vw; /* ширина - вся ширина окна браузера */
  max-width: 100vw;
  padding-left: 40px; /* отступ слева */
  padding-right: 40px; /* отступ справа */
  box-sizing: border-box; /* учёт отступов во всю ширину */
  margin-left: calc(50% - 50vw); /* сдвигает блок влево, чтобы занимать всю ширину экрана */
  margin-right: calc(50% - 50vw);
}

.uc-window-view .t897__container, /* снимаем ограничение ширины контейнера в блоке Потоки */
.uc-window-view .t-container {
  max-width: none !important; /* снимаем ограничение ширины контейнера контента */
  width: 100% !important;
  padding: 0 !important; /* убираем внутренние отступы контейнера */
}

/* Переделка колонок в блоке Потоки */

.uc-window-view .js-feed-container .t-col,
.uc-window-view .js-feed-container .t-col_4 {
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  flex: none !important;
}

/* Если у блока есть фиксированная колоночная сетка внутри (например, .t-col), можно отключить ограничение ширины */
.uc-window-view .t-col {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.uc-window-view .t-col_1  { width: 8.3333% !important; max-width: 8.3333% !important; }
.uc-window-view .t-col_2  { width: 16.6667% !important; max-width: 16.6667% !important; }
.uc-window-view .t-col_3  { width: 25% !important; max-width: 25% !important; }
.uc-window-view .t-col_4  { width: 33.3333% !important; max-width: 33.3333% !important; }
.uc-window-view .t-col_5  { width: 41.6667% !important; max-width: 41.6667% !important; }
.uc-window-view .t-col_6  { width: 50% !important; max-width: 50% !important; }
.uc-window-view .t-col_7  { width: 58.3333% !important; max-width: 58.3333% !important; }
.uc-window-view .t-col_8  { width: 66.6667% !important; max-width: 66.6667% !important; }
.uc-window-view .t-col_9  { width: 75% !important; max-width: 75% !important; }
.uc-window-view .t-col_10 { width: 83.3333% !important; max-width: 83.3333% !important; }
.uc-window-view .t-col_11 { width: 91.6667% !important; max-width: 91.6667% !important; }
.uc-window-view .t-col_12 { width: 100% !important; max-width: 100% !important; }

.uc-window-view .t-col_1,
.uc-window-view .t-col_2,
.uc-window-view .t-col_3,
.uc-window-view .t-col_4,
.uc-window-view .t-col_5,
.uc-window-view .t-col_6,
.uc-window-view .t-col_7,
.uc-window-view .t-col_8,
.uc-window-view .t-col_9,
.uc-window-view .t-col_10,
.uc-window-view .t-col_11,
.uc-window-view .t-col_12 {
  box-sizing: border-box;
}

/* стили для сетки блока Потоки */
@media (min-width: 1200px) {
    .uc-window-view .js-feed-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    
    .uc-window-view .js-feed-container > li {
      width: 100%;
      box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
  .uc-window-view .js-feed-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* стили для блока t778 */
.uc-window-view .t778__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uc-window-view .t778__col {
  flex: 0 0 calc(25% - 40px);    /* desktop: 4 колонки */
  max-width: calc(25% - 40px);
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .uc-window-view .t-feed__grid-col,
  .uc-window-view .t778__col {
    flex-basis: calc(50% - 40px); /* планшет: 2 колонки */
    max-width: calc(50% - 40px);
  }
}

@media (max-width: 600px) {
  .uc-window-view .t-feed__grid-col,
  .uc-window-view .t778__col {
    flex-basis: 100%;           /* мобильный: 1 колонка */
    max-width: 100%;
  }
}


/* При необходимости можно добавить адаптивность */
@media screen and (max-width: 1440px) {
  .uc-window-view {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .uc-window-view {
    padding-left: 0;
    padding-right: 0;
  }
}

.t-btn {
    font-weight: 100 !important;
}

.js-store-prod-popup-buy-btn-txt {
    color: white !important;
}

.t-store__prod-popup__btn {
    border-radius: 4px !important;
}

.t-store__filter__range_bg {
    background-color:#251703 !important; /* изменяем цвет ползунка в фильтре Цена */
}

/* изменяем вид кнопки согласно стилю */
.t706 .t-form .t-input {
    height: 44px !important;
}

.t-inputpromocode__btn {
    border-left: 20px solid transparent;
    height: 44px !important;
    max-height: 44px !important;
}

.t-inputpromocode {
    border-right: 20px solid transparent;
}

.t-inputpromocode__btn {
    width:160px !important;
}

.t-inputpromocode__btn {
    color: var(--uc-button-color-znp1k, #ffffff);
    background-color: var(--uc-button-bgcolor-znp1k, #251703) !important;
    border-style: none !important;
    border-radius: var(--uc-button-radius-znp1k, 4px);
    box-shadow: none !important;
    font-family: var(--uc-button-fontfamily-znp1k, Commissioner);
    font-weight: var(--uc-button-fontweight-znp1k, 400) !important;
    font-size: var(--uc-button-fontsize-znp1k, 12px);
    padding: var(--uc-button-padding-znp1k, 15px 40px 15px 40px);
    text-transform: var(--uc-button-uppercase-znp1k, uppercase);
    transition-duration: 0.2s;
    transition-property: background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
}

/* изменяем вид текста в заголовках элементов Корзины, Избранного */
.t-promo-notification,
.t1002__product-title,
.t706__product-title,
.t-descr_md {
    font-size: var(--uc-typo-fontsize-sMtHr, 14px);
    font-weight: var(--uc-typo-fontweight-sMtHr, 400);
    color: var(--uc-typo-color-sMtHr, #251703);
    font-family: var(--uc-typo-fontfamily-sMtHr, Commissioner);
    text-transform: var(--uc-typo-uppercase-sMtHr, uppercase);
    letter-spacing: var(--uc-typo-letterspacing-sMtHr, 0.5px);
}

/* изменяем вид текста в формах */
.t-text_xs {
    font-size: var(--uc-typo-fontsize-S9ZUkkNsss, 12px);
    font-weight: var(--uc-typo-fontweight-S9ZUkkNsss, 400);
    color: var(--uc-typo-color-S9ZUkkNsss, #251703);
    font-family: var(--uc-typo-fontfamily-S9ZUkkNsss, Commissioner);
    text-transform: var(--uc-typo-uppercase-S9ZUkkNsss, uppercase);
    letter-spacing: var(--uc-typo-letterspacing-S9ZUkkNsss, 0.5px);
}