        :root {
            --primary-color: #FF4757;
            /* Energetic Fire */
            --secondary-color: #2D3436;
            /* Deep Charcoal */
            --bg-color: #F8F9FA;
            /* Ivory Canvas */
            --accent-color: #1E272E;
            --light-gray: #E1E2E6;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.1);
            --radius-sm: 2px;
            --radius-md: 4px;
            --font-ui: 'Outfit', sans-serif;
            --font-display: 'Playfair Display', serif;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body {
            font-family: var(--font-ui);
            background-color: var(--bg-color);
            color: var(--secondary-color);
            overflow-x: hidden;
            letter-spacing: -0.01em;
        }

        h1,
        h2,
        h3,
        h4,
        .display-font {
            font-family: var(--font-display);
            font-weight: 700;
        }

        /* --- Global UI Components --- */
        .btn {
            border-radius: var(--radius-sm);
            padding: clamp(10px, 2vh, 14px) clamp(20px, 4vw, 32px);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: clamp(0.75rem, 1.8vh, 0.9rem);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .btn-outline-dark {
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .btn-outline-dark:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        .card {
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            background: white;
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .form-control {
            border-radius: var(--radius-sm);
            padding: 14px;
            border: 1px solid var(--light-gray);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
            background-color: white;
        }

        .password-toggle-btn {
            background: transparent;
            border: none;
            color: #6c757d;
            padding: 0 15px;
            z-index: 10;
            transition: color 0.2s;
        }

        .password-toggle-btn:hover {
            color: var(--primary-color);
        }

        .password-input-group .form-control {
            border-right: none;
        }

        .password-input-group .password-toggle-btn {
            border: 1px solid var(--light-gray);
            border-left: none;
            border-top-right-radius: var(--radius-sm);
            border-bottom-right-radius: var(--radius-sm);
            background: white;
        }

        /* --- Password Strength Meter --- */
        .password-strength-meter {
            height: 4px;
            background: #eee;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .strength-bar {
            height: 100%;
            width: 0%;
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        .animate-spin {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* --- Admin Panel --- */
        .nav-pills {
            background: #EDF0F2;
            padding: 4px;
            border-radius: var(--radius-sm);
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .nav-pills::-webkit-scrollbar {
            display: none;
        }

        .nav-pills .nav-link {
            flex: 0 0 auto;
            white-space: nowrap;
            color: var(--secondary-color);
            border-radius: var(--radius-sm);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            padding: 10px 20px;
            transition: var(--transition);
        }

        .nav-pills .nav-link.active {
            background-color: var(--primary-color);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .product-img-preview {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            border: 1px solid var(--light-gray);
        }

        /* --- Discover Page (Browse) --- */
        .venue-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            height: 100%;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .venue-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
        }

        .venue-card-cover-wrapper {
            position: relative;
            height: 200px;
            width: 100%;
            overflow: visible;
        }

        .venue-card-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 24px 24px 0 0;
            clip-path: inset(0 round 24px 24px 0 0);
        }

        .venue-card-logo-overlay {
            position: absolute;
            left: 20px;
            bottom: -42px;
            /* Perfect 50/50 bridge for 85px height */
            width: 85px;
            height: 85px;
            background: white;
            border-radius: 50%;
            /* Circular for premium look */
            padding: 8px;
            /* Internal padding for logo breathing room */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 10;
            /* Bring to frontmost layer */
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid white;
            /* Hard border to separate from cover image */
        }

        .venue-card-logo-overlay img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .rating-badge-overlay {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #FFD24F;
            color: #1e272e;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 5;
        }

        .venue-card-body {
            padding: 55px 18px 22px 18px;
            /* Match screenshot spacing */
            text-align: left;
            display: flex;
            flex-direction: column;
            height: calc(100% - 200px);
            /* Cover height is 200px */
        }

        .venue-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.3;
            color: #1e272e;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .venue-card-location {
            font-size: 0.85rem;
            color: #636e72;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 20px;
        }

        .venue-card-actions {
            display: flex;
            gap: 12px;
            margin-top: auto;
            border-top: 1px solid #f1f1f1;
            padding-top: 18px;
        }

        .btn-card {
            border-radius: 50px !important;
            padding: 10px 16px !important;
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-card-white {
            background: white !important;
            color: #1e272e !important;
            border: 1px solid #e0e0e0 !important;
        }

        .btn-card-red {
            background: var(--primary-color) !important;
            color: white !important;
            border: none !important;
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.25);
        }

        .bg-gradient-dark {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        }

        #offcanvasBrowse .btn-close {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 50%;
            opacity: 0.8;
            transition: all 0.2s;
        }

        #offcanvasBrowse .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }

        #menu-container {
            perspective: 2000px;
            width: 100%;
            flex: 1;
            /* Take all remaining height */
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            /* overflow: visible; allow 3d elements to stick out slightly if needed */
            contain: layout paint;
            /* Isolate 3D context to stop page flickering */
            /* CRITICAL: Force GPU layer to prevent transform conflicts */
            transform: translateZ(0);
            backface-visibility: hidden;
            /* Reduce flash visibility with subtle background */
            background: #f8f9fa;
            touch-action: pan-y;
        }

        .book-page {
            width: 90%;
            max-width: 440px;
            height: clamp(500px, 94%, 800px);
            /* Fit within the flex container */
            position: absolute;
            top: 2%;
            /* minimal gap from search */
            /* Removed negative margins and top:50% */
            transform-style: preserve-3d;
            transform-origin: left center;
            --rotateY: 0deg;
            --translateZ: 0px;
            transform: rotateY(var(--rotateY)) translateZ(var(--translateZ));
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
            background: white;
            border-radius: 6px;
            box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05),
                10px 20px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            backface-visibility: hidden;
            z-index: 1;
            contain: layout style paint;
            will-change: auto;
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            pointer-events: none;
        }

        .book-page.active {
            pointer-events: auto;
        }

        .book-page.is-promoted {
            will-change: transform, opacity;
        }

        .book-page.flipped {
            --rotateY: -180deg;
            z-index: 1 !important;
        }

        .book-page.active {
            z-index: 50 !important;
            --rotateY: 0deg;
        }

        /* Lifting effect during transition */
        .book-page.flipping {
            z-index: 100 !important;
            --translateZ: 50px;
            box-shadow: 30px 50px 80px rgba(0, 0, 0, 0.3);
        }

        /* Show pages beneath the active one for stacking feel */
        .book-page {
            visibility: visible;
            /* Always visible but stack managed */
        }

        #view-menu[data-render-mode="mobile-2_5d"] #menu-container,
        #view-menu[data-render-mode="mobile-flat"] #menu-container {
            perspective: none;
            transform: none;
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page,
        #view-menu[data-render-mode="mobile-flat"] .book-page {
            width: calc(100% - 20px);
            max-width: 420px;
            top: 50%;
            left: 50%;
            border-radius: 18px;
            transform-style: flat;
            transform-origin: center center;
            --rotateY: 0deg;
            --translateZ: 0px;
            transition:
                transform 340ms cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 340ms ease,
                box-shadow 340ms ease;
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page {
            box-shadow: none;
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page.active {
            transform: translate3d(-50%, -50%, 0) scale(1) rotate(0deg);
            opacity: 1;
            z-index: 40 !important;
            box-shadow:
                0 18px 42px rgba(17, 21, 24, 0.14),
                0 1px 4px rgba(17, 21, 24, 0.06);
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page.page-before {
            transform: translate3d(-53.5%, -49.4%, 0) scale(0.985) rotate(-1deg);
            opacity: 0.16;
            z-index: 20 !important;
            box-shadow: none !important;
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page.page-after {
            transform: translate3d(-46.5%, -49.4%, 0) scale(0.985) rotate(1deg);
            opacity: 0.2;
            z-index: 10 !important;
            box-shadow: none !important;
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page.turn-entering-next,
        #view-menu[data-render-mode="mobile-2_5d"] .book-page.turn-entering-prev {
            transform: translate3d(-50%, -50%, 0) scale(1) rotate(0deg) !important;
            opacity: 1 !important;
            z-index: 50 !important;
            box-shadow:
                0 28px 58px rgba(17, 21, 24, 0.18),
                0 6px 18px rgba(17, 21, 24, 0.08);
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page.turn-leaving-next {
            transform: translate3d(-69%, -48%, 0) scale(0.9) rotate(-8deg) !important;
            opacity: 0 !important;
            z-index: 12 !important;
        }

        #view-menu[data-render-mode="mobile-2_5d"] .book-page.turn-leaving-prev {
            transform: translate3d(-31%, -48%, 0) scale(0.9) rotate(8deg) !important;
            opacity: 0 !important;
            z-index: 12 !important;
        }

        #view-menu[data-render-mode="mobile-flat"] .book-page {
            box-shadow:
                0 16px 34px rgba(17, 21, 24, 0.08),
                0 2px 8px rgba(17, 21, 24, 0.05);
        }

        #view-menu[data-render-mode="mobile-flat"] .book-page.active {
            transform: translate3d(-50%, -50%, 0) scale(1);
            opacity: 1;
            z-index: 30 !important;
        }

        /* Page Content */
        .page-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.02) 0%, transparent 5%, transparent 95%, rgba(0, 0, 0, 0.02) 100%);
            overflow-y: auto;
            scrollbar-width: thin;
            touch-action: pan-y;
        }

        .page-content::-webkit-scrollbar {
            width: 4px;
        }

        .page-content::-webkit-scrollbar-thumb {
            background: var(--light-gray);
            border-radius: 4px;
        }

        .menu-item-img {
            width: 100%;
            height: 40vh;
            object-fit: cover;
            object-position: center;
            filter: grayscale(10%) contrast(105%);
            background: #eee;
        }

        /* Premium Menu Item Cards */
        .menu-item-card {
            background: white;
            border-radius: 12px;
            border: 1px solid #f1f1f1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            margin-bottom: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            content-visibility: auto;
            contain-intrinsic-size: auto 132px;
        }

        .menu-item-card-top {
            display: flex;
            padding: 12px;
            gap: 12px;
            align-items: center;
            position: relative;
            cursor: pointer;
        }

        .menu-item-card-top img {
            width: clamp(58px, 13vw, 74px);
            height: clamp(58px, 13vw, 74px);
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 10px;
            cursor: zoom-in;
            background: #eee;
            transition: transform 0.2s, opacity 0.24s ease;
        }

        .menu-item-thumb {
            opacity: 0;
        }

        .menu-item-thumb.is-loaded {
            opacity: 1;
        }

        .menu-item-image-placeholder {
            width: clamp(58px, 13vw, 74px);
            height: clamp(58px, 13vw, 74px);
            aspect-ratio: 1/1;
            border-radius: 10px;
            background: linear-gradient(135deg, #f2f3f5 0%, #e7e9ed 100%);
            color: #8a8f98;
            display: inline-flex;
            flex: 0 0 auto;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .menu-item-image-placeholder i {
            font-size: 1.2rem;
            line-height: 1;
            opacity: 0.72;
        }

        .menu-item-card-top.no-product-image {
            cursor: pointer;
        }

        .menu-item-card-top.has-product-image::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 50%;
            width: clamp(58px, 13vw, 74px);
            height: clamp(58px, 13vw, 74px);
            border-radius: 10px;
            transform: translateY(-50%);
            background: linear-gradient(120deg, rgba(243, 244, 246, 0.95) 0%, rgba(231, 234, 238, 0.98) 45%, rgba(243, 244, 246, 0.95) 100%);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        .menu-item-card-top.has-product-image.is-image-loading::before {
            opacity: 1;
            animation: menu-card-shimmer 1.2s linear infinite;
            background-size: 200% 100%;
        }

        .menu-item-card-top.has-product-image.is-image-ready::before {
            opacity: 0;
            animation: none;
        }

        @keyframes menu-card-shimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .venue-logo-circle {
            width: clamp(80px, 20vh, 140px);
            height: clamp(80px, 20vh, 140px);
            background: white;
            border-radius: 50%;
            border: 4px solid white;
            object-fit: contain;
            padding: 5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .venue-logo-sm {
            width: clamp(60px, 12vh, 85px);
            height: clamp(60px, 12vh, 85px);
            background: white;
            border-radius: 50%;
            object-fit: contain;
            padding: 3px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        @media (hover: hover) and (pointer: fine) {
            .menu-item-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            }

            .menu-item-card-top img:hover {
                transform: scale(1.05);
            }
        }

        /* Menu Image Lightbox */
        #menu-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            z-index: 100000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        #menu-lightbox.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        #menu-lightbox .lightbox-panel {
            background: #111;
            border-radius: 10px;
            max-width: 92vw;
            max-height: 82vh;
            width: min(900px, 92vw);
            padding: 16px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
            color: #fff;
        }

        #menu-lightbox .lightbox-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 12px;
        }

        #menu-lightbox .lightbox-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin: 0;
        }

        #menu-lightbox .lightbox-close {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.4rem;
            line-height: 1;
            padding: 4px;
            cursor: pointer;
        }

        #menu-lightbox .lightbox-body {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 260px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            overflow: hidden;
        }

        #menu-lightbox img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        #menu-lightbox img.is-visible {
            opacity: 1;
        }

        .menu-item-card-details {
            flex-grow: 1;
            min-width: 0;
        }

        /* Responsive Menu Cover Typography */
        .book-page h1.display-5 {
            font-size: clamp(1.8rem, 5vh, 2.5rem);
            line-height: 1.2;
        }

        .book-page p.lead {
            font-size: clamp(0.9rem, 2.5vh, 1.25rem);
        }

        .btn-responsive {
            padding: clamp(8px, 1.5vh, 12px) clamp(16px, 3vw, 24px);
            font-size: clamp(0.75rem, 1.8vh, 1rem);
            line-height: normal;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .menu-item-card-details h5 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 3px;
            color: var(--secondary-color);
        }

        .menu-item-card-details p {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }

        .menu-item-detail-cue {
            display: inline-flex;
            align-items: center;
            margin-top: 5px;
            color: var(--primary-color);
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .product-detail-sheet {
            height: min(82vh, 720px) !important;
            border-radius: 28px 28px 0 0;
            overflow: hidden;
        }

        .product-detail-sheet .offcanvas-body {
            padding: 0;
            overflow-y: auto;
            background: #fffaf7;
        }

        .product-detail-card {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: clamp(18px, 4vw, 34px);
            padding: clamp(18px, 4vw, 34px);
        }

        .product-detail-media {
            width: 100%;
            min-height: 260px;
            border: 0;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(135deg, #f2f3f5 0%, #e7e9ed 100%);
            color: #8a8f98;
        }

        .product-detail-media-button {
            display: block;
            padding: 0;
            cursor: zoom-in;
        }

        .product-detail-media img {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: cover;
            display: block;
        }

        .product-detail-media-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .product-detail-media-empty i {
            font-size: 2.4rem;
            opacity: 0.68;
        }

        .product-detail-content {
            display: flex;
            min-width: 0;
            flex-direction: column;
            justify-content: center;
        }

        .product-detail-category {
            color: var(--primary-color);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .product-detail-content h2 {
            margin: 0 0 12px;
            color: var(--secondary-color);
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 6vw, 3rem);
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .product-detail-price {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 24px;
            color: var(--secondary-color);
        }

        .product-detail-price span {
            color: #888;
            font-size: 0.74rem;
            font-weight: 900;
            letter-spacing: 0.1em;
        }

        .product-detail-price strong {
            font-size: clamp(1.7rem, 6vw, 2.4rem);
            line-height: 1;
        }

        .product-detail-meta {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin: 0 0 22px;
        }

        .product-detail-meta div {
            padding: 12px 14px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.68);
        }

        .product-detail-meta dt {
            margin: 0 0 4px;
            color: #8b9097;
            font-size: 0.66rem;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .product-detail-meta dd {
            margin: 0;
            color: var(--secondary-color);
            font-weight: 900;
            line-height: 1.25;
        }

        .product-detail-meta div:nth-child(n+2) {
            display: none;
        }

        .product-detail-description {
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .product-detail-description h3 {
            margin: 0 0 10px;
            color: #6f747b;
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .product-detail-description p {
            margin: 0;
            color: #4f565e;
            font-size: 1rem;
            line-height: 1.7;
            white-space: pre-wrap;
        }

        .product-detail-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .product-detail-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 0 18px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: #fff;
            color: var(--secondary-color);
            font-weight: 900;
        }

        .product-detail-cart {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: #fff;
        }

        @media (max-width: 767px) {
            .product-detail-sheet {
                height: 86vh !important;
                border-radius: 24px 24px 0 0;
            }

            .product-detail-card {
                display: block;
                padding: 16px;
            }

            .product-detail-media,
            .product-detail-media img {
                min-height: 210px;
                max-height: 260px;
            }

            .product-detail-content {
                padding: 18px 2px 10px;
            }

            .product-detail-actions {
                position: sticky;
                bottom: 0;
                margin-inline: -16px;
                margin-bottom: -16px;
                padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
                background: linear-gradient(180deg, rgba(255, 250, 247, 0.88), #fffaf7 42%);
            }

            .product-detail-action {
                flex: 1 1 145px;
            }
        }

        /* Redesigned landing page */
        #view-landing {
            --lp-ink: #202426;
            --lp-muted: #697177;
            --lp-paper: #fff8f0;
            --lp-soft: #fff1e4;
            --lp-card: rgba(255, 255, 255, 0.86);
            --lp-red: #ff4657;
            --lp-red-dark: #e83c4c;
            --lp-line: rgba(32, 36, 38, 0.1);
            --lp-shadow: 0 24px 60px rgba(68, 47, 32, 0.12);
            background:
                radial-gradient(circle at 10% 0%, rgba(255, 188, 129, 0.2), transparent 34rem),
                linear-gradient(180deg, #fff9f2 0%, #fffdf9 48%, #fff8ef 100%);
            color: var(--lp-ink);
        }

        #view-landing .lp-landing {
            width: 100%;
            min-height: 100vh;
            padding: 0;
            overflow: hidden;
            background: transparent;
        }

        #view-landing .lp-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: sticky;
            top: 0;
            z-index: 30;
            max-width: none;
            width: 100%;
            padding: 14px clamp(18px, 5vw, 64px);
            border-bottom: 1px solid rgba(32, 36, 38, 0.06);
            background: rgba(255, 252, 248, 0.9);
            backdrop-filter: blur(18px);
            box-shadow: 0 10px 30px rgba(68, 47, 32, 0.04);
        }

        #view-landing .landing-brand {
            display: inline-flex;
            align-items: center;
            flex: 0 0 auto;
            color: inherit;
            text-decoration: none;
        }

        #view-landing .landing-logo {
            width: clamp(108px, 12vw, 146px);
            height: auto;
        }

        #view-landing .landing-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1 1 auto;
            gap: clamp(18px, 4vw, 58px);
        }

        #view-landing .landing-nav a {
            position: relative;
            color: var(--lp-ink);
            font-size: 0.86rem;
            font-weight: 900;
            text-decoration: none;
            transition: color 180ms ease;
        }

        #view-landing .landing-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -7px;
            height: 2px;
            border-radius: 999px;
            background: var(--lp-red);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 220ms ease;
        }

        #view-landing .landing-nav a:hover,
        #view-landing .landing-nav a:focus-visible {
            color: var(--lp-red);
        }

        #view-landing .landing-nav a:hover::after,
        #view-landing .landing-nav a:focus-visible::after {
            transform: scaleX(1);
        }

        #view-landing .landing-topbar-actions,
        #view-landing .landing-hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        #view-landing .landing-topbar-actions {
            justify-content: flex-end;
            gap: 12px;
            flex: 0 0 auto;
        }

        #view-landing .landing-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 24px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 900;
            box-shadow: none;
            transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
        }

        #view-landing .landing-btn-primary {
            border: 1px solid var(--lp-red);
            background: var(--lp-red);
            color: #fff;
            box-shadow: 0 18px 34px rgba(255, 70, 87, 0.22);
        }

        #view-landing .landing-btn-primary:hover,
        #view-landing .landing-btn-primary:focus-visible {
            background: var(--lp-red-dark);
            border-color: var(--lp-red-dark);
            color: #fff;
        }

        #view-landing .landing-btn-secondary,
        #view-landing .landing-btn-ghost {
            border: 1px solid rgba(255, 70, 87, 0.34);
            background: rgba(255, 255, 255, 0.75);
            color: var(--lp-ink);
        }

        #view-landing .lp-hero,
        #view-landing .lp-section,
        #view-landing .lp-footer,
        #view-landing .lp-copyright {
            width: min(100% - 36px, 1240px);
            margin-inline: auto;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
        }

        #view-landing .lp-hero {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
            gap: clamp(24px, 4vw, 56px);
            align-items: center;
            min-height: auto;
            padding: clamp(22px, 4.5vw, 58px) 0 clamp(28px, 4vw, 44px);
        }

        #view-landing .lp-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 13px;
            border-radius: 999px;
            background: rgba(255, 70, 87, 0.09);
            color: var(--lp-red);
            font-size: 0.7rem;
            font-weight: 950;
            letter-spacing: 0.16em;
        }

        #view-landing .lp-kicker::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: currentColor;
        }

        #view-landing .lp-title {
            max-width: 600px;
            margin: 14px 0 14px;
            color: var(--lp-ink);
            font-family: var(--font-display);
            font-size: clamp(2.9rem, 6.4vw, 6.2rem);
            line-height: 0.91;
            letter-spacing: -0.068em;
        }

        #view-landing .lp-title span {
            color: var(--lp-red);
        }

        #view-landing .lp-copy {
            max-width: 540px;
            color: var(--lp-muted);
            font-size: clamp(0.96rem, 1.45vw, 1.08rem);
            line-height: 1.55;
        }

        #view-landing .landing-hero-actions {
            gap: 16px;
            margin-top: 20px;
        }

        #view-landing .landing-section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: var(--lp-red);
            font-size: 0.7rem;
            font-weight: 950;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        #view-landing .landing-section-kicker::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: currentColor;
        }

        #view-landing .lp-trust-row {
            display: flex;
            gap: 16px;
            align-items: center;
            margin-top: 22px;
            color: var(--lp-muted);
        }

        #view-landing .lp-avatar-stack {
            display: flex;
        }

        #view-landing .lp-avatar-stack span {
            width: 34px;
            height: 34px;
            margin-left: -8px;
            border: 3px solid #fff;
            border-radius: 999px;
            background: linear-gradient(135deg, #ffd4af, #8f5b3e);
        }

        #view-landing .lp-avatar-stack span:first-child {
            margin-left: 0;
        }

        #view-landing .lp-avatar-stack span:nth-child(2) {
            background: linear-gradient(135deg, #ff7b86, #49332a);
        }

        #view-landing .lp-avatar-stack span:nth-child(3) {
            background: linear-gradient(135deg, #ffe6a7, #bd7c30);
        }

        #view-landing .lp-avatar-stack span:nth-child(4) {
            background: linear-gradient(135deg, #e9f4ef, #365a4a);
        }

        #view-landing .lp-stars {
            color: #f9b415;
            letter-spacing: 0.12em;
            font-size: 0.88rem;
        }

        #view-landing .lp-trust-row p {
            margin: 2px 0 0;
            font-size: 0.84rem;
            font-weight: 700;
        }

        #view-landing .lp-hero-media {
            position: relative;
            min-height: clamp(340px, 42vw, 520px);
            overflow: hidden;
            border-radius: 36px 0 0 36px;
            box-shadow: var(--lp-shadow);
            background: #2f2c25;
            transform: translateZ(0);
        }

        #view-landing .lp-hero-media img,
        #view-landing .lp-photo-card img,
        #view-landing .lp-cta img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
        }

        #view-landing .lp-floating-order,
        #view-landing .lp-floating-qr {
            position: absolute;
            right: clamp(14px, 4vw, 34px);
            display: grid;
            gap: 3px;
            border: 1px solid rgba(255, 255, 255, 0.65);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            transition: transform 240ms ease, box-shadow 240ms ease;
        }

        #view-landing .lp-floating-order {
            bottom: 34px;
            min-width: 180px;
            padding: 16px 18px;
        }

        #view-landing .lp-floating-order span,
        #view-landing .lp-floating-order small,
        #view-landing .lp-floating-qr span {
            color: var(--lp-muted);
            font-size: 0.72rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        #view-landing .lp-floating-order strong {
            color: var(--lp-ink);
            font-size: 1.35rem;
        }

        #view-landing .lp-floating-qr {
            top: 32px;
            grid-template-columns: auto 1fr;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
        }

        #view-landing .lp-floating-qr i {
            color: var(--lp-red);
            font-size: 1.6rem;
        }

        #view-landing .lp-section {
            padding: clamp(64px, 9vw, 108px) 0;
            border-top: 1px solid rgba(32, 36, 38, 0.06);
        }

        #view-landing .lp-section-heading {
            max-width: 860px;
            margin: 0 auto clamp(26px, 5vw, 44px);
            text-align: center;
        }

        #view-landing .lp-section-heading h2,
        #view-landing .lp-section-copy h2,
        #view-landing .lp-cta h2 {
            color: var(--lp-ink);
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 4.6rem);
            line-height: 0.98;
            letter-spacing: -0.055em;
        }

        #view-landing .lp-section-copy p,
        #view-landing .lp-feature-card p,
        #view-landing .lp-benefit-card p {
            color: var(--lp-muted);
            line-height: 1.55;
        }

        #view-landing .lp-about {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
            gap: clamp(28px, 6vw, 76px);
            align-items: center;
        }

        #view-landing .lp-about-points {
            display: grid;
            gap: 18px;
            margin-top: 30px;
        }

        #view-landing .lp-about-points div {
            display: grid;
            grid-template-columns: 52px 1fr;
            gap: 16px;
            align-items: center;
        }

        #view-landing .lp-about-points i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 18px;
            background: rgba(255, 70, 87, 0.1);
            color: var(--lp-red);
            font-size: 1.35rem;
        }

        #view-landing .lp-about-points span {
            color: #555d63;
            font-weight: 700;
            line-height: 1.45;
        }

        #view-landing .lp-about-collage {
            position: relative;
            min-height: 520px;
        }

        #view-landing .lp-photo-card {
            position: absolute;
            inset: 0 0 70px 0;
            overflow: hidden;
            margin: 0;
            border-radius: 28px;
            box-shadow: var(--lp-shadow);
        }

        #view-landing .lp-mini-dashboard {
            position: absolute;
            right: 28px;
            bottom: 0;
            width: min(360px, 78%);
            padding: 22px;
            border: 1px solid var(--lp-line);
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.93);
            box-shadow: 0 22px 48px rgba(68, 47, 32, 0.14);
            backdrop-filter: blur(14px);
        }

        #view-landing .lp-mini-dashboard>span {
            color: var(--lp-muted);
            font-size: 0.76rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        #view-landing .lp-mini-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 16px;
        }

        #view-landing .lp-mini-stats strong {
            padding: 12px;
            border-radius: 16px;
            background: #fff7ef;
            color: var(--lp-ink);
            font-size: 1.25rem;
        }

        #view-landing .lp-mini-stats small {
            display: block;
            color: var(--lp-muted);
            font-size: 0.64rem;
            font-weight: 800;
        }

        #view-landing .lp-chart-bars {
            display: flex;
            align-items: end;
            gap: 10px;
            height: 74px;
            margin-top: 18px;
        }

        #view-landing .lp-chart-bars i,
        #view-landing .lp-bars-ui i {
            display: block;
            flex: 1;
            border-radius: 999px 999px 0 0;
            background: linear-gradient(180deg, var(--lp-red), #ffd1b9);
        }

        #view-landing .lp-chart-bars i:nth-child(1) { height: 36%; }
        #view-landing .lp-chart-bars i:nth-child(2) { height: 72%; }
        #view-landing .lp-chart-bars i:nth-child(3) { height: 50%; }
        #view-landing .lp-chart-bars i:nth-child(4) { height: 88%; }

        #view-landing .lp-feature-grid,
        #view-landing .lp-benefit-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        #view-landing .lp-feature-grid {
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }

        #view-landing .lp-feature-card,
        #view-landing .lp-benefit-card,
        #view-landing .lp-how-panel {
            overflow: hidden;
            border: 1px solid var(--lp-line);
            border-radius: 22px;
            background: var(--lp-card);
            box-shadow: 0 12px 30px rgba(68, 47, 32, 0.07);
            transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
        }

        #view-landing .lp-feature-card h3,
        #view-landing .lp-benefit-card h3,
        #view-landing .lp-panel-title h3 {
            color: var(--lp-ink);
            font-weight: 950;
            letter-spacing: -0.03em;
        }

        #view-landing .lp-feature-card h3,
        #view-landing .lp-feature-card p,
        #view-landing .lp-benefit-card h3,
        #view-landing .lp-benefit-card p {
            padding-inline: 18px;
        }

        #view-landing .lp-feature-card h3,
        #view-landing .lp-benefit-card h3 {
            margin: 18px 0 8px;
            font-size: 1.08rem;
        }

        #view-landing .lp-feature-card p,
        #view-landing .lp-benefit-card p {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        #view-landing .lp-feature-media,
        #view-landing .lp-benefit-visual {
            position: relative;
            min-height: 156px;
            display: flex;
            align-items: end;
            padding: 16px;
            background: linear-gradient(135deg, #fff0e1, #ffd8c5);
            background-size: 100%;
            background-position: center;
            transition: background-size 420ms ease, filter 220ms ease;
        }

        #view-landing .lp-feature-photo-a,
        #view-landing .lp-feature-photo-b,
        #view-landing .lp-benefit-visual.img-a {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)), url("../img/landing/feature-qr-builder.jpg");
        }

        #view-landing .lp-feature-photo-b {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)), url("../img/landing/feature-venue-discovery.jpg");
        }

        #view-landing .lp-benefit-visual.img-a {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)), url("../img/landing/benefit-update-menu.jpg");
        }

        #view-landing .lp-feature-media i,
        #view-landing .lp-benefit-visual i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: var(--lp-red);
            color: #fff;
            font-size: 1.25rem;
            box-shadow: 0 14px 28px rgba(255, 70, 87, 0.25);
        }

        #view-landing .lp-feature-whatsapp {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)), url("../img/landing/feature-whatsapp-ordering.jpg");
        }

        #view-landing .lp-feature-paper {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)), url("../img/landing/feature-menu-import.jpg");
        }

        #view-landing .lp-feature-call {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)), url("../img/landing/feature-waiter-call.jpg");
        }

        #view-landing .lp-feature-feedback {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)), url("../img/landing/feature-guest-feedback.jpg");
        }

        #view-landing .lp-how-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        #view-landing .lp-how-panel {
            padding: clamp(18px, 3vw, 28px);
        }

        #view-landing .lp-panel-title {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 18px;
        }

        #view-landing .lp-panel-title i {
            color: var(--lp-red);
            font-size: 1.35rem;
        }

        #view-landing .lp-step {
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr) minmax(92px, 160px);
            gap: 14px;
            align-items: center;
            padding: 13px 0;
            border-top: 1px solid var(--lp-line);
        }

        #view-landing .lp-step b {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            background: var(--lp-red);
            color: #fff;
        }

        #view-landing .lp-step strong,
        #view-landing .lp-step span {
            display: block;
        }

        #view-landing .lp-step strong {
            color: var(--lp-ink);
            line-height: 1.15;
        }

        #view-landing .lp-step span {
            color: var(--lp-muted);
            font-size: 0.88rem;
            line-height: 1.35;
        }

        #view-landing .lp-step-img,
        #view-landing .lp-owner-ui,
        #view-landing .lp-upload-ui,
        #view-landing .lp-qr-ui,
        #view-landing .lp-bars-ui {
            min-height: 78px;
            border-radius: 16px;
            background: #fff6ec;
            box-shadow: inset 0 0 0 1px rgba(32, 36, 38, 0.06);
            overflow: hidden;
            transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
        }

        #view-landing .lp-step-img.img-a,
        #view-landing .lp-step-img.img-b {
            background-size: cover;
            background-position: center;
        }

        #view-landing .lp-step-img.img-a {
            background-image: url("../img/landing/how-guest-scan-qr.jpg");
        }

        #view-landing .lp-step-img.img-b {
            background-image: url("../img/landing/how-guest-browse-menu.jpg");
        }

        #view-landing .lp-step-img.icon-wa,
        #view-landing .lp-step-img.rating,
        #view-landing .lp-upload-ui,
        #view-landing .lp-qr-ui,
        #view-landing .lp-bars-ui {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #25d366;
            font-size: 1.8rem;
            font-style: normal;
            font-weight: 950;
        }

        #view-landing .lp-step-img.icon-wa {
            background-image: url("../img/landing/how-guest-order-call.jpg");
            background-size: cover;
            background-position: center;
        }

        #view-landing .lp-step-img.rating {
            background-image: url("../img/landing/how-guest-feedback.jpg");
            background-size: cover;
            background-position: center;
            color: transparent;
        }

        #view-landing .lp-step-img.icon-wa i {
            display: none;
        }

        #view-landing .lp-owner-ui {
            display: grid;
            gap: 9px;
            padding: 16px;
            background-image: url("../img/landing/how-owner-create-account.jpg");
            background-size: cover;
            background-position: center;
        }

        #view-landing .lp-owner-ui span {
            display: none;
            height: 12px;
            border-radius: 999px;
            background: #ece6dc;
        }

        #view-landing .lp-upload-ui {
            position: relative;
            background-image: url("../img/landing/how-owner-import-menu.jpg");
            background-size: cover;
            background-position: center;
            color: var(--lp-red);
            font-size: 0;
        }

        #view-landing .lp-upload-ui i {
            display: none;
        }

        #view-landing .lp-qr-ui {
            gap: 8px;
            background-image: url("../img/landing/how-owner-generate-qr.jpg");
            background-size: cover;
            background-position: center;
            color: var(--lp-ink);
            font-size: 0;
        }

        #view-landing .lp-qr-ui i {
            display: none;
        }

        #view-landing .lp-bars-ui {
            align-items: end;
            gap: 8px;
            padding: 18px;
            background-image: url("../img/landing/how-owner-track-dashboard.jpg");
            background-size: cover;
            background-position: center;
        }

        #view-landing .lp-bars-ui i {
            display: none;
        }

        #view-landing .lp-benefit-visual {
            min-height: 210px;
        }

        #view-landing .lp-benefit-visual.printer {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)), url("../img/landing/benefit-reduce-printing.jpg");
        }

        #view-landing .lp-benefit-visual.service {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3)), url("../img/landing/benefit-speed-service.jpg");
            background-size: cover;
            background-position: center;
        }

        #view-landing .lp-benefit-visual.insight {
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)), url("../img/landing/benefit-guest-insights.jpg");
        }

        #view-landing .lp-cta {
            position: relative;
            display: grid;
            place-items: center;
            min-height: 320px;
            margin-top: 28px;
            overflow: hidden;
            text-align: center;
            color: #fff;
            border-radius: 30px;
            box-shadow: 0 22px 54px rgba(68, 47, 32, 0.13);
        }

        #view-landing .lp-cta img {
            position: absolute;
            inset: 0;
            filter: brightness(0.58);
        }

        #view-landing .lp-cta::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 40%, transparent, rgba(0, 0, 0, 0.28));
        }

        #view-landing .lp-cta>div {
            position: relative;
            z-index: 1;
            padding: 36px;
        }

        #view-landing .lp-cta h2 {
            max-width: 720px;
            margin: 0 auto 22px;
            color: #fff;
        }

        #view-landing .lp-footer {
            display: grid;
            grid-template-columns: minmax(220px, 1.6fr) repeat(3, 1fr);
            gap: 34px;
            padding: 48px 0 34px;
            border-top: 1px solid var(--lp-line);
        }

        #view-landing .lp-footer p,
        #view-landing .lp-footer a,
        #view-landing .lp-footer button,
        #view-landing .lp-footer span {
            display: block;
            margin: 8px 0;
            border: 0;
            padding: 0;
            background: transparent;
            color: var(--lp-muted);
            font: inherit;
            font-size: 0.9rem;
            text-align: left;
            text-decoration: none;
        }

        #view-landing .lp-footer h3 {
            color: var(--lp-ink);
            font-size: 0.95rem;
            font-weight: 950;
        }

        #view-landing .lp-socials {
            display: flex;
            gap: 14px;
            color: var(--lp-ink);
        }

        #view-landing .lp-copyright {
            padding: 18px 0 34px;
            border-top: 1px solid var(--lp-line);
            color: var(--lp-muted);
            text-align: center;
            font-size: 0.84rem;
        }

        #view-landing.lp-animate-ready .lp-reveal {
            opacity: 0;
            transform: translate3d(0, 26px, 0);
            transition:
                opacity 620ms ease,
                transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: var(--lp-reveal-delay, 0ms);
        }

        #view-landing.lp-animate-ready .lp-reveal.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        @media (hover: hover) and (pointer: fine) {
            #view-landing .landing-brand:hover .landing-logo {
                transform: translateY(-1px);
            }

            #view-landing .landing-logo {
                transition: transform 180ms ease;
            }

            #view-landing .landing-btn:hover,
            #view-landing .landing-btn:focus-visible {
                transform: translateY(-2px);
            }

            #view-landing .landing-btn-primary:hover,
            #view-landing .landing-btn-primary:focus-visible {
                box-shadow: 0 22px 42px rgba(255, 70, 87, 0.28);
            }

            #view-landing .landing-btn-secondary:hover,
            #view-landing .landing-btn-secondary:focus-visible,
            #view-landing .landing-btn-ghost:hover,
            #view-landing .landing-btn-ghost:focus-visible {
                border-color: rgba(255, 70, 87, 0.6);
                background: #fff;
                box-shadow: 0 16px 30px rgba(68, 47, 32, 0.1);
            }

            #view-landing .lp-hero-media:hover img,
            #view-landing .lp-photo-card:hover img,
            #view-landing .lp-cta:hover img {
                transform: scale(1.035);
                filter: saturate(1.06);
            }

            #view-landing .lp-hero-media:hover .lp-floating-order {
                transform: translateY(-6px);
                box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
            }

            #view-landing .lp-hero-media:hover .lp-floating-qr {
                transform: translateY(4px);
            }

            #view-landing .lp-feature-card:hover,
            #view-landing .lp-benefit-card:hover,
            #view-landing .lp-how-panel:hover {
                transform: translateY(-7px);
                border-color: rgba(255, 70, 87, 0.22);
                box-shadow: 0 22px 46px rgba(68, 47, 32, 0.13);
            }

            #view-landing .lp-feature-card:hover .lp-feature-media,
            #view-landing .lp-benefit-card:hover .lp-benefit-visual {
                background-size: 106%;
                filter: saturate(1.06);
            }

            #view-landing .lp-feature-card:hover .lp-feature-media i,
            #view-landing .lp-benefit-card:hover .lp-benefit-visual i {
                transform: scale(1.06) rotate(-3deg);
            }

            #view-landing .lp-feature-media i,
            #view-landing .lp-benefit-visual i {
                transition: transform 180ms ease, box-shadow 180ms ease;
            }

            #view-landing .lp-step:hover .lp-step-img,
            #view-landing .lp-step:hover .lp-owner-ui,
            #view-landing .lp-step:hover .lp-upload-ui,
            #view-landing .lp-step:hover .lp-qr-ui,
            #view-landing .lp-step:hover .lp-bars-ui {
                transform: translateX(-4px) scale(1.02);
                box-shadow: inset 0 0 0 1px rgba(255, 70, 87, 0.18), 0 12px 22px rgba(68, 47, 32, 0.12);
                filter: saturate(1.06);
            }

            #view-landing .lp-footer a:hover,
            #view-landing .lp-footer button:hover,
            #view-landing .lp-footer a:focus-visible,
            #view-landing .lp-footer button:focus-visible {
                color: var(--lp-red);
                transform: translateX(3px);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            #view-landing *,
            #view-landing *::before,
            #view-landing *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.001ms !important;
            }

            #view-landing.lp-animate-ready .lp-reveal {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 1100px) {
            #view-landing .lp-hero,
            #view-landing .lp-about {
                grid-template-columns: 1fr;
            }

            #view-landing .lp-hero {
                min-height: auto;
            }

            #view-landing .lp-hero-media {
                border-radius: 32px;
            }

            #view-landing .lp-feature-grid,
            #view-landing .lp-benefit-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 820px) {
            #view-landing .lp-topbar {
                padding: 14px 16px;
            }

            #view-landing .landing-nav {
                display: none;
            }

            #view-landing .landing-topbar-actions {
                gap: 8px;
            }

            #view-landing .landing-topbar-actions .landing-btn {
                min-height: 40px;
                padding-inline: 13px;
                font-size: 0.76rem;
            }

            #view-landing .landing-topbar-actions .landing-btn-ghost {
                display: none;
            }

            #view-landing .lp-hero,
            #view-landing .lp-section,
            #view-landing .lp-footer,
            #view-landing .lp-copyright {
                width: min(100% - 28px, 1240px);
            }

            #view-landing .lp-hero {
                padding-top: 28px;
                gap: 20px;
            }

            #view-landing .lp-title {
                font-size: clamp(2.65rem, 13vw, 4.45rem);
            }

            #view-landing .landing-hero-actions {
                display: grid;
            }

            #view-landing .landing-hero-actions .landing-btn {
                width: 100%;
            }

            #view-landing .lp-hero-media {
                min-height: 330px;
                border-radius: 26px;
            }

            #view-landing .lp-floating-order {
                left: 16px;
                right: 16px;
                bottom: 16px;
                min-width: 0;
            }

            #view-landing .lp-floating-qr {
                top: 14px;
                right: 14px;
            }

            #view-landing .lp-about-collage {
                min-height: 430px;
            }

            #view-landing .lp-mini-dashboard {
                left: 18px;
                right: 18px;
                width: auto;
            }

            #view-landing .lp-feature-grid,
            #view-landing .lp-benefit-grid,
            #view-landing .lp-how-grid,
            #view-landing .lp-footer {
                grid-template-columns: 1fr;
            }

            #view-landing .lp-feature-media,
            #view-landing .lp-benefit-visual {
                min-height: 190px;
            }

            #view-landing .lp-step {
                grid-template-columns: 36px minmax(0, 1fr);
            }

            #view-landing .lp-step em {
                grid-column: 2;
                width: 100%;
            }
        }

        @media (max-width: 460px) {
            #view-landing .lp-topbar {
                align-items: center;
            }

            #view-landing .landing-logo {
                width: 104px;
            }

            #view-landing .landing-topbar-actions .landing-btn-primary {
                min-height: 38px;
                padding-inline: 10px;
            }

            #view-landing .lp-copy,
            #view-landing .lp-section-copy p {
                font-size: 0.98rem;
            }

            #view-landing .lp-trust-row {
                align-items: flex-start;
            }

            #view-landing .lp-hero-media {
                min-height: 285px;
            }

            #view-landing .lp-about-points div {
                grid-template-columns: 44px 1fr;
            }

            #view-landing .lp-about-points i {
                width: 44px;
                height: 44px;
                border-radius: 14px;
            }

            #view-landing .lp-section {
                padding-block: 54px;
            }
        }

        .menu-item-card-bottom {
            border-top: 1px solid #f8f8f8;
            padding: 9px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
        }

        .menu-item-price-wrapper {
            display: flex;
            flex-direction: column;
        }

        .menu-item-price-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            color: #aaa;
            font-weight: 700;
            letter-spacing: 0.05em;
            line-height: 1;
            margin-bottom: 2px;
        }

        .menu-item-price-value {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
        }

        .menu-item-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        /* Live Feed Pulse */
        .pulse-live {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #27ae60;
            border-radius: 50%;
            margin-right: 6px;
            box-shadow: 0 0 0 rgba(39, 174, 96, 0.4);
            animation: pulse-live 2s infinite;
            vertical-align: middle;
        }

        @keyframes pulse-live {
            0% {
                box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
            }
        }

        /* Emergency Fix: Offcanvas Panel Optimization */
        .offcanvas {
            /* Force separate GPU layer from 3D book */
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            will-change: transform;
            /* Isolate rendering to prevent flickering */
            contain: layout style paint;
            /* Disable transitions during 3D page flips */
            transition: transform 0.3s ease-out !important;
        }

        .offcanvas.show {
            transform: translate3d(0, 0, 1px) !important;
        }

        /* Prevent backdrop from interfering with 3D transforms */
        .offcanvas-backdrop {
            transform: translateZ(0);
            will-change: opacity;
        }

        .wishlist-btn {
            background: none;
            border: none;
            padding: 3px;
            color: #ddd;
            font-size: 1.32rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .wishlist-btn:hover {
            color: #bbb;
        }

        .wishlist-btn.wishlisted {
            color: var(--primary-color) !important;
        }

        .wishlist-btn:active {
            transform: scale(0.9);
        }

        .add-to-cart-btn {
            background: #000;
            color: white;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            transition: transform 0.2s, background-color 0.2s;
            padding: 0;
        }

        .add-to-cart-btn:hover {
            background: #222;
        }

        .add-to-cart-btn:active {
            transform: scale(0.9);
        }

        .theme-text {
            color: var(--primary-color) !important;
        }

        .theme-border-bottom {
            border-bottom: 3px solid var(--primary-color) !important;
        }

        .theme-badge {
            background-color: var(--primary-color) !important;
            color: white !important;
        }

        .menu-import-dropzone {
            border: 1px dashed #cfd4dc;
            border-radius: 10px;
            background: #f8f9fb;
            padding: 28px 18px;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .menu-import-dropzone:hover {
            border-color: var(--primary-color);
            background: #fff;
        }

        #offcanvasImportMenu {
            width: min(1420px, 96vw);
        }

        #offcanvasImportMenu .offcanvas-body {
            padding-inline: clamp(18px, 3vw, 44px) !important;
        }

        .menu-import-table-wrap {
            border: 1px solid #eef0f3;
            border-radius: 8px;
            max-height: min(58vh, 560px);
            overflow: auto;
        }

        .menu-import-table {
            margin-bottom: 0;
            min-width: 1280px;
            table-layout: fixed;
        }

        .menu-import-table thead th {
            position: sticky;
            top: 0;
            z-index: 1;
            background: #f8f9fb;
            font-size: 0.72rem;
            text-transform: uppercase;
            color: #6c757d;
        }

        .menu-import-col-select {
            width: 52px;
        }

        .menu-import-col-category {
            width: 210px;
        }

        .menu-import-col-name {
            width: 300px;
        }

        .menu-import-col-description {
            width: 420px;
        }

        .menu-import-col-price {
            width: 150px;
        }

        .menu-import-col-status {
            width: 110px;
        }

        .menu-import-col-actions {
            width: 72px;
        }

        .menu-import-table .form-control {
            width: 100%;
            min-height: 46px;
            font-size: 0.98rem;
        }

        .menu-import-table textarea {
            min-height: 74px;
            resize: vertical;
        }

        .menu-import-table .btn {
            min-width: 44px;
            padding: 0.55rem 0.7rem;
        }

        @media (max-width: 768px) {
            #offcanvasImportMenu {
                width: 100vw;
            }

            .menu-import-table {
                min-width: 1120px;
            }

            .menu-import-col-category {
                width: 180px;
            }

            .menu-import-col-name {
                width: 260px;
            }

            .menu-import-col-description {
                width: 360px;
            }
        }

        .theme-bg {
            background-color: var(--primary-color) !important;
            color: white !important;
        }

        .menu-details {
            padding: 32px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-details h2 {
            font-size: 1.75rem;
            margin-bottom: 8px;
            color: var(--secondary-color);
        }

        /* Menu Bottom Navigation Bar */
        .menu-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 1);
            /* Solid white to prevent GPU crash */
            /* backdrop-filter removed for stability */
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            height: 60px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 100;
            /* Lower than offcanvas (1045) */
            /* Above menu content, below offcanvas */
            padding-bottom: env(safe-area-inset-bottom);
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-item-btn {
            background: none;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #666;
            font-size: 0.75rem;
            font-weight: 600;
            position: relative;
            padding: 4px 12px;
            transition: var(--transition);
        }

        .nav-item-btn i {
            font-size: 1.4rem;
            margin-bottom: 2px;
            transition: transform 0.2s ease;
        }

        .nav-item-btn:active i {
            transform: scale(0.9);
        }

        .nav-item-btn.active {
            color: var(--primary-color);
        }

        /* Page Navigation Pill */
        .page-nav-pill {
            /* Static position in flex flow */
            margin: 10px auto 65px auto;
            /* 10px top gap from menu, 65px bottom to clear Nav (60px) + gap */
            position: relative;
            background: var(--secondary-color);
            color: white;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 4px 10px;
            z-index: 101;
            /* Above nav, below offcanvas */
            width: fit-content;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            align-self: center;
            flex-shrink: 0;
            /* Never shrink the pill */
        }

        .page-nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .page-nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .page-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .page-indicator {
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1px;
            min-width: 60px;
            text-align: center;
        }

        .badge-count {
            position: absolute;
            top: 2px;
            right: 8px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.65rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
            border: 2px solid white;
        }

        /* Cart Feedback: Tick Animation */
        .add-to-cart-btn.added {
            background-color: #2ecc71 !important;
            transform: scale(1.1);
        }

        /* Cart Item Quantity Controls */
        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f8f9fa;
            padding: 4px 8px;
            border-radius: 50px;
            border: 1px solid #eee;
        }

        .qty-btn {
            background: white;
            border: 1px solid #ddd;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #555;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
            line-height: 1;
        }

        .qty-btn:hover {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }

        .qty-value {
            font-weight: 700;
            font-size: 0.9rem;
            min-width: 15px;
            text-align: center;
        }

        /* Cart Panel Polish */
        .cart-item-row {
            padding: 16px;
            margin-bottom: 15px;
            background: white !important;
            border-radius: 12px;
            border: 1px solid #f1f1f1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            min-height: 80px;
            display: flex !important;
            visibility: visible !important;
        }

        #remote-guest-info {
            background: #fdfdfd;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #eee;
            margin: 15px 0;
        }

        #remote-guest-info .form-floating>.form-control {
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            background: white;
        }

        #remote-guest-info .form-floating>label {
            color: #888;
            font-weight: 500;
        }

        /* Bootstrap Overrides for Offcanvas vs Nav Bar */
        .offcanvas {
            z-index: 1100 !important;
        }

        .offcanvas-backdrop {
            z-index: 1090 !important;
        }

        /* Ensure offcanvas body content isn't cut off by the nav bar if it was regular content */
        /* But here we want the offcanvas to be ABOVE the nav bar entirely */

        /* Utilities */
        .hidden {
            display: none !important;
        }

        .price-tag {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            letter-spacing: -0.02em;
        }

        /* Custom File Upload Styling */
        .upload-zone {
            border: 2px dashed var(--light-gray);
            padding: clamp(15px, 4vh, 30px);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border-radius: var(--radius-sm);
            background: #FAFBFC;
            position: relative;
        }

        .upload-zone:hover {
            border-color: var(--primary-color);
            background: #FFF;
        }

        .upload-preview {
            width: 100%;
            height: clamp(100px, 20vh, 180px);
            object-fit: cover;
            border-radius: var(--radius-sm);
            margin-top: 15px;
            display: none;
        }

        /* Skeletal Loading / Shimmer */
        .skeleton {
            background: #eee;
            background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
            border-radius: 4px;
            background-size: 200% 100%;
            animation: 1.5s shine linear infinite;
        }

        @keyframes shine {
            to {
                background-position-x: -200%;
            }
        }

        /* Menu Search UI */
        .menu-search-container {
            position: relative;
            margin: 15px auto 5px;
            /* Reduced bottom margin */
            z-index: 1000;
            flex-shrink: 0;
            width: min(90%, 450px);
            transition: var(--transition);
        }

        .menu-search-input {
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: 30px;
            padding: 12px 24px 12px 48px;
            width: 100%;
            box-shadow: var(--shadow-md);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .menu-search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg);
            width: min(105%, 95vw);
        }

        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-color);
            opacity: 0.5;
        }

        .directions-btn-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            margin-top: auto;
        }

        .directions-btn-container .btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0 !important;
        }

        /* Menu View Layout */
        .menu-view-layout {
            display: flex !important;
            flex-direction: column;
            height: 100vh;
            height: 100dvh;
            /* Mobile viewport fix */
            overflow: hidden;
            /* Prevent body scroll */
            background: #F0F2F5;
        }

        .menu-view-layout.hidden {
            display: none !important;
            /* Ensure hidden still works */
        }

        .guide-help-btn {
            position: fixed;
            right: 18px;
            bottom: calc(76px + env(safe-area-inset-bottom));
            z-index: 99980;
            border: none;
            border-radius: 999px;
            background: var(--secondary-color);
            color: #fff;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
            padding: 10px 14px;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .guide-help-btn:hover,
        .guide-help-btn:focus-visible {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-2px);
        }

        .guide-overlay {
            position: fixed;
            inset: 0;
            z-index: 99990;
            background: transparent;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.18s ease;
        }

        .guide-overlay:not(.is-visible) .guide-highlight,
        .guide-overlay:not(.is-visible) .guide-card {
            display: none;
        }

        .guide-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .guide-highlight {
            position: fixed;
            z-index: 99991;
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            box-shadow:
                0 0 0 9999px rgba(12, 15, 17, 0.52),
                0 0 0 6px rgba(255, 90, 99, 0.2),
                0 12px 36px rgba(0, 0, 0, 0.22);
            pointer-events: none;
            transition: top 0.18s ease, left 0.18s ease, width 0.18s ease, height 0.18s ease;
        }

        .guide-card {
            position: fixed;
            z-index: 99992;
            width: min(360px, calc(100vw - 32px));
            background: #fff;
            color: var(--secondary-color);
            border-radius: 8px;
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
            padding: 18px;
            pointer-events: auto;
        }

        .guide-card::before {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            top: 0;
            height: 4px;
            background: var(--primary-color);
            border-radius: 0 0 4px 4px;
        }

        .guide-kicker {
            color: var(--primary-color);
            font-size: 0.68rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 8px;
        }

        .guide-card h3 {
            font-size: 1.1rem;
            margin: 0 0 8px;
            font-weight: 900;
            color: var(--secondary-color);
        }

        .guide-card p {
            margin: 0;
            color: #6b7378;
            line-height: 1.55;
            font-size: 0.95rem;
        }

        .guide-progress {
            height: 4px;
            background: #edf0f2;
            border-radius: 999px;
            overflow: hidden;
            margin: 16px 0 14px;
        }

        .guide-progress span {
            display: block;
            height: 100%;
            background: var(--primary-color);
            transition: width 0.2s ease;
        }

        .guide-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .guide-action-group {
            display: flex;
            gap: 8px;
        }

        .guide-btn {
            border: 1px solid #dfe4e8;
            background: #fff;
            color: var(--secondary-color);
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .guide-btn-primary {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .guide-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        @media (max-width: 640px) {
            .guide-card {
                left: 16px !important;
                right: 16px !important;
                top: auto !important;
                bottom: calc(84px + env(safe-area-inset-bottom)) !important;
                width: auto;
            }
        }

        @media (min-width: 768px) {
            #view-menu {
                --menu-desktop-phone-width: min(430px, calc(100vw - 48px));
                align-items: center;
                background:
                    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.88), transparent 34%),
                    linear-gradient(135deg, #e8ebef 0%, #f7f8fa 48%, #e1e5e9 100%);
                padding-top: 16px;
            }

            #view-menu .menu-search-container {
                width: var(--menu-desktop-phone-width);
                max-width: var(--menu-desktop-phone-width);
                margin: 0 auto 10px;
            }

            #view-menu .menu-search-input:focus {
                width: 100%;
            }

            #view-menu #menu-container {
                width: var(--menu-desktop-phone-width);
                max-width: var(--menu-desktop-phone-width);
                flex: 1 1 auto;
                border-radius: 28px 28px 12px 12px;
                overflow: hidden;
                box-shadow:
                    0 22px 60px rgba(31, 36, 39, 0.18),
                    0 0 0 1px rgba(31, 36, 39, 0.08);
            }

            #view-menu .book-page {
                width: calc(100% - 32px);
                max-width: 398px;
            }

            #view-menu #page-0 .page-content {
                justify-content: center !important;
                align-items: center !important;
                padding: 28px 24px 44px !important;
            }

            #view-menu #page-0 .venue-logo-circle {
                width: clamp(72px, 13vh, 104px);
                height: clamp(72px, 13vh, 104px);
                margin-bottom: 12px !important;
            }

            #view-menu #page-0 h1.display-5 {
                font-size: clamp(1.55rem, 4vh, 2.1rem);
                margin-bottom: 6px !important;
            }

            #view-menu #page-0 p.lead {
                font-size: 0.95rem;
            }

            #view-menu #page-0 .btn-responsive {
                margin-top: 12px !important;
                padding: 10px 16px;
            }

            #view-menu #page-0 .social-links {
                margin-top: 16px !important;
                gap: 16px !important;
            }

            #view-menu #page-0 .social-links a {
                font-size: 1.35rem !important;
                line-height: 1;
            }

            #view-menu #page-0 .page-content>p:last-child {
                margin-top: 16px !important;
                font-size: 0.82rem;
                opacity: 0.88;
            }

            #view-menu .page-nav-pill {
                max-width: calc(var(--menu-desktop-phone-width) - 48px);
                margin-bottom: 88px;
            }

            #view-menu .menu-bottom-nav {
                left: 50%;
                right: auto;
                bottom: 16px;
                width: var(--menu-desktop-phone-width);
                max-width: var(--menu-desktop-phone-width);
                transform: translateX(-50%);
                border-radius: 0 0 28px 28px;
                overflow: hidden;
                box-shadow:
                    0 18px 50px rgba(31, 36, 39, 0.18),
                    0 0 0 1px rgba(31, 36, 39, 0.08);
            }
        }

        /* Responsive Fixes */
        @media (max-width: 576px) {
            #view-landing .hero-title {
                font-size: clamp(2.6rem, 14vw, 3.35rem);
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.75rem;
            }
        }

        /* Inventory Category Groups */
        .inventory-category-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 2rem;
            border: 1px solid var(--light-gray);
            box-shadow: var(--shadow-sm);
        }

        .inventory-category-header {
            background: #f8f9fa;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .inventory-category-header h5 {
            margin: 0;
            font-weight: 700;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.9rem;
        }

        /* Admin Floating Action Button (FAB) */
        .fab-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 2000;
        }

        .fab-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .fab-btn:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .fab-btn:active {
            transform: scale(0.95);
        }

        #fab-add-product {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        #fab-add-product:not(.hidden) {
            display: flex !important;
        }

        .menu-bottom-nav .nav-item-btn.active-call {
            color: #dc3545;
            animation: pulse-red 2s infinite;
        }

        .menu-bottom-nav .nav-item-btn.active-call small {
            display: block;
            font-size: 0.65rem;
            opacity: 0.8;
            margin-top: -2px;
        }

        @keyframes pulse-red {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

