/* Базовые кнопки */
.t-product__option-item_buttons {
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

/* При наведении */
.t-product__option-item_buttons:hover {
  background-color: #333333;
  color: #ffffff;
}

/* --- Вариант 1: класс active (первая страница) --- */
.t-product__option-item_active {
  background-color: #43563b !important; /* болотный зелёный */
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px;
}

.t-product__option-item_active .t-product__option-title {
  color: #ffffff !important;
}

/* --- Вариант 2: через :checked (вторая страница) --- */
.t-product__option-input_buttons:checked + .t-product__option-checkmark {
  background-color: #43563b !important;
  border-radius: 6px;
}

.t-product__option-input_buttons:checked ~ .t-product__option-title {
  color: #ffffff !important;
}

/* Скрытие рекламы Yandex */

[id^="yandex_rtb_R-A-17238658-2"] {
    display: none !important;
}

[id^="yandex_rtb_R-A-17238658-1"] {
    display: none !important;
}