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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #2a2522 0%, #1f1b18 100%);
            color: #f5f1ed;
            min-height: 100vh;
        }

        .container {
            margin: 0 auto;
            padding: 0;
            max-width: 1600px;
}

        

        /* Header with Chinese lanterns */
        .header {
            background: linear-gradient(135deg, #D4483C 0%, #A52A23 100%);

            padding: 2.5rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(212, 117, 108, 0.2);
        }

        .header::before {
            content: '🏮';
            position: absolute;
            font-size: 3rem;
            top: -10px;
            left: 20px;
            opacity: 0.4;
            animation: sway 3s ease-in-out infinite;
        }

        .header::after {
            content: '🏮';
            position: absolute;
            font-size: 3rem;
            top: -10px;
            right: 20px;
            opacity: 0.4;
            animation: sway 3s ease-in-out infinite 1.5s;
        }

        @keyframes sway {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        h1 {
            font-size: 2.5rem;
            color: #f5e6d3;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            margin-bottom: 0.5rem;
            font-weight: 600;
            letter-spacing: 3px;
        }
         h2 {
            font-size: 1.0rem;
            color: #f5e6d3;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            margin-bottom: 0.5rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .chinese-text {
            font-size: 3rem;
            color: #f5e6d3;
            margin-bottom: 0.5rem;
            font-family: 'KaiTi', 'SimSun', serif;
            opacity: 0.9;
        }

        .tagline {
            color: #f5e6d3;
            font-size: 0.95rem;
            font-style: italic;
            opacity: 0.85;
            font-weight: 300;
        }

        /* Action buttons */
        .actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(42, 37, 34, 0.6);
            backdrop-filter: blur(10px);
        }

        .btn {
            padding: 1.2rem;
            border: none;
            border-radius: 16px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-call {
             background: #B84A3A;
            color: #ffffff;
            width: 100%;
            grid-column: 1 / -1;

        }

        .btn-call:active {
            transform: scale(0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .btn-directions {
            background: linear-gradient(135deg, #e8c89f 0%, #d9b991 100%);
            color: #2a2522;
            grid-column: 1 / -1;
        }

        .btn-directions:active {
            transform: scale(0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .btn-icon {
            font-size: 1.8rem;
        }

        .btn-ubereats {
            background: linear-gradient(135deg, #e8c89f 0%, #d9b991 100%);
            color: #2a2522;
            grid-column: 1 / -1;
        }

        .btn-ubereats:active {
            transform: scale(0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .btn-directions,
        .btn-ubereats {
            background: rgba(255, 255, 255, 0.06);
            color: #F4EFEA;
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            box-shadow: none;
        }
        .btn-directions:active,
        .btn-ubereats:active {
            background: rgba(255, 255, 255, 0.12);
            transform: scale(0.98);
        }



        /* Info section */
        .info {
            padding: 2rem 1.5rem;
            background: rgba(42, 37, 34, 0.4);
        }

        .info-item {
            margin-bottom: 1.5rem;
            padding: 1.2rem;
            background: rgba(245, 241, 237, 0.08);
            border-radius: 12px;
            border-left: 3px solid #d4756c;
            backdrop-filter: blur(10px);
        }

        .info-label {
            color: #e8c89f;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .info-content {
            color: #f5f1ed;
            line-height: 1.8;
        }

        .info-content a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #d4756c;
        }

        /* Menu preview */
        .menu-preview {
            padding: 2rem 1.5rem;
            background: rgba(42, 37, 34, 0.6);
        }

        .section-title {
            color: #e8c89f;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            text-align: center;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #d4756c;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .menu-items {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .menu-item {
            background: rgba(245, 241, 237, 0.06);
            padding: 1.2rem;
            border-radius: 12px;
            border: 1px solid rgba(232, 200, 159, 0.15);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .menu-item:active {
            transform: translateY(2px);
            background: rgba(245, 241, 237, 0.1);
            border-color: rgba(232, 200, 159, 0.3);
        }

        .item-name {
            color: #f5e6d3;
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 1.05rem;
        }

        .item-description {
            color: #c9c0b5;
            font-size: 0.9rem;
            line-height: 1.5;
            font-weight: 300;
        }

        /* Menu tabs */
        .menu-tabs {
            display: flex;
            gap: 0.5rem;
            padding: 1.5rem 1.5rem 0;
            background: rgba(42, 37, 34, 0.6);
            overflow-x: auto;
            scrollbar-width: none;
        }

        .menu-tabs::-webkit-scrollbar {
            display: none;
        }

        .menu-tab {
            padding: 0.75rem 1.25rem;
            background: rgba(245, 241, 237, 0.08);
            border: 1px solid rgba(232, 200, 159, 0.2);
            border-radius: 20px;
            color: #c9c0b5;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .menu-tab.active {
            background: linear-gradient(135deg, #d4756c 0%, #c96860 100%);
            color: #ffffff;
            border-color: transparent;
        }

        .menu-tab:active {
            transform: scale(0.95);
        }

        /* Menu categories */
        .menu-categories {
            padding: 0 1.5rem 2rem;
            background: rgba(42, 37, 34, 0.6);
        }

        .category {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .category.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .category-section {
            margin-top: 2rem;
        }

        .category-title {
            color: #e8c89f;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(212, 117, 108, 0.3);
        }

        .category-items {
            display: grid;
            gap: 0.75rem;
        }

        .category-item {
            background: rgba(245, 241, 237, 0.06);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(232, 200, 159, 0.1);
        }

        .category-item-name {
            color: #f5e6d3;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .category-item-desc {
            color: #c9c0b5;
            font-size: 0.85rem;
            line-height: 1.4;
            font-weight: 300;
        }

            .category-item-price {
            font-size: 0.95rem;
            opacity: 0.85;
            white-space: nowrap;
            }

        /* Decorative elements */
        .divider {
            text-align: center;
            margin: 2rem 0;
            color: #d4756c;
            font-size: 1.2rem;
            opacity: 0.6;
        }

        /* Footer */
        .footer {
            background: rgba(31, 27, 24, 0.8);
            padding: 2rem 1.5rem;
            text-align: center;
            color: #c9c0b5;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
        }

        .footer-pattern {
            color: #d4756c;
            margin-bottom: 1rem;
            font-size: 1rem;
            letter-spacing: 0.5rem;
            opacity: 0.5;
        }

    .category-buttons-wrapper {
    margin-top: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #2a2522 0%, #1f1b18 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-buttons {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.75rem 0.25rem;
    scrollbar-width: none;
}

.category-buttons::-webkit-scrollbar {
    display: none;
}

.category-buttons button {
    background: transparent;
    border: 1px solid rgba(232, 200, 159, 0.25);
    color: #e8c89f;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.category-buttons button:hover {
    background: rgba(212, 117, 108, 0.15);
    border-color: rgba(212, 117, 108, 0.5);
    color: #f5e6d3;
}

.category-buttons button:active {
    transform: scale(0.95);
}

#menu-tabs {
    scroll-margin-top: 64px;
}
/* =========================
   Desktop Enhancements
========================= */
@media (min-width: 768px) {

    body {
        padding-top: 0;
    }

    /* Top bar becomes unnecessary on desktop */
    .top-bar {
        display: none;

    }

    /* Header breathes more */
    .header {
        padding: 4rem 3rem;

    }

   h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #f5e6d3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    margin-bottom: 0.5rem;
}


    .tagline {
        font-size: 2rem;
    }

    /* Actions row becomes horizontal */
    .actions {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
        min-width: 220px;
    }

    /* Menu tabs centered */
    .menu-tabs {
        justify-content: center;
    }

    /* Category buttons centered and wrapped */
    .category-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Menu sections in two columns */
    .category-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    /* Section titles more prominent */
    .category-title {
        font-size: 1.5rem;
    }

    /* Footer spacing */
    .footer {
        padding: 3rem;
    }
}

/* =========================
   FAQ Page
========================= */

.faq-form,
.faq-wall {
  padding: 2rem 1.5rem;
  background: rgba(42, 37, 34, 0.6);
}

.faq-form textarea {
  width: 100%;
  min-height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem;
  color: #f5f1ed;
  font-size: 1rem;
  resize: vertical;
  margin-bottom: 1rem;
}

.faq-form textarea::placeholder {
  color: #a9a39c;
}

.faq-item {
  background: rgba(245, 241, 237, 0.06);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: #f5e6d3;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #c9c0b5;
  line-height: 1.6;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 52px;
    background: rgba(31, 27, 24, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-btn {
    background: transparent;
    border: none;
    color: #f5e6d3;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.top-bar-btn:active {
    opacity: 0.7;
}

/* ===== Category button horizontal scroll (ALL devices) ===== */
.category-buttons-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-buttons {
  display: flex;
  gap: 12px;
  padding: 0.75rem 1rem;
  width: max-content;
}

.category-buttons::-webkit-scrollbar {
  display: none;
}

.category-buttons button {
  flex: 0 0 auto;
  white-space: nowrap;
}
