/* Основной стиль кнопки */
.uc-hikeoptions .t-radio__item {
    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем содержимое по горизонтали */
    gap: 14px;
    padding: 14px 22px;
    margin-bottom: 14px;
    border: 2px solid #f5f5dc;
    border-radius: 14px;
    background-color: #f5f5dc;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    user-select: none;
    position: relative;
}

/* Скрываем стандартный input */
.uc-hikeoptions .t-radio__item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Индикатор скрываем */
.uc-hikeoptions .t-radio__indicator {
    display: none;
}

/* Текст кнопки */
.uc-hikeoptions .t-radio__item span {
    font-size: 17px;
    font-weight: 600;
    color: #5a5a5a; /* чуть темнее, чем было */
    transition: color 0.25s ease;
    user-select: none;
}

/* При наведении — фон темнее */
.uc-hikeoptions .t-radio__item:hover {
    background-color: #e0dfc4;
    border-color: #d1d0a3;
}

/* При выборе — цвет текста темнее */
.uc-hikeoptions .t-radio__item input[type="radio"]:checked + .t-radio__indicator + span,
.uc-hikeoptions .t-radio__item input[type="radio"]:checked ~ span {
    color: #3f3f3f; /* ещё темнее для выбранного */
    font-weight: 700;
}

/* Убираем обводку при фокусе */
.uc-hikeoptions .t-radio__item input[type="radio"]:focus {
    outline: none;
}


