/* =====================================
   ROOT VARIABLES
===================================== */
:root {
    --tezmenu-header-height: 56px;
    --tezmenu-category-height: 56px;
    --tezmenu-green: #2e7d32;
}

/* =====================================
   BODY OFFSET (FIXED)
===================================== */
body {
    margin: 0;
    padding-top: calc(
        var(--tezmenu-header-height) +
        var(--tezmenu-category-height)
    );
}

/* =====================================
   FIXED HEADER (TOP BAR)
===================================== */
.tezmenu-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--tezmenu-header-height);
    background: var(--tezmenu-green);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 14px;
    z-index: 1000;
    box-sizing: border-box;
}

/* Header sections */
.tezmenu-left {
    width: 30px;
}

.tezmenu-center {
    flex: 1;
    padding-left: 10px;
}

.tezmenu-restaurant-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.tezmenu-right {
    width: 44px;
    display: flex;
    justify-content: flex-end;
}

/* Call Button */
.tezmenu-call-btn {
    background: #fff;
    color: var(--tezmenu-green);
    padding: 6px 10px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 7px;
    line-height: 1;
}

/* =====================================
   FIXED HORIZONTAL CATEGORY BAR
===================================== */
.tezmenu-category-bar {
    position: fixed;
    top: var(--tezmenu-header-height); /* 🔥 DIRECTLY BELOW HEADER */
    left: 0;
    right: 0;
    height: var(--tezmenu-category-height);
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 999;
    display: flex;
    align-items: center;
}

/* Scroll container */
.tezmenu-category-scroll {
    display: flex;
    gap: 10px;
    padding: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.tezmenu-category-scroll::-webkit-scrollbar {
    display: none;
}

/* Category pill */
.tezmenu-cat-btn {
    border: none;
    background: #f3f3f3;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.tezmenu-cat-btn.active {
    background: var(--tezmenu-green);
    color: #fff;
    font-weight: 600;
}

/* =====================================
   MAIN CONTENT AREA
===================================== */
.tezmenu-content {
    padding: 0 12px;
}

/* Category section */
.tezmenu-category {
    padding: 16px 0;
    margin-top: 10px;
}

.tezmenu-category h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

/* =====================================
   MENU ITEMS LIST
===================================== */
.tezmenu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: -30px !important;
}

/* Item row */
.tezmenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed #e5e5e5;
    background: #fff;
}

/* Image */
.tezmenu-item-img img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

/* Info */
.tezmenu-item-info {
    flex: 1;
}

.tezmenu-item-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    color: black;
}

.tezmenu-item-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.tezmenu-item-price {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

/* ADD button */
.tezmenu-add-btn {
    border: 1px solid var(--tezmenu-green);
    background: #fff;
    color: var(--tezmenu-green);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* ============================
   VEG / NON-VEG ICON FIX
============================ */

/* Outer box */
.food-icon {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-flex;          /* 🔥 KEY */
    align-items: center;            /* 🔥 vertical center */
    justify-content: center;        /* 🔥 horizontal center */
    margin-right: 6px;
    box-sizing: border-box;
}

/* Inner dot */
.food-icon::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}

/* Veg */
.food-icon.veg {
    border: 2px solid #2e7d32;
}
.food-icon.veg::after {
    background: #2e7d32;
}

/* Non-veg */
.food-icon.nonveg {
    border: 2px solid #d32f2f;
}
.food-icon.nonveg::after {
    background: #d32f2f;
}

/* ===============================
   OUT OF STOCK STATE
================================ */
.tezmenu-item.out-of-stock {
    opacity: 0.6;
}

/* Badge on image */
.tezmenu-out-badge {
    position: absolute;
    bottom: 15px;
    left: 0px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

/* Image wrapper relative */
.tezmenu-item-img {
    position: relative;
}

/* Hide add button safety */
.tezmenu-item.out-of-stock .tezmenu-add-btn {
    display: none;
}

.tezmenu-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #2e7d32;
    border-radius: 6px;
    overflow: hidden;
}

.tezmenu-qty-box button {
    background: #f7f7f7;
    border: none;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    color: #2e7d32;
}

.qty-num {
    padding: 0 10px;
    font-weight: 600;
}

/* MODAL BASE */
.tezmenu-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

/* Overlay */
.tezmenu-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* Box */
.tezmenu-modal-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 16px;
    animation: slideUp 0.3s ease;
}

/* Header */
.tezmenu-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

#tezmenu-modal-close {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

