/* ============================================================
   orderform.css — order-form page only. Linked when $pageCss='orderform'.
   Reuses global.css chrome + assets/ vendor (Bootstrap 3/4, .form-control,
   .container/.row grid). Everything here is scoped under .orderform-wrap so
   it can't leak into other pages. Brand orange: #e57632.
   ============================================================ */

.orderform-wrap {
    padding: 60px 0 70px;
    background: #f6f7f9;
}

/* --- page heading --- */
.orderform-wrap .orderform-head {
    text-align: center;
    margin-bottom: 40px;
}

.orderform-wrap .orderform-head h1 {
    font-family: "Proxima Nova Th", 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: bold;
    text-transform: uppercase;
    color: #22292d;
    margin: 0 0 12px;
}

.orderform-wrap .orderform-head h1 span {
    color: #e57632;
}

.orderform-wrap .orderform-head:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #e57632;
    margin: 14px auto 0;
}

.orderform-wrap .orderform-head p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #666;
    max-width: 640px;
    margin: 14px auto 0;
    line-height: 1.7;
}

/* --- the form shell --- */
.orderform-wrap .orderform-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 9px 30px 0 rgba(193, 193, 193, .35);
    padding: 10px 30px 30px;
}

/* --- sections --- */
.orderform-wrap .form-section {
    padding: 26px 0;
    border-bottom: 1px solid #eee;
}

.orderform-wrap .form-section:last-of-type {
    border-bottom: none;
}

.orderform-wrap .form-section > .section-title {
    font-family: "Proxima Nova Th", 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    color: #e57632;
    margin: 0 0 4px;
}

.orderform-wrap .form-section > .section-title i {
    margin-right: 8px;
}

.orderform-wrap .form-section > .section-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0 0 20px;
}

/* --- fields --- */
.orderform-wrap .field {
    margin-bottom: 18px;
}

.orderform-wrap .field label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.orderform-wrap .field label .req {
    color: #e57632;
    margin-left: 2px;
}

/* native input look — mirrors the home finder form (.form-control already
   carries the Bootstrap box model from global/home; we only normalise height
   + the select chevron here so text + selects line up). */
.orderform-wrap .field .form-control {
    height: 46px !important;
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    color: #091928 !important;
    font-size: 14px !important;
}

.orderform-wrap .field textarea.form-control {
    height: 140px !important;
    padding-top: 10px !important;
    resize: vertical;
}

.orderform-wrap .field select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTAgNiI+PHBhdGggZmlsbD0iIzU1NSIgZD0iTTAgMGw1IDYgNS02eiIvPjwvc3ZnPg==") no-repeat right 14px center !important;
    padding-right: 34px !important;
}

.orderform-wrap .field .form-control:focus {
    border-color: #e57632 !important;
    box-shadow: 0 0 0 2px rgba(229, 118, 50, .15) !important;
}

/* --- same-as-billing + consent rows --- */
.orderform-wrap .check-row {
    display: flex;
    align-items: flex-start;
    margin: 4px 0 6px;
}

.orderform-wrap .check-row input[type="checkbox"] {
    margin: 3px 10px 0 0;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.orderform-wrap .check-row label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.6;
    cursor: pointer;
}

.orderform-wrap .copy-row {
    margin-bottom: 18px;
}

.orderform-wrap .consent-row {
    background: #faf6f2;
    border: 1px solid #f0e0d3;
    border-radius: 6px;
    padding: 14px 16px;
}

/* --- submit --- */
.orderform-wrap .form-actions {
    padding-top: 26px;
    text-align: center;
}

.orderform-wrap .btn-order {
    border: 1px solid #e57632;
    background-color: #e57632;
    color: #fff;
    min-width: 240px;
    border-radius: 4px;
    padding: 14px 38px;
    font-family: "Proxima Nova Th", 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.orderform-wrap .btn-order:hover {
    background: #fff;
    color: #e57632;
}

.orderform-wrap .form-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 14px;
}

/* --- responsive --- */
@media screen and (max-width: 767px) {
    .orderform-wrap {
        padding: 35px 0 45px;
    }

    .orderform-wrap .orderform-card {
        padding: 6px 16px 20px;
    }

    .orderform-wrap .orderform-head h1 {
        font-size: 26px;
    }

    .orderform-wrap .form-section > .section-title {
        font-size: 18px;
    }

    .orderform-wrap .btn-order {
        width: 100%;
        min-width: 0;
    }
}
