        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #fef7f0;
            color: #1e1e1e;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        :root {
            --primary: #C41E3A;
            --primary-dark: #9A1830;
            --primary-light: #E85D75;
            --dark: #2a2a2a;
            --light-bg: #fff8f0;
            --card-bg: #ffffff;
            --gray-mid: #7a6a5c;
            --border-radius: 24px;
            --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
        }

        /* 导航栏 */
        .navbar {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.8rem 1.2rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid #ffe0cc;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.05em;
        }

        .logo span {
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 0.75rem;
            color: var(--gray-mid);
            font-weight: 400;
            margin-left: 0.3rem;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
            padding: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            transition: all 0.3s ease;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* 手机菜单 */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 70%;
                height: calc(100vh - 60px);
                background: white;
                flex-direction: column;
                padding: 2rem 1.5rem;
                box-shadow: 2px 0 20px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 99;
                gap: 1.2rem;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li a {
                font-size: 1.2rem;
                display: block;
                padding: 0.5rem 0;
            }
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: scale(0.97);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.2rem;
        }

        .section-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--primary);
            margin-top: 6px;
            border-radius: 4px;
        }

        .hero {
            background: linear-gradient(107deg, #fff4e8 0%, #ffe8da 100%);
            padding: 1.5rem 0;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-family: 'Noto Serif SC', serif;
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.8rem;
        }

        .hero-text .highlight {
            color: var(--primary);
        }

        .hero-text p {
            font-size: 1rem;
            color: #4a3b2f;
            margin-bottom: 1.5rem;
        }

        .hero-img {
            flex: 1;
            text-align: center;
        }

        .hero-img img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow);
            width: 100%;
            max-width: 350px;
            object-fit: cover;
            aspect-ratio: 1/1;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .menu-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .menu-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .menu-info {
            padding: 1rem;
        }

        .menu-info h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

        .badge {
            background: #ffefe3;
            color: var(--primary-dark);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.7rem;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .menu-desc {
            color: var(--gray-mid);
            font-size: 0.85rem;
        }

        .info-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            background: #ffffff;
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }

        .shop-details {
            flex: 1;
        }

        .shop-details p {
            margin: 0.8rem 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .clickable {
            cursor: pointer;
            transition: 0.2s;
            padding: 4px 8px;
            border-radius: 20px;
            background: #f5ede5;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .clickable:hover {
            background: #ffe0cc;
        }

        .map-placeholder {
            flex: 1;
            background: #e9e2d9;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: #6b5a4b;
            min-height: 180px;
        }

        .bottom-order-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            border-top: 1px solid #ffe0cc;
        }

        .order-now-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .order-now-btn:hover {
            background: var(--primary-dark);
        }

        .hot-tip {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 500;
        }

        .footer {
            background: #1e1b18;
            color: #ddd2c6;
            padding: 2rem 1.2rem 1.5rem;
            margin-top: 1.5rem;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .footer-section {
            flex: 1;
            min-width: 140px;
        }

        .footer-section h4 {
            font-family: 'Noto Serif SC', serif;
            color: white;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }

        .qr-placeholder {
            width: 80px;
            height: 80px;
            background: #f3ede8;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e1b18;
            font-size: 10px;
            text-align: center;
            margin-bottom: 6px;
        }

        .platform-icons {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .platform-link {
            background: #2e2a27;
            padding: 6px 12px;
            border-radius: 40px;
            text-decoration: none;
            color: #ffc9a9;
            font-weight: 500;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .platform-link:hover {
            background: var(--primary);
            color: white;
        }

        .copyright {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.7rem;
            border-top: 1px solid #3a322c;
            padding-top: 1rem;
        }

        @media (max-width: 600px) {
            body {
                padding-bottom: 65px;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 1.5rem 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .bottom-order-bar {
                padding: 0.6rem 1rem;
            }
            .order-now-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }
            .hot-tip {
                font-size: 0.7rem;
            }
            .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
        }