        :root {
            --yellow: #F4F754;
            --purple-blue: #8967B3;
            --orange: #FFA500;
            --white: #FFFFFF;
            --blue-accent: #3B82F6;
        }

        body {
            font-family: "Comme", sans-serif;
            background-color: var(--white);
            color: #1a1a1a;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Dotted Overlay Effect */
        .dotted-overlay::after {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(rgba(0,0,0,0.08) 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            opacity: 0.6;
            pointer-events: none;
            z-index: 5;
        }

        /* Headers */
        .thin-header {
            background-color: var(--yellow);
            color: var(--purple-blue);
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        /* Hero Styling */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://i.pinimg.com/736x/b0/74/c6/b074c6fb9f4f19fada000d276620be28.jpg') no-repeat center center/cover;
            animation: heroKenBurns 30s infinite alternate linear;
            z-index: 1;
        }
        @keyframes heroKenBurns {
            0% { transform: scale(1); }
            100% { transform: scale(1.15) rotate(0.5deg); }
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            z-index: 2;
        }

        .hero-content-box {
            background: white;
            padding: 40px 100px;
            position: relative;
            z-index: 10;
            transform: translateY(80px);
            opacity: 0;
            animation: slideInUp 1.2s forwards 0.3s;
            text-align: center;
            box-shadow: 20px 20px 0px var(--yellow);
        }
        @keyframes slideInUp {
            to { transform: translateY(0); opacity: 1; }
        }

        .hero-main-text {
            color: var(--orange);
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            margin: 0;
        }

        .hero-quote {
            color: var(--orange);
            font-size: 1.4rem;
            font-weight: 500;
            margin-top: 20px;
            letter-spacing: 6px;
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        .hero-quote span { opacity: 0; animation: fadeIn 0.5s forwards; }
        .hero-quote span:nth-child(1) { animation-delay: 1.3s; }
        .hero-quote span:nth-child(2) { animation-delay: 1.6s; }
        .hero-quote span:nth-child(3) { animation-delay: 1.9s; }

        @keyframes fadeIn { to { opacity: 1; } }

        /* Vertical Left Menu */
        .vertical-menu {
            position: fixed;
            left: 50px;
            top: 55%;
            transform: translateY(-50%);
            z-index: 500;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .menu-box {
            background: white;
            color: var(--purple-blue);
            width: 170px;
            padding: 18px 25px;
            cursor: pointer;
            font-weight: 400;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 2px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border-left: 0 solid var(--purple-blue);
        }
        .menu-box:hover {
            background-color: var(--purple-blue);
            color: black;
            transform: translateX(10px) scale(1.05);
            border-left-width: 8px;
        }

        /* Floating Chat Bot */
        .chat-container {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 2000;
        }
        .chat-trigger {
            background: white;
            padding: 15px 25px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid var(--yellow);
            transition: 0.3s;
        }
        .chat-trigger:hover {
            transform: translateY(-5px);
            background: var(--yellow);
        }
        .chat-window {
            position: absolute;
            bottom: 85px;
            right: 0;
            width: 360px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.25);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }
        .chat-header {
            background: var(--purple-blue);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-body {
            height: 400px;
            padding: 20px;
            overflow-y: auto;
            background: #fafafa;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .chat-msg {
            padding: 12px 18px;
            border-radius: 10px;
            font-size: 13px;
            max-width: 80%;
            line-height: 1.6;
        }
        .msg-bot { background: white; align-self: flex-start; box-shadow: 0 2px 5px rgba(0,0,0,0.05); color: #444; }
        .msg-user { background: var(--orange); color: white; align-self: flex-end; }

        /* Multipage System */
        .page-wrapper { display: none; }
        .page-wrapper.active { display: block; animation: pageFade 0.6s ease-out; }
        @keyframes pageFade { from { opacity: 0; filter: blur(10px); } to { opacity: 1; filter: blur(0); } }

        /* Quick View Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(137, 103, 179, 0.92);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-card {
            background: white;
            width: 100%;
            max-width: 1150px;
            height: 85vh;
            display: flex;
            overflow: hidden;
            animation: modalPop 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
        @keyframes modalPop { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

        /* UI Buttons */
        .btn-orange {
            background-color: var(--orange);
            color: white;
            padding: 18px 45px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: 0.4s;
            display: inline-block;
        }
        .btn-orange:hover {
            background-color: var(--purple-blue);
            box-shadow: 10px 10px 0 var(--yellow);
        }

        .food-card {
            background: white;
            transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }
        .food-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.08);
        }

        .comme-700 { font-weight: 700; }
        .comme-500 { font-weight: 500; }
        .comme-400 { font-weight: 400; }
        .comme-300 { font-weight: 300; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--purple-blue); }
    