/* ... Previous CSS content ... */

:root {
    /* Color Palette - Festive Dark & Gold */
    --bg-color: #020617;
    /* Deeper, colder night blue */
    --card-bg: rgba(15, 23, 42, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    /* Frostier */
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --accent-color: #fbbf24;
    /* Amber Gold */
    --accent-glow: rgba(251, 191, 36, 0.4);
    --christmas-red: #ef4444;
    /* Subtle festive pop */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    /* softer curves */
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #020617 100%);
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent horizontal scroll from snow */
}

#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 0;
    /* Behind everything */
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.1rem;
}

p {
    color: var(--text-secondary);
}

/* Layout Containers */
.container {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    padding-bottom: 80px;
}

/* Header */
header {
    text-align: center;
    padding: var(--spacing-lg) 0;
    animation: fadeInDown 0.8s ease;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    background: var(--glass-bg);
    padding: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

/* Navigation (Category Pills) */
.category-nav {
    position: sticky;
    top: 10px;
    z-index: 100;
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-xs);
    padding: 10px 5px;
    margin: 0 calc(var(--spacing-sm) * -1) var(--spacing-md);
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

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

.nav-pill {
    white-space: nowrap;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-pill.active {
    background: var(--accent-color);
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

/* Menu Sections */
.menu-section {
    margin-bottom: var(--spacing-lg);
    scroll-margin-top: 80px;
}

/* Menu Items with Images */
.menu-item {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-sm);
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.menu-item:active {
    transform: scale(0.98);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: #1e293b;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.item-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.item-price {
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 8px;
    white-space: nowrap;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dietary-icons {
    margin-top: auto;
    padding-top: 6px;
    display: flex;
    gap: 4px;
}

.dietary-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

/* Footer elements */
.footer-info {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
}

.social-links {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    color: #0f172a;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-section {
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Desktop Tweaks */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .menu-item {
        margin-bottom: 0;
        height: 100%;
    }

    .hero-image {
        height: 300px;
    }
}