/* Hungry Bunny — landing card + intro splash */

/* ═══ Warren palette (shared across landing · hero · menu) ═══ */
.hungry-bunny-card,
#menu-page.hungry-bunny-theme,
body.hungry-bunny-menu-active,
#hungry-bunny-hero-page {
  --hb-ink: #141210;
  --hb-burrow: #1c1814;
  --hb-cream: #faf6ef;
  --hb-cream-deep: #ede5d8;
  --hb-accent: #e8956a;
  --hb-accent-deep: #c4714a;
  --hb-accent-light: #f0b892;
  --hb-accent-soft: rgba(232, 149, 106, 0.12);
  --hb-accent-border: rgba(196, 113, 74, 0.24);
  --hb-text: #2a2420;
  --hb-text-muted: #7a7268;
  --hb-line: rgba(42, 36, 32, 0.08);
  --hb-on-dark: #f5f0e8;
  --hb-on-dark-muted: rgba(245, 240, 232, 0.54);
  --hb-carrot: var(--hb-accent);
  --hb-carrot-deep: var(--hb-accent-deep);
  --hb-copper: var(--hb-accent);
  --hb-copper-deep: var(--hb-accent-deep);
}

.hungry-bunny-card {
  --delay: 0.4s;
  --card-accent: var(--hb-accent-deep);
  animation-delay: var(--delay);
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card:not(.custom-color-card) {
  background: linear-gradient(165deg, var(--hb-burrow) 0%, var(--hb-ink) 100%);
  border-color: var(--hb-accent-border);
  color: var(--hb-on-dark);
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card .venue-tagline,
body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card .tap-hint {
  color: var(--hb-on-dark-muted);
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card .venue-badge {
  background: var(--hb-accent-soft);
  color: var(--hb-accent-light);
  border-color: var(--hb-accent-border);
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .shimmer-hungry-bunny {
  animation: none;
  background: linear-gradient(135deg, var(--hb-accent-light), var(--hb-accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Modern View Menu CTA (landing + hero) ── */
.enter-btn--hb-modern,
.hb-btn--modern {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.38rem 0.38rem 0.38rem 0.62rem;
  border: none;
  border-radius: 999px;
  background: var(--hb-cream);
  color: var(--hb-text);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.2;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 28px rgba(20, 18, 16, 0.22);
  cursor: pointer;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.enter-btn--hb-modern .enter-btn-icon,
.hb-btn--modern .enter-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-accent-deep);
  opacity: 0.88;
}

.enter-btn--hb-modern .enter-btn-text,
.hb-btn--modern .enter-btn-text {
  white-space: nowrap;
}

.enter-btn--hb-modern .enter-btn-go,
.hb-btn--modern .enter-btn-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--hb-accent) 0%, var(--hb-accent-deep) 100%);
  color: var(--hb-on-dark);
  box-shadow: 0 4px 14px rgba(196, 113, 74, 0.35);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.enter-btn--hb-modern .enter-btn-go-svg,
.hb-btn--modern .enter-btn-go-svg {
  display: block;
}

html[dir="rtl"] .enter-btn--hb-modern .enter-btn-go-svg,
html[dir="rtl"] .hb-btn--modern .enter-btn-go-svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .enter-btn--hb-modern,
html[dir="rtl"] .hb-btn--modern {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  padding: 0.38rem 0.62rem 0.38rem 0.38rem;
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card:hover .enter-btn--hb-modern,
body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card:focus-visible .enter-btn--hb-modern {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 16px 36px rgba(20, 18, 16, 0.28);
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card:hover .enter-btn--hb-modern .enter-btn-go,
body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card:focus-visible .enter-btn--hb-modern .enter-btn-go {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(196, 113, 74, 0.45);
}

.hb-btn--modern {
  margin-top: 0;
  min-height: unset;
  min-width: unset;
  padding: 0.4rem 0.4rem 0.4rem 0.68rem;
  font-size: 0.95rem;
}

.hb-btn--modern:hover,
.hb-btn--modern:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 18px 40px rgba(20, 18, 16, 0.32);
  outline: none;
}

.hb-btn--modern:hover .enter-btn-go,
.hb-btn--modern:focus-visible .enter-btn-go {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(196, 113, 74, 0.45);
}

.hb-btn--modern::before,
.hb-btn--modern::after {
  display: none;
}

.hb-btn--modern.hb-btn-primary {
  background: var(--hb-cream);
  color: var(--hb-text);
  border: none;
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-card .logo-ring::before {
  display: none;
}

body:not(.icapi-hero-active):not(.hungry-bunny-hero-active) .hungry-bunny-glow {
  background: rgba(232, 149, 106, 0.2);
}

.logo-wrapper.hungry-bunny-logo-wrapper {
  border: none;
  background: transparent;
  box-shadow: none;
}

.hungry-bunny-logo-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hungry-bunny-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.top-bar-brand-logo.hungry-bunny-logo-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  flex-shrink: 0;
}

.menu-header-logo.hungry-bunny-logo-img {
  width: 76px;
  height: 76px;
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  object-fit: contain;
}

/* Intro splash */
#hungry-bunny-hero-page {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--hb-ink);
  isolation: isolate;
}

#hungry-bunny-hero-page.active {
  display: block;
}

.hb-hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hb-hero-media-wrap .hb-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.hungry-bunny-hero-active {
  background: var(--hb-ink);
}

body.hungry-bunny-hero-active #app {
  padding-top: 0;
}

body.hungry-bunny-hero-active .top-bar {
  display: none;
}

.hb-hero-back {
  display: none;
}

.hb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1.25rem 2.5rem;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hb-hero-overlay .hb-btn {
  pointer-events: auto;
}

.hb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  min-width: 11.5rem;
  padding: 0.82rem 1.65rem;
  border-radius: 999px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.hb-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hb-btn .arrow-icon {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hb-btn-primary {
  background: linear-gradient(135deg, var(--hb-accent) 0%, var(--hb-accent-deep) 100%);
  color: var(--hb-on-dark);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 32px rgba(196, 113, 74, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hb-btn-primary:hover,
.hb-btn-primary:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f0a878 0%, var(--hb-accent-deep) 100%);
  box-shadow:
    0 14px 36px rgba(196, 113, 74, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  outline: none;
}

.hb-btn-primary:hover::before,
.hb-btn-primary:focus-visible::before {
  transform: translateX(130%);
}

.hb-btn-primary:hover .arrow-icon,
.hb-btn-primary:focus-visible .arrow-icon {
  transform: translateX(4px);
}

html[dir="rtl"] .hb-btn {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  letter-spacing: 0.04em;
  text-transform: none;
}

html[dir="rtl"] .hb-btn-primary:hover .arrow-icon,
html[dir="rtl"] .hb-btn-primary:focus-visible .arrow-icon {
  transform: scaleX(-1) translateX(4px);
}

/* Menu page — The Warren (Hungry Bunny) */

#menu-page.hungry-bunny-theme {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, var(--hb-accent-soft) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 20% 100%, rgba(196, 113, 74, 0.06) 0%, transparent 50%),
    var(--hb-ink);
  color: var(--hb-text);
  min-height: calc(100dvh - var(--header-offset));
  padding-bottom: 2.5rem;
}

body.hungry-bunny-menu-active {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, var(--hb-accent-soft) 0%, transparent 60%),
    var(--hb-ink);
}

#menu-page.hungry-bunny-theme .menu-content.hb-gastro-content {
  max-width: none;
  margin: 0;
  padding: 0 1rem 0;
}

#menu-page.hungry-bunny-theme .hb-gastro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hb-gastro {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0 0;
}

