
        :root {
            --brand-orange: #FF5F1F;
            --white: #ffffff;
            --dark: #111827;
            --text-muted: #6B7280;
            --bg-light: #F9FAFB;
            --border-light: #E5E7EB;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --minimal-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--dark);
            overflow-x: hidden;
        }

        .container-wide {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* --- 1. Top Bar --- */
        .top-bar {
            background: var(--brand-orange);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
            font-weight: 600;
        }

        .top-bar .flex-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* --- 2. Main Header --- */
        header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
          
            border-bottom: 1px solid var(--border-light);
        }

        header .flex-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 70px;
            width: auto;
            display: block;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            font-size: 18px;
            padding: 10px 18px;
            border-radius: 12px;
            transition: var(--transition);
        }

        nav ul li a:hover {
            color: var(--brand-orange);
            background: #FFF5F1;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .login-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            font-size: 16px;
            transition: var(--transition);
        }

        .cart-pill {
            background: var(--white);
            border: 1px solid var(--border-light);
            padding: 8px 16px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: var(--minimal-shadow);
            transition: var(--transition);
        }

        .cart-pill i {
            color: var(--brand-orange);
        }

        .cart-count {
            background: var(--brand-orange);
            color: white;
            font-size: 11px;
            font-weight: 800;
            padding: 2px 7px;
            border-radius: 20px;
        }

        .mobile-toggle {
            font-size: 28px;
            cursor: pointer;
            display: none;
        }

        /* --- 3. Hero Section --- */
        .hero {
            position: relative;
            width: 100%;
            height: 75vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&q=80&w=2070');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--brand-orange);
        }

        .search-container {
            background: var(--white);
            border: 1px solid var(--border-light);
            padding: 8px;
            border-radius: 100px;
            display: inline-flex;
            width: 100%;
            max-width: 850px;
            align-items: center;
            box-shadow: var(--minimal-shadow);
        }

        .search-group {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 25px;
            border-right: 1px solid #f0f0f0;
        }

        .search-group:last-of-type {
            border-right: none;
        }

        .search-group i {
            color: var(--brand-orange);
            font-size: 20px;
            margin-right: 12px;
        }

        .search-group input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
        }

        .search-btn {
            background: var(--brand-orange);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 100px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
        }

        /* --- 4. TOP FOODS (Auto-Scrolling) --- */
        .foods-section {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .foods-section h2 {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 60px;
        }

        /* The Marquee Row */
        .marquee-track {
            display: flex;
            width: max-content;
            animation: scrollLeft 40s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .food-card {
            width: 380px;
            margin: 0 15px;
            background: var(--white);
            border-radius: 30px;
            position: relative;
            border: 1px solid #f3f4f6;
            transition: var(--transition);
        }

        .food-card:hover {
            transform: translateY(-10px);
            border-color: var(--brand-orange);
        }

        .food-card img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 30px;
        }

        .food-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 20px;
            text-align: center;
        }

        .food-label h3 {
            font-size: 1.4rem;
            font-weight: 800;
        }

        /* --- Offcanvas Mobile --- */
        .offcanvas {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 380px;
            height: 100%;
            background: var(--white);
            z-index: 2000;
            padding: 60px 40px;
            transition: 0.5s;
        }

        .offcanvas.active {
            right: 0;
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1999;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        @media (max-width: 1024px) {

            nav,
            .header-actions .login-link {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .search-container {
                flex-direction: column;
                border-radius: 25px;
                padding: 20px;
            }

            .search-group {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #f0f0f0;
                padding: 15px 0;
            }

            .search-btn {
                width: 100%;
                margin-top: 20px;
            }
        }


        /* --- Refined Counter Section --- */
        .stats-refined {
            padding: 80px 0;
            background: #020617;
            /* Midnight Black */
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stats-grid-responsive {
            display: grid;
            /* Desktop: 4 Columns */
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-box {
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.4s ease;
        }

        .stat-box:hover {
            background: rgba(255, 95, 31, 0.05);
            border-color: var(--brand-orange);
            transform: translateY(-5px);
        }

        .stat-icon-mini {
            font-size: 20px;
            color: var(--brand-orange);
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* Prevents icon from squishing */
        }

        .stat-val {
            font-size: 1.6rem;
            /* Compact Font */
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 2px;
            letter-spacing: -0.5px;
        }

        .stat-name {
            font-size: 11px;
            font-weight: 600;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- RESPONSIVE QUERIES --- */

        /* For Tablets (Under 1024px) */
        @media (max-width: 1024px) {
            .stats-grid-responsive {
                grid-template-columns: repeat(2, 1fr);
                /* 2x2 Grid */
                padding: 0 20px;
            }
        }

        /* For Mobile Phones (Under 600px) */
        @media (max-width: 600px) {
            .stats-refined {
                padding: 60px 0;
                /* Less padding on mobile */
            }

            .stats-grid-responsive {
                grid-template-columns: 1fr;
                /* Stacked 1 Column */
                gap: 15px;
            }

            .stat-box {
                padding: 15px;
                /* Compact padding */
            }

            .stat-val {
                font-size: 1.4rem;
                /* Slightly smaller for mobile */
            }

            .stat-name {
                font-size: 10px;
            }

            .stat-icon-mini {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }


        /* --- Inquiry Section --- */
        .inquiry-section {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .inquiry-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Side Content */
        .tagline {
            color: var(--brand-orange);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            display: block;
            margin-bottom: 15px;
        }

        .inquiry-title {
            font-size: 3.5rem;
            /* Big font but controlled */
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .inquiry-title span {
            color: var(--brand-orange);
        }

        .inquiry-desc {
            color: var(--text-muted);
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 450px;
        }

        .contact-mini-list .c-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-mini-list i {
            color: var(--brand-orange);
        }

        /* Right Side Form Card */
        .inquiry-form-card {
            background: #fff;
            border: 1px solid #f0f0f0;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            flex: 1;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            outline: none;
            transition: var(--transition);
            background-color: #F9FAFB;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--brand-orange);
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(255, 95, 31, 0.05);
        }

        .form-group textarea {
            height: 120px;
            resize: none;
        }

        .btn-submit {
            width: 100%;
            background: var(--brand-orange);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: #000;
            transform: translateY(-2px);
        }

        /* --- Mobile Fixes --- */
        @media (max-width: 1024px) {
            .inquiry-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .inquiry-title {
                font-size: 2.8rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }


        /* --- Footer Styles --- */
        .footer-wrap {
            background: #020617;
            /* Matches Midnight Counter Section */
            padding: 100px 0 30px;
            color: #94A3B8;
            /* Muted Slate Gray */
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            /* Larger ends for logo and form */
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-logo img {
            height: 50px;
            margin-bottom: 25px;
            filter: brightness(0) invert(1);
            /* Makes logo white if needed */
        }

        .footer-bio {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-socials a:hover {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            transform: translateY(-5px);
        }

        .footer-head {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: var(--brand-orange);
            padding-left: 5px;
        }

        .footer-text {
            font-size: 15px;
            margin-bottom: 20px;
        }

        /* Newsletter Form */
        .footer-form {
            display: flex;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px;
            border-radius: 15px;
        }

        .footer-form input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            padding: 10px 15px;
            color: #fff;
            font-size: 14px;
        }

        .footer-form button {
            background: var(--brand-orange);
            color: #fff;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.3s;
        }

        .footer-form button:hover {
            background: #fff;
            color: var(--brand-orange);
        }

        /* Bottom Bar */
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .bottom-policy {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .bottom-policy a {
            color: #94A3B8;
            text-decoration: none;
        }

        /* --- MOBILE RESPONSIVE --- */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer-wrap {
                padding: 60px 0 30px;
            }
        }
