/* Стили при наведении */
.js-product .t-product__option-variants_buttons .t-product__option-item_simple:hover {
    border: 1px solid rgba(0, 0, 0, 0.5); /* Полупрозрачная рамка при наведении */
}

/* Основные стили опции */
.js-product .t-product__option-variants_buttons .t-product__option-item_simple {
    -ms-flex-align: center; /* Для IE */
    -ms-flex-pack: center; /* Для IE */
    -webkit-align-items: center; /* Старые версии Safari */
    align-items: center; /* Центрирование по вертикали */
    
    background-color: #F39325; /* Оранжевый фон */
    border: 1px solid #ddd; /* Серая рамка */
    border-radius: 30px; /* Скругление углов */

    display: -webkit-flex; /* Safari */
    display: -ms-flexbox; /* IE */
    display: flex; /* Flexbox */

    -webkit-justify-content: center; /* Safari */
    justify-content: center; /* Центрирование по горизонтали */

    margin-bottom: 7px; /* Отступ снизу */
    min-height: 30px; /* Минимальная высота */
    min-width: 30px; /* Минимальная ширина */
    padding: 7px; /* Внутренний отступ */
}

/* Стили текста внутри опции */
.js-product .t-product__option-variants_buttons .t-product__option-item_simple .t-descr {
    font-family: 'Gilroy', Arial, sans-serif; /* Шрифт */
    font-weight: 300; /* Тонкое начертание */
    color: #ffffff; /* Белый текст */
}