.hb-gastro-stage {
  position: relative;
  flex: 1;
  max-width: 42rem;
  margin-inline: auto;
  width: 100%;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hb-gastro-stage.is-changing {
  opacity: 0.45;
  transform: translateY(4px);
}

.hb-gastro-panel {
  position: relative;
  width: 100%;
  background: var(--hb-cream);
  border: 1px solid var(--hb-accent-border);
  border-radius: 18px;
  box-shadow:
    0 16px 48px rgba(20, 18, 16, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  overflow: visible;
}

.hb-hero-ledge {
  position: relative;
  width: 100%;
  margin: 0.55rem 0 0.15rem;
  padding-top: 4.25rem;
  border-bottom: 1px solid var(--hb-accent-border);
}

.hb-hero-ledge .hb-cartoon-bunny {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(40vw, 156px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  transform-origin: center bottom;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
  animation: hbCartoonPeek 5s ease-in-out infinite;
}

@keyframes hbCartoonPeek {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(3px);
  }
}

.hb-gastro-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 55%;
  background: radial-gradient(ellipse, var(--hb-accent-soft) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hb-gastro-page {
  position: relative;
  z-index: 1;
  overflow: visible;
  border-radius: 18px;
}

.hb-gastro-page {
  display: none;
}

.hb-gastro-page.active {
  display: block;
  animation: hbGastroReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hbGastroReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hb-gastro-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1.25rem 1.5rem 1.15rem;
  border-bottom: 1px solid var(--hb-line);
  text-align: start;
  overflow: visible;
}

.hb-gastro-index {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hb-accent-deep);
  line-height: 1;
  padding-bottom: 0;
}

.hb-gastro-cat-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--hb-text);
  line-height: 1.15;
}

