/* =====================================================
   EASTWAY HUB
   MAIN STYLESHEET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #111;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =====================================================
   HEADER
===================================================== */

.marketplace-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 20;
}

.marketplace-header-top {
    max-width: 1300px;
    margin: auto;
    padding: 14px 30px 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.marketplace-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #0057b8;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: 2px;
}

.marketplace-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.marketplace-header-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.marketplace-header-links a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.marketplace-header-links a:hover {
    color: #0057b8;
}


/* =====================================================
   MAIN SEARCH
===================================================== */

.marketplace-search-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 5px 20px 18px;
}

.marketplace-search {
    width: 100%;

    display: flex;

    border: 2px solid #111;
    border-radius: 6px;

    overflow: hidden;
    background: white;
}

.marketplace-search input {
    flex: 1;
    min-width: 0;

    border: none;
    outline: none;

    padding: 14px 18px;

    font-size: 15px;
}

.marketplace-search button {
    width: 105px;

    border: none;

    background: #111;
    color: white;

    font-weight: 800;
}

.marketplace-search button:hover {
    background: #0057b8;
}


/* =====================================================
   HERO
===================================================== */

.marketplace-hero {
    max-width: 1300px;
    margin: 25px auto 0;
    padding: 0 20px;
}

.marketplace-hero-content {
    min-height: 400px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;

    overflow: hidden;
    border-radius: 8px;

    background: #0057b8;
}

.marketplace-hero-left {
    padding: 55px 60px;

    color: white;
}

.marketplace-hero-label {
    display: inline-block;

    background: white;
    color: #0057b8;

    padding: 8px 13px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;

    margin-bottom: 20px;
}

.marketplace-hero-left h1 {
    margin: 0 0 18px;

    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -2px;
}

.marketplace-hero-left p {
    max-width: 520px;

    margin: 0 0 28px;

    font-size: 17px;
    line-height: 1.6;
}

.marketplace-hero-button {
    display: inline-block;

    padding: 14px 25px;

    background: #ffc928;
    color: #111;

    border-radius: 5px;

    text-decoration: none;
    font-weight: 900;
}

.marketplace-hero-button:hover {
    background: white;
}


/* HERO RIGHT */

.marketplace-hero-right {
    background: #ffc928;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    position: relative;
}

.hero-message {
    max-width: 330px;

    background: white;

    padding: 35px;

    border-radius: 8px;

    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.hero-message strong {
    display: block;

    color: #0057b8;

    font-size: 30px;
    line-height: 1.05;

    margin-bottom: 13px;
}

.hero-message span {
    color: #555;

    font-size: 15px;
    line-height: 1.5;
}


/* =====================================================
   QUICK SERVICES
===================================================== */

.marketplace-quick-services {
    max-width: 1300px;
    margin: 25px auto;
    padding: 0 20px;
}

.quick-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: white;

    border: 1px solid #e5e5e5;
}

.quick-service {
    min-height: 105px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    text-decoration: none;

    border-right: 1px solid #e5e5e5;

    background: white;
}

.quick-service:last-child {
    border-right: none;
}

.quick-service:hover {
    background: #f7f9fc;
}

.quick-service strong {
    display: block;

    margin-bottom: 6px;

    color: #111;

    font-size: 15px;
}

.quick-service span {
    color: #666;

    font-size: 13px;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

.restaurants-section,
.marketplace-products-section,
.marketplace-feature-section {
    max-width: 1300px;

    margin: 30px auto;

    padding: 35px 30px;

    background: white;
}

.marketplace-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.marketplace-section-heading h2 {
    margin: 5px 0 5px;

    font-size: 30px;
}

.marketplace-section-heading p {
    margin: 0;

    color: #666;

    font-size: 14px;
}

.section-label {
    color: #0057b8;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
}


/* =====================================================
   RESTAURANT SEARCH
===================================================== */

.search-box {
    width: 100%;
    max-width: 700px;

    margin-bottom: 25px;
}

.search-box input {
    width: 100%;

    padding: 14px 18px;

    border: 1px solid #ccc;
    border-radius: 5px;

    outline: none;

    background: white;

    font-size: 14px;
}

.search-box input:focus {
    border-color: #0057b8;

    box-shadow:
        0 0 0 3px rgba(0,87,184,.08);
}


/* =====================================================
   RESTAURANT GRID
===================================================== */

.restaurant-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   RESTAURANT CARD
===================================================== */

.restaurant-picture {
    height: 210px;

    display: block;

    position: relative;

    overflow: hidden;

    background: #eeeeee;

    text-decoration: none;

    border-radius: 4px;

    border: 1px solid #e5e5e5;
}

.restaurant-picture img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .25s ease;
}

