
/* Главный контейнер текстовой части + опций */
.store__card__wrap_txt-and-opts {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  flex-grow: 1 !important;
}

/* Ссылка с названием, артикулом и ценой */
.store__card__wrap_txt-and-opts > a {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  height: 100% !important;
}

/* Внутренняя текстовая обёртка */
.t-store__card__textwrapper {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

/* Название товара — максимум 2 строки */
.t-store__card__title,
.js-store-prod-name {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.3 !important;
  min-height: 2.6em !important;
  margin-bottom: 6px !important;
}

/* Артикул */
.t-store__card__sku {
  min-height: 1.3em !important;
  margin-bottom: 8px !important;
}

/* Цена + "Нет в наличии" — резервируем место */
.t-store__card__price-wrapper,
.js-store-price-wrapper {
  min-height: 48px !important;
  margin-top: auto !important;
  margin-bottom: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

/* Сообщение "Нет в наличии" */
.js-store-prod-sold-out,
.t-store__card__sold-out-msg {
  margin-top: 4px !important;
  line-height: 1.2 !important;
}

/* Блок с размером */
.t-store__card__prod-controls-wrapper,
.js-product-controls-wrapper {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  min-height: 50px !important;
}

/* Кнопка "В ДЕТАЛЯХ" */
.store__card__wrap_txt-and-opts .t-btn,
.store__card__has-btns .t-btn {
  margin-top: auto !important;
}
</style>