        :root {
            --mint-green: #C6F6D5;
            --fresh-orange: #FF9F43;
            --soft-blue: #6BCBFF;
            --warm-beige: #FFF5E1;
            --deep-forest: #2D3748;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #FFFFFF;
            color: var(--deep-forest);
            scroll-behavior: smooth;
        }

        .heading-font { font-family: 'Poppins', sans-serif; }
        .body-font { font-family: 'Nunito', sans-serif; }

        .glass-nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(198, 246, 213, 0.5);
        }

        .btn-orange {
            background-color: var(--fresh-orange);
            color: white;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-orange:hover {
            background-color: #e68a2e;
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 159, 67, 0.2);
        }

        .food-card {
            background: white;
            border-radius: 24px;
            border: 1px solid #F2F2F2;
            transition: all 0.5s ease;
        }

        .food-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(198, 246, 213, 0.4);
            border-color: var(--mint-green);
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--fresh-orange);
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50%;
        }

        .modal-bg {
            background: rgba(45, 55, 72, 0.4);
            backdrop-filter: blur(8px);
        }

        .scroll-hide::-webkit-scrollbar { display: none; }
        .scroll-hide { -ms-overflow-style: none; scrollbar-width: none; }

        .auth-card {
            background: white;
            border-radius: 32px;
            box-shadow: 0 40px 100px -20px rgba(0,0,0,0.1);
        }
