body {
    background: linear-gradient(180deg,#ffffff 0%, #f7f7fa 100%);
    color: var(--text-color, #222);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px 56px 16px;
}
h1 {
    color: var(--primary-color, #ff6600);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    letter-spacing: 1px;
    font-weight: 800;
}
.category { margin-bottom: 48px; }
.category h2 {
    color: var(--primary-color, #ff6600);
    border-bottom: 2px solid var(--primary-color, #ff6600);
    padding-bottom: 8px;
    margin-bottom: 22px;
    font-size: 1.35em;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.category h2::before { content: ''; display: none; }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.product {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 18px 14px 18px 14px;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #ececec;
    position: relative;
}
.product:hover {
    box-shadow: 0 16px 36px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.025);
    border-color: var(--primary-color, #ff6600);
}
.prd-img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 2.5px solid var(--primary-color, #ff6600);
    background: #fff;
    box-shadow: 0 2px 8px rgba(255,102,0,0.07);
    object-fit: cover;
}
.prd-info h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color, #ff6600);
    font-size: 1.18em;
    font-weight: 700;
    text-align: center;
}
.prd-info p {
    margin: 0 0 10px 0;
    font-size: 1.04em;
    color: #444;
    text-align: center;
}
.allergens {
    color: var(--secondary-color, #ff9900);
    font-size: 0.97em;
    margin-bottom: 8px;
    text-align: center;
}
.price-badge { position:absolute; top: 8px; right: 8px; color: #fff; background: linear-gradient(90deg, var(--primary-color, #ff6600) 60%, var(--secondary-color, #ff9900) 100%); padding: 6px 10px; border-radius: 10px; font-weight: 800; }
@media (max-width: 900px) {
    .products { grid-template-columns: 1fr 1fr; gap: 14px; }
    .container { padding: 16px; }
    .product { max-width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
    h1 { font-size: 1.3em; margin-bottom: 22px; }
    .category h2 { font-size: 1.05em; padding-bottom: 5px; }
    .container { padding: 12px; }
    .products { grid-template-columns: 1fr; gap: 12px; }
    .product { padding: 14px 10px; border-radius: 10px; }
    .prd-img { height: 110px; }
    .price-badge { top: 6px; right: 6px; font-size: 0.95em; padding: 4px 8px; }
    .menu-logo { height: 48px; }
    .hero-banner { height: 140px; margin: 8px auto 12px auto; }
    .category-nav { gap: 8px; padding-bottom: 14px; }
    .cat-pill { padding: 6px 10px; font-size: 0.95em; }
}
.menu-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(255,102,0,0.07);
    padding: 0;
    margin-bottom: 18px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 28px 16px 18px 16px;
}
.menu-logo {
    height: 64px;
    width: auto;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1.5px 8px rgba(255,102,0,0.07);
    margin-bottom: 6px;
}
.menu-title {
    font-size: 2em;
    color: var(--primary-color, #ff6600);
    font-weight: 800;
    letter-spacing: 1px;
}
.menu-footer {
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(255,102,0,0.07);
    margin-top: 40px;
    padding: 0;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 16px 12px 16px;
    text-align: center;
    color: var(--text-color, #222);
    font-size: 1.05em;
    font-weight: 500;
}
.footer-inner .footer-social { margin-top: 8px; display:flex; gap:12px; justify-content:center; }
.footer-inner .footer-social a { color: var(--primary-color, #ff6600); font-size: 1.2em; }

/* Modern additions */
.header-inner { position: relative; }
.hero-banner { width:100%; height: 200px; background-size: cover; background-position:center; background-repeat:no-repeat; margin: 10px auto 16px auto; border-radius: 12px; max-width: 1100px; }
.category-nav.centered { justify-content:center; }
.search-wrap { margin-left: auto; display:flex; align-items:center; gap:8px; background:#fff; border:1px solid #ececec; border-radius:999px; padding:6px 10px; }
.search-wrap input { border:none; outline:none; font-size:0.95em; }
.search-wrap i { color: var(--primary-color, #ff6600); }
.category-nav { max-width: 1100px; margin: 0 auto; display:flex; gap:12px; padding: 0 16px 20px 16px; overflow-x:auto; }
.cat-pill { text-decoration:none; color: var(--primary-color, #ff6600); border:1px solid var(--primary-color, #ff6600); padding:8px 14px; border-radius:999px; font-weight:700; white-space:nowrap; }
.cat-pill:hover { background: var(--primary-color, #ff6600); color:#fff; }
.card-footer { display:none; }
.to-top { position: fixed; right: 16px; bottom: 16px; width:44px; height:44px; border-radius:50%; border:1px solid var(--primary-color, #ff6600); background:#fff; color:var(--primary-color, #ff6600); display:flex; align-items:center; justify-content:center; box-shadow:0 6px 16px rgba(0,0,0,0.12); opacity:0; transition: opacity 0.2s; }
@media (max-width: 700px) {
    .header-inner, .footer-inner {
        max-width: 100%;
        padding: 10px 8px 8px 8px;
    }
    .menu-logo {
        height: 36px;
    }
    .menu-title {
        font-size: 1.2em;
    }
    .menu-footer {
        margin-top: 24px;
    }
} 