/* Базовые стили для кнопок */
.t-product__option-item_buttons {
    background-color: transparent !important;
    border: 1px solid #ffffff !important;
    border-radius: 20px !important;
    padding: 5px 15px !important;
    margin: 0 5px 5px 0 !important;
    display: inline-block !important;
    cursor: pointer !important;
}

/* Стили для ЛЮБОГО текста внутри кнопок */
.t-product__option-item_buttons .t-product__option-title_buttons span,
.t-product__option-item_buttons .t-product__option-title_buttons,
.t-product__option-item_buttons span,
.t-product__option-title_buttons {
    color: #fff8e2 !important;
    font-size: 14px !important;
    font-weight: normal !important;
}

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

/* Текст ТОЛЬКО в активной кнопке */
.t-product__option-item_buttons.t-product__option-item_active .t-product__option-title_buttons span,
.t-product__option-item_buttons.t-product__option-item_active span,
.t-product__option-item_buttons.t-product__option-item_active .t-product__option-title_buttons {
    color: #415e7d !important;
}

/* Скрываем чекбоксы и радио кнопки */
.t-product__option-input_buttons {
    display: none !important;
}

/* Убираем чекмарки */
.t-product__option-checkmark_buttons {
    display: none !important;
}

/* Сброс дополнительных стилей */
.t-product__option-item_buttons:before,
.t-product__option-item_buttons:after,
.t-product__option-title_buttons:before,
.t-product__option-title_buttons:after {
    display: none !important;
}




/* Основной контейнер количества */
.t-store__prod__quantity {
    background-color: transparent !important;
    border: 1px solid #fff8e2 !important;
    border-radius: 20px !important;
}

/* Стили для input */
.t-store__prod__quantity-input {
    background-color: transparent !important;
    color: #fff8e2 !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: normal !important;
}

/* Обертки для кнопок плюс и минус */
.t-store__prod__quantity__minus-wrapper,
.t-store__prod__quantity__plus-wrapper {
    position: relative !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}

/* Создаем минус */
.t-store__prod__quantity__minus-wrapper::before {
    content: '-' !important;
    color: #fff8e2 !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

/* Создаем плюс */
.t-store__prod__quantity__plus-wrapper::before {
    content: '+' !important;
    color: #fff8e2 !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

/* Скрываем оригинальные символы */
.t-store__prod__quantity__minus,
.t-store__prod__quantity__plus {
    display: none !important;
}

/* Убираем стрелки у input number */
.t-store__prod__quantity-input::-webkit-outer-spin-button,
.t-store__prod__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Firefox */
.t-store__prod__quantity-input[type=number] {
    -moz-appearance: textfield !important;
}
