:root {
    --primary: #2d3436;
    --accent: #00b894;
    --bg-light: #ffffff;
    --bg-secondary: #f8f9fa;
    --card-bg: #ffffff;
    --text-header: #1a1a1a;
    --text-body: #636e72;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --border-color: #f1f1f1;
    --sidebar-width: 280px;
}

body {
    background-color: var(--bg-secondary);
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    margin: 0;
    transition: background-color 0.3s;
}

/* Mobile-first: No sidebar, bottom nav visible */
.sidebar {
    display: none;
}

.content-wrapper {
    width: 100%;
    min-height: 100vh;
}

/* Responsive Overrides for Desktop (>= 1024px) */
@media (min-width: 1024px) {
    body {
        display: flex;
        /* Sidebar and Content side by side */
    }

    .sidebar {
        display: flex;
        flex-direction: column;
        width: var(--sidebar-width);
        height: 100vh;
        background: white;
        border-right: 1px solid var(--border-color);
        position: fixed;
        left: 0;
        top: 0;
        padding: 40px 24px;
        z-index: 200;
    }

    .content-wrapper {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        background: var(--bg-light);
    }

    .bottom-nav {
        display: none !important;
        /* Hide mobile nav on desktop */
    }

    header {
        position: sticky;
        top: 0;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(20px) !important;
    }
}

/* Header Styles */
header {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 32px;
}

.font-heading {
    font-family: 'Outfit', sans-serif;
    color: var(--text-header);
    font-weight: 700;
}

/* Main Cards */
.order-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.promo-banner {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Sidebar Specific */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 16px;
    color: #a0a0a0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.sidebar-link.active,
.sidebar-link:hover {
    background: #f7f7f7;
    color: var(--primary);
}

/* Bottom Nav (Mobile) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 12px 0 30px 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #b2bec3;
    flex: 1;
    text-decoration: none;
}

.nav-item.active {
    color: var(--primary);
}

.btn-rounded {
    background: #111;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.category-pill {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 28px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.menu-item-card {
    background: white;
    padding: 16px;
    border-radius: 32px;
    border: 1px solid #f9f9f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transform: scale(1.02);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}