/* ===================== Groovy Garden — public menu ===================== */
:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f4efe7;
  --ink: #23201c;
  --ink-soft: #756c5f;
  --ink-faint: #a99f90;
  --line: #ece5da;

  /* Brand palette — from the Groovy Garden cafemusicbar logo (Instagram): amber + deep indigo-navy. */
  --orange: #e88c2e;
  --orange-strong: #cf7317;
  --orange-tint: #fbead2;

  --navy: #232251;
  --navy-strong: #171636;
  --navy-tint: #eceaf4;

  --ok: #2f8f57;
  --shadow-sm: 0 2px 8px rgba(40, 28, 10, 0.06);
  --shadow: 0 8px 26px rgba(40, 28, 10, 0.1), 0 2px 6px rgba(40, 28, 10, 0.05);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --maxw: 1080px;
  --header-h: 60px;
  --nav-h: 66px;

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  overscroll-behavior-y: none;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* ---------------- header ---------------- */
.header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header-h);
  background: rgba(255, 253, 250, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 12px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -0.02em; font-size: 1.12rem; color: var(--ink); text-decoration: none; }
.brand .logo { display: inline-flex; flex: none; }
.brand .logo img { display: block; width: 38px; height: 38px; border-radius: 11px; box-shadow: 0 1px 5px rgba(20, 16, 40, .22); }
.brand-name { white-space: nowrap; }
.brand .brand-sub { color: var(--ink-faint); font-weight: 600; font-size: .72rem; letter-spacing: .02em; white-space: nowrap; }
@media (max-width: 560px) { .brand .brand-sub { display: none; } }
.header-spacer { flex: 1; }

.top-tabs { display: none; gap: 4px; }
.top-tabs .tab { padding: 8px 16px; border-radius: 999px; font-weight: 650; color: var(--ink-soft); font-size: .95rem; }
.top-tabs .tab.active { background: var(--orange-tint); color: var(--orange-strong); }

/* language switch */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 650; font-size: .9rem; box-shadow: var(--shadow-sm);
}
.lang-btn .globe { width: 16px; height: 16px; color: var(--navy); }
.lang-btn .chev { width: 14px; height: 14px; color: var(--ink-faint); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 6px; min-width: 180px; z-index: 60;
  max-height: 60vh; overflow: auto;
}
.lang-menu button {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 9px; font-size: .92rem; text-align: start;
}
.lang-menu button:hover { background: var(--surface-2); }
.lang-menu button.active { color: var(--orange-strong); font-weight: 700; }
.lang-menu .code { color: var(--ink-faint); font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; }
[hidden] { display: none !important; }

/* ---------------- view / sections ---------------- */
main { padding-bottom: calc(var(--nav-h) + 20px); }
.section-title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin: 18px 0 2px; }
.section-cap { color: var(--ink-soft); font-size: .92rem; margin-bottom: 12px; }

/* ---------------- banners carousel ---------------- */
.carousel { margin-top: 14px; }
.slides {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px;
}
.slides::-webkit-scrollbar { display: none; }
.slide {
  position: relative; flex: 0 0 100%; scroll-snap-align: center;
  height: 178px; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20, 12, 4, .72) 0%, rgba(20, 12, 4, .38) 45%, rgba(20, 12, 4, .05) 100%);
}
.slide .slide-txt { position: absolute; inset-inline-start: 20px; bottom: 18px; inset-inline-end: 20px; color: #fff; }
.slide .pill {
  display: inline-block; background: var(--orange); color: #fff; font-weight: 700;
  font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; margin-bottom: 8px;
}
.slide h3 { margin: 0 0 3px; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.slide p { margin: 0; font-size: .9rem; opacity: .92; max-width: 30ch; }
.dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.dots button { width: 7px; height: 7px; border-radius: 999px; background: var(--line); transition: all .2s; }
.dots button.active { width: 20px; background: var(--orange); }

/* ---------------- category tiles ---------------- */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 6px; }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); text-align: start;
  transition: transform .16s ease, box-shadow .16s ease; background: var(--surface-2);
}
.tile:active { transform: scale(.98); }
.tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tile::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .07); pointer-events: none; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile .noimg { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2rem;
  background: linear-gradient(135deg, var(--navy-tint), var(--orange-tint)); }
