.hotel-mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Layout */
        .hotel-main-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 220px 1fr 320px;
            gap: 0;
            min-height: calc(100vh - 80px);
        }

        /* Categories Sidebar */
        .hotel-categories {
            background: #f8f9fa;
            padding: 1.5rem 0;
            border-right: 1px solid #eee;
            overflow-y: auto;
            max-height: calc(100vh - 80px);
            position: sticky;
            top: 80px;
            height: calc(100vh - 80px);
        }

        .hotel-categories::-webkit-scrollbar {
            width: 4px;
        }

        .hotel-categories::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .hotel-categories::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 2px;
        }

        .hotel-categories::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        .hotel-categories h3 {
            padding: 0 1.5rem;
            margin-bottom: 1rem;
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .hotel-category-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }

        .hotel-category-item:hover {
            background: #e3f2fd;
        }

        .hotel-category-item.hotel-active {
            background: #ab2431;
            color: white;
            border-left-color: #ad1457;
        }

        .hotel-category-icon {
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .hotel-category-item.hotel-active .hotel-category-icon {
            background: transparent;
        }

        .hotel-category-info {
            flex: 1;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .hotel-category-count {
            background: #fff;
            color: #ab2431;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .hotel-active .hotel-category-count {
            background: rgba(255,255,255,0.9);
            color: #ab2431;
        }

        /* Main Content */
        .hotel-content-area {
            background: white;
            display: flex;
            flex-direction: column;
        }

        /* Restaurant Header */
        .hotel-restaurant-header {
            padding: 2rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .hotel-restaurant-info {
            display: flex;
            gap: 1rem;
        }

        

        .hotel-restaurant-details h2 {
            color: #333;
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .hotel-restaurant-details p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .hotel-rating-status {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hotel-rating {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: #ff9800;
            font-weight: 500;
            font-size: 0.9rem;
        }

       

        .hotel-search-filters {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: flex-end;
        }

        .hotel-search-box {
            position: relative;
            width: 300px;
        }

        .hotel-search-input {
            width: 100%;
            padding: 0.8rem 1rem;
            padding-right: 3rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.9rem;
            outline: none;
        }

        .hotel-search-input:focus {
            border-color: #ab2431;
        }

        .hotel-search-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .hotel-filter-buttons {
            display: flex;
            gap: 0.5rem;
        }

        /* Filter Button Styles */
.hotel-filter-btn {
    padding: 0.1rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Veg Filter Button - Inactive State */
.hotel-filter-btn.hotel-veg {
    border-color: #4caf50;
    color: #4caf50;
}

/* Veg Filter Button - Active State */
.hotel-filter-btn.hotel-veg.hotel-active {
    background: #4caf50;
    color: white;
}

/* Non-Veg Filter Button - Inactive State */
.hotel-filter-btn.hotel-non-veg {
    border-color: #f44336;
    color: #f44336;
}

/* Non-Veg Filter Button - Active State */
.hotel-filter-btn.hotel-non-veg.hotel-active {
    background: #f44336;
    color: white;
}

/* Veg Icon Styles */
.hotel-veg-icon {
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-radius: 2px;
    position: relative;
    display: inline-block;
}

/* Veg Icon - Inactive State (Green) */
.hotel-filter-btn.hotel-veg .hotel-veg-icon {
    border-color: #4caf50;
}

.hotel-filter-btn.hotel-veg .hotel-veg-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Veg Icon - Active State (White) */
.hotel-filter-btn.hotel-veg.hotel-active .hotel-veg-icon {
    border-color: white;
}

.hotel-filter-btn.hotel-veg.hotel-active .hotel-veg-icon::after {
    background: white;
}

/* Non-Veg Icon Styles */
.hotel-non-veg-icon {
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-radius: 2px;
    position: relative;
    display: inline-block;
}

/* Non-Veg Icon - Inactive State (Red) */
.hotel-filter-btn.hotel-non-veg .hotel-non-veg-icon {
    border-color: #f44336;
}

.hotel-filter-btn.hotel-non-veg .hotel-non-veg-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 5px solid #f44336;
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
}

/* Non-Veg Icon - Active State (White) */
.hotel-filter-btn.hotel-non-veg.hotel-active .hotel-non-veg-icon {
    border-color: white;
}

.hotel-filter-btn.hotel-non-veg.hotel-active .hotel-non-veg-icon::after {
    border-bottom-color: white;
}

        /* Menu Content */
        .hotel-menu-content {
            padding: 2rem;
            flex: 1;
        }

        .hotel-section-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #333;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hotel-featured-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hotel-featured-items .hotel-food-card {
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s;
            background: white;
            position: relative;
            min-height: auto;
        }

        .hotel-featured-items .hotel-food-card-image {
            width: 100%;
            height: 140px;
            position: relative;
            background-size: cover;
            background-position: center;
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
            border-radius: 12px 12px 0 0;
        }

        .hotel-featured-items .hotel-food-card-content {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .hotel-featured-items .hotel-food-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #333;
            line-height: 1.3;
            margin: 0;
        }

        .hotel-featured-items .hotel-food-price {
            font-size: 1rem;
            font-weight: bold;
            color: #333;
            margin: 0.3rem 0;
        }

        .hotel-featured-items .hotel-add-btn {
            width: 100%;
            padding: 0.7rem;
            background: white;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: auto;
        }

        .hotel-featured-items .hotel-add-btn:hover {
            background: #f8f9fa;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .hotel-featured-items .hotel-quantity-selector {
            display: flex;
            align-items: center;
            background: #ab2431;
            border-radius: 8px;
            padding: 0.5rem;
            gap: 0.8rem;
            color: white;
            font-weight: 600;
            margin-top: auto;
        }

        .hotel-featured-items .hotel-quantity-selector .hotel-qty-btn {
            width: 28px;
            height: 28px;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .hotel-featured-items .hotel-quantity-selector .hotel-qty-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .hotel-featured-items .hotel-quantity-selector .hotel-qty-number {
            color: white;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        .hotel-menu-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .hotel-menu-items .hotel-food-card {
            display: flex;
            align-items: stretch;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s;
            background: white;
            position: relative;
            min-height: 200px;
            padding: 1rem 0;
        }

        .hotel-menu-items .hotel-food-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .hotel-menu-items .hotel-food-card-content {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hotel-menu-items .hotel-food-card-image {
            width: 160px;
            height: 160px;
            position: relative;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            /*background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');*/
            border-radius: 12px;
            margin: 0.5rem 1rem;
        }

        .hotel-menu-items .hotel-food-card-image .hotel-add-btn {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.2rem 1.2rem;
            background: white;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 2;
            white-space: nowrap;
            min-width: fit-content;
        }

        .hotel-menu-items .hotel-food-card-image .hotel-add-btn:hover {
            background: #f8f9fa;
            transform: translateX(-50%) translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .hotel-menu-items .hotel-food-card-image .hotel-quantity-selector {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 8px;
            padding: 0.1rem;
            gap: 0.1rem;
            color: white;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 2;
        }

        .hotel-menu-items .hotel-food-card-image .hotel-quantity-selector .hotel-qty-btn {
            width: 28px;
            height: 28px;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: #000;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .hotel-menu-items .hotel-food-card-image .hotel-quantity-selector .hotel-qty-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .hotel-menu-items .hotel-food-card-image .hotel-quantity-selector .hotel-qty-number {
            color: #000;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        .hotel-menu-items .hotel-food-type-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .hotel-menu-items .hotel-food-title {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.3;
        }

        .hotel-menu-items .hotel-food-price {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin: 0.3rem 0;
        }

        .hotel-menu-items .hotel-food-desc {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .hotel-food-image {
            width: 100%;
            height: 200px;
            position: relative;
            background-size: cover;
            background-position: center;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-kushka {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-chicken65 {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-schezwan {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-boneless {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-kaadai {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-prawn {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-mutton {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-veg {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-food-image.hotel-mushroom {
            background-image: url('https://cdn.uengage.io/uploads/7057/image-3485-1688036323.jpeg');
        }

        .hotel-price-badge {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: white;
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        


        .hotel-food-info {
            padding: 1rem;
        }

        .hotel-food-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .hotel-food-price {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .hotel-food-desc {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .hotel-add-btn {
            padding: 0.7rem 1.5rem;
            background: white;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            min-width: fit-content;
        }

        .hotel-add-btn:hover {
            background: #f8f9fa;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .hotel-add-btn:active {
            transform: translateY(0);
        }

        /* Special styling for quantity controls in featured items */
        .hotel-featured-items .hotel-add-btn {
            width: 100%;
            white-space: nowrap;
            min-width: fit-content;
        }

        .hotel-menu-items .hotel-add-btn {
            width: auto;
            align-self: flex-start;
            white-space: nowrap;
            min-width: fit-content;
        }

        /* Quantity selector for items already in cart */
        .hotel-quantity-selector {
            display: flex;
            align-items: center;
            background: #ab2431;
            border-radius: 8px;
            padding: 0.5rem;
            gap: 0.8rem;
            color: white;
            font-weight: 600;
        }

        .hotel-quantity-selector .hotel-qty-btn {
            width: 28px;
            height: 28px;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .hotel-quantity-selector .hotel-qty-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .hotel-quantity-selector .hotel-qty-number {
            color: white;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        /* Cart Sidebar */
        .hotel-cart {
            background: white;
            border-left: 1px solid #eee;
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 80px;
            height: calc(100vh - 80px);
            overflow-y: auto;
        }

        .hotel-cart-header {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            background: white;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .hotel-cart-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .hotel-delivery-options {
            display: flex;
            gap: 0;
            border-radius: 8px;
            overflow: hidden;
            border: 0px solid #ddd;
        }

        .hotel-delivery-btn {
            flex: 1;
            padding: 0.4rem 0.4rem;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            background: white;
            color: #666;
        }

        .hotel-delivery-btn.hotel-active {
            background: #333;
            color: white;
        }

        .hotel-delivery-btn:not(.hotel-active):hover {
            background: #f5f5f5;
        }

        .hotel-cart-items {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
        }
        
        
        

        .hotel-cart-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            padding: 1.2rem 0;
            border-bottom: 1px dashed #ddd;
        }

        .hotel-cart-item:last-child {
            border-bottom: none;
        }

        .hotel-veg-non-veg-indicator {
            width: 12px;
            height: 12px;
            border-radius: 2px;
            border: 2px solid;
            flex-shrink: 0;
            margin-top: 0.2rem;
            position: relative;
        }

        .hotel-veg-indicator-cart {
            border-color: #4caf50;
        }

        .hotel-veg-indicator-cart::after {
            content: '';
            width: 6px;
            height: 6px;
            background: #4caf50;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hotel-non-veg-indicator-cart {
            border-color: #f44336;
        }

        .hotel-non-veg-indicator-cart::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 3px solid transparent;
            border-right: 3px solid transparent;
            border-bottom: 5px solid #f44336;
            position: absolute;
            top: 1px;
            left: 50%;
            transform: translateX(-50%);
        }

        .hotel-item-details {
            flex: 1;
        }

        .hotel-item-details h4 {
            color: #333;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
            line-height: 1.2;
        }

        .hotel-item-price {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .hotel-cart-quantity-controls {
            display: flex;
            align-items: center;
            border: 1px solid #ab2431;
            border-radius: 20px;
            overflow: hidden;
            background: white;
        }

        .hotel-cart-qty-btn {
            width: 25px;
            height: 25px;
            border: none;
            background: white;
            color: #ab2431;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.2s;
        }

        .hotel-cart-qty-btn:hover {
            background: #f8f0f4;
        }

        .hotel-cart-qty-number {
            padding: 0 1rem;
            font-weight: 600;
            color: #ab2431;
            min-width: 30px;
            text-align: center;
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .hotel-cart-summary {
            padding: 1.5rem;
            border-top: 1px solid #eee;
            background: white;
            position: sticky;
            bottom: 0;
        }

        .hotel-subtotal-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .hotel-subtotal-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ab2431;
        }

        .hotel-subtotal-amount {
            font-size: 1.2rem;
            font-weight: bold;
            color: #ab2431;
        }

        .hotel-tax-note {
            font-size: 0.8rem;
            color: #999;
            margin-bottom: 1.5rem;
        }

        .hotel-checkout-btn {
            width: 100%;
            padding: 1rem;
            background: #ab2431;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            text-transform: uppercase;
        }

        .hotel-checkout-btn:hover {
            background: #7a1c4d;
        }

        /* Mobile Bottom Navigation */
        .hotel-mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .hotel-bottom-nav-items {
            display: flex;
            justify-content: space-around;
            padding: 0.8rem 0;
        }

        .hotel-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            color: #666;
            text-decoration: none;
            font-size: 0.75rem;
            position: relative;
            flex: 1;
            text-align: center;
        }

        .hotel-nav-item.hotel-active {
            color: #ab2431;
        }

        .hotel-nav-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .hotel-cart-badge {
            position: absolute;
            top: -2px;
            right: 25%;
            background: #ab2431;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
        }

        /* Mobile Cart Bottom Sheet */
        .hotel-mobile-cart-sheet {
            display: none;
            position: fixed;
            bottom: 60px;
            left: 1rem;
            right: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
            z-index: 999;
            padding: 1rem;
        }

        .hotel-cart-summary-mobile {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .hotel-cart-total {
            font-weight: bold;
            color: #333;
        }

        .hotel-view-cart-btn {
            background: #ab2431;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hotel-main-container {
                grid-template-columns: 200px 1fr 280px;
            }

            .hotel-search-box {
                width: 250px;
            }
        }

        /* Tablet View - 2x2 Grid */
        @media (max-width: 1024px) {
            .hotel-main-container {
                grid-template-columns: 180px 1fr 250px;
            }

            .hotel-featured-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .hotel-menu-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .hotel-menu-items .hotel-food-card-image {
                width: 140px;
                height: 140px;
                border-radius: 8px;
            }
        }

        /* Mobile View - 2x2 Grid with Responsive Sizing */
        @media (max-width: 1156px) {
            .hotel-nav-menu {
                display: none;
            }

            .hotel-mobile-menu-btn {
                display: block;
            }

            .hotel-main-container {
                grid-template-columns: 1fr;
                margin: 0;
                min-height: calc(100vh - 140px);
            }

            .hotel-categories {
                display: none;
            }

            .hotel-cart {
                display: none;
            }

            .hotel-mobile-bottom-nav {
                display: block;
            }

            .hotel-mobile-cart-sheet {
                display: block;
            }

            .hotel-restaurant-header {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .hotel-search-filters {
                align-items: stretch;
                width: 100%;
            }

            .hotel-search-box {
                width: 100%;
            }

            .hotel-filter-buttons {
                justify-content: center;
            }

            .hotel-menu-content {
                padding: 1rem;
                padding-bottom: 5rem;
            }

            .hotel-featured-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .hotel-menu-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            /* Responsive Featured Items */
            .hotel-featured-items .hotel-food-card {
                min-height: auto;
            }

            .hotel-featured-items .hotel-food-card-image {
                height: 120px;
                border-radius: 8px 8px 0 0;
            }

            .hotel-featured-items .hotel-food-card-content {
                padding: 0.8rem;
            }

            .hotel-featured-items .hotel-food-title {
                font-size: 0.8rem;
                line-height: 1.2;
            }

            .hotel-featured-items .hotel-food-price {
                font-size: 0.9rem;
            }

            .hotel-featured-items .hotel-add-btn {
                padding: 0.5rem;
                font-size: 0.75rem;
            }

            /* Responsive Menu Items */
            .hotel-menu-items .hotel-food-card {
                min-height: 160px;
                padding: 0.5rem 0;
            }

            .hotel-menu-items .hotel-food-card-content {
                padding: 1rem 0.8rem;
            }

            .hotel-menu-items .hotel-food-card-image {
                width: 120px;
                height: 120px;
                border-radius: 8px;
                margin: 0.5rem 0.8rem;
            }

            .hotel-menu-items .hotel-food-card-image .hotel-add-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
                bottom: -8px;
            }

            .hotel-menu-items .hotel-food-card-image .hotel-quantity-selector {
                padding: 0.3rem;
                gap: 0.5rem;
                bottom: -8px;
            }

            .hotel-menu-items .hotel-food-card-image .hotel-quantity-selector .hotel-qty-btn {
                width: 24px;
                height: 24px;
                font-size: 0.9rem;
            }

            .hotel-menu-items .hotel-food-title {
                font-size: 0.85rem;
                line-height: 1.2;
            }

            .hotel-menu-items .hotel-food-price {
                font-size: 0.95rem;
            }

            .hotel-menu-items .hotel-food-desc {
                font-size: 0.75rem;
                line-height: 1.3;
                margin-bottom: 0.5rem;
            }

            
        }

        /* Very Small Mobile Devices */
        @media (max-width: 480px) {
            .hotel-featured-items {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .hotel-featured-items .hotel-food-card-content {
                padding: 0.8rem;
            }

            .hotel-featured-items .hotel-food-title {
                font-size: 0.85rem;
                line-height: 1.2;
            }

            .hotel-menu-items {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .hotel-menu-items .hotel-food-card-image {
                width: 120px;
                height: 120px;
                border-radius: 6px;
            }

            .hotel-menu-items .hotel-food-card-content {
                padding: 1rem;
            }
        }