﻿

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1 0 auto; /* allows container to grow and push footer down */
}

footer {
    flex-shrink: 0; /* prevent footer from shrinking */
    background-color: #f8f9fa; /* optional background */
    padding: 1rem 0;
    text-align: center;
}

.navbar-brand,
.navbar-brand i {
    color: white !important;
}

.navbar {
    background-color: #ff8c00;
}

    .navbar .nav-link {
        color: white !important;
        font-size: 0.8rem;
    }

        .navbar .nav-link:hover {
            text-decoration: underline;
            color: #fff !important;
        }

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

footer {
    background: #fff;
    padding: 1rem 0;
    font-size: 0.95rem;
    text-align: center;
    border-top: 1px solid #eee;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* === LOGIN PAGE STYLES === */
.login-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
    min-height: 100vh;
    background-color: #fffaf4;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #f59e0b;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #fcd34d;
    border-radius: 0.5rem;
}

    .form-control:focus {
        border-color: #f59e0b;
        box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
    }

.btn-login {
    background-color: #f59e0b;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    border: none;
    transition: background 0.3s ease-in-out;
}

    .btn-login:hover {
        background-color: #d97706;
    }

.small-text {
    font-size: 0.7rem;
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
}

    .small-text a {
        color: #f59e0b;
        font-weight: 600;
        text-decoration: none;
    }

        .small-text a:hover {
            text-decoration: underline;
        }

button, a, input, textarea, select {
    box-shadow: none;
}

   
.btn-orange {
    background-color: #ff6b00;
    color: white;
    border: none;
}

    .btn-orange:hover {
        background-color: #e65c00;
    }
.navbar-toggler {
    border-color: white; /* optional: white border around the button */
}

.card-text{
    text-align:center;
}
.main-container {
    flex: 1 0 auto;
    padding: 0rem 0.5rem;
}
input.form-control:hover {
    border-color: #ff8800;
}