.hb-gastro-cat-sub {
  margin: 0.25rem 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-text-muted);
  max-width: 28rem;
  line-height: 1.45;
}

html[dir="rtl"] .hb-gastro-cat-title {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] .hb-gastro-cat-sub {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  letter-spacing: 0.06em;
  text-transform: none;
}

.hb-gastro-list {
  display: flex;
  flex-direction: column;
}

.hb-gastro-item {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--hb-line);
}

.hb-gastro-item-media {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--hb-cream-deep);
  box-shadow: 0 2px 10px rgba(42, 36, 32, 0.06);
  border: 1px solid var(--hb-line);
}

.hb-gastro-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hb-gastro-item-image.is-placeholder {
  object-fit: contain;
  padding: 0.5rem;
  opacity: 0.45;
}

.hb-gastro-item:last-child {
  border-bottom: none;
}

.hb-gastro-item-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hb-gastro-item-name {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--hb-text);
}

.hb-gastro-item-desc {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--hb-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hb-gastro-item-pricing {
  margin-top: 0.1rem;
}

.hb-stack-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0.12rem;
  padding: 0.22rem 0.48rem;
  border: 1px solid var(--hb-accent-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--hb-cream) 88%, var(--hb-accent) 12%);
  color: var(--hb-accent-deep);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.hb-stack-peek {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.hb-stack-peek-icon {
  font-size: 0.74rem;
  line-height: 1;
  margin-inline-start: -0.12rem;
}

.hb-stack-peek-icon:first-child {
  margin-inline-start: 0;
}

.hb-stack-peek-more {
  margin-inline-start: 0.12rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--hb-accent);
}

.hb-stack-toggle-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hb-stack-count {
  flex: 0 0 auto;
  min-width: 1.1rem;
  padding: 0.08rem 0.28rem;
  border-radius: 999px;
  background: var(--hb-accent-soft);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hb-accent-deep);
}

.hb-stack-chevron {
  flex: 0 0 auto;
  font-size: 0.58rem;
  opacity: 0.55;
  color: var(--hb-accent-deep);
  transition: transform 0.2s ease;
}

.hb-stack-toggle:hover,
.hb-stack-toggle:focus-visible {
  background: color-mix(in srgb, var(--hb-cream) 75%, var(--hb-accent) 25%);
  border-color: color-mix(in srgb, var(--hb-accent-border) 100%, var(--hb-accent-deep) 20%);
  outline: none;
}