.restaurant-picture:hover img {
    transform: scale(1.04);
}

.restaurant-picture:hover {
    box-shadow:
        0 7px 22px rgba(0,0,0,.12);
}


/* RESTAURANT NAME */

.restaurant-name {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 28px 15px 13px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    color: white;

    font-size: 17px;
    font-weight: 900;
}


/* =====================================================
   COMING SOON RESTAURANTS
===================================================== */

.coming-soon-card {
    background:
        linear-gradient(
            135deg,
            #006bd6,
            #003d82
        );

    color: white;
}

.restaurant-coming-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-bottom: 20px;
}

.restaurant-coming-placeholder span {
    color: rgba(255,255,255,.75);

    font-size: 30px;
    font-weight: 900;
}

.coming-soon-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 3;

    padding: 8px 12px;

    border-radius: 4px;

    background: #ffc928;
    color: #111;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* =====================================================
   NO RESTAURANTS FOUND
===================================================== */

#noResults {
    padding: 30px;

    margin-top: 20px;

    text-align: center;

    background: #f7f7f7;

    color: #666;

    font-weight: 700;
}


/* =====================================================
   MARKETPLACE COMING SOON
===================================================== */

.marketplace-coming-soon {
    padding-top: 40px;
    padding-bottom: 40px;
}

.marketplace-coming-soon-card {
    min-height: 290px;

    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #0057b8 0%,
            #006bd6 55%,
            #ffc928 55%,
            #ffc928 100%
        );
}

.coming-soon-content {
    width: 100%;
    max-width: 600px;

    padding: 35px;

    background: rgba(255,255,255,.97);

    border-radius: 8px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.15);
}

.coming-soon-label {
    display: inline-block;

    margin-bottom: 15px;

    padding: 7px 14px;

    background: #111;
    color: white;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.coming-soon-content h3 {
    margin: 0 0 12px;

    font-size: 28px;
}

.coming-soon-content p {
    max-width: 500px;

    margin: 8px auto;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.marketplace-feature-section .quick-service-grid {
    margin-top: 20px;
}


/* =====================================================
   CART / CHECKOUT
===================================================== */

.cart-checkout-section {
    padding: 45px 20px;

    background: #edf1f5;
}

.cart-container {
    width: 100%;
    max-width: 800px;

    margin: auto;

    padding: 32px;

    background: white;

    border-radius: 8px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);
}

.cart-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}

.cart-heading-row h2 {
    margin: 0;

    font-size: 26px;
}

.clear-cart-button {
    padding: 9px 14px;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: white;
    color: #555;

    font-weight: 700;
}

.clear-cart-button:hover {
    border-color: #111;

    color: #111;
}


/* =====================================================
   CART ITEMS
===================================================== */

#cartItems {
    margin-bottom: 20px;
}

.empty-cart-message {
    padding: 25px;

    background: #f7f7f7;

    color: #777;

    text-align: center;

    border-radius: 5px;
}


/* =====================================================
   CART TOTALS
===================================================== */

.cart-totals {
    padding: 20px 0;

    margin-bottom: 25px;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cart-totals > div {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 7px 0;
}

.grand-total-row {
    margin-top: 8px;
    padding-top: 15px !important;

    border-top: 1px solid #ddd;

    font-size: 19px;
}


/* =====================================================
   CHECKOUT FORM
===================================================== */

#checkoutForm h3 {
    margin: 28px 0 15px;

    font-size: 20px;
}

