/* menu page — extracted from app styles */

@font-face {
  font-family: 'Giveaway';
  src: url('/fonts/Giveaway/giveaway.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  /*
   * “Page” = one fixed-size artboard in *design* pixels (Figma, etc.) — not a 1080p/4K
   * screen mode. The odd numbers (1475×3187) are just whatever the original frame
   * was. Every .frame-root padding and font size in this file is in that same space;
   * if you want e.g. 1080×1920 or 3:4, the layout and assets need a real redesign —
   * you cannot only swap these two variables without re-flowing all measurements.
   * Aspect ≈ 0.46 (tall; common story-style frames are 9:16 ≈ 0.56, so this is a bit narrower).
   */
  --page-w: 1475px;
  --page-h: 3187px;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-title: 'Shadows Into Light Two', cursive;
  --font-giveaway: 'Giveaway', Georgia, serif;
  --text: #000;
  --muted: #dbdbdb;
}
*, *::before, *::after { box-sizing: border-box; }
html {
  background: #f2f2f2;
}
body {
  margin: 0;
  background: #f2f2f2;
  color: var(--text);
  font-family: var(--font-body);
}
/*
 * Stacked “slides”: each .page-outer *wraps* the scaled Figma artboard (no fixed 100vh
 * between cards — that caused gaps on narrow screens when scale was width-limited).
 * --s = contain: min(by inner width, by viewport height). Inherits into .page.
 * cqw = real inner width; height term uses 100svh (stable) — cqh is wrong here once
 * outer no longer has a fixed height.
 */
.page-stack {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: clip;
}
.page-outer {
  /* contain scale; children read var(--s) */
  --s: min(100svw / var(--page-w), 100svh / var(--page-h));
  min-height: calc(var(--page-h) * var(--s));
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #f2f2f2;
  overflow: hidden;
  overflow: clip;
}
@supports (width: 1cqw) {
  .page-outer {
    container-type: inline-size;
    --s: min(100cqw / var(--page-w), 100svh / var(--page-h));
  }
}
/*
 * Centered in .page-outer; scale from inherited --s.
 */
.page {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--page-w);
  height: var(--page-h);
  box-sizing: border-box;
  transform: translate(-50%, -50%) scale(var(--s));
  transform-origin: center center;
  background: #f2f2f2;
  color: var(--text);
  border-radius: 0;
  overflow: hidden;
  background-clip: padding-box;
}
/* Shared frame inner layout (see `src/pages/*.tsx`) */
.frame-root {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 150px 180px 220px;
}
.frame-root--b200 {
  padding: 150px 180px 200px;
}
.frame-root--b140 {
  padding: 150px 180px 140px;
}
.frame-root--end {
  align-items: flex-end;
}
.frame-root--center {
  align-items: center;
}
.frame-gallery-bleed {
  padding: 150px 180px;
  height: 100%;
}
.f-row {
  display: flex;
}
.f-col {
  display: flex;
  flex-direction: column;
}
.flex-1 {
  flex: 1;
}
.items-end {
  align-items: flex-end;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-start {
  justify-content: flex-start;
}
.w-100 {
  width: 100%;
}
.h-full {
  height: 100%;
}
.min-h-0 {
  min-height: 0;
}
.min-h-420 {
  min-height: 420px;
}
.min-h-520 {
  min-height: 520px;
}
.min-h-620 {
  min-height: 620px;
}
.rel {
  position: relative;
}
.frame-media {
  position: relative;
  overflow: hidden;
}
.mt-auto {
  margin-top: auto;
}
.mt-24 {
  margin-top: 24px;
}
.mt-160 {
  margin-top: 160px;
}
.mt-320 {
  margin-top: 320px;
}
.tar {
  text-align: right;
}
.lh-14 {
  line-height: 1.4;
}
.lh-145 {
  line-height: 1.45;
}
.fs-36 {
  font-size: 36px;
}
.fs-48 {
  font-size: 48px;
}
.gap-8 {
  gap: 8px;
}
.gap-14 {
  gap: 14px;
}
.gap-16 {
  gap: 16px;
}
.gap-18 {
  gap: 18px;
}
.gap-24 {
  gap: 24px;
}
.gap-26 {
  gap: 26px;
}
.gap-27 {
  gap: 27px;
}
.gap-28 {
  gap: 28px;
}
.gap-32 {
  gap: 32px;
}
.gap-36 {
  gap: 36px;
}
.gap-40 {
  gap: 40px;
}
.gap-42 {
  gap: 42px;
}
.gap-48 {
  gap: 48px;
}
.gap-50 {
  gap: 50px;
}
.gap-52 {
  gap: 52px;
}
.gap-56 {
  gap: 56px;
}
.gap-64 {
  gap: 64px;
}
.gap-160 {
  gap: 160px;
}
.mw-400 {
  max-width: 400px;
}
.mw-609 {
  max-width: 609px;
}
.mw-631 {
  max-width: 631px;
}
.mw-645 {
  max-width: 645px;
}
.mw-807 {
  max-width: 807px;
}
.mw-1087 {
  max-width: 1087px;
}
.t-label {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.t-label--48 {
  font-size: 48px;
  line-height: 1.2;
  max-width: 1115px;
}
.t-label--64 {
  font-size: 64px;
  line-height: 1.15;
}
.t-title {
  font-family: var(--font-title);
  font-weight: 400;
  margin: 0;
  text-align: right;
  font-size: 132px;
  line-height: 1;
  width: 100%;
  box-sizing: border-box;
}
.page-outer[data-page='intro'] .t-title {
  font-size: 190px;
  line-height: 1.05;
}
.page-outer[data-page='arrivals'] .t-title {
  line-height: 0.95;
}
.page-outer[data-page='flowers'] .t-title {
  line-height: 1.05;
  white-space: pre-line;
}
.page-outer[data-page='shisha'] .t-title {
  font-size: 112px;
  max-width: 640px;
}
.page-outer[data-page='fireworks'] .t-title {
  font-size: 120px;
}
.page-outer[data-page='longTable'] .f-col.gap-26.fs-36 {
  align-self: stretch;
}
.page-outer[data-page='events'] .f-col.gap-160 {
  align-self: stretch;
}
.f11-split {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 8px;
}
.f11-split__hero {
  width: 50%;
  height: 1220px;
  position: relative;
  overflow: hidden;
}
.f11-split__col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: right;
  font-size: 34px;
}
.f11-fw-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.page-outer[data-page='team'] .t-title {
  font-size: 120px;
  line-height: 1.05;
}
.t-body {
  font-family: var(--font-body);
  font-weight: 500;
  /* font-style: italic; */
  font-size: 36px;
  line-height: 1.45;
  opacity: 0.8;
}
.page-outer[data-page='intro'] .t-body {
  line-height: 1.32;
}
.t-body--right {
  text-align: right;
}
.t-body--sm {
  font-size: 34px;
}
.t-body--opaque {
  opacity: 1;
}
.t-body--fs-inherit {
  font-size: inherit;
}
.t-body--lh-inherit {
  line-height: inherit;
}
.mw-542 {
  max-width: 542px;
}
.mw-602 {
  max-width: 602px;
}
.mw-724 {
  max-width: 724px;
}
.mw-728 {
  max-width: 728px;
}
.mw-910 {
  max-width: 910px;
}
.mw-958 {
  max-width: 958px;
}
.mw-1115 {
  max-width: 1115px;
}
.mw-1130 {
  max-width: 1130px;
}
.as-fe {
  align-self: flex-end;
}
.as-center {
  align-self: center;
}
.mt-18 {
  margin-top: 18px;
}
.mt-6 {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.price {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: italic;
  font-size: 36px;
}
.price--30 {
  font-size: 30px;
}
.price--34 {
  font-size: 34px;
}
.t-giveaway {
  font-family: var(--font-giveaway);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.tax-foot {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: italic;
}
.abs { position: absolute; }
.foot-tax {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 1130px;
  max-width: calc(100% - 360px);
  text-align: center;
}
.foot-tax .tax-foot {
  margin: 0;
  font-size: 31px;
  line-height: 1.32;
  letter-spacing: -0.03em;
}
.foot-tax .tax-foot + .tax-foot {
  margin-top: 0.35em;
}
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nw { white-space: pre-line; }

.dev-page-num {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  min-width: 2.25em;
  padding: 8px 14px;
  border-radius: 10px;
  font: 700 44px/1 var(--font-body);
  font-style: normal;
  color: #b00020;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  text-align: center;
}

/* —— wish list (client UI; hearts sit inside scaled pages, FAB/drawer fixed to viewport) —— */
body.wish-noscroll {
  overflow: hidden;
}
.wish-heart {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.wish-heart:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.wish-heart--on {
  color: #b00020;
}
.wish-heart__ic {
  width: 28px;
  height: 28px;
  display: block;
}
.wish-fab {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 200;
}
.wish-fab[hidden] {
  display: none !important;
}
.wish-fab--empty .wish-fab__count {
  display: none;
}
.wish-fab--empty .wish-fab__btn {
  padding: 14px;
  min-width: 72px;
  justify-content: center;
}
.wish-fab__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  padding: 10px 14px 10px 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #b00020;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  font: 600 17px/1.1 var(--font-body);
}
.wish-fab__btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.wish-fab__ic {
  width: 44px;
  height: 44px;
  display: block;
}
.wish-fab__count {
  min-width: 1.25em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-size: 1em;
  color: #000;
}
.wish-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0, 0, 0, 0.35);
}
.wish-backdrop[hidden] {
  display: none !important;
}
.wish-drawer {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.wish-drawer[hidden] {
  display: none !important;
}
.wish-drawer__panel {
  pointer-events: auto;
  width: 100%;
  max-width: 480px;
  max-height: min(88vh, 720px);
  margin: 0;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-body);
}
@media (min-width: 720px) {
  .wish-drawer {
    align-items: stretch;
    justify-content: flex-end;
  }
  .wish-drawer__panel {
    width: 420px;
    max-height: 100vh;
    margin: 0;
    padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
    border-radius: 0;
    align-self: stretch;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  }
}
.wish-drawer__head {
  align-items: flex-start;
  gap: 10px;
}
.wish-drawer__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  flex: 1;
  min-width: 0;
}
.wish-drawer__x {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #000;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.wish-drawer__x:focus-visible,
.wish-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.wish-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  max-height: 40vh;
}
.wish-drawer__li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  line-height: 1.35;
}
.wish-drawer__item-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.wish-drawer__rm {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #f2f2f2;
  color: #000;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.wish-drawer__empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 8px 4px;
}
.wish-drawer__empty-state[hidden] {
  display: none !important;
}
.wish-drawer__empty-ic {
  width: 44px;
  height: 44px;
  color: rgba(176, 0, 32, 0.3);
  flex: 0 0 auto;
}
.wish-drawer__empty-title {
  margin: 0;
  font: 600 0.95rem/1.3 var(--font-body);
  color: #222;
}
.wish-drawer__empty-body {
  margin: 0;
  font: 400 0.85rem/1.55 var(--font-body);
  color: #888;
  max-width: 26ch;
}
.wish-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.wish-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  font: 600 0.95rem/1.2 var(--font-body);
  cursor: pointer;
  border: none;
}
.wish-btn--primary {
  background: #0d9f2d;
  color: #fff;
}
.wish-btn--ghost {
  background: #f2f2f2;
  color: #000;
}
/* Heart sits on the right; extra gap for 2× hit target */
.page-outer .f-row:has(> .wish-heart) {
  gap: 24px;
}
.wish-line-title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
}
.wish-line-title__text {
  flex: 1;
  min-width: 0;
  text-align: right;
}

