@media (max-width: 990px) {
    body {
        padding: 0;
    }

    .mobile-layout {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: -4px;
    }

    .content-area {
        padding: 0px;
    }

    .content-area,
    .container,
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .service-tabs {
        display: flex;
        width: 100%;
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
    }

    .service-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 8px;
        border: none;
        background: var(--bg-card);
        position: relative;
        transition: .25s;
    }

    .service-btn i {
        font-size: 20px;
        color: var(--gray-444);
        background: var(--bg-service-icon);
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        transition: .25s;
    }

    .service-text {
        display: flex;
        flex-direction: column;
    }

    .service-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark-bg);
    }

    .service-sub {
        font-size: 11px;
        color: var(--text-muted-2);
    }

    .service-btn:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px;
        height: 60%;
        background: var(--border-medium);
    }

    .service-btn.active {
        background: var(--bg-service-hover);
    }

    .service-btn.active i {
        background: var(--orange);
        color: var(--white);
    }

    .service-btn.active .service-title {
        color: var(--orange);
    }

    .mobile-items {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .food-item {
        display: flex;
        gap: 12px;
        background: var(--bg-card);
        border-radius: 18px;
        padding: 12px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
    }

    .food-img {
        position: relative;
        display: inline-block;
    }

    .food-img img {
        display: block;
        width: 120px;
        height: 110px;
        border-radius: 14px;
        object-fit: cover;
    }

    .food-type-badge {
        position: absolute;
        left: 6px;
        bottom: 6px;
        width: 12px;
        height: 12px;
        background: var(--bg-card);
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
        z-index: 5;
    }

    .food-type-badge.veg {
        border: 1px solid var(--veg-badge);
    }

    .food-type-badge.nonveg {
        border: 1px solid var(--nonveg-badge);
    }

    .food-type-badge i {
        font-size: 5px;
        line-height: 1;
    }

    .food-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .food-content h6 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .food-content p {
        font-size: 13px;
        color: var(--text-muted-2);
    }

    .food-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1px;
    }

    .food-bottom span {
        font-size: 18px;
        font-weight: 800;
        color: var(--green);
    }

    .food-bottom button {
        background: var(--orange);
        color: var(--white);
        border: none;
        padding: 8px 14px;
        border-radius: 12px;
    }

    @media (min-width: 722px) {
        .mobile-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .food-item {
            flex-direction: row;
            align-items: center;
            width: 100%;
        }

        .food-img img {
            width: 90px;
            height: 90px;
        }

        .food-content h6 {
            font-size: 14px;
        }

        .food-content p {
            font-size: 12px;
        }

        .food-bottom span {
            font-size: 16px;
        }

        .food-bottom button {
            padding: 6px 10px;
            font-size: 12px;
        }
    }

    @media (min-width: 461px) and (max-width: 721px) {
        .service-btn {
            padding: 14px 6px;
            gap: 8px;
        }

        .service-btn i {
            width: 34px;
            height: 34px;
            font-size: 18px;
            border-radius: 10px;
        }

        .service-title {
            font-size: 13px;
        }

        .service-sub {
            font-size: 10.5px;
        }

        .section-title {
            font-size: 17px;
        }

        .mobile-items {
            flex-direction: column;
            gap: 12px;
        }

        .food-item {
            padding: 10px;
            gap: 10px;
            border-radius: 16px;
        }

        .food-img img {
            width: 95px;
            height: 90px;
        }

        .food-content h6 {
            font-size: 14px;
        }

        .food-content p {
            font-size: 12px;
        }

        .food-bottom span {
            font-size: 16px;
        }

        .food-bottom button {
            padding: 7px 10px;
            font-size: 12px;
            border-radius: 10px;
        }

        .food-type-badge {
            width: 11px;
            height: 11px;
            bottom: 5px;
            left: 5px;
        }
    }

    @media (min-width: 360px) and (max-width: 460px) {
        .service-btn {
            padding: 12px 6px;
            gap: 6px;
        }

        .service-btn i {
            width: 28px;
            height: 28px;
            font-size: 15px;
            border-radius: 10px;
        }

        .service-title {
            font-size: 12px;
        }

        .service-sub {
            margin-top: 1px;
            font-size: 8px;
        }

        .section-title {
            font-size: 16px;
        }

        .food-item {
            padding: 10px;
            gap: 10px;
            border-radius: 14px;
        }

        .food-img img {
            width: 90px;
            height: 90px;
        }

        .food-content h6 {
            font-size: 13px;
            margin-top: 7px;
        }

        .food-content p {
            font-size: 11px;
            margin-bottom: 7px;
        }

        .food-bottom span {
            font-size: 15px;
        }

        .food-bottom button {
            padding: 6px 8px;
            font-size: 11px;
            border-radius: 10px;
        }

        .food-type-badge {
            width: 10px;
            height: 10px;
            left: 6px;
        }
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        background: var(--bg-card);
        border-radius: 14px;
    }

    .section-header .title {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .section-header .count {
        font-size: 12px;
        font-weight: 700;
        color: var(--orange);
        background: var(--bg-count-badge);
        padding: 3px 8px;
        border-radius: 20px;
        border: 1px solid var(--orange-light-border);
        margin-left: 6px;
    }

    .menu-open-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 12px;
        border-radius: 10px;
        border: none;
        background: var(--orange);
        color: var(--white);
        font-size: 13px;
        font-weight: 600;
    }

    .fab-btn {
        position: fixed;
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--whatsapp-green);
        color: var(--white);
        border: none;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
        z-index: 9999;
    }

    .fab-overlay {
        position: fixed;
        inset: 0;
        background: var(--overlay-60);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 9998;
    }

    .fab-sheet {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        background: var(--bg-card);
        border-radius: 18px 18px 0 0;
        padding: 12px 14px 20px;
        transition: .35s ease;
        z-index: 9999;
        max-height: 70vh;
        overflow-y: auto;
    }

    .fab-sheet.active {
        bottom: 0;
    }

    .fab-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .fab-handle {
        width: 40px;
        height: 4px;
        background: var(--bg-handle);
        border-radius: 10px;
        margin: 6px auto 10px;
    }

    .fab-btn {
        position: fixed;
        right: 18px;
        bottom: 18px;
        background: var(--orange);
        color: var(--white);
        border: none;
        border-radius: 50px;
        padding: 12px 18px;
        font-weight: 700;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
        z-index: 9999;
    }

    .fab-overlay {
        position: fixed;
        inset: 0;
        background: var(--overlay-60);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 9998;
    }

    .fab-sheet {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        background: var(--bg-card);
        border-radius: 18px 18px 0 0;
        padding: 12px 14px 20px;
        transition: .35s ease;
        z-index: 9999;
        max-height: 70vh;
        overflow-y: auto;
    }

    .fab-sheet.active {
        bottom: 0;
    }

    .fab-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .fab-handle {
        width: 40px;
        height: 4px;
        background: var(--bg-handle);
        border-radius: 10px;
        margin: 6px auto 10px;
    }

    .sheet-title {
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .sheet-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sheet-menu button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 14px;
        background: var(--bg-sheet-item);
        font-size: 13px;
        font-weight: 600;
    }

    .menu-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .menu-count {
        font-size: 11px;
        font-weight: 700;
        background: transparent;
        color: var(--orange);
        padding: 3px 9px;
        border-radius: 20px;
        border: 1.5px solid var(--orange);
    }

    .sheet-menu i {
        font-size: 18px;
    }
}
