
:root { --gap: 16px; --radius: 14px; }
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: #111; }
.site-header { display:flex; justify-content: space-between; align-items:center; padding: 12px 16px; border-bottom:1px solid #eee; position: sticky; top:0; background:#fff; z-index: 10; }
.brand { display:flex; align-items:center; gap:12px; }
.logo { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }
.lang-toggle button { border:1px solid #ddd; background:#fff; padding:6px 10px; border-radius: 999px; margin-left:6px; cursor:pointer; }
.lang-toggle .active { background:#111; color:#fff; border-color:#111; }
.intro { text-align:center; padding: 18px 16px; }
#status { color: #c62828; font-weight: 700; }
.hours { padding: 8px 16px 20px; }
.hours h3, .map h3 { text-align:center; margin: 0 0 8px; }
.hours .center { text-align:center; }
.map .map-wrap { display:flex; flex-direction:column; align-items:center; gap:8px; padding: 0 16px 16px; }
.map iframe { width: 100%; height: 280px; border:0; border-radius: var(--radius); filter: grayscale(20%); }
.addr { color:#555; }

.menu { padding: 8px 16px 120px; }
.menu h2 { text-align:center; margin: 24px 0 8px; }
.menu h3 { margin: 16px 0 8px; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.card { border:1px solid #eee; border-radius: var(--radius); overflow:hidden; background: #fff; display:flex; flex-direction:column; }
.card img { width:100%; height:200px; object-fit:cover; background:#f6f6f6; }
.card-body { padding: 12px; display:flex; flex-direction:column; gap:6px; }
.card h4 { margin: 0; font-size: 1rem; }
.price { font-weight:700; }
.allergen { color:#666; font-size: 0.9rem; }
.qty { display:flex; align-items:center; gap:10px; margin-top:6px; }
.qty button { width:32px; height:32px; border-radius:8px; border:1px solid #ddd; background:#fff; cursor:pointer; font-size:18px; }
.qty .count { min-width: 18px; text-align:center; }

.checkout { position: sticky; bottom: 0; width: 100%; background: #fff; border-top: 1px solid #eee; padding: 16px; }
.checkout h2 { margin: 4px 0 8px; }
#cart-list { display:flex; flex-direction:column; gap:6px; }
.cart-row { display:flex; justify-content: space-between; gap:8px; border-bottom:1px dashed #eee; padding: 6px 0; }
.total { font-size: 1.1rem; font-weight: 700; margin-top: 10px; }
.customer { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin: 10px 0; }
#send { background:#111; color:#fff; border:0; padding:10px 14px; border-radius: 10px; cursor:pointer; }
.payment { margin-top: 12px; }
.payment .muted { color:#666; }
