.soa_option_field {
    width: 100%;
    max-width: 760px;
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid rgba(23, 25, 35, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 25, 35, 0.06);
    box-sizing: border-box;
}

.soa_option_header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.soa_option_kicker {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--soa-accent-color, #d8154f);
}

.soa_option_title {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1d29;
}

.soa_option_select {
    width: 100%;
    min-height: 48px;
    padding: 10px 42px 10px 14px;
    border: 1px solid rgba(23, 25, 35, 0.18);
    border-radius: 8px;
    background-color: #fff;
    color: #1b1d29;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
}

.soa_option_select:focus {
    outline: none;
    border-color: var(--soa-accent-color, #d8154f);
    box-shadow: 0 0 0 3px rgba(216, 21, 79, 0.14);
}

.soa_option_radios {
    display: grid;
    gap: 8px;
}

.soa_option_radio {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(23, 25, 35, 0.14);
    border-radius: 8px;
    background: #fff;
    color: #1b1d29;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.soa_option_radio:has(input:checked) {
    border-color: var(--soa-accent-color, #d8154f);
    box-shadow: 0 0 0 3px rgba(216, 21, 79, 0.12);
}

.soa_option_description {
    display: none;
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(27, 29, 41, 0.66);
}

.soa_total_price_preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(23, 25, 35, 0.10);
}

.soa_total_price_label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(27, 29, 41, 0.72);
}

.soa_total_price_amount {
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    color: #1b1d29;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .soa_option_field {
        padding: 14px;
    }

    .soa_total_price_preview {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
