/* Общие стили для всех заголовков опций */
.js-product-edition-option-name,
.js-product-option-name {
  font: 600 15px/22px Montserrat !important;
  text-align: left !important;
  margin-bottom: 10px;
  display: block;
  color: #212121 !important; /* чтобы перебить встроенный стиль */
}

/* Кнопки под заголовком */
.t-product__option-item_buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 500 14px/22px Montserrat !important;
  height: 34px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 0.5px solid rgb(33, 33, 33);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: all 0.3s ease;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Убираем стандартные radio */
.t-product__option-input {
  display: none;
}

/* Активная кнопка */
.t-product__option-item_active {
  background: #f2f2f2;
  border-color: #000;
}