:root {
  --green: #287A61; --wood: #E3C99A; --wood-dark: #C9A873; --brown: #3D3026;
  --black: #151515; --cream: #FFFDF7;
  --font-display: "Oswald", sans-serif; --font-body: "Montserrat", sans-serif;
  --header-h: 56px; --nav-h: 46px; --safe: env(safe-area-inset-bottom, 0px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--wood); color: var(--brown); line-height: 1.5; padding-bottom: calc(72px + var(--safe)); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--brown); color: var(--cream); }
.header-inner, .menu, .hero, .site-footer, .category-nav-inner { max-width: 900px; margin: 0 auto; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 14px; min-height: var(--header-h); }
.logo { height: 36px; width: auto; }
.header-title { flex: 1; text-align: center; }
.header-title h1 { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; }
.header-title span { display: block; font-size: 0.6rem; color: #c8e8dc; letter-spacing: 0.16em; }
.header-actions { display: flex; gap: 6px; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--green); display: grid; place-items: center; color: var(--cream); background: transparent; }
.icon-btn svg { width: 18px; height: 18px; }
.hero { text-align: center; padding: 24px 16px 16px; background: var(--cream); }
.hero-logo { height: 56px; width: auto; margin: 0 auto 8px; }
.hero .ig { font-size: 0.8rem; color: var(--green); font-weight: 600; }
.hero .note { font-size: 0.75rem; color: #666; margin-top: 6px; }
.category-nav { position: sticky; top: var(--header-h); z-index: 90; background: var(--green); color: var(--cream); }
.category-nav-inner { display: flex; overflow-x: auto; scrollbar-width: none; padding: 6px 10px; gap: 4px; }
.category-nav-inner::-webkit-scrollbar { display: none; }
.category-nav a { flex-shrink: 0; padding: 8px 12px; font-family: var(--font-display); font-size: 0.78rem; color: rgba(255,255,255,0.85); white-space: nowrap; }
.category-nav a.active { background: var(--cream); color: var(--green); }
.menu { padding: 8px 14px 32px; }
.menu-section { padding: 20px 0 8px; scroll-margin-top: calc(var(--header-h) + var(--nav-h) + 8px); }
.section-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); background: var(--green); padding: 8px 12px; margin-bottom: 12px; }
.section-note { font-size: 0.78rem; color: #5a4a3a; font-style: italic; margin: -4px 0 10px; }
.item { background: var(--cream); padding: 10px 12px; margin-bottom: 6px; border-radius: 4px; }
.item-row { display: flex; align-items: baseline; gap: 8px; }
.item-name { flex-shrink: 0; font-weight: 600; max-width: 70%; }
.dots { flex: 1; border-bottom: 1px dotted rgba(61,48,38,0.3); transform: translateY(-3px); }
.price { flex-shrink: 0; font-weight: 700; color: var(--green); }
.desc { font-size: 0.75rem; color: #5a4a3a; margin-top: 4px; }
.prices { display: flex; gap: 14px; font-size: 0.75rem; color: #5a4a3a; margin-top: 4px; }
.prices strong { color: var(--green); }
.bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 110; display: flex; justify-content: center; background: var(--brown); color: var(--cream); padding: 10px 12px calc(10px + var(--safe)); }
.bottom-bar a { flex: 1; max-width: 120px; display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 0.62rem; text-transform: uppercase; }
.bottom-bar svg { width: 22px; height: 22px; }
.bottom-bar .whatsapp svg { color: #25D366; }
.bottom-bar .instagram svg { color: #E1306C; }
.bottom-bar .maps svg { color: var(--wood); }
.site-footer { text-align: center; padding: 16px; font-size: 0.7rem; color: #5a4a3a; }
@media (min-width: 700px) {
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
  body { padding-bottom: 0; }
  .bottom-bar { position: static; max-width: 900px; margin: 0 auto 24px; }
}

.logo, .hero-logo { object-fit: contain; }

[hidden] { display: none !important; }

