:root {
    --primary: #e65100;
    --primary-light: #ff833a;
    --primary-dark: #ac1900;
    --secondary: #2e7d32;
    --bg-light: #fafafa;
    --bg-warm: #fff8f0;
    --text-dark: #212121;
    --text-muted: #757575;
    --card-shadow: 0 2px 12px rgba(0,0,0,.08);
    --card-hover-shadow: 0 4px 20px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
}

.menu-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.menu-header .restaurant-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.3);
    margin-bottom: .75rem;
}

.menu-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.menu-header p {
    font-size: .85rem;
    opacity: .85;
    margin-bottom: 0;
}

.menu-header .restaurant-info {
    font-size: .8rem;
    opacity: .75;
    margin-top: .5rem;
}

.lang-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.lang-switcher .btn {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: white;
    font-size: .8rem;
    padding: .25rem .6rem;
    border-radius: 20px;
}

.lang-switcher .dropdown-menu {
    min-width: 140px;
    font-size: .85rem;
}

.search-bar {
    padding: .75rem 1rem;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-bar input {
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    padding: .5rem 1rem .5rem 2.5rem;
    font-size: .9rem;
    background: #f5f5f5;
    transition: all .2s;
}

.search-bar input:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230,81,0,.1);
}

.search-bar .search-icon {
    position: absolute;
    left: 1.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.category-tabs {
    padding: .5rem 1rem;
    background: white;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.category-tab {
    display: inline-block;
    padding: .4rem 1rem;
    margin-right: .5rem;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: #f5f5f5;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary);
    color: white;
}

.menu-section {
    padding: 1rem;
}

.menu-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
    transition: all .2s;
    display: flex;
}

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

.menu-card-img {
    width: 110px;
    min-height: 110px;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-card-body {
    padding: .75rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: var(--text-dark);
}

.menu-card-desc {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-new {
    background: var(--secondary);
    color: white;
    font-size: .65rem;
    padding: .2rem .5rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-popular {
    background: #f57c00;
    color: white;
    font-size: .65rem;
    padding: .2rem .5rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.no-image-placeholder {
    width: 110px;
    min-height: 110px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.no-image-placeholder i {
    font-size: 2rem;
    color: #bdbdbd;
}

.menu-footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: .75rem;
    background: white;
    border-top: 1px solid #eee;
}

.home-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.home-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.home-container .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.home-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .menu-card-img, .no-image-placeholder {
        width: 90px;
        min-height: 90px;
    }
    .menu-header h1 { font-size: 1.25rem; }
}

.menu-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,.05);
}
