/* 명세: 신규 검사와 업그레이드 검사 상품 목록을 전환하는 라디오 선택 영역을 구매 화면의 기존 색상 체계에 맞게 표시합니다. */
.purchase-kind-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 14px;
}

.purchase-kind-options label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    color: #d9d6ef;
    background: #151426;
    border: 1px solid #302e4d;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.purchase-kind-options input {
    accent-color: #8365f5;
}

.purchase-kind-options label:has(input:checked) {
    color: #ffffff;
    background: #282250;
    border-color: #8669fc;
}

/* 명세: 기존 .product-options의 display:grid 선언보다 우선하여 선택하지 않은 상품 그룹을 레이아웃에서 완전히 제외합니다. */
.product-options[hidden] {
    display: none !important;
}
