/* Вертикальная прокрутка всегда отображается */
body { overflow-y: scroll; }

/* Закрепление шапки */
#t-header
{ position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
#t-header+.t-rec
{ margin-top: 80px; }
@supports (position: sticky) {
  #t-header
  { position: sticky; top: 0; left: auto; right: auto; }
  #t-header+.t-rec
  { margin-top: 0; }
}

/* Скрыть кнопки доп. товаров и описаний в карточке товара */
.t-store__relevants__container .t-descr
{ display: none; }

/* Убрать промежуток под похожими товарами */
#rec201341039 {
    padding-bottom: 0 !important;
}

/* Кнопка купить во всю ширину для мобильников */
@media screen and (max-width: 480px) {
    .t-store__prod-popup__btn { display: block; }
}