.hb-gastro-item.is-stack-open .hb-stack-toggle {
  background: color-mix(in srgb, var(--hb-cream) 70%, var(--hb-accent) 30%);
  border-color: color-mix(in srgb, var(--hb-accent-deep) 35%, transparent);
}

.hb-gastro-item.is-stack-open .hb-stack-chevron {
  transform: rotate(180deg);
}

.hb-stack-panel {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  border: 1px solid var(--hb-accent-border);
  background: color-mix(in srgb, var(--hb-cream) 92%, var(--hb-accent) 8%);
  box-shadow: 0 6px 16px rgba(42, 36, 32, 0.05);
  animation: hb-stack-reveal 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hb-stack-panel[hidden] {
  display: none !important;
}

.hb-stack-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  padding-block: 0.15rem;
}

.hb-stack-layer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
  width: min(var(--layer-width, 100%), 100%);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--layer-tone) 55%, #fff);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--layer-tone) 24%, #fff),
    rgba(255, 255, 255, 0.88)
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 6px 14px rgba(28, 25, 23, 0.05);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  animation: hb-stack-layer-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--layer-index) * 55ms);
}

.hb-stack-layer-icon {
  font-size: 1rem;
  line-height: 1;
}

.hb-stack-layer-name {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hb-text);
  letter-spacing: 0.01em;
}

.hb-gastro-item.has-stack.is-stack-open {
  padding-bottom: 0.95rem;
}

@keyframes hb-stack-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hb-stack-layer-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hb-stack-layer-in-x {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

html[dir="rtl"] .hb-stack-toggle,
html[dir="rtl"] .hb-stack-layer-name {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
}

html[dir="rtl"] .hb-stack-layer {
  grid-template-columns: 1fr auto;
}

html[dir="rtl"] .hb-stack-layer-icon {
  order: 2;
}

.hb-gastro-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
}

html[dir="rtl"] .hb-gastro-item-name {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
}

html[dir="rtl"] .hb-gastro-item-desc {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  line-height: 1.7;
}

.hb-gastro-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--hb-accent-border);
  border-radius: 999px;
  background: var(--hb-accent-soft);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hb-text);
  white-space: nowrap;
}

.hb-gastro-size {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hb-accent-deep);
}

.hb-gastro-amount {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.hb-gastro-amount--solo {
  font-size: 0.92rem;
}

.hb-gastro-currency {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hb-text-muted);
}

html[dir="rtl"] .hb-gastro-price-row,
html[dir="rtl"] .hb-gastro-price-pill,
html[dir="rtl"] .hb-gastro-currency {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
}

.hb-gastro-empty {
  padding: 3rem 1.75rem;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--hb-text-muted);
}

.hb-tabs-shell {
  position: relative;
}

#menu-page.hungry-bunny-theme .hb-tabs-shell {
  position: sticky;
  top: var(--header-offset);
  z-index: 90;
}

#menu-page.hungry-bunny-theme .hb-tabs-shell > .categories-nav {
  position: relative;
  top: auto;
}

#menu-page.hungry-bunny-theme .categories-nav.hb-gastro-tabs {
  background: transparent;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  padding: 1.1rem 1.25rem 0.85rem;
  gap: 0.15rem;
}

#menu-page.hungry-bunny-theme .hb-gastro-tabs .category-tab {
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--hb-on-dark-muted);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  box-shadow: none;
  position: relative;
}

html[dir="rtl"] #menu-page.hungry-bunny-theme .hb-gastro-tabs .category-tab {
  font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  letter-spacing: 0.04em;
  text-transform: none;
}

#menu-page.hungry-bunny-theme .hb-gastro-tabs .category-tab::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--hb-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#menu-page.hungry-bunny-theme .hb-gastro-tabs .category-tab.active {
  background: transparent;
  color: var(--hb-on-dark);
  transform: none;
  animation: hbHop 0.35s ease;
}