/* Body */
.tezmenu-modal-body {
    margin-top: 12px;
}

.tezmenu-modal-options label {
    display: block;
    margin-bottom: 10px;
}

/* Footer */
.tezmenu-modal-footer {
    margin-top: 16px;
}

.tezmenu-modal-add {
    width: 100%;
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ===============================
   VARIABLE MODAL – PREMIUM UI
=============================== */

.tezmenu-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.tezmenu-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.tezmenu-modal-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 16px;
    animation: slideUp .25s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.tezmenu-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: -10px;
}

.tezmenu-modal-body h4 {
    margin: 14px 0 8px;
    font-size: 15px;
    font-weight: 600;
}

.tezmenu-var-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 6px;
    font-size: 14px;
}

.tezmenu-var-group input {
    accent-color: #2e7d32;
}

.tezmenu-modal-footer {
    margin-top: 14px;
}

.tezmenu-modal-add {
    width: 100%;
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tezmenu-customisable-text{
    font-size: 11px;
    color: #ff7a00;
    margin-top: 4px;
    font-weight: 600;
}

/* =====================================================
   ORDER SUMMARY – BOTTOM SHEET (CLEAN & PRO)
===================================================== */

/* ================= MODAL ROOT ================= */
#tezmenu-order-modal {
    display: none;
    align-items: flex-end;
    justify-content: center;
}

/* ================= MODAL BOX ================= */
#tezmenu-order-modal .tezmenu-modal-box {
    width: 100%;
    height: 85vh;
    background: #fff;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    animation: tezmenuSlideUp 0.35s ease;
}

@keyframes tezmenuSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* ================= HEADER ================= */
#tezmenu-order-modal .tezmenu-modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1px 18px 12px;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* ================= BODY ================= */
#tezmenu-order-modal .tezmenu-modal-body {
    padding: 14px 16px 120px;
    height: calc(85vh - 140px);
    overflow-y: auto;
}

/* =====================================================
   VEG / NON-VEG ICON
===================================================== */
.tezmenu-food-type {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 4px;
    border: 1.5px solid #2e7d32;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.tezmenu-food-type::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e7d32;
}

/* Non-Veg */
.tezmenu-food-type.nonveg {
    border-color: #c62828;
}
.tezmenu-food-type.nonveg::after {
    background: #c62828;
}

/* ===============================
   BILLING CARD – PRO STYLE
================================ */

.tezmenu-bill {
    background: #f6f6f6;
    border-radius: 16px;
    padding: 14px 16px;
    margin: 18px 0 22px;
}

/* each row */
.tezmenu-bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

/* label */
.tezmenu-bill-row .label {
    font-weight: 500;
}

/* amount */
.tezmenu-bill-row .value {
    font-weight: 600;
    text-align: right;
}

/* total highlight */
.tezmenu-bill-row.total {
    border-top: 1px dashed #ddd;
    margin-top: 8px;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

/* =====================================================
   ORDER FORM
===================================================== */
.tezmenu-form {
    margin-top: 18px;
}

.tezmenu-form input,
.tezmenu-form select,
.tezmenu-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}

/* Order note – compact */
#order-note {
    min-height: 70px;
    max-height: 80px;
    resize: none;
    margin-bottom: 0;
}

/* =====================================================
   FOOTER / SEND BUTTON
===================================================== */
#tezmenu-order-modal .tezmenu-modal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

#tezmenu-send-order {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #15803d, #22c55e);
    border: none;
}

/* =====================================================
   ORDER ITEM ALIGNMENT – FINAL FIX
===================================================== */

/* Item row layout */
.tezmenu-order-item {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    color: black;
}

/* LEFT SIDE (icon + name + variants) */
.tezmenu-order-item .left {
    flex: 1;
}

/* Icon + name same line */
.tezmenu-order-item .item-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* RIGHT SIDE (amounts) */
.tezmenu-order-item .right {
    min-width: 90px;
    text-align: right;
    flex-shrink: 0;
}

.tezmenu-order-item .right span {
    display: block;
    font-size: 13px;
    color: #777;
}

.tezmenu-order-item .right strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

/* =====================================================
   VEG / NON-VEG ICON FIX
===================================================== */

.tezmenu-food-type {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 4px;
    border: 1.5px solid #2e7d32;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tezmenu-food-type::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #2e7d32;
    border-radius: 50%;
}

/* Non veg */
.tezmenu-food-type.nonveg {
    border-color: #c62828;
}
.tezmenu-food-type.nonveg::after {
    background: #c62828;
}

