/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BASE THEME ===== */
html {
    font-size: 17px;
}




body {
    font-family: 'Roboto', sans-serif;
    /* background: linear-gradient(44deg, #009688, #020932);*/

    background: #020024;
    background: linear-gradient( 244deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #2d3436;
    /* Better text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#pnlDeliveryInfo {
    color: #2d3436;
}
.order-section {
    color: #fff;
}
/*body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f5f6fa;*/ /* clean neutral background */
/*min-height: 100vh;
    line-height: 1.5;
    color: #2d3436;
}*/
/* ===== CONTAINER ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px;
}

/* ===== HEADER ===== */
.header {
    text-align: center;
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(192,57,43,0.25);
}

    .header h1 {
        font-size: 1.7rem;
        color: #fff;
        margin-bottom: 4px;
        letter-spacing: 0.3px;
    }

    .header .tagline {
        font-size: 1rem;
        color: rgba(255,255,255,0.95);
    }

/* ===== DAILY SPECIAL SECTION ===== */
#pnlDailySpecials h2 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #c0392b;
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

/* ===== CARD DESIGN ===== */
.menu-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border: 1px solid #ecf0f1;
    transition: all .25s ease;
}

    .menu-card h3 {
        font-size: 1.25rem;
        margin: 6px 0;
        color: #2c3e50;
    }

/* ===== PRICE STYLE ===== */
.price {
    color: #c0392b;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 4px 0;
}

/* ===== CATEGORY BADGE ===== */
.category {
    background: #3f51b5;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

/* ===== BUTTONS ===== */
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #c0392b;
    color: white;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 8px;
    transition: all .2s ease;
}

    .btn:hover {
        background: #a93226;
    }

.btn-secondary {
    background: #2d3436;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 12px;
}

    .form-group label {
        font-weight: 600;
        font-size: 0.95rem;
    }

.form-control,
input[type="text"],
textarea {
    display: block !important;
    width: 100% !important;
    padding: 11px;
    border: 1.8px solid #dfe6e9;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafafa;
}

/* ===== CONTACT FOOTER ===== */
.contact-info {
    text-align: center;
    margin-top: 14px;
    font-size: 0.99rem;
    color: #fff;
    font-weight: bolder;
}

.contact-info a {
    text-align: center;
    margin-top: 14px;
    font-size: 0.99rem;
    color: #fff;
    font-weight: bolder;
}
/* ===== DESKTOP ===== */
@media (min-width: 769px) {

    html {
        font-size: 16px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .header h1 {
        font-size: 2.1rem;
    }

    .menu-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .btn {
        width: auto;
        padding: 11px 28px;
        display: inline-block;
    }
}

/* ===== TOUCH FRIENDLY ===== */
button, input, a {
    min-height: 46px;
}

/* ===== STATUS ===== */
.status-pending {
    color: #f39c12;
}

.status-completed {
    color: #27ae60;
}

.status-cancelled {
    color: #e74c3c;
}


/* ===================================================== */
/* ======= ORDER PAGE QUANTITY LAYOUT FIX ============== */
/* ===================================================== */

/* container */
.quantity-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
}

/* PLUS MINUS BUTTONS */
.quantity-btn,
a.quantity-btn,
input.quantity-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    padding: 0 !important;
    background: #c0392b !important;
    color: white !important;
    border-radius: 50% !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 0 !important;
}

/* QUANTITY NUMBER */
.quantity-controls span,
.quantity-controls label {
    display: inline-block !important;
    min-width: 28px !important;
    text-align: center !important;
    font-weight: bold !important;
}

/* REMOVE BUTTON – SMALL */
.remove-btn,
a.remove-btn {
    width: auto !important;
    display: inline-block !important;
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
    background: #2d3436 !important;
    border-radius: 6px !important;
    margin-left: 6px !important;
}

/* ORDER ITEM ROW */
.order-item {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

    /* stop global .btn damage */
    .order-item .btn {
        width: auto !important;
    }