@keyframes hbHop {
  0% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

#menu-page.hungry-bunny-theme .hb-gastro-tabs .category-tab.active::after {
  transform: scaleX(1);
}

body.hungry-bunny-menu-active .top-bar {
  background: color-mix(in srgb, var(--hb-ink) 94%, transparent);
  border-bottom-color: rgba(245, 240, 232, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.hungry-bunny-menu-active .lang-switcher {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(245, 240, 232, 0.1);
}

body.hungry-bunny-menu-active .lang-btn {
  color: var(--hb-on-dark-muted);
}

body.hungry-bunny-menu-active .lang-btn.active {
  background: var(--hb-accent);
  color: var(--hb-ink);
}

body.hungry-bunny-menu-active .top-bar-title {
  color: var(--hb-on-dark);
}

body.hungry-bunny-menu-active .top-bar-tagline {
  color: var(--hb-on-dark-muted);
}

#menu-page.hungry-bunny-theme .menu-header {
  display: none;
}

#menu-page.hungry-bunny-theme .categories-nav {
  top: auto;
}

body.hungry-bunny-menu-active .top-bar-brand-logo.hungry-bunny-logo-img {
  width: 52px;
  height: 52px;
}

@media (max-width: 720px) {
  #menu-page.hungry-bunny-theme .menu-content.hb-gastro-content {
    padding-inline: 0.65rem;
  }

  .hb-gastro-hero {
    padding: 1.5rem 1.15rem 1.1rem;
  }

  .hb-gastro-item {
    grid-template-columns: 4.5rem 1fr;
    gap: 0.85rem;
    padding: 1.1rem 1.15rem;
  }

  .hb-gastro-item-media {
    width: 4.5rem;
    height: 4.5rem;
  }

  .hb-hero-ledge {
    padding-top: 3.65rem;
    margin-top: 0.4rem;
  }

  .hb-hero-ledge .hb-cartoon-bunny {
    width: min(44vw, 138px);
  }

  .hb-gastro-hero {
    padding: 1rem 1.15rem 1rem;
  }

  .hb-gastro {
    padding-top: 0.85rem;
  }

  .hb-gastro-cat-title {
    font-size: 1.65rem;
  }

  #menu-page.hungry-bunny-theme .categories-nav.hb-gastro-tabs {
    padding-inline: 0.75rem;
  }

  #menu-page.hungry-bunny-theme .hb-gastro-tabs .category-tab {
    padding-inline: 0.65rem;
    font-size: 0.72rem;
  }

  .hb-stack-toggle {
    padding: 0.18rem 0.4rem;
    gap: 0.3rem;
    font-size: 0.6rem;
  }

  .hb-stack-peek-icon {
    font-size: 0.68rem;
  }

  .hb-stack-panel {
    margin-top: 0.28rem;
    padding: 0.38rem 0.42rem;
  }

  .hb-stack-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem;
    overflow: visible;
    padding-block: 0;
  }

  .hb-stack-layer {
    flex: unset;
    width: 100%;
    max-width: none;
    min-width: 0;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    gap: 0.28rem;
    padding: 0.24rem 0.38rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(4px) scale(0.98);
    animation: hb-stack-layer-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--layer-index) * 35ms);
  }

  .hb-stack-layer-icon {
    font-size: 0.78rem;
  }

  .hb-stack-layer-name {
    font-size: 0.58rem;
    line-height: 1.25;
    text-align: start;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  html[dir="rtl"] .hb-stack-layer {
    grid-template-columns: auto 1fr;
  }

  html[dir="rtl"] .hb-stack-layer-icon {
    order: 0;
  }

  html[dir="rtl"] .hb-stack-layer-name {
    text-align: start;
  }

  .hb-gastro-item.has-stack.is-stack-open {
    padding-bottom: 0.85rem;
  }
}