/* ===== ORDER ID POSITION FIX ===== */
.tezmenu-order-id {
    margin-top: -6px;          /* thoda upar */
    margin-bottom: 12px;       /* items se gap */
    font-size: 13px;
    color: #777;
}

/* Optional: header ke aur paas chahiye ho to */
#tezmenu-order-modal .tezmenu-modal-body {
    padding-top: 10px;         /* pehle 14px tha */
}
.tezmenu-order-id {
    display: inline-block;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
}

/* ==============================
   ORDER SUMMARY CLOSE ICON FIX
============================== */

#tezmenu-order-modal #tezmenu-order-close {
    width: 36px;
    height: 36px;
    border-radius: 0%;
    border: none;
    background: #ffffff;        /* same light grey */
    color: #555;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* Hover / tap feedback */
#tezmenu-order-modal #tezmenu-order-close:hover,
#tezmenu-order-modal #tezmenu-order-close:active {
    background: #e5e7eb;
}

/* =========================================
   PREMIUM ORDER FORM INPUTS
========================================= */

.tezmenu-form input,
.tezmenu-form select,
.tezmenu-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1.5px solid #e5e7eb;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    background: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

/* Placeholder premium */
.tezmenu-form input::placeholder,
.tezmenu-form textarea::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

/* Focus state */
.tezmenu-form input:focus,
.tezmenu-form select:focus,
.tezmenu-form textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

/* Select dropdown arrow fix */
.tezmenu-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #6b7280 50%),
        linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 55%,
        calc(100% - 12px) 55%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

/* Textarea look */
#order-note {
    min-height: 80px;
    resize: none;
    line-height: 1.5;
}

/* Field spacing */
.tezmenu-form input,
.tezmenu-form select {
    margin-bottom: 14px;
}

/* ===============================
   FORM SECTION CARD LOOK
=============================== */

.tezmenu-form {
    background: #fafafa;
    padding: 16px;
    border-radius: 18px;
}

/* Button press effect */
#tezmenu-send-order:active {
    transform: scale(0.98);
    box-shadow: 0 6px 14px rgba(34,197,94,0.3);
}

/* Textarea */
#order-note {
    min-height: 80px;
    resize: none;
}

/* FORCE NON-VEG ICON RED IN ORDER SUMMARY */
.tezmenu-food-type.nonveg {
    border-color: #c62828 !important;
}
.tezmenu-food-type.nonveg::after {
    background: #c62828 !important;
}

/* =========================
   PERFECT ANDROID SELECT FIX
========================= */

.tezmenu-select-wrap {
    position: relative;
}

.tezmenu-select-wrap select {
    width: 100%;
    height: 52px;
    padding: 0 44px 0 16px;
    font-size: 15px;
    border-radius: 14px;
    border: 1.5px solid #e5e5e5;
    background-color: #fff;
    color: #111;

    display: flex;
    align-items: center;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Placeholder style */
.tezmenu-select-wrap select:invalid {
    color: #9ca3af;
}

/* Arrow */
.tezmenu-select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 8px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Focus */
.tezmenu-select-wrap select:focus {
    outline: none;
    border-color: #22c55e;
}

/* =========================
   ORDER FORM – PRO UI
========================= */

.tezmenu-form-group {
    margin-bottom: 18px;
}

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

/* COMMON INPUT STYLE */
.tezmenu-form-group input,
.tezmenu-form-group textarea,
.tezmenu-select-wrap select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #111;

    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

/* TEXTAREA */
.tezmenu-form-group textarea {
    height: 80px;
    padding: 14px 16px;
    resize: none;
}

/* PLACEHOLDER */
.tezmenu-form-group input::placeholder,
.tezmenu-form-group textarea::placeholder,
.tezmenu-select-wrap select:invalid {
    color: #9ca3af;
}

/* FOCUS STATE */
.tezmenu-form-group input:focus,
.tezmenu-form-group textarea:focus,
.tezmenu-select-wrap select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

/* =========================
   SELECT FIX (ANDROID SAFE)
========================= */

.tezmenu-select-wrap {
    position: relative;
}

.tezmenu-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 46px;
    display: flex;
    align-items: center;
}

/* PERFECT ARROW */
.tezmenu-select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* DISABLED OPTION */
.tezmenu-select-wrap select option[disabled] {
    color: #9ca3af;
}

/* =========================
   CART BAR – COMPACT PREMIUM UI
========================= */

#tezmenu-cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    background: linear-gradient(90deg, #166534, #22c55e);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 14px 14px 0 0;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.22);
}

