/* 명세: 수령 방법에 필요한 이메일 또는 휴대전화가 빠졌을 때 구매자 정보 영역에 오류를 명확히 표시합니다. */
.contact-validation-message {
    margin: 12px 0 0;
    color: #ffafb8;
    font-size: 13px;
    line-height: 1.5;
}

.form-grid input[aria-invalid="true"] {
    border-color: #ef6d7d;
}

/* 명세: 수령 방식에 따라 숨기는 수령인·배송지 입력란이 기존 레이아웃의 display 선언을 덮어쓰지 않도록 합니다. */
.purchase-panel [hidden] {
    display: none !important;
}

/* 명세: 검색 버튼을 주소 입력란에서 분리해 긴 도로명 주소와 우편번호 전체가 보이도록 배치합니다. */
.shipping-address-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.shipping-address-heading button {
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 9px;
    padding: 8px 12px;
    background: #282442;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    white-space: nowrap;
}

/* 명세: 현금거래 안내를 상단 소개 아래의 보조 안내로 표시합니다. */
.cash-order-intro {
    display: block;
    margin-top: 12px;
    color: #aaa3ba;
    font-size: 12px;
    line-height: 1.55;
}
