.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(8px);
}

.order-modal {
    background: #111;
    width: 90%;
    max-width: 420px;
    padding: 50px 30px;
    border-radius: 4px;
    position: relative;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,1);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #555;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.modal-title {
    color: #d0bf95;
    font-size: 26px;
    margin-bottom: 35px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    text-align: left;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #eee;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
    outline: none;
}

.form-group input:focus {
    border-color: #d0bf95;
}

.submit-order-btn {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.submit-order-btn:hover {
    background: #fff;
    color: #000;
}