/* Style for all labels by default */
.t-product__option-item_simple span {
    color: #080808; /* Set default color to white */
}

/* Style for the selected radio input label */
.t-product__option-input_buttons:checked + .t-product__option-checkmark + span {
    color: #ffffff; /* Change text color */
    font-weight: bold; /* Make the text bold */
}




/* Only works in browsers that support the :has() selector */
.t-product__option-item_buttons:has(.t-product__option-input_buttons:checked) {
    background-color: #afa8e5;
    
    border: none; /* Optional: Remove default border */
}
