/* Надпись "Все товары" */
.t-store__back,
.t-store__prod-back {
  font-size: 18px;          /* было мелко — делаем читаемо */
  color: #2F2F2F;           /* спокойный тёмно-серый */
  font-weight: 400;
}



/* =========================
   CART (ST100) — UI POLISH
   ========================= */

/* 1) Подсказки (placeholder) — сделать темнее */
.t-input::placeholder,
.t-select::placeholder,
textarea::placeholder{
  color: #8A8A8A !important;
  opacity: 1 !important;
}

/* 2) Увеличить шрифт в заказе: название / описание / цена / количество */
.t-store__prod-title{
  font-size: 16px !important;
  line-height: 1.4 !important;
}

.t-store__prod-desc{
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.t-store__prod-price{
  font-size: 15px !important;
}

.t-store__prod-amount,
.t-store__prod-amount *{
  font-size: 14px !important;
}

/* 3) Нижняя граница полей ввода — менее контрастная */
.t-input,
.t-select,
textarea{
  border-bottom-color: #E5E5E5 !important;
}

/* Активное поле — мягкое выделение */
.t-input:focus,
.t-select:focus,
textarea:focus{
  border-bottom-color: #CFCFCF !important;
  box-shadow: none !important;
  outline: none !important;
}