/* LEFT SIDE */
#tezmenu-cart-bar .tezmenu-cart-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
}

/* ITEM COUNT */
#tezmenu-cart-bar .cart-count {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.1;
}

/* TOTAL PRICE (BOLD BUT COMPACT) */
#tezmenu-cart-bar .cart-total {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2px;
}

/* VIEW CART BUTTON */
#tezmenu-cart-bar .view-cart-btn {
    background: #ffffff;
    color: #14532d;
    border: none;

    height: 40px;
    padding: 0 16px;

    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 6px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.22);
    transition: transform 0.15s ease;
}

/* ARROW ICON */
#tezmenu-cart-bar .view-cart-btn::after {
    content: "→";
    font-size: 16px;
}

/* PRESS FEEDBACK */
#tezmenu-cart-bar .view-cart-btn:active {
    transform: scale(0.96);
}

/* SMALL DEVICES */
@media (max-width: 360px) {
    #tezmenu-cart-bar .cart-total {
        font-size: 16px;
    }

    #tezmenu-cart-bar .view-cart-btn {
        height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }
}

/* =========================
   ORDER SUMMARY – REMOVE ITEM BUTTON
========================= */

.tezmenu-order-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.tezmenu-order-item:last-child {
    border-bottom: none;
}

/* LEFT SIDE */
.tezmenu-order-item .left {
    flex: 1;
}

/* TITLE ROW */
.tezmenu-order-item .item-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* REMOVE (×) BUTTON */
.tezmenu-remove-item {
    margin-left: auto;

    width: 26px;
    height: 26px;

    border-radius: 50%;
    border: none;

    background: white !important;
    color: #b91c1c;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* HOVER / ACTIVE */
.tezmenu-remove-item:hover {
    background: white !important;
}

.tezmenu-remove-item:active {
    transform: scale(0.9);
}

/* RIGHT SIDE PRICE */
.tezmenu-order-item .right {
    text-align: right;
    min-width: 90px;
}

.tezmenu-order-item .right span {
    font-size: 13px;
    color: #6b7280;
}

.tezmenu-order-item .right strong {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

/* VARIABLES / ADDONS */
.order-vars {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.tezmenu-expired-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 20px;
}

.tezmenu-expired-box {
    max-width: 420px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.tezmenu-expired-box h1 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tezmenu-expired-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

#customer-name {
    border: solid 1px;
    border-radius: 14px;
    background: white;
    color: black;
    padding: 22px;
}

#table-number {
    border: solid 1px;
    
}

#order-note {
    border: solid 1px;
    
}

/* ================= SEARCH BOX ================= */

.tezmenu-search {
    position: fixed; /* 🔥 only fixed, no sticky */
    top: calc(
        var(--tezmenu-header-height) +
        var(--tezmenu-category-height)
    );
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    padding: 10px 15px;
}

/* input */
.tezmenu-search input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-radius: 30px;
    border: 1px solid #eee;
    font-size: 14px;
    background: #f8f8f8;
    outline: none;
}

/* 🔍 icon */
.tezmenu-search::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

#tezmenuNoResult {
    display: none;
    text-align: center;

    position: fixed;
    top: 40%; /* 🔥 pehle 50% tha, ab upar aayega */
    left: 0;
    right: 0;
    transform: translateY(-50%);

    font-size: 20px; /* 🔥 bigger */
    font-weight: 700; /* 🔥 bold */
    color: #444;

    z-index: 100;
}

#tezmenuClearBtn {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
    cursor: pointer;
    display: none;
}

.tezmenu-content {
    padding: 0 !important;
    margin-top: 75px;
}

.tezmenu-img-modal {
    display: none; /* 🔥 only this */

    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;

    justify-content: center;
    align-items: center;
}

/* 🔥 wrapper */
.tezmenu-img-wrapper {
    position: relative;
    display: inline-block; /* 🔥 IMPORTANT */
}

/* image */
#tezmenuModalImg {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    display: block;
}

/* ❌ close button */
#tezmenuImgClose {
    position: absolute;
    top: -30px;   /* 🔥 adjust */
    right: -12px; /* 🔥 adjust */

    background: #fff;
    color: #000;
    font-size: 16px;
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    cursor: pointer;
}

#tezmenu-modal-body h4:first-child {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 16px;
}
#tezmenu-modal-body h4 {
    margin-top: 16px;
}

/* modal body scrollable */
#tezmenu-variable-modal .tezmenu-modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 5px;
}