/* ---------- ORDER MODAL ---------- */
.order-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.order-overlay.active {
    display: flex;
}
.order-modal {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    padding: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.order-modal .order-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
.order-modal h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1f2937;
}
.order-modal p.order-sub {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}
.order-modal label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}
.order-modal input,
.order-modal select,
.order-modal textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 16px;
}
.order-modal input:focus,
.order-modal select:focus,
.order-modal textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}
.order-modal textarea { resize: vertical; min-height: 80px; }
.order-modal .order-submit {
    width: 100%;
    background: #1e3a8a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.order-modal .order-submit:hover { background: #152b63; }
.order-modal .order-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.order-modal .order-msg {
    display: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}
.order-modal .order-msg.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}
.order-modal .order-msg.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}
