```css id="uj9k3m"
/* Скрываем все опции в карточках каталога */
.t-store__card .js-product-controls-wrapper .js-product-edition-option {
  display: none !important;
}

/* Показываем только опции "Вариант" и "Размер" */
.t-store__card .js-product-controls-wrapper
.js-product-edition-option[data-edition-option-id="Вариант"],
.t-store__card .js-product-controls-wrapper
.js-product-edition-option[data-edition-option-id="Размер"] {
  display: block !important;
}

/* Убираем заголовки "Вариант" и "Размер" */
.t-store__card
.js-product-edition-option[data-edition-option-id="Вариант"]
.js-product-edition-option-name,
.t-store__card
.js-product-edition-option[data-edition-option-id="Размер"]
.js-product-edition-option-name {
  display: none !important;
}

/* Скрываем описание в карточках каталога */
.t-store__card .js-store-prod-descr {
  display: none !important;
}

/* Каталог: цена → название → Долями → опции */
.t-store__card .t-store__card__textwrapper{
  display: flex;
  flex-direction: column;
}

/* цена первой */
.t-store__card .t-store__card__price-wrapper{
  order: 1;
}

/* название вторым */
.t-store__card .js-store-prod-name{
  order: 2;
}

/* долями третьим */
.t-store__card .digi-dolyame-catalog{
  order: 3;
  margin-top: 12px;
}

/* блок опций четвёртым */
.t-store__card .js-product-controls-wrapper{
  order: 4;
}

/* Уменьшаем блоки "Вариант" и "Размер" */
.t-store__card 
.js-product-edition-option[data-edition-option-id="Вариант"],
.t-store__card 
.js-product-edition-option[data-edition-option-id="Размер"] {
  transform: scale(0.66);
  transform-origin: left center;
  margin-top: -8px;
}
```







/* Страница товара: заголовок */
.t-store__prod-popup__name{
  font-size: 18px !important;
  color: #111 !important;
  line-height: 1.25 !important;
}
/* Страница товара: "Смотрите также" прижать к левому краю */
.t-store__relevants .t-container,
.t-store__relevants__title,
.t-store__relevants-grid-cont{
  margin-left: 0 !important;
}

/* Скрываем блок характеристик на странице товара */
.t-store__prod-popup__text .js-store-prod-all-charcs {
  display: none !important;
}

/* Дополнительно скрываем отдельные характеристики */
.t-store__prod-popup__text .js-store-prod-charcs,
.t-store__prod-popup__text .js-store-prod-dimensions,
.t-store__prod-popup__text .js-store-prod-weight,
.t-store__prod-popup__text .t-typography__characteristics {
  display: none !important;
}




/* Уменьшаем логотип в меню в 2 раза */
.t450__logoimg{
  transform: scale(0.5);
  transform-origin: left center;
}