/* Скрываем все опции в карточках каталога */
.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="Цвет"] {
  display: block !important;
}

/* Убираем заголовок "Цвет", оставляем только кружочки */
.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;
}


/* Уменьшаем блок с опцией "Цвет" в каталоге в 1.5 раза */
.t-store__card 
.js-product-edition-option[data-edition-option-id="Цвет"] {
  transform: scale(0.66);
  transform-origin: left center;
}

/* Поднимаем только опцию "Цвет" */
.t-store__card 
.js-product-edition-option[data-edition-option-id="Цвет"] {
  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;
}


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


