:root {
  --bg: #0B0B0B;
  --bg-2: #141414;
  --gold: #F2A62A;
  --gold-light: #FFB83D;
  --white: #FFFFFF;
  --cream: #F3E4C3;
  --font-display: "Playfair Display", Georgia, 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(--bg);
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  color: var(--white);
  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: rgba(11,11,11,0.95);
  border-bottom: 1px solid rgba(242,166,42,0.35);
}
.header-inner, .menu, .hero, .site-footer, .category-nav-inner {
  max-width: 720px; 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 { width: 44px; height: 44px; border-radius: 50%; }
.header-title { flex: 1; text-align: center; }
.header-title h1 {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--gold); letter-spacing: 0.08em;
}
.header-title span { display: block; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--cream); }
.header-actions { display: flex; gap: 6px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gold); display: grid; place-items: center;
  color: var(--gold); background: var(--bg-2);
}
.icon-btn svg { width: 18px; height: 18px; }
.hero { text-align: center; padding: 28px 16px 20px; }
.hero-logo { width: 96px; height: 96px; margin: 0 auto 12px; }
.hero h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); }
.hero p { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-top: 6px; }
.category-nav {
  position: sticky; top: var(--header-h); z-index: 90;
  background: var(--bg-2); border-bottom: 1px solid rgba(242,166,42,0.25);
}
.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-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--cream); white-space: nowrap; border-bottom: 2px solid transparent;
}
.category-nav a.active { color: var(--gold); border-color: var(--gold); }
.menu { padding: 8px 16px 32px; }
.menu-section { padding: 22px 0 8px; scroll-margin-top: calc(var(--header-h) + var(--nav-h) + 8px); }
.section-title {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
  text-align: center; margin-bottom: 14px;
}
.item { padding: 12px 0; border-bottom: 1px solid rgba(242,166,42,0.12); }
.item-row { display: flex; align-items: baseline; gap: 8px; }
.item-name { flex-shrink: 0; font-size: 0.9rem; font-weight: 600; color: var(--gold); max-width: 70%; }
.item-size { font-size: 0.75rem; color: var(--cream); font-weight: 400; }
.dots { flex: 1; border-bottom: 1px dotted rgba(242,166,42,0.5); transform: translateY(-3px); }
.price { flex-shrink: 0; font-weight: 700; color: var(--gold-light); white-space: nowrap; }
.desc { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 6px; line-height: 1.55; }
.prices-duo { display: flex; gap: 16px; margin-top: 6px; font-size: 0.8rem; color: var(--cream); }
.prices-duo strong { color: var(--gold); }
.grid-2 { display: grid; gap: 0; }
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 110;
  display: flex; justify-content: center;
  background: var(--bg); border-top: 1px solid var(--gold);
  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; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cream);
}
.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(--gold); }
.site-footer { text-align: center; padding: 20px 16px; font-size: 0.7rem; color: rgba(243,228,195,0.45); }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  body { padding-bottom: 0; }
  .bottom-bar { position: static; max-width: 720px; margin: 0 auto 24px; border: 1px solid var(--gold); }
}

.logo, .hero-logo { object-fit: contain; }

[hidden] { display: none !important; }

