/* ===============================
   Email Order Form (Porto Theme)
   =============================== */

.emailorder-form {
    max-width: 820px;
    margin: 0 auto;
    padding: 15px;
}

.emailorder-form .row {
    margin-left: -7px;
    margin-right: -7px;
}

.emailorder-form .field {
    padding-left: 7px;
    padding-right: 7px;
    margin-bottom: 15px;
}

/* Labels */
.emailorder-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* Inputs */
.emailorder-form input[type="text"],
.emailorder-form input[type="email"],
.emailorder-form input[type="tel"],
.emailorder-form select,
.emailorder-form textarea {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.emailorder-form textarea {
    height: 120px;
    resize: vertical;
}

/* File upload */
.emailorder-form input[type="file"] {
    width: 100%;
    padding: 6px;
    font-size: 13px;
}

/* Submit button */
.emailorder-form .actions {
    text-align: center;
    margin-top: 20px;
}

.emailorder-form .actions .action.submit {
    background-color: #222529; /* Porto primary */
    color: #fff;
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.emailorder-form .actions .action.submit:hover {
    background-color: #000;
}

/* ===============================
   Responsive
   =============================== */

/* Tablet */
@media (max-width: 991px) {
    .emailorder-form {
        padding: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .emailorder-form .field {
        width: 100%;
    }

    .emailorder-form .actions .action.submit {
        width: 100%;
    }
}
