.radioWrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radioInput {
    display: none;
}

.radioLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #232323;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Стиль кастомной радиокнопки */
.radioCustom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border 0.3s ease;
}

/* Центральная точка в радиокнопке */
.radioCustom::after {
    content: "";
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: none;
}

/* Меняем стили, когда радио выбрано */
.radioInput:checked + .radioLabel .radioCustom {
    border: 6px solid #91cf4f;
}

.radioInput:checked + .radioLabel .radioCustom::after {
    background: #232323;
}