/* Wolt photos are food on white plates on white — a stronger veil keeps tiles from reading as one flat sheet. */
.tile .veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12, 8, 2, .88) 0%, rgba(12, 8, 2, .40) 46%, rgba(12, 8, 2, .08) 100%); }
.tile .tile-txt { position: absolute; inset-inline: 12px; bottom: 11px; color: #fff; }
.tile .tile-txt .name { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em; line-height: 1.15; }
.tile .tile-txt .count { font-size: .76rem; opacity: .86; margin-top: 2px; }

/* ---------------- category detail ---------------- */
.subhead {
  position: sticky; top: var(--header-h); z-index: 30;
  display: flex; align-items: center; gap: 10px; padding: 12px 0 10px;
  background: linear-gradient(var(--bg) 72%, rgba(250, 247, 242, 0));
}
.back-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px 8px 10px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); font-weight: 650; font-size: .9rem; }
.back-btn svg { width: 16px; height: 16px; }
[dir="rtl"] .back-btn svg { transform: scaleX(-1); }
.subhead h2 { margin: 0; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }

.dishes { display: flex; flex-direction: column; gap: 11px; margin-top: 2px; }
.dish {
  display: flex; gap: 13px; align-items: stretch; text-align: start; width: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 11px; box-shadow: var(--shadow-sm); transition: transform .14s, box-shadow .14s;
}
.dish:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.dish:active { transform: scale(.995); }
.dish .thumb { flex: 0 0 84px; width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.dish .thumb img { width: 100%; height: 100%; object-fit: cover; }
.dish .thumb .noimg { width: 100%; height: 100%; display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--navy-tint), var(--orange-tint)); }
.dish .body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dish .row1 { display: flex; align-items: baseline; gap: 8px; }
.dish .dish-name { font-weight: 750; font-size: 1.02rem; letter-spacing: -0.01em; }
.dish .desc { color: var(--ink-soft); font-size: .86rem; margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish .foot { margin-top: auto; padding-top: 7px; display: flex; align-items: center; gap: 9px; }

/* badges */
.badges { display: inline-flex; flex-wrap: wrap; gap: 5px; }
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 650;
  background: var(--surface-2); color: var(--ink-soft); padding: 2px 8px; border-radius: 999px; }
.badge .em { font-size: .82rem; }
.badge.solo { padding: 2px 6px; }