#checkoutForm label:not(.payment-option) {
    display: block;

    margin: 14px 0 6px;

    font-size: 13px;
    font-weight: 800;
}

#checkoutForm input[type="text"],
#checkoutForm input[type="tel"],
#checkoutForm textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #ccc;
    border-radius: 5px;

    outline: none;
}

#checkoutForm input:focus,
#checkoutForm textarea:focus {
    border-color: #0057b8;

    box-shadow:
        0 0 0 3px rgba(0,87,184,.08);
}

#checkoutForm textarea {
    min-height: 100px;

    resize: vertical;
}


/* LOCATION */

.location-btn {
    margin-top: 12px;

    padding: 11px 16px;

    border: none;
    border-radius: 5px;

    background: #eaf2ff;
    color: #0057b8;

    font-weight: 800;
}

.location-btn:hover {
    background: #dbeaff;
}

#locationStatus {
    color: #666;

    font-size: 12px;
}


/* PAYMENT */

.payment-option {
    display: block;

    margin: 12px 0;

    font-size: 14px;
}


/* CHECKOUT BUTTON */

.checkout-button {
    width: 100%;

    margin-top: 25px;

    padding: 16px;

    border: none;
    border-radius: 5px;

    background: #0057b8;
    color: white;

    font-size: 16px;
    font-weight: 900;
}

.checkout-button:hover {
    background: #00458f;
}

.checkout-button:disabled {
    opacity: .55;
    cursor: not-allowed;
}


/* =====================================================
   RECEIPT
===================================================== */

.receipt-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.6);
}

.receipt {
    width: 100%;
    max-width: 520px;

    max-height: 90vh;

    overflow-y: auto;

    position: relative;

    padding: 30px;

    background: white;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);
}

.close-receipt {
    position: absolute;

    top: 10px;
    right: 12px;

    border: none;
    background: transparent;

    font-size: 30px;

    line-height: 1;
}


/* =====================================================
   CART NOTIFICATION
===================================================== */

.cart-notification {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 10000;

    max-width: 330px;

    padding: 14px 18px;

    border-radius: 5px;

    background: #111;
    color: white;

    box-shadow:
        0 8px 30px rgba(0,0,0,.2);

    font-size: 14px;
    font-weight: 700;
}


/* =====================================================
   FOOTER
===================================================== */

.marketplace-footer {
    padding: 45px 25px;

    background: #111;
    color: white;

    text-align: center;
}

.marketplace-footer strong {
    color: #ffc928;

    font-size: 22px;
}

