:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --gold: #d4a574;
    --text: #333;
    --text-light: #666;
    --bg: #fafafa;
    --card-bg: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
}

.lang-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    opacity: 0.85;
    font-size: 1.1rem;
}

/* Navigation */
.category-nav {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    flex-shrink: 0;
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Info Banner */
.info-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff4e5;
    color: #8a5a00;
    border-bottom: 1px solid #f0d9a8;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.info-banner-icon {
    font-size: 1rem;
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Category Section */
.category-section {
    margin-bottom: 3rem;
    animation: fadeIn 0.5s ease;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

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

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

/* Menu Item Card */
.menu-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.item-description {
    font-size: 0.85rem;
    color: var(--text-light);
}

.item-price {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
    .header {
        padding: 2.5rem 1rem 2rem;
    }

    .lang-toggle {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Hidden state for filtering */
.category-section.hidden {
    display: none;
}

/* Allergens */
.item-allergens {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.allergens-label {
    font-size: 0.75rem;
    color: #92650a;
    font-weight: 600;
    white-space: nowrap;
}

.allergen-tag {
    font-size: 0.72rem;
    background: #fff8e6;
    color: #92650a;
    border: 1px solid #f0c060;
    border-radius: 4px;
    padding: 0.1rem 0.45rem;
    white-space: nowrap;
}