/* price */
.price { font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.price.promo { color: var(--orange-strong); }
.price .was { color: var(--ink-faint); font-weight: 600; text-decoration: line-through; font-size: .84rem; margin-inline-end: 6px; }
.save-pill { background: var(--ok); color: #fff; font-weight: 700; font-size: .64rem; letter-spacing: .04em;
  padding: 2px 7px; border-radius: 999px; text-transform: uppercase; }

/* ---------------- events ---------------- */
.events { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.event {
  display: flex; gap: 13px; text-align: start; width: 100%; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px; box-shadow: var(--shadow-sm); transition: transform .14s, box-shadow .14s;
}
.event:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.datechip {
  flex: 0 0 58px; height: 62px; border-radius: var(--radius-sm); display: grid; place-content: center; text-align: center;
  background: var(--navy-tint); color: var(--navy-strong); align-self: flex-start;
}
.datechip .d { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.datechip .m { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.event .e-body { flex: 1; min-width: 0; }
.event .e-title { font-weight: 750; font-size: 1.05rem; letter-spacing: -0.01em; }
.event .e-time { color: var(--navy-strong); font-weight: 650; font-size: .82rem; margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.event .e-time svg { width: 15px; height: 15px; flex: none; }
.event .e-desc { color: var(--ink-soft); font-size: .87rem; margin-top: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event .e-thumb { flex: 0 0 70px; width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; align-self: center; }
.event .e-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- bottom nav ---------------- */
.bottom-nav {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 45; height: var(--nav-h);
  background: rgba(255, 253, 250, 0.9); backdrop-filter: blur(12px) saturate(1.3);
  border-top: 1px solid var(--line); display: flex; padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav button { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: var(--ink-faint); font-size: .72rem; font-weight: 650; }
.bottom-nav button svg { width: 23px; height: 23px; }
.bottom-nav button.active { color: var(--orange); }

/* ---------------- modal / sheet ---------------- */
/* height in dvh so the sheet fits the *visible* viewport on mobile Safari (vh ignores the URL bar
   and would push the sheet's top — and its close button — off-screen). */
.scrim { position: fixed; inset: 0; height: 100dvh; z-index: 70; background: rgba(20, 14, 6, .5);
  display: flex; align-items: flex-end; justify-content: center; animation: fade .18s ease; }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { transform: translateY(28px); opacity: .6; } }
.sheet {
  position: relative; width: 100%; max-width: 560px; max-height: 92vh; max-height: 90dvh; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -10px 40px rgba(20, 14, 6, .28); animation: rise .22s cubic-bezier(.2, .7, .2, 1);
}
.sheet-scroll { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.sheet .hero { position: relative; width: 100%; aspect-ratio: 16 / 11; max-height: 40vh; background: var(--surface-2); }
.sheet .hero img { width: 100%; height: 100%; object-fit: cover; }
.sheet .hero .noimg { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem;
  background: linear-gradient(135deg, var(--navy-tint), var(--orange-tint)); }
.sheet-close { position: absolute; top: 12px; inset-inline-end: 12px; z-index: 5; width: 40px; height: 40px; border-radius: 999px;
  background: rgba(22, 17, 9, .58); color: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  display: grid; place-items: center; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.sheet-close:hover { background: rgba(22, 17, 9, .78); }
.sheet-close svg { width: 20px; height: 20px; }
/* mobile grab handle — a clear "this is a dismissable sheet" cue */
.sheet-grab { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); z-index: 6;
  width: 42px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, .85); box-shadow: 0 1px 3px rgba(0, 0, 0, .45); }
.sheet-body { padding: 18px 20px 26px; }
.sheet-body h2 { margin: 0 0 6px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.sheet-body .desc { color: var(--ink-soft); font-size: .96rem; white-space: pre-line; margin-top: 8px; }
.sheet-price { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 1.25rem; }
.sheet-price .price { font-size: 1.35rem; }

.modifiers { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.mod-group { margin-bottom: 14px; }
.mod-group .mg-name { font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.mod-group .req { font-size: .66rem; font-weight: 700; color: var(--navy-strong); background: var(--navy-tint);
  padding: 2px 7px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.mod-values { display: flex; flex-direction: column; gap: 4px; margin-top: 7px; }
.mod-values .mv { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-soft);
  padding: 5px 0; border-bottom: 1px dashed var(--line); }
.mod-values .mv .mv-price { font-weight: 650; color: var(--ink); }
.mod-note { color: var(--ink-faint); font-size: .8rem; margin-top: 4px; }

.event-meta { display: flex; align-items: center; gap: 8px; color: var(--navy-strong); font-weight: 650; margin-top: 4px; }
.event-meta svg { width: 17px; height: 17px; }

/* ---------------- empty / misc ---------------- */
.empty { text-align: center; color: var(--ink-soft); padding: 48px 20px; }
.empty .em { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.site-footer { text-align: center; padding: 28px 0 12px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.site-footer .ig-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.site-footer .ig-link:hover { color: var(--orange-strong); border-color: var(--orange-tint); }
.site-footer .ig-link svg { width: 18px; height: 18px; }
.site-footer .f-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; color: var(--ink-soft); font-size: .84rem; }
.site-footer .f-meta span, .site-footer .f-meta a { display: inline-flex; align-items: center; gap: 6px; color: inherit; text-decoration: none; }
.site-footer .f-meta svg { width: 14px; height: 14px; flex: none; }
.site-footer .f-name { color: var(--ink-faint); font-size: .78rem; }

/* ---------------- desktop ---------------- */
@media (min-width: 720px) {
  :root { --header-h: 66px; }
  .top-tabs { display: flex; }
  .bottom-nav { display: none; }
  main { padding-bottom: 40px; }
  .tiles { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .slide { height: 260px; flex-basis: calc(50% - 6px); }
  .slide.only { flex-basis: 100%; }
  .dishes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section-title { font-size: 1.6rem; }
  .scrim { align-items: center; }
  .sheet { border-radius: var(--radius-lg); max-height: 88vh; max-height: 88dvh; }
  .sheet-grab { display: none; }
}
@media (min-width: 1000px) {
  .tiles { grid-template-columns: repeat(4, 1fr); }
  .slide { flex-basis: calc(33.333% - 8px); }
}