.marketplace-footer p {
    margin: 8px 0;

    color: #ccc;

    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .restaurant-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .marketplace-hero-left {
        padding: 45px 35px;
    }

    .marketplace-hero-left h1 {
        font-size: 47px;
    }

    .quick-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .quick-service {
        border-bottom: 1px solid #e5e5e5;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .marketplace-header-top {
        padding: 12px 15px;
    }

    .marketplace-brand {
        font-size: 21px;
        letter-spacing: 1px;
    }

    .marketplace-logo {
        width: 42px;
        height: 42px;
    }

    .marketplace-header-links {
        gap: 14px;
    }

    .marketplace-header-links a {
        font-size: 12px;
    }

    .marketplace-search-wrapper {
        padding: 4px 15px 14px;
    }

    .marketplace-search input {
        padding: 12px;
        font-size: 13px;
    }

    .marketplace-search button {
        width: 80px;
        font-size: 12px;
    }


    /* HERO */

    .marketplace-hero {
        margin-top: 15px;
        padding: 0 12px;
    }

    .marketplace-hero-content {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .marketplace-hero-left {
        padding: 35px 25px;
    }

    .marketplace-hero-left h1 {
        font-size: 40px;
    }

    .marketplace-hero-left p {
        font-size: 14px;
    }

    .marketplace-hero-right {
        padding: 25px;
    }

    .hero-message {
        width: 100%;
        max-width: none;
        padding: 25px;
    }

    .hero-message strong {
        font-size: 24px;
    }


    /* QUICK SERVICES */

    .marketplace-quick-services {
        padding: 0 12px;
    }

    .quick-service {
        padding: 18px;
        min-height: 90px;
    }


    /* SECTIONS */

    .restaurants-section,
    .marketplace-products-section,
    .marketplace-feature-section {
        margin: 18px 12px;
        padding: 25px 15px;
    }

    .marketplace-section-heading h2 {
        font-size: 24px;
    }


    /* RESTAURANTS */

    .restaurant-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .restaurant-picture {
        height: 165px;
    }

    .restaurant-name {
        padding: 25px 10px 10px;

        font-size: 14px;
    }

    .restaurant-coming-placeholder span {
        font-size: 20px;
    }

    .coming-soon-badge {
        top: 8px;
        left: 8px;

        padding: 6px 8px;

        font-size: 8px;
    }


    /* MARKETPLACE */

    .marketplace-coming-soon-card {
        min-height: 240px;

        padding: 20px;
    }

    .coming-soon-content {
        padding: 25px 18px;
    }

    .coming-soon-content h3 {
        font-size: 22px;
    }


    /* CART */

    .cart-checkout-section {
        padding: 25px 12px;
    }

    .cart-container {
        padding: 22px 15px;
    }

    .cart-heading-row h2 {
        font-size: 21px;
    }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {

    .marketplace-brand span {
        display: none;
    }

    .restaurant-picture {
        height: 145px;
    }

    .restaurant-name {
        font-size: 12px;
    }

    .marketplace-hero-left h1 {
        font-size: 34px;
    }

}

/* =====================================================
   EASTWAY STANDARD RESTAURANT SYSTEM
===================================================== */

.restaurant-page {
    margin: 0;
    background: #f5f6f8;
    color: #111111;
}


/* TOP BAR */

.restaurant-topbar {
    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;
}

.restaurant-topbar-inner {
    width: calc(100% - 40px);
    max-width: 1250px;

    min-height: 68px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.restaurant-brand {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #0057b8;

    text-decoration: none;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.restaurant-brand-logo {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.restaurant-cart-link {
    padding: 10px 16px;

    background: #ffc928;
    color: #111111;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 900;
}


/* BACK */

.restaurant-back-wrapper {
    width: calc(100% - 40px);
    max-width: 1250px;

    margin: 18px auto 0;
}

.restaurant-back-link {
    color: #0057b8;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
}


/* INTRO */

.restaurant-intro {
    padding: 25px 20px 18px;
}

.restaurant-intro-inner {
    max-width: 1250px;

    margin: 0 auto;
}

.restaurant-eyebrow {
    display: inline-block;

    margin-bottom: 7px;

    color: #0057b8;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.restaurant-intro h1 {
    margin: 0 0 7px;

    font-size: clamp(33px, 5vw, 52px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1px;
}

.restaurant-intro p {
    margin: 0;

    color: #666666;

    font-size: 14px;
}


/* TOOLS */

.restaurant-tools {
    position: sticky;

    top: 0;

    z-index: 500;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.restaurant-tools-inner {
    width: calc(100% - 40px);
    max-width: 1250px;

    margin: 0 auto;

    padding: 13px 0;
}

.restaurant-menu-search {
    margin-bottom: 10px;
}

.restaurant-menu-search input {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #cccccc;

    border-radius: 5px;

    outline: none;

    font-size: 14px;
}

.restaurant-menu-search input:focus {
    border-color: #0057b8;

    box-shadow:
        0 0 0 3px rgba(0,87,184,.08);
}

.restaurant-category-nav {
    display: flex;

    gap: 8px;

    overflow-x: auto;

    scrollbar-width: none;
}

.restaurant-category-nav::-webkit-scrollbar {
    display: none;
}

.restaurant-category-nav a {
    flex-shrink: 0;

    padding: 9px 15px;

    background: #f2f4f7;
    color: #111111;

    border-radius: 30px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
}

.restaurant-category-nav a:hover {
    background: #0057b8;
    color: #ffffff;
}


/* MENU */

.restaurant-menu {
    width: calc(100% - 40px);
    max-width: 1250px;

    margin: 0 auto;

    padding: 18px 0 80px;
}

.restaurant-menu-section {
    margin-top: 38px;
}

.restaurant-section-heading {
    margin-bottom: 18px;

    padding-bottom: 10px;

    border-bottom: 3px solid #ffc928;
}

.restaurant-section-heading h2 {
    margin: 0;

    color: #111111;

    font-size: 26px;
    font-weight: 900;
}


/* GRID */

.restaurant-menu-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* CARD */

.restaurant-menu-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6e6e6;

    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.restaurant-menu-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 24px rgba(0,0,0,.10);
}


/* IMAGE */

.restaurant-menu-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;
}

.restaurant-menu-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.restaurant-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background:
        linear-gradient(
            145deg,
            #f0f1f3,
            #fafafa
        );

    color: #888888;

    text-align: center;

    font-size: 11px;
    font-weight: 700;
}


/* CARD CONTENT */

.restaurant-menu-card-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 16px;
}

.restaurant-menu-card h3 {
    margin: 0 0 7px;

    font-size: 16px;

    line-height: 1.3;
}

.restaurant-menu-card p {
    margin: 0 0 13px;

    color: #666666;

    font-size: 12px;

    line-height: 1.5;
}

.restaurant-menu-price {
    display: block;

    margin-top: auto;
    margin-bottom: 13px;

    color: #0057b8;

    font-size: 20px;
    font-weight: 900;
}


/* ADD BUTTON */

.restaurant-add-button {
    width: 100%;

    padding: 12px;

    border: none;

    border-radius: 5px;

    background: #ffc928;
    color: #111111;

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;
}

.restaurant-add-button:hover {
    background: #0057b8;
    color: #ffffff;
}


/* EXTRAS */

.restaurant-menu-extras {
    max-width: 600px;

    margin-top: 22px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 8px;
}

.restaurant-menu-extras h3 {
    margin: 0 0 12px;

    font-size: 18px;
}

.restaurant-extra-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 9px 0;

    border-bottom: 1px solid #eeeeee;

    font-size: 13px;
}

.restaurant-extra-row:last-child {
    border-bottom: none;
}

.restaurant-extra-row strong {
    color: #0057b8;
}


/* SEARCH RESULTS */

.restaurant-no-results {
    margin-top: 30px;

    padding: 30px;

    background: #ffffff;

    color: #666666;

    text-align: center;

    border-radius: 8px;
}


/* TABLET */

@media (max-width: 900px) {

    .restaurant-menu-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .restaurant-topbar-inner,
    .restaurant-back-wrapper,
    .restaurant-tools-inner,
    .restaurant-menu {
        width: calc(100% - 24px);
    }

    .restaurant-brand {
        font-size: 18px;
    }

    .restaurant-brand-logo {
        width: 36px;
        height: 36px;
    }

    .restaurant-cart-link {
        padding: 9px 12px;

        font-size: 11px;
    }

    .restaurant-intro {
        padding: 22px 12px 15px;
    }

    .restaurant-intro h1 {
        font-size: 32px;
    }

    .restaurant-category-nav a {
        padding: 8px 12px;

        font-size: 10px;
    }

    .restaurant-menu {
        padding-bottom: 70px;
    }

    .restaurant-menu-section {
        margin-top: 28px;
    }

    .restaurant-section-heading h2 {
        font-size: 21px;
    }

    .restaurant-menu-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .restaurant-menu-card-content {
        padding: 10px;
    }

    .restaurant-menu-card h3 {
        font-size: 13px;
    }

    .restaurant-menu-card p {
        font-size: 10px;
    }

    .restaurant-menu-price {
        font-size: 17px;
    }

    .restaurant-add-button {
        padding: 10px 6px;

        font-size: 11px;
    }

}

.view-cart-button {
    border: none;
    background: #FFC928;
    color: #111111;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

/* REMOVE OLD DUPLICATE RESTAURANT CART BUTTON */
.view-cart-button {
    display: none !important;
}