/* Универсальный селектор */
label[class*="t-product__option-item"] {
    background: #333333 !important;
    border: 2px solid #bef761 !important;
    color: #ffffff !important;
}

label[class*="t-product__option-item_active"] {
    background: #333333 !important;
    border: 2px solid #bef761 !important;
    color: #bef761 !important;
}
/* Контейнер кнопок */
.t-catalog_card_btnns-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Кнопка "Подробнее" - 100% ширины */
.t-catalog_card_btnns-wrapper .t-catalog_card_btn {
    width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 5px !important;
    box-sizing: border-box !important;
}

/* Контейнер для количества и купить */
.t-catalog_card_btnns-wrapper--quantity {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Если количество и купить внутри одного контейнера */
.t-catalog_card_btnns-wrapper--quantity > * {
    flex: 1 !important;
    width: 50% !important;
}

/* Сама кнопка "Купить" (если она есть внутри) */
.t-catalog_card_btnns-wrapper--quantity .t-btn {
    width: 50% !important;
    flex: 0 0 calc(50% - 4px) !important;
}

/* Если есть отдельный блок с количеством */
.t-catalog_card_btnns-wrapper--quantity .t-store__card__quantity-wrap,
.t-catalog_card_btnns-wrapper--quantity > div:first-child {
    width: 50% !important;
    flex: 0 0 calc(50% - 4px) !important;
}