/* =================================================
   ORDER CHECK PAGE — only page-specific styles
   Uses global tokens: --green, --green2, --stroke, etc.
   ================================================= */

.order_check_page .simple_page_content_card{
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

/* Typography */
.order_check_h2{
    margin: 0 0 12px;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.15;
    color: #0b0b0b;
}

.order_check_text{
    margin: 0 0 16px;
    color: rgba(11,15,20,.72);
    line-height: 1.55;
}

.order_check_note{
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(15,23,42,.10);
    color: rgba(11,15,20,.72);
    font-size: 14px;
    line-height: 1.6;
}

/* Alerts */
.order_check_alert{
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(11,15,20,.85);
    line-height: 1.5;
    margin: 14px 0;
}

.order_check_alert--error{
    border-color: rgba(185,46,46,.25);
    background: rgba(185,46,46,.06);
    color: #8f1f1f;
}

/* Form */
.order_check_form{
    max-width: 520px;
    margin-top: 12px;
}

.order_check_field{
    display: grid;
    gap: 8px;
}

.order_check_label{
    font-weight: 800;
    font-size: 13px;
    color: rgba(11,15,20,.90);
}

.order_check_input{
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.16);
    background: #ffffff;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.order_check_input:focus{
    border-color: rgba(10,143,42,.45);
    box-shadow: 0 0 0 4px rgba(10,143,42,.10);
}

.order_check_hint{
    font-size: 13px;
    line-height: 1.55;
    color: rgba(11,15,20,.62);
}

/* Button */
.order_check_btn{
    margin-top: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    height: 54px;
    padding: 0 22px;
    border-radius: 14px;

    border: none;
    cursor: pointer;
    text-decoration: none;

    background: var(--green);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;

    box-shadow: 0 14px 30px rgba(10,143,42,.18);
    transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.order_check_btn:hover{
    background: var(--green2, #087a24);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(10,143,42,.22);
}

.order_check_btn:active{
    transform: translateY(0);
}

.order_check_btn__icon{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,.14);
    font-size: 12px;
    line-height: 1;
}

/* Order header (when order exists) */
.order_check_top{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
}

.order_check_meta{
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.order_check_meta__row{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: baseline;
}

.order_check_meta__label{
    color: rgba(11,15,20,.62);
    font-size: 14px;
}

.order_check_meta__value{
    font-weight: 900;
    color: rgba(11,15,20,.92);
    font-size: 14px;
    letter-spacing: .02em;
}

.order_check_course{
    margin-top: 6px;
    display: grid;
    gap: 4px;
}

.order_check_course__name{
    font-weight: 900;
    color: rgba(11,15,20,.92);
}

.order_check_course__price{
    color: rgba(11,15,20,.62);
    font-size: 14px;
}

.order_check_link_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    padding: 0 14px;
    border-radius: 12px;

    background: rgba(15,23,42,.06);
    color: rgba(15,23,42,.88);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;

    transition: background .12s ease, transform .12s ease;
    white-space: nowrap;
}

.order_check_link_btn:hover{
    background: rgba(15,23,42,.10);
    transform: translateY(-1px);
}

.order_check_link_btn:active{
    transform: translateY(0);
}

.order_check_divider{
    height: 1px;
    background: rgba(15,23,42,.10);
    margin: 18px 0;
}

/* Responsive */
@media (max-width: 768px){
    .order_check_page .simple_page_content_card{
        padding: 22px;
    }

    .order_check_top{
        grid-template-columns: 1fr;
    }

    .order_check_link_btn{
        width: 100%;
    }

    .order_check_btn{
        width: 100%;
    }
}