button.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.3);
}
/* Base styles */
body, h2, h4, p, label, input, button {
    /*font-family:cursive, 'Roboto', sans-serif;*/
    font-family: 'Inter', 'Roboto', sans-serif;
}
/*@media (max-width: 576px) {
    body, h2, h4, p, label, input, button {
        font-family: 'Inter', sans-serif;
    }
}*/

    /* Heading styles */
    h2 {
        color: #ff8800;
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    h4 {
        color: #333;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    /* Form input styling */
    .form-label {
        font-weight: 600;
        font-size: 1.1rem;
    }

    input.form-control {
        border-radius: 8px;
        border: 1.5px solid #ddd;
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        transition: border-color 0.3s ease;
    }

        input.form-control:focus {
            border-color: #ff8800;
            box-shadow: 0 0 8px rgba(255, 136, 0, 0.4);
        }

    /* Submit button */
    button.btn-primary {
        background-color: #ff8800;
        border: none;
        font-weight: 600;
        padding: 0.6rem 1.25rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

        button.btn-primary:hover {
            background-color: #cc6e00;
        }

    /* Alert styling */
    .alert-danger, .alert-success {
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
    }

    /* Table styling */
    .table {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(255, 136, 0, 0.1);
    }

        .table thead {
            background-color: #ff8800;
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
        }

        .table tbody tr:nth-child(even) {
            background-color: #fff7e6;
        }

        .table tbody tr:hover {
            background-color: #ffe0b3;
        }

        .table td, .table th {
            vertical-align: middle;
            padding: 0.8rem 1rem;
        }

            /* Action icons */
            .table td a {
                font-size: 1.2rem;
                transition: color 0.2s ease;
            }

                .table td a.text-warning:hover {
                    color: #cc6e00;
                }

                .table td a.text-danger:hover {
                    color: #a80000;
                }

    button.btn-primary,
    button.btn-primary:focus,
    button.btn-primary:active,
    button.btn-primary:focus:active {
        background-color: #ff8800 !important;
        border-color: #ff8800 !important;
        box-shadow: none !important;
        /*outline: none !important;*/
    }

        button.btn-primary:hover {
            background-color: #cc6e00 !important;
        }

    h2 {
        color: #ff8800;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    label.form-label {
        font-weight: 300;
        font-size: .75rem;
    }

    input.form-control,
    select.form-select {
        border-radius: 8px;
        border: 1.5px solid #ddd;
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
        transition: border-color 0.3s ease;
    }

        input.form-control:focus,
        select.form-select:focus {
            border-color: #ff8800;
            box-shadow: 0 0 8px rgba(255, 136, 0, 0.4);
        }

    button.btn-primary {
        background-color: #ff8800;
        border: none;
        font-weight: 600;
        padding: 0.6rem 1.25rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

        button.btn-primary:hover {
            background-color: #cc6e00;
        }

        button.btn-primary:focus,
        button.btn-primary:active {
            background-color: #ff8800 !important;
            border-color: #ff8800 !important;
            box-shadow: none !important;
            /*outline: none !important;*/
        }

    .text-danger {
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }
    /* Global input & textarea placeholder style */
    input::placeholder,
    textarea::placeholder {
        color: #d3d3d3 !important; /* Light gray */
        opacity: 1;
    }

    /* Vendor prefixes for compatibility */
    input::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        color: #d3d3d3 !important;
    }

    input::-moz-placeholder,
    textarea::-moz-placeholder {
        color: #d3d3d3 !important;
    }

    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        color: #d3d3d3 !important;
    }

    input:-moz-placeholder,
    textarea:-moz-placeholder {
        color: #d3d3d3 !important;
    }


    /* === MOBILE OVERRIDES === */
    @media (max-width: 576px) {
        .cart-option-img {
            height: 30px;
            width: 30px;
        }
        .login-card {
            padding: 1.5rem 1.25rem;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight:600;
        }

        .btn-login {
            font-size: 0.9rem;
        }
    }
    /* General Typography & Layout */
    body {
        background-color: #fdfdfd;
        color: #333;
    }

    /* Orange Theme Button */
    .btn-orange {
        background-color: #ff8800;
        border: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

        .btn-orange:hover {
            background-color: #e67300;
        }

    /* Card Enhancements */
    .card-title {
        font-weight: 600;
        font-size: 1.2rem;
    }

    .card {
        border-radius: 12px;
        transition: transform 0.2s ease;
    }

        .card:hover {
            transform: scale(1.01);
        }

    /* Status Badges */
    .badge {
        font-size: 0.9rem;
        padding: 0.4em 0.75em;
        border-radius: 8px;
    }

        .badge.bg-success {
            background-color: #28a745 !important;
        }

        .badge.bg-danger {
            background-color: #dc3545 !important;
        }

    /* Alerts */
    .alert {
        border-radius: 8px;
        font-weight: 500;
    }

    /* Responsive Button Grouping */
    .card .btn {
        margin-top: 0.5rem;
    }

        .card .btn + .btn {
            margin-left: 0.5rem;
        }

    /* Auto-dismiss fade (optional enhancement) */
    .alert {
        transition: opacity 0.5s ease-out;
    }

    .alert-info {
        background-color: #fff4e5;
        border-color: #ff8800;
        color: #ff8800;
        font-weight: 600;
        border-radius: 8px;
    }

        .alert-info i {
            font-size: 1.25rem;
            vertical-align: middle;
        }

    .product-table img {
        max-height: 60px;
        width: auto;
        border-radius: 6px;
        object-fit: contain;
    }

    .btn-icon {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .responsive-product-table table thead {
            display: none;
        }

        .responsive-product-table table,
        .responsive-product-table table tbody,
        .responsive-product-table table tr,
        .responsive-product-table table td {
            display: block;
            width: 100%;
        }

            .responsive-product-table table tr {
                margin-bottom: 1rem;
                border: 1px solid #ddd;
                border-radius: 6px;
                padding: 0.75rem;
            }

            .responsive-product-table table td {
                text-align: right;
                position: relative;
                padding-left: 50%;
            }

                .responsive-product-table table td::before {
                    content: attr(data-label);
                    position: absolute;
                    left: 0.75rem;
                    width: 45%;
                    font-weight: bold;
                    text-align: left;
                }
        /* Align action buttons in mobile stacked layout */
        .responsive-product-table .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: flex-end;
            margin-top: 0.5rem;
        }
    }

    .action-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    a, button, .nav-link, .navbar-toggler {
        -webkit-tap-highlight-color: rgba(255, 136, 0, 0.2);
        !important /* light orange instead of default blue */
    }

        .nav-link:focus,
        .nav-link:active,
        .navbar-toggler:focus,
        .navbar-toggler:active {
            /*outline: none !important;*/
            box-shadow: 0 0 0 0.2rem rgba(255, 136, 0, 0.4) !important; /* theme orange glow */
            background-color: rgba(255, 136, 0, 0.1) !important; /* optional subtle background */
            color: #ff8800 !important /* theme orange text */
        }

    /* Card Image Styling */
    .card-img-top {
        height: 200px;
        object-fit: cover;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

    /* Disabled restaurant card */
    .card.border-secondary.opacity-50 {
        border: 1px solid #ccc;
        background-color: #f9f9f9;
    }

    /* "View Menu" button */
    .btn-outline-primary {
        border-color: #ff6600;
        color: #ff6600;
    }

        .btn-outline-primary:hover {
            background-color: #ff6600;
            color: #fff;
        }

    /* Disabled message box */
    .alert-secondary {
        background-color: #f2f2f2;
        color: #666;
        font-size: 0.95rem;
    }

    /* Add spacing around cards */
    .card {
        transition: transform 0.2s ease-in-out;
    }

        .card:hover {
            transform: scale(1.01);
        }

    /* Text overflow safety */
    .card-title, .card-text {
        word-wrap: break-word;
    }

    /* Optional: Make "View Menu" button icon aligned properly */
    .btn i {
        vertical-align: middle;
    }
    /* Generic reset for all buttons and links */
    .btn:focus,
    .btn:hover,
    .btn:active,
    .btn:focus-visible,
    a:focus,
    a:hover,
    a:active,
    a:focus-visible {
        /*outline: none !important;*/
        box-shadow: none !important;
        /*border-color: transparent;*/ /* optional: remove border color if needed */
    }

    /* Example: Custom hover styles for orange theme */
    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background-color: #ff8800 !important;
        color: white !important;
        border-color: #ff8800 !important;
    }


    /* Neutralize blue hover/focus outlines */
    .btn:focus, .btn:active, .btn:hover,
    .form-control:focus,
    .dropdown-item:focus,
    .dropdown-item:active,
    a:focus, a:hover {
        /*outline: none !important;*/
        box-shadow: none !important;
        border-color: #d3d3d3whe !important;
    }

    /* Override Bootstrap blue background on dropdown focus */
    .dropdown-item:focus, .dropdown-item:hover {
        background-color: #ffe6cc !important;
        color: #ff6600 !important;
    }

    .dropdown-item {
        font-size: 0.8rem !important;
    }
    /* Make toast always appear top right */
    .toast-container {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1060;
    }

    .toast {
        opacity: 0.95;
    }

        /* Toast transition override (optional) */
        .toast.show {
            display: flex !important;
        }

    .toast {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-width: 280px;
        max-width: 380px;
        overflow: hidden;
    }

    .toast-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .toast .btn-close {
        margin-left: 1rem;
        padding: 0.25rem;
        align-self: flex-start; /* optional: keeps it top-aligned */
    }

    .toast.text-bg-danger {
        background-color: #dc3545;
        color: #fff;
    }

    .toast.text-bg-success {
        background-color: #28a745;
        color: #fff;
    }

    h2 {
        color: #ff8800;
        font-weight: 700;
        font-size: 2.25rem;
    }

    h4 {
        margin-top: 3rem;
        color: #ff6f00;
        font-weight: 600;
        font-size: 1.5rem;
    }

    .btn-warning {
        background-color: #ff8800;
        border-color: #ff8800;
        font-weight: 600;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: background-color 0.3s ease;
    }

        .btn-warning:hover {
            background-color: #e67700;
            border-color: #e67700;
        }

    .card {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(255, 136, 0, 0.15);
        transition: transform 0.2s ease;
    }

        .card:hover {
            transform: translateY(-5px);
        }

    .card-img-top {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        height: 200px;
        object-fit: cover;
        filter: none;
    }

    .card.border-secondary.opacity-50 .card-img-top {
        filter: grayscale(100%);
    }

    .card-body {
        padding: 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 0.25rem;
    }

    .card-text {
        font-size: 1.1rem;
        color: #777;
        margin-bottom: 0.75rem;
    }

    .text-warning {
        color: #ffb800 !important;
        font-size: 1.1rem;
    }

    .input-group {
        max-width: 140px;
    }

    .btn-outline-secondary {
        border-color: #ff8800;
        color: #ff8800;
    }

        .btn-outline-secondary:hover {
            background-color: #ff8800;
            color: #fff;
            border-color: #ff8800;
        }

    .alert-secondary {
        font-weight: 600;
        color: #6c757d;
        background-color: #fff3e0;
        border: none;
        border-radius: 8px;
    }

    .alert-info {
        background-color: #fff4e5;
        border-color: #ff8800;
        color: #ff8800;
        font-weight: 600;
        border-radius: 8px;
    }

        .alert-info i {
            font-size: 1.25rem;
            vertical-align: middle;
        }

    .product-add-remove {
        max-width: 50px;
        padding: 0;
        margin-top: 8px;
        border: 1px solid orange !important;
    }

    .p-card-body {
        align-items: baseline !important;
        padding: 1rem;
    }

    h4 {
        margin: 1rem 0 1rem 0 !important;
    }

    .top-rest-lbl {
        color: #2e2e2e;
        font-weight: 600;
        font-size: 1.05rem !important;
        margin-bottom: 1rem;
    }

    .custom-checkout-btn {
        background-color: #ff8800;
        border-color: #ff8800;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: background-color 0.3s ease;
    }

        .custom-checkout-btn:hover {
            background-color: #e67700;
            border-color: #e67700;
            color: #fff;
        }

    .dining-selection body,
    .dining-selection h2,
    .dining-selection h5,
    .dining-selection .btn,
    .dining-selection .form-label {
    }

    /* Headings */
    .dining-selection h2 {
        color: #ff8800;
        font-weight: 700;
        font-size: 2.25rem;
    }

    .dining-selection h5 {
        color: #333;
        font-weight: 600;
    }

    /* Themed Buttons */
    .dining-selection .btn-warning {
        background-color: #ff8800;
        border-color: #ff8800;
        color: #fff;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

        .dining-selection .btn-warning:hover {
            background-color: #e67700;
            border-color: #e67700;
        }

    .dining-selection .btn-outline-warning {
        border-color: #ff8800;
        color: #ff8800;
        font-weight: 600;
    }

        .dining-selection .btn-outline-warning:hover {
            background-color: #ff8800;
            color: #fff;
        }

    /* Card */
    .dining-selection .card {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(255, 136, 0, 0.15);
        border: none;
    }

    /* Form Inputs */
    .dining-selection .form-select {
        border-radius: 8px;
        border: 1px solid #ddd;
        transition: border-color 0.2s ease;
    }

        .dining-selection .form-select:focus {
            border-color: #ff8800;
            box-shadow: 0 0 0 0.2rem rgba(255, 136, 0, 0.25);
        }

    /* Alerts */
    .dining-selection .alert-warning {
        background-color: #fff4e5;
        border-color: #ff8800;
        color: #ff8800;
        font-weight: 400;
        border-radius: 10px;
        font-size: 0.85rem !important;
    }

        .dining-selection .alert-warning i {
            font-size: 1.2rem;
            vertical-align: middle;
        }

    .dining-selection .btn-lg {
        font-size: 1rem;
        padding: 0.4rem 1rem;
        border-radius: 6px;
        min-width: auto;
        width: auto;
    }

    .dining-selection .text-center.mt-3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem; /* space between buttons */
    }

        .dining-selection .text-center.mt-3 > a.btn {
            flex: 1 1 140px; /* buttons take equal width, min 140px */
            max-width: 220px; /* max width for larger screens */
            text-align: center;
        }

    /* Specific colors */
    .dining-selection .btn-primary {
        background-color: #ff8800;
        border-color: #ff8800;
        color: #fff;
        font-weight: 400;
        font-size: 0.8rem !important;
        transition: background-color 0.3s ease;
    }

        .dining-selection .btn-primary:hover {
            background-color: #e67700;
            border-color: #e67700;
            color: #fff;
        }

    .dining-selection .btn-outline-secondary {
        color: #6c757d;
        border-color: #6c757d;
        font-weight: 400;
        font-size: 0.8rem !important;
    }

        .dining-selection .btn-outline-secondary:hover {
            background-color: #6c757d;
            color: #fff;
        }

    .bg-brdr-theme {
        background: #ff8800 !important;
        border: 1px solid #ff8800 !important;
    }

    .book-tbl-btn {
        background: #ff8800;
        border: 1px solid #ff8800;
        color: #fff;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    textarea.form-control {
        font-size: 0.75rem !important;
    }

    .book-tbl-btn:hover,
    .book-tbl-btn:focus,
    .book-tbl-btn:active,
    .book-tbl-btn:focus-visible {
        background: #ff8800 !important;
        border-color: #ff8800 !important;
        color: #fff !important;
        box-shadow: none; /* optional: remove focus shadow */
    }

    .restaurant-orders-page {
        color: #333;
        background-color: #fff;
        padding-bottom: 3rem;
        min-height: 100vh;
        box-sizing: border-box;
    }

        .restaurant-orders-page .text-orange {
            color: #ff8800;
            font-weight: 700;
        }

        .restaurant-orders-page .bg-orange {
            background-color: #ff8800 !important;
        }

        .restaurant-orders-page .card-header.bg-orange {
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

            .restaurant-orders-page .card-header.bg-orange > div {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                align-items: center;
                flex: 1 1 auto;
                min-width: 0;
            }

            .restaurant-orders-page .card-header.bg-orange span.badge {
                flex-shrink: 0;
                margin-top: 0.25rem;
                white-space: nowrap;
                font-size: 0.85rem;
                padding: 0.3rem 0.6rem;
                border-radius: 0.5rem;
            }

        .restaurant-orders-page .card {
            border-radius: 1rem;
            box-shadow: 0 4px 12px rgba(255, 136, 0, 0.2);
            margin-bottom: 1.5rem;
        }

        .restaurant-orders-page table {
            font-size: 0.9rem;
            width: 100%;
            border-collapse: collapse;
            word-break: break-word;
        }

        .restaurant-orders-page th,
        .restaurant-orders-page td {
            vertical-align: middle;
            padding: 0.4rem 0.6rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .restaurant-orders-page th {
            font-weight: 600;
            background-color: #fff7e6;
            color: #ff8800;
            text-align: left;
        }

        .restaurant-orders-page .text-success {
            color: #28a745 !important;
            font-weight: 600;
        }

        .restaurant-orders-page .card-body {
            padding: 1rem 1.25rem;
        }

    @media (max-width: 576px) {
        .restaurant-orders-page .card-header.bg-orange {
            flex-direction: column;
            align-items: flex-start;
        }

            .restaurant-orders-page .card-header.bg-orange > div {
                gap: 0.5rem;
            }

            .restaurant-orders-page .card-header.bg-orange span.badge {
                width: 100%;
                text-align: left;
                margin-top: 0.5rem;
                white-space: normal;
            }

        .restaurant-orders-page table,
        .restaurant-orders-page thead,
        .restaurant-orders-page tbody,
        .restaurant-orders-page th,
        .restaurant-orders-page td,
        .restaurant-orders-page tr {
            display: block;
            width: 100%;
        }

            .restaurant-orders-page thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }

        .restaurant-orders-page tr {
            margin-bottom: 1rem;
            border: 1px solid #f0f0f0;
            border-radius: 0.5rem;
            padding: 0.75rem;
            box-shadow: 0 2px 5px rgb(0 0 0 / 0.05);
        }

        .restaurant-orders-page td {
            padding-left: 50%;
            position: relative;
            border: none;
            border-bottom: 1px solid #eee;
        }

            .restaurant-orders-page td::before {
                position: absolute;
                top: 0.6rem;
                left: 1rem;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: 600;
                color: #ff8800;
                content: attr(data-label);
            }

            .restaurant-orders-page td:last-child {
                border-bottom: 0;
            }

        .restaurant-orders-page .text-end {
            text-align: left !important;
            margin-top: 1rem;
        }
    }

    .my-orders-page {
        color: #333;
        min-height: 100vh;
        padding-bottom: 3rem;
    }

        .my-orders-page .order-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgb(255 136 0 / 0.15);
        }

            .my-orders-page .order-card .card-header {
                background: linear-gradient(to right, #ff8c00, #ff6500);
                color: white;
                font-size: 0.95rem;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                gap: 0.5rem;
                padding: 0.75rem 1.25rem;
            }

        .my-orders-page .order-meta {
            font-size: 0.875rem;
            white-space: nowrap;
        }

        .my-orders-page .product-item {
            padding: 0.75rem;
            border-radius: 8px;
            margin-bottom: 0.75rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .my-orders-page .product-header {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .my-orders-page .rating-stars i {
            font-size: 1.25rem;
            transition: 0.2s ease-in-out;
            opacity: 0.3;
            cursor: pointer;
        }

            .my-orders-page .rating-stars i.hovered {
                opacity: 1;
                transform: scale(1.1);
            }

        .my-orders-page .card-body {
            padding: 1rem 1.5rem;
        }

        .my-orders-page .text-end {
            font-weight: 700;
            font-size: 1.25rem;
            margin-top: 1rem;
        }

    @media (max-width: 576px) {
        .my-orders-page h2 {
            font-size: 1.5rem;
            text-align: center;
        }

        .my-orders-page .order-card .card-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.4rem;
            font-size: 0.9rem;
        }

        .my-orders-page .order-meta {
            white-space: normal;
            font-size: 0.85rem;
        }

        .my-orders-page .product-item {
            padding: 0.5rem;
        }

        .my-orders-page .product-header {
            font-size: 0.95rem;
        }

        .my-orders-page .card-body {
            padding: 1rem;
        }

        .my-orders-page .rating-stars {
            gap: 0.3rem;
        }

        .my-orders-page .text-end {
            font-size: 1.1rem;
            text-align: right;
        }
    }

    .truncate-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        max-width: 100%;
    }

    .my-orders-page .item-row {
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
        font-size: 0.875rem;
    }

    .my-orders-page .item-col {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .my-orders-page .item-col.name {
            flex: 2.5;
            min-width: 0;
        }

        .my-orders-page .item-col.qty,
        .my-orders-page .item-col.price {
            flex: 1;
            text-align: right;
        }

    .my-orders-page .rating-stars i {
        font-size: 1.1rem;
        opacity: 0.3;
        transition: 0.2s;
        cursor: pointer;
    }

        .my-orders-page .rating-stars i.hovered {
            opacity: 1;
            transform: scale(1.1);
        }

    @media (max-width: 576px) {
        .my-orders-page .item-row-header {
            display: none;
        }

        .my-orders-page .item-row {
            font-size: 1rem;
        }

        .my-orders-page .item-col.name {
            flex: 1;
        }

        .my-orders-page .item-col.qty {
            flex: 1;
        }

        .my-orders-page .item-col.price {
            flex: 1.2;
        }

        .my-orders-page .card-body {
            padding: 1rem;
        }
    }

    .bg-fffaf4 {
        background-color: #fffaf4 !important;
    }

    input:focus,
    textarea:focus {
        border: 1px solid #007bff !important; /* or any visible color */
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important; /* optional glow effect */
        background-color: white; /* ensure background is not blending in */
    }

    .navbar, .nav-item {
        position: relative;
        overflow: visible !important;
        z-index: 1000;
    }
        /* Show dropdown on hover */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            visibility: visible;
            opacity: 1;
        }

    /* Ensure dropdown appears above other content */
    .navbar, .nav-item, .dropdown-menu {
        position: relative;
        z-index: 1050;
    }

    .dropdown-menu {
        display: none; /* Hide by default */
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        z-index: 1051;
    }

    /* Optional smoother appearance */
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
    }

    /* Prevent hover dropout when mouse moves quickly */
    .nav-item.dropdown {
        position: relative;
    }

    .margin-left1rem {
        margin-left: 1rem !important;
    }

    .product-add-remove {
        height: calc(1.5em + .75rem + 2px); /* Match btn-sm height */
        max-width: 60px; /* optional, to keep input narrow */
    }

    .restaurant-header {
        position: relative;
        height: 250px;
        width: 100%;
        background-size: cover;
        background-position: center;
        color: white;
        margin-bottom: 1.5rem;
    }

    .restaurant-overlay {
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    }

    .restaurant-content {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: 1;
    }

    .restaurant-name {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .view-cart-btn {
        font-size: 0.85rem !important;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ffc107; /* Bootstrap warning color or your brand color */
        color: #000;
        padding: 10px 16px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        z-index: 1050;
        display: flex;
        align-items: center;
        transition: background-color 0.3s ease;
    }

        .view-cart-btn:hover {
            background-color: #e0a800;
            color: #000;
        }

    @media (max-width: 576px) {
        .table td,
        .table th {
            font-size: 0.85rem;
        }

        .cart-qty {
            width: 40px !important;
        }

        .btn-sm {
            padding: 0.25rem 0.5rem;
        }
    }

    @media (max-width: 576px) {
        .cart-qty {
            width: 40px !important;
        }

        .btn-sm {
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
        }

        .card-title {
            font-size: 0.95rem;
        }
    }

    .cart-qty-number {
        width: 30px !important;
        padding: 0 !important;
    }

    .cart-qty-number-mob {
        width: 30px !important;
        padding: 0 !important;
        margin-top: 7px;
    }

    .align-items-flex-start {
        align-items: flex-start !important;
    }

    .rating-stars i {
        font-size: 1.4rem;
        transition: opacity 0.2s, transform 0.2s;
        color: #f0ad4e; /* Bootstrap warning color */
        opacity: 0.4 !important;
    }

        .rating-stars i.hovered,
        .rating-stars i.active {
            opacity: 1 !important;
            transform: scale(1.1);
        }

        .rating-stars i.disabled {
            cursor: default;
        }

    #cartConflictModal.modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    #cartConflictModal .modal-box {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        max-width: 400px;
        width: 90%;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

        #cartConflictModal .modal-box h4 {
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        #cartConflictModal .modal-box p {
            margin-bottom: 20px;
            font-size: 1rem;
        }

    #cartConflictModal .modal-actions {
        display: flex;
        justify-content: space-around;
        gap: 10px;
    }

    #cartConflictModal .btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
    }

    #cartConflictModal .cancel-btn {
        background: #ddd;
    }

    #cartConflictModal .continue-btn {
        background: #f44336;
        color: white;
    }

    .w-95 {
        width: 95px !important;
    }

    .pre-status {
        max-width: 100px;
        width: auto !important;
        font-size: 12px !important;
        padding: 5px !important;
        display: block !important;
    }

    .container.small,
    .container.small * {
        font-size: 0.85rem;
    }

    .card {
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .card-img-wrapper {
        height: 160px;
        overflow: hidden;
    }

    .card-img-top {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .card-body {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        display: flex;
        flex-direction: column;
    }

    .card-title, .card-text, .btn, input {
        font-size: 0.85rem;
    }

    .input-group .btn {
        padding: 0.25rem 0.5rem;
    }

    .text-truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rating-badge i {
        font-size: 1rem;
    }

    .rating-badge span {
        font-size: 0.85rem;
    }

    .text-success {
        color: #0f7a4f !important; /* dark green to match your image */
    }

    .custom-qty {
        width: auto;
        gap: 4px;
    }

    .qty-input-sm {
        width: 36px;
        height: 28px;
        font-size: 0.85rem;
        padding: 0;
        border: 1px solid #ffa500;
        border-radius: 4px;
    }

    .qty-btn-sm {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        font-weight: bold;
        color: #ffa500;
        border: 1px solid #ffa500;
        border-radius: 4px;
        background-color: white;
        line-height: 1;
        padding: 0;
    }

        .qty-btn-sm:hover {
            background-color: #ffa500;
            color: white;
        }

    .mar0-w75 {
        margin: 0 !important;
        width: 95px !important;
    }

    .mar0 {
        margin: 0 !important;
    }

    .pad0 {
        padding: 0 !important;
    }

    .fz09rem {
        font-size: 0.9rem;
    }

    .arr-time-lbl {
        font-size: 0.7rem;
        margin-top: 10px;
    }

    @media (max-width: 767.98px) {
        .mar0-w75 {
            margin: 0 !important;
            width: 80px !important;
        }

        .mobile-cart-card {
            font-size: 0.85rem;
            margin-bottom: 0.5rem !important; /* smaller margin */
        }

            .mobile-cart-card img {
                max-height: 80px;
                object-fit: contain;
            }

            .mobile-cart-card .card-body {
                padding: 0.25rem 0.5rem;
            }

            .mobile-cart-card .btn-sm {
                padding: 0.15rem 0.4rem;
                font-size: 0.75rem;
            }

            .mobile-cart-card .cart-qty-number-mob {
                width: 35px !important;
                font-size: 0.8rem;
                padding: 0.15rem;
            }
    }

    .fs065rem {
        font-size: 0.65rem !important;
    }

    .fs085rem {
        font-size: 0.85rem !important;
    }

    .fs080rem {
        font-size: 0.80rem !important;
    }

    .color-353535 {
        color: #353535 !important;
    }

    .my-order-tot {
        font-size: 0.95rem !important;
        margin: 0 !important;
    }

    .alert {
        font-size: 0.75rem !important;
        padding: 0.5rem !important;
    }

    .btn-group.smaller-buttons .btn {
        font-size: 0.8rem; /* smaller font */
        padding: 0.25rem 0.5rem; /* tighter padding */
        min-width: 60px; /* optional: keep buttons same width */
    }

    .img-fluid-desk {
        height: 60px !important;
    }

    .restaurant-name {
        font-size: 2rem;
        text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }

    @media (min-width: 768px) {
        .restaurant-name {
            font-size: 3rem;
        }
    }

    .food-icon {
        width: 14px;
        height: 14px;
        border: 1.5px solid;
        border-radius: 2px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 5px !important;
    }

        .food-icon::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            display: block;
        }

        .food-icon.veg {
            border-color: green;
        }

            .food-icon.veg::before {
                background-color: green;
            }

        .food-icon.non-veg {
            border-color: red;
        }

            .food-icon.non-veg::before {
                background-color: red;
            }

    .margin5 {
        margin: 15px !important;
    }

    html {
        scroll-behavior: smooth;
    }

    .view-cart-btn,
    #goTopBtn {
        background-color: #0d6efd; /* Bootstrap primary */
        color: white;
        border: none;
        font-weight: 600;
        cursor: pointer;
        z-index: 1050;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
    }

        .view-cart-btn:hover,
        #goTopBtn:hover {
            background-color: #ff8800; /* Darker on hover */
            color: white;
        }

    .color-4a4949 {
        color: #4a4949 !important;
    }
    /* Specifics for each button */
    .view-cart-btn {
        position: fixed;
        bottom: 20px;
        right: 75px;
        padding: 10px 16px;
        border-radius: 50px;
        text-decoration: none;
        display: flex;
        align-items: center;
        background-color: #ff8800;
        width: 50px !important;
        height: 50px !important;
    }

    #goTopBtn {
        width: 50px !important;
        height: 50px !important;
        right: 78px !important;
        position: fixed;
        bottom: 20px;
        right: 15px !important;
        padding: 10px 14px;
        border-radius: 50%;
        font-size: 20px;
        display: none;
        background-color: #ff8800
    }

    .fs06rem {
        font-size: 0.6rem !important;
    }

    .bg-theme {
        background-color: #ff8800 !important;
        color: white !important;
    }

    .btn-theme {
        background-color: #ff8800;
        color: white;
        border: none;
    }

        .btn-theme:hover {
            background-color: #e67300; /* Slightly darker on hover */
        }

    .text-orange {
        color: #ff8800;
    }

    .btn-orange {
        background-color: #ff8800;
        color: #fff;
    }

        .btn-orange:hover {
            background-color: #e67600;
            color: #fff;
        }

    .fs075rem {
        font-size: 0.75rem !important;
    }

    .ml-25 {
        margin-left: 25px !important;
    }

    .mx-width500 {
        max-width: 500px !important;
    }

    .frgt-pass {
        margin-top: 5px !important;
        margin-bottom: 30px !important;
        float: inline-end !important;
    }

    .cancelled-order {
        background-color: #f0f0f0;
        opacity: 0.6;
        pointer-events: none;
    }

    .img-not-avail {
        background: #eeeeee;
        padding: 45px;
        text-align: -webkit-center;
        color: #a9a9a9;
    }

    .status-success {
        background-color: #d4edda;
        color: #155724;
        padding: 5px;
        font-size: 0.6rem !important;
        border-radius: 5px;
    }

    .status-failed {
        background-color: #f8d7da;
        color: #721c24;
        padding: 5px;
        font-size: 0.6rem !important;
        border-radius: 5px;
    }

    .status-refund-init {
        background-color: #fff3cd;
        color: #856404;
        padding: 5px;
        font-size: 0.6rem !important;
        border-radius: 5px;
    }

    .status-refund-success {
        background-color: #d1ecf1;
        color: #0c5460;
        padding: 5px;
        font-size: 0.6rem !important;
        border-radius: 5px;
    }

    #payment-selection-dev {
        font-weight: 600;
        max-width: 400px;
        padding: 10px 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
        color: #333;
        font-size: 0.75rem !important;
    }

        #payment-selection-dev label {
            font-weight: 400;
            margin-right: 8px;
        }

    .payment-option {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 500;
        cursor: pointer;
    }

    input[type="radio"] {
        cursor: pointer;
    }

    input[type="radio"] {
        cursor: pointer;
    }

    @media (max-width: 768px) {
        #payment-selection-dev,
        .checkout-actions {
            justify-content: center !important;
            text-align: center !important;
        }
    }

    #toggleInstructionBtn {
        font-size: 0.8rem;
        border: 1px solid lightgray;
    }

    @media (min-width: 768px) {
        #payment-selection-dev {
            justify-content: flex-end;
        }

        .checkout-actions {
            text-align: right;
        }
    }

    .best-seller {
        font-size: 0.6rem !important;
        padding: 5px !important;
    }

    .mar-top-3 {
        margin-top: -3px !important;
    }

    body {
        padding-top: 70px; /* Adjust depending on your navbar height */
    }

    .navbar {
        z-index: 1030; /* Ensure navbar stays on top */
    }

        .navbar.fixed-top {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030; /* stays above most elements */
        }

    .text-align-center {
        text-align: center !important;
    }

    .text-align-left {
        text-align: left !important;
    }

    .text-orange {
        color: #ff6b00;
    }

    @media (max-width: 576px) {
        .d-mb-none {
            display: none !important;
        }

        .mb-max-width {
            max-width: 152px !important;
        }

        .vw-product-rest-img {
            background-size: cover !important;
        }
    }

    .max-width-120 {
        max-width: 120px !important;
    }

    .best-seller-mar {
        margin-top: 5px !important;
    }

    .mar-top-25 {
        margin-top: 25px !important;
    }

    .vw-product-rest-img {
        background-size: auto;
    }

    .category-names {
        font-weight: 600;
    }

        .category-names .btn {
            color: #333;
        }

    .mar-right20 {
        margin-right: 20px !important;
    }

    .height-auto {
        height: auto !important;
    }

    .margin-right-1rem {
        margin-right: 1rem !important;
    }

    .pad-left-0 {
        padding-left: 0 !important;
    }

    .margin-right-05rem {
        margin-right: 0.5rem !important;
    }

    .cart-count {
        margin-top: 16px;
        margin-left: -17px;
        background: none;
        background-color: none !important;
        background-color: transparent !important;
        font-size: 12px !important;
    }

    .border-1px-lgrey {
        border: 1px solid #d3d3d3 !important;
        border-radius: 5px !important;
    }

    .no-border {
        border: 0px !important;
    }

    .text-align-right {
        text-align: right;
    }

    td {
        font-size: 12px;
    }

    .share-receipt {
        padding: 10px 20px;
        font-size: 16px;
        margin: 20px;
    }
    /* Optional: Ensure the dropdown shows above content */
    .dropdown-menu {
        z-index: 1050;
    }

    /* Fix potential mobile issues where dropdown might be hidden or not aligned */
    .navbar-nav .dropdown-menu {
        position: absolute;
    }

    /* Optional: smoother mobile dropdown behavior */
    @media (max-width: 991.98px) {
        .navbar-collapse.show .dropdown-menu {
            position: static;
            float: none;
        }
    }

    .gif-wrapper {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        margin: 20px 0;
    }

    .profile-gif {
        max-width: 300px; /* Or adjust to fit your design */
        height: auto;
    }

    .gif-wrapper {
        text-align: center;
        margin: 20px 0;
    }

    .alert-danger {
        font-size: 0.75rem !important;
    }

    .alert-success {
        font-size: 0.75rem !important;
    }

    .text-danger {
        font-size: 0.75rem !important;
    }

    .text-success {
        font-size: 0.75rem !important;
    }

    footer {
        background: #111827;
        color: white;
        text-align: center;
        padding: 5px;
        font-size: 0.75rem;
    }

    .d-ruby {
        display: ruby !important;
    }

    .mar-top-15 {
        margin-top: 15px !important;
    }

    .dish-scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding: 10px;
        scroll-snap-type: x mandatory;
    }

    .dish-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 120px;
        text-align: center;
        border: 2px solid transparent;
        border-radius: 10px;
        transition: border-color 0.3s;
        cursor: pointer;
    }

        .dish-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .dish-item.selected {
            border-color: #ff8c00;
            background-color: #ffffff;
        }

    /* Optional: smooth scrolling */
    .dish-scroll-container::-webkit-scrollbar {
        height: 6px;
    }

    .dish-scroll-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    @media (max-width: 600px) {
        .dish-item {
            width: 70px;
        }
    }

    .all-items {
        width: 60px !important;
        height: 55px !important;
        border-radius: 50px !important;
        margin-top: 10px !important;
        margin-bottom: 5px !important;
    }
    .mar-bot-4rem{
        margin-bottom:4rem !important;
    }