/* —— wish list tour / onboarding hint —— */
.wish-tour {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(100px, calc(env(safe-area-inset-bottom) + 88px));
  z-index: 300;
  max-width: 232px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: wish-tour-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.wish-tour--out {
  animation: wish-tour-out 0.28s ease forwards;
}
@keyframes wish-tour-in {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes wish-tour-out {
  to { opacity: 0; transform: translateY(12px) scale(0.94); }
}
.wish-tour__body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.wish-tour__ic {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #b00020;
  margin-top: 1px;
}
.wish-tour__text {
  margin: 0;
  font: 500 13px/1.5 var(--font-body);
  color: #222;
}
.wish-tour__btn {
  align-self: flex-end;
  padding: 7px 16px;
  border: none;
  border-radius: 99px;
  background: #b00020;
  color: #fff;
  font: 600 12px/1 var(--font-body);
  cursor: pointer;
  transition: opacity 0.15s;
}
.wish-tour__btn:hover,
.wish-tour__btn:focus-visible {
  opacity: 0.82;
}
.wish-tour__btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
/* highlight hearts while the tour card is visible */
.wish-heart--tour {
  outline: 2px solid rgba(176, 0, 32, 0.6);
  outline-offset: 2px;
}

/* —— print: one menu frame per A4 sheet (contain scale) —— */
@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
  html,
  body {
    background: #fff !important;
  }
  body {
    overflow: visible !important;
  }
  body.wish-noscroll {
    overflow: visible !important;
  }
  .page-stack {
    overflow: visible;
  }
  .page-outer {
    container-type: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fit tall artboard inside printable A4 area (width and height) */
    --s: min(100vw / var(--page-w), 100vh / var(--page-h));
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: #fff;
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: page;
    page-break-after: always;
  }
  .page {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 auto;
    /* zoom shrinks layout box for print; transform: scale() does not */
    transform: none;
    zoom: var(--s);
    background: #fff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .page-outer:last-child {
    break-after: auto;
    page-break-after: auto;
  }
  .hero-img,
  .frame-media img {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .dev-page-num,
  .wish-fab,
  .wish-backdrop,
  .wish-drawer,
  .wish-tour,
  .wish-heart {
    display: none !important;
  }
  .page-outer .f-row:has(> .wish-heart) {
    gap: 0;
  }
  .wish-line-title {
    gap: 0;
  }
}