/* Импортируем шрифт Inter с разными начертаниями */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================== */
/* 1. ОПИСАНИЕ ТОВАРА (в попапе и не только) */
/* ============================== */
.t-descr,
.t-descr_xxs {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400; /* обычное начертание */
  font-size: 14px;  /* можно изменить размер */
  color: #333333;   /* цвет текста — тут тёмно-серый */
}

/* ============================== */
/* 2. ВЫПАДАЮЩЕЕ МЕНЮ С ОПЦИЯМИ */
/* ============================== */
.t-product__option-title,
.t-product__option-title_radio,
.t-product__option-title_simple,
.t-typography__options {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400; /* чуть жирнее, чтобы выделялось */
  font-size: 14px;
  color: #111111; /* почти чёрный */
}

/* ============================== */
/* 3. ЦЕНА ВНУТРИ (во всплывающем окне товара) */
/* ============================== */
.js-product-price,
.js-store-prod-price-val,
.t-store__card__price-value {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400; /* полужирный */
  font-size: 16px;
  color: #222222; /* можно поменять на любой */
}

/* ============================== */
/* 4. ЦЕНА СНАРУЖИ (на карточке товара до клика) */
/* ============================== */
.t-store__card__price-value {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400; /* жирный */
  font-size: 14px;
  color: #000000;
}

.t-store__card__price-value_new {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600; /* чуть мягче, чем жирный */
  font-size: 14px;
  color: #DA3E52; /* яркий алый — цвет скидки */
}

.t-store__card__price-value_old {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  color: #999999; /* светло-серый для зачёркнутой цены */
  text-decoration: line-through;
}

/* ============================== */
/* 5. Цвет текста можно задать любому элементу */
/* Просто добавь color: #HEX или по названию */
/* Примеры: color: red; или color: #DA3E52; */
/* ============================== */