.restaurant-card {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.99);
    border-radius: 10px;
    padding: 10px 10px;
    width: calc(100% - 30px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.restaurant-details {
    font-size: 14px;
    color: #333;
}

.rating {
    color: #2e7d32;
    font-weight: 500;
}

.cuisines {
    margin-top: 4px;
    color: #e65100;
    font-weight: 500;
}

.location-time {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 13px;
}

.offer-section {
    display: flex;
    align-items: center;
    margin-top: 10px;
    background: #fff3e0;
    padding: 8px;
    border-radius: 6px;
}

.offer-badge {
    background: #ff9800;
    color: white;
    border-radius: 50%;
    padding: 6px;
    font-size: 14px;
    margin-right: 10px;
}

.offer-info {
    flex: 1;
    font-size: 13px;
}

.offer-text {
    font-weight: 600;
}

.offer-code {
    font-size: 12px;
    color: #777;
}

.offer-limit {
    font-size: 12px;
    color: #ff5722;
    font-weight: bold;
}
.fssai-license-box {
    background-color: #f5f5fa;
    padding: 10px 20px;
    border-bottom: 2px solid #ccc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.fssai-logo-text {
    display: flex;
    align-items: center;
}

.fssai-logo {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 24px;
    color: #a6a6a6;
    margin-right: 12px;
}

.license-text {
    font-size: 16px;
    color: #6b7280; /* subtle dark gray-blue */
}
.filter-checkboxes {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

    .filter-checkboxes label {
        display: flex;
        align-items: center;
        gap: 6px;
        background-color: #f8f9fa;
        padding: 6px 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        cursor: pointer;
    }

.veg-icon {
    color: green;
    font-size: 16px;
}

.nonveg-icon {
    color: red;
    font-size: 16px;
}

.apply-btn {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.off-rest-name {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: black !important;
}
.right20{
    right:20px !important;
}
.credit-discount {
    width: 100px;
    float: right;
}
.flow-root{
   display:flow-root;
}
.delete-cart-item{
    margin-top:0 !important;
    margin-left:10px;
}
.text-align-end{
    text-align:end;
}
.pad-right25{
    padding-right:25px !important;
}
.offers-zone {
    margin-top: 25px;
    margin-bottom: 0;
}
.scroll-snap-x {
    scroll-snap-type: x mandatory;
}

    .scroll-snap-x > * {
        scroll-snap-align: start;
    }
    .pad-10{
        padding:10px !important;
    }
    .min-height{
        min-height:175px !important
    }
    .width-95{
        width:95% !important;
    }
.order-options {
    padding: 15px !important;
    border-radius: 15px;
    min-width: 115px;
    text-align: center;
    width:32%;
}
.cart-option-img{
    height:40px;
    width:40px;
}
.mar-right5{
    margin-right:5px;
}
.mar20{
    margin:20px;
}
.font-size12{
    font-size:12px;
}
input[type="radio"] {
    accent-color: #ff8800; /* Use your theme color (e.g., Tailwind's amber-500) */
}
.cart-options-lbl {
    font-size: 12px;
    display: inline-grid;
    margin-left:5px !important;
}
@media (max-width: 576px) {
    .cart-option-img {
        height: 30px;
        width: 30px;
    }
}
.distance-time {
    margin-left: -5px !important;
}
.distance-div {
    margin-left: -5px;
    margin-top: 10px;
}
.notify-circle {
    margin-left: -10px;
    margin-top: 5px;
}
.desktop-notify-circle {
    margin-left: -18px !important;
    margin-top: 11px;
}
#delivery-status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    z-index: 9999;
}

.status-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.status-icon {
    width: 35px;
    height: 35px;
}

xcv

@media (max-width: 600px) {
    .status-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #delivery-status-bar button {
        width: 100%;
    }
}
.order-status-container {
    max-width: 500px;
    margin: auto;
    padding: 16px;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
}

.status-message {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.step {
    padding: 12px 16px;
    border-left: 4px solid #ccc;
    background-color: #f1f1f1;
    border-radius: 6px;
    font-weight: 500;
    color: #555;
}

    .step.completed {
        background-color: #e0f7e9;
        border-left-color: #4CAF50;
        color: #2e7d32;
    }

.delivery-person {
    background: #f9f9f9;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

    .delivery-person h3 {
        margin-bottom: 10px;
        color: #444;
    }

    .delivery-person p {
        margin: 4px 0;
        font-size: 0.95rem;
    }
.mar-right10{
    margin-right:10px;
}
.mar-bot70{
   margin-bottom:70px;
}
.address-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 1rem auto;
}

.address-left {
    display: flex;
    gap: 0.75rem;
}

.pin-icon {
    font-size: 1.5rem;
    color: #e63946;
    margin-top: 2px;
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.change-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
}

    .change-button:hover {
        background-color: #0056b3;
    }
.user-location-img-cls {
    width: 15px;
    margin-top: 2px;
}
.user-addr {
    margin: 0 5px;
    font-size:13px;
}
.change-addr-btn {
    font-size: 12px;
    padding: 0px 5px;
    margin-right: 10px;
}