@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Marck+Script&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --bg: #f8f1e6;
  --bg-accent: #efe2d1;
  --surface: #fffbf7;
  --surface-2: #fffdf8;
  --ink: #2f241d;
  --muted: #706358;
  --line: rgba(86, 62, 39, 0.14);
  --accent: #d96835;
  --accent-2: #72c6c0;
  --shadow: 0 24px 50px rgba(66, 43, 18, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body.modal-open { overflow: hidden; }
.app-toast-container {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 24px));
}
.app-toast {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(47, 36, 29, 0.94);
  color: #fff9f1;
  box-shadow: 0 16px 38px rgba(34, 23, 15, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  line-height: 1.4;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}
.app-toast.is-hiding {
  opacity: 0;
  transform: translateY(8px);
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 104, 53, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(114, 198, 192, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg-accent), var(--bg));
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.shell {
  width: min(1240px, calc(100% - 24px));
  margin: 12px auto;
  padding: 8px 0 24px;
}

.shell-home { padding-top: 28px; }
.hero, .topbar, .hero-actions, .actions-grid, .mini-actions, .menu-categories, .stack, .field-row, .header-row, .request-meta, .table-actions {
  display: flex;
  gap: 16px;
}

.hero-copy, .hero-card, .panel, .soft-card {
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.hero { margin-bottom: 20px; }
.hero-copy { flex: 1.5; background: linear-gradient(145deg, rgba(79, 105, 67, 0.95), rgba(53, 73, 45, 0.92)); color: #fff9f1; }
.hero-card { flex: 1; }

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-copy .eyebrow { color: rgba(255, 249, 241, 0.76); }

h1, h2, h3, h4, p, ul { margin: 0; }
h1 { font-size: clamp(38px, 4.3vw, 64px); line-height: 0.95; margin-bottom: 14px; font-family: "Oswald", "Arial Narrow", sans-serif; }
h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; font-family: "Oswald", "Arial Narrow", sans-serif; }
h3 { font-size: 26px; margin-bottom: 10px; font-family: "Oswald", "Arial Narrow", sans-serif; }
h4 { font-size: 18px; }
p { line-height: 1.55; color: var(--muted); }
.hero-copy p, .hero-copy h1, .hero-copy h2 { color: inherit; }
.lead { max-width: 680px; font-size: 18px; }

.clean-list { padding-left: 18px; color: var(--muted); display: grid; gap: 8px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}
.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.18);
}

.button-primary, .status-button { color: #fff9f1; background: linear-gradient(180deg, var(--accent), #ad4618); }
.button-secondary { color: var(--ink); background: rgba(255, 255, 255, 0.75); border: 1px solid var(--line); }

.dashboard-grid, .layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.layout-grid { grid-template-columns: 1.15fr 0.85fr; }
.dashboard-grid { margin-bottom: 20px; }
.single-column {
  max-width: 760px;
  margin: 0 auto;
}
.login-panel {
  max-width: 420px;
  margin: 72px auto 0;
}

.text-link { color: var(--accent); font-weight: 700; }

.topbar { justify-content: space-between; align-items: center; margin-bottom: 18px; }
.brand { display: flex; flex-direction: column; gap: 4px; }
.brand-title { font-size: 28px; font-weight: 800; font-family: "Oswald", "Arial Narrow", sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.brand-subtitle { color: var(--muted); }
.topbar-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.pill-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.pill-link.active { background: var(--ink); border-color: transparent; color: #fff9f1; }

.panel-header, .header-row, .request-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.panel-header { margin-bottom: 18px; }

.badge, .table-badge, .request-pill, .tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  font-weight: 700;
}
.badge.is-alerting {
  color: #fff9f1;
  background: linear-gradient(180deg, var(--accent), #ad4618);
  border-color: transparent;
  animation: badgePulse 1.1s ease-in-out 3;
}

.panel-hero {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(79, 105, 67, 0.96), rgba(57, 75, 47, 0.93));
  margin-bottom: 18px;
}
.panel-hero h2, .panel-hero p, .panel-hero .eyebrow { color: #fff9f1; }

.actions-grid, .stack { flex-direction: column; }

.action-button {
  border: 0;
  text-align: left;
  cursor: pointer;
  min-height: 102px;
  padding: 18px;
  border-radius: var(--radius-lg);
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, box-shadow 120ms ease;
}
.action-button.primary { color: #fff9f1; background: linear-gradient(180deg, var(--accent), #ad4618); }
.action-button.secondary { background: rgba(255, 255, 255, 0.75); border: 1px solid var(--line); }
.action-button.is-selected {
  color: #fff9f1;
  background: linear-gradient(180deg, var(--accent), #ad4618);
  border-color: transparent;
}
.action-button.is-muted {
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  box-shadow: none;
}
.action-button.primary:active,
.action-button.primary.is-pressed {
  background: linear-gradient(180deg, #9f3c12, #7f2d0a);
  transform: scale(0.985);
  box-shadow: inset 0 0 0 2px rgba(255, 249, 241, 0.12);
}
.action-button.secondary:active,
.action-button.secondary.is-pressed,
.action-button.is-selected.is-pressed {
  background: linear-gradient(180deg, #d0662d, #ad4618);
  color: #fff9f1;
  transform: scale(0.985);
  box-shadow: inset 0 0 0 2px rgba(255, 249, 241, 0.12);
}
.action-title { display: block; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.action-subtitle { display: block; color: inherit; opacity: 0.88; }

.surface-card, .menu-item, .request-card, .table-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.hidden { display: none !important; }
.surface-card.hidden { display: none; }
.network-banner {
  margin-bottom: 14px;
  border-color: rgba(184, 74, 29, 0.22);
  color: #8f3711;
  font-weight: 800;
}
.guest-ended-state,
.app-corruption-card {
  text-align: center;
}
.guest-ended-state p,
.app-corruption-card p {
  max-width: 500px;
  margin: 0 auto;
}
.app-corruption-shell {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(44, 31, 21, 0.36);
  backdrop-filter: blur(6px);
}

.dialog-card {
  width: min(540px, calc(100vw - 32px));
  margin: 0;
}

.dialog-card-success {
  text-align: center;
}
.app-choice-card {
  display: grid;
  gap: 14px;
}
.app-choice-actions {
  justify-content: stretch;
}
.app-choice-actions .button {
  flex: 1 1 160px;
}
.table-qr-unavailable {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.field-row, .mini-actions, .menu-categories, .table-actions { flex-wrap: wrap; }
.option {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-chip {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.menu-chip.active { color: #fff9f1; background: var(--accent-2); border-color: transparent; }
.menu-list, .requests-list, .tables-list { display: grid; gap: 12px; }
.menu-subcategory-heading {
  margin: 8px 2px -2px;
  color: #7b8f6a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.requests-list { min-height: 240px; }
.menu-item-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.price { font-weight: 800; white-space: nowrap; }
.empty-state { padding: 26px; text-align: center; }
.request-card { border-left: 6px solid var(--accent); }
.request-card[data-type="bill"] { border-left-color: var(--accent-2); }
.request-card.is-alerting {
  animation: requestPulse 1.1s ease-in-out 4;
  box-shadow: 0 0 0 2px rgba(208, 102, 45, 0.12), 0 18px 36px rgba(208, 102, 45, 0.18);
}
.request-actions { margin-top: 14px; }
.status-button {
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 800;
}

.table-form { margin-bottom: 16px; }
.input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.qr-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.65);
  word-break: break-all;
}
.note { font-size: 14px; }
.floating-home-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  box-shadow: 0 18px 34px rgba(66, 43, 18, 0.2);
}

body[data-page="guest"] {
  position: relative;
  background:
    radial-gradient(circle at 10% 16%, rgba(114, 198, 192, 0.2), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(217, 104, 53, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf4e8 0%, #f3eadf 52%, #efe0cf 100%);
}

body[data-page="guest"]::before,
body[data-page="guest"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body[data-page="guest"]::before {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.7), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.36), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(165, 193, 129, 0.16), transparent 20%),
    radial-gradient(circle at 18% 86%, rgba(217, 104, 53, 0.1), transparent 16%);
}

body[data-page="guest"]::after {
  opacity: 0.22;
  background-image:
    linear-gradient(125deg, rgba(114, 198, 192, 0.18) 0 8%, transparent 8% 100%),
    linear-gradient(305deg, rgba(166, 209, 164, 0.18) 0 8%, transparent 8% 100%);
  background-size: 92px 92px, 92px 92px;
  background-position: 0 0, 46px 30px;
  mask-image: radial-gradient(circle at center, black 72%, transparent 100%);
}

body[data-page="guest"] .shell {
  position: relative;
  z-index: 1;
}

body[data-page="guest"] .guest-shell {
  width: min(860px, calc(100% - 20px));
}

body[data-page="guest"] .topbar-guest {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

body[data-page="guest"] .brand-fresh {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body[data-page="guest"] .topbar-guest .brand-copy {
  display: none;
}

body[data-page="guest"] .topbar-guest .brand-logo-image {
  width: min(260px, 70vw);
  opacity: 0.98;
  filter: none;
}

body[data-page="guest"] .guest-cafe-info {
  position: absolute;
  top: 24px;
  right: -18px;
  display: grid;
  gap: 4px;
  width: min(280px, 32vw);
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(114, 198, 192, 0.24);
  box-shadow: 0 16px 32px rgba(74, 55, 36, 0.08);
  backdrop-filter: blur(12px);
  text-align: left;
}

body[data-page="guest"] .guest-cafe-city {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3b544f;
}

body[data-page="guest"] .guest-cafe-address,
body[data-page="guest"] .guest-cafe-phone {
  color: #5d5148;
  font-weight: 700;
}

body[data-page="guest"] .guest-cafe-phone {
  text-decoration: none;
}

body[data-page="guest"] .guest-cafe-hours {
  display: grid;
  gap: 2px;
  margin-top: 4px;
  color: #77685b;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="guest"] .table-badge {
  color: #456761;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(114, 198, 192, 0.32);
  box-shadow: 0 12px 24px rgba(74, 55, 36, 0.08);
}

body[data-page="guest"] .guest-column {
  max-width: none;
}

body[data-page="guest"] .guest-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="guest"] .guest-hero-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  padding: 18px 6px 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="guest"] .guest-hero-card::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 220px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 198, 192, 0.12) 0%, rgba(114, 198, 192, 0) 72%);
}

body[data-page="guest"] .eyebrow {
  font-family: "Marck Script", cursive;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
  color: #8f6c4f;
  margin-bottom: 8px;
}

body[data-page="guest"] .guest-title-main {
  margin-bottom: 8px;
  font-size: clamp(44px, 12vw, 68px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #34261f;
  max-width: 6.8em;
}

body[data-page="guest"] .guest-lead {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7b8f6a;
}

body[data-page="guest"] .guest-actions-grid {
  gap: 14px;
}

body[data-page="guest"] .guest-secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

body[data-page="guest"] .action-button {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 241, 0.95));
  border: 1px solid rgba(114, 198, 192, 0.22);
  box-shadow: 0 18px 34px rgba(77, 54, 31, 0.1);
}

body[data-page="guest"] .action-button::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 14px;
  background: linear-gradient(90deg, #72c6c0, #9edabf);
}

body[data-page="guest"] .action-button::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -12px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 104, 53, 0.16) 0%, rgba(217, 104, 53, 0) 72%);
}

body[data-page="guest"] .action-title {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 7.6vw, 34px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #32261f;
}

body[data-page="guest"] .action-button-mini {
  min-height: 86px;
  padding: 14px 18px;
}

body[data-page="guest"] .action-button-mini .action-title {
  margin-top: 10px;
  font-size: clamp(22px, 6vw, 28px);
}

body[data-page="guest"] .action-button.primary,
body[data-page="guest"] .action-button.secondary,
body[data-page="guest"] .action-button.is-muted {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 241, 0.95));
  border: 1px solid rgba(114, 198, 192, 0.22);
}

body[data-page="guest"] .action-button.is-selected {
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0 0%, #54b0aa 54%, #d96835 100%);
  border-color: transparent;
  box-shadow: 0 22px 38px rgba(84, 176, 170, 0.24);
}

body[data-page="guest"] .action-button.is-selected::before {
  background: rgba(255, 255, 255, 0.22);
}

body[data-page="guest"] .action-button.is-selected .action-title {
  color: #fffdf8;
}

body[data-page="guest"] .action-button.primary:active,
body[data-page="guest"] .action-button.primary.is-pressed,
body[data-page="guest"] .action-button.secondary:active,
body[data-page="guest"] .action-button.secondary.is-pressed,
body[data-page="guest"] .action-button.is-selected.is-pressed {
  background: linear-gradient(135deg, #58b5af 0%, #419892 56%, #b84a1d 100%);
  color: #fffdf8;
  transform: scale(0.986);
  box-shadow: inset 0 0 0 2px rgba(255, 249, 241, 0.12);
}

body[data-page="guest"] .surface-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border-color: rgba(128, 100, 71, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 247, 239, 0.95)),
    linear-gradient(135deg, rgba(114, 198, 192, 0.08), rgba(217, 104, 53, 0.06));
  box-shadow: 0 22px 40px rgba(71, 48, 28, 0.11);
}

body[data-page="guest"] .surface-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, #72c6c0, #9edabf 42%, #d96835);
}

body[data-page="guest"] #menu-card {
  background:
    radial-gradient(circle at 16% 14%, rgba(114, 198, 192, 0.16), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(217, 104, 53, 0.1), transparent 18%),
    radial-gradient(circle at 54% 100%, rgba(165, 193, 129, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 247, 239, 0.95));
}

body[data-page="guest"] .dialog-backdrop .surface-card::before {
  width: 12px;
}

body[data-page="guest"] .option {
  min-height: 74px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(114, 198, 192, 0.22);
}

body[data-page="guest"] .option span {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="guest"] .option input {
  accent-color: #54b0aa;
}

body[data-page="guest"] .option:has(input:checked) {
  background: linear-gradient(180deg, rgba(114, 198, 192, 0.18), rgba(255, 255, 255, 0.92));
  border-color: rgba(84, 176, 170, 0.5);
  box-shadow: 0 0 0 3px rgba(84, 176, 170, 0.12);
}

body[data-page="guest"] .button-primary {
  background: linear-gradient(180deg, #d96835, #b84a1d);
}

body[data-page="guest"] .button-secondary {
  background: rgba(255, 255, 255, 0.84);
}

body[data-page="guest"] .guest-feedback-card,
body[data-page="guest"] .guest-complaint-form {
  display: grid;
  gap: 16px;
}

body[data-page="guest"] .guest-feedback-options {
  display: grid;
  gap: 12px;
}

body[data-page="guest"] .guest-feedback-actions {
  justify-content: flex-start;
}

body[data-page="guest"] .guest-form-error {
  color: #b84a1d;
  font-weight: 800;
}

body[data-page="guest"] .guest-field-error {
  color: #b84a1d;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="guest"] .guest-text-counter {
  justify-self: end;
  font-size: 13px;
  color: #8f6c4f;
  font-weight: 700;
}

body[data-page="guest"] .guest-text-counter.is-limit {
  color: #b84a1d;
}

body[data-page="guest"] .guest-form-actions {
  justify-content: stretch;
}

body[data-page="guest"] .guest-form-actions .button {
  flex: 1 1 180px;
}

body[data-page="guest"] .menu-chip {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(114, 198, 192, 0.24);
}

body[data-page="guest"] .menu-chip.active {
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 14px 24px rgba(84, 176, 170, 0.22);
}

body[data-page="guest"] .menu-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(128, 100, 71, 0.14);
}

body[data-page="guest"] .menu-item h4 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 26px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body[data-page="guest"] .price {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 30px;
  line-height: 1;
  color: #d96835;
}

body[data-page="guest"] .floating-home-button {
  padding: 0 20px;
  min-height: 56px;
  border: 0;
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 20px 36px rgba(84, 176, 170, 0.28);
}

body[data-page="guest"] .floating-home-button:active,
body[data-page="guest"] .floating-home-button.is-pressed {
  background: linear-gradient(135deg, #4aa29c, #347f7a);
  transform: scale(0.986);
}

body[data-page="guest-menu"] {
  position: relative;
  background:
    radial-gradient(circle at 10% 16%, rgba(114, 198, 192, 0.2), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(217, 104, 53, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf4e8 0%, #f3eadf 52%, #efe0cf 100%);
}

body[data-page="guest-menu"]::before,
body[data-page="guest-menu"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body[data-page="guest-menu"]::before {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.7), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.36), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(165, 193, 129, 0.16), transparent 20%),
    radial-gradient(circle at 18% 86%, rgba(217, 104, 53, 0.1), transparent 16%);
}

body[data-page="guest-menu"]::after {
  opacity: 0.22;
  background-image:
    linear-gradient(125deg, rgba(114, 198, 192, 0.18) 0 8%, transparent 8% 100%),
    linear-gradient(305deg, rgba(166, 209, 164, 0.18) 0 8%, transparent 8% 100%);
  background-size: 92px 92px, 92px 92px;
  background-position: 0 0, 46px 30px;
  mask-image: radial-gradient(circle at center, black 72%, transparent 100%);
}

body[data-page="guest-menu"] .shell {
  position: relative;
  z-index: 1;
}

body[data-page="guest-menu"] .guest-shell {
  width: min(860px, calc(100% - 20px));
}

body[data-page="guest-menu"] .topbar-guest {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

body[data-page="guest-menu"] .brand-fresh {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body[data-page="guest-menu"] .topbar-guest .brand-copy {
  display: none;
}

body[data-page="guest-menu"] .topbar-guest .brand-logo-image {
  width: min(260px, 70vw);
  opacity: 0.98;
  filter: none;
}

body[data-page="guest-menu"] .table-badge {
  color: #456761;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(114, 198, 192, 0.32);
  box-shadow: 0 12px 24px rgba(74, 55, 36, 0.08);
}

body[data-page="guest-menu"] .guest-column {
  max-width: none;
}

body[data-page="guest-menu"] .guest-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="guest-menu"] .guest-hero-card-menu {
  position: relative;
  overflow: hidden;
  padding: 18px 6px 10px;
  margin-bottom: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="guest-menu"] .guest-hero-card-menu::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 220px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 198, 192, 0.12) 0%, rgba(114, 198, 192, 0) 72%);
}

body[data-page="guest-menu"] .eyebrow {
  font-family: "Marck Script", cursive;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
  color: #8f6c4f;
  margin-bottom: 8px;
}

body[data-page="guest-menu"] .guest-title-main {
  margin-bottom: 8px;
  font-size: clamp(44px, 12vw, 68px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="guest-menu"] .guest-lead {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7b8f6a;
}

body[data-page="guest-menu"] .menu-page-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border-color: rgba(128, 100, 71, 0.16);
  background:
    radial-gradient(circle at 16% 14%, rgba(114, 198, 192, 0.16), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(217, 104, 53, 0.1), transparent 18%),
    radial-gradient(circle at 54% 100%, rgba(165, 193, 129, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 247, 239, 0.95));
  box-shadow: 0 22px 40px rgba(71, 48, 28, 0.11);
}

body[data-page="guest-menu"] .menu-page-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, #72c6c0, #9edabf 42%, #d96835);
}

body[data-page="guest-menu"] .menu-categories {
  position: sticky;
  top: 12px;
  z-index: 8;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -6px 16px;
  padding: 6px 6px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(84, 176, 170, 0.55) transparent;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

body[data-page="guest-menu"] .menu-categories::-webkit-scrollbar {
  height: 8px;
}

body[data-page="guest-menu"] .menu-categories::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(84, 176, 170, 0.42);
}

body[data-page="guest-menu"] .menu-categories::-webkit-scrollbar-track {
  background: transparent;
}

body[data-page="guest-menu"] .menu-chip {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(114, 198, 192, 0.24);
}

body[data-page="guest-menu"] .menu-chip.active {
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 14px 24px rgba(84, 176, 170, 0.22);
}

body[data-page="guest-menu"] .menu-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(128, 100, 71, 0.14);
}

body[data-page="guest-menu"] .menu-item h4 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 26px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body[data-page="guest-menu"] .menu-item-meta {
  margin-top: -2px;
  margin-bottom: 10px;
  color: #7b8f6a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="guest-menu"] .menu-item-price {
  margin-bottom: 10px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: #d96835;
}

body[data-page="guest-menu"] .menu-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

body[data-page="guest-menu"] .menu-set-builder-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

body[data-page="guest-menu"] .menu-item-note {
  color: #8b5f3c;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

body[data-page="guest-menu"] .menu-add-button {
  min-width: 132px;
}

body[data-page="guest-menu"] .menu-set-button {
  min-width: 132px;
}

body[data-page="guest-menu"] .menu-set-inline-builder {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(114, 198, 192, 0.24);
  background: rgba(255, 255, 255, 0.8);
}

body[data-page="guest-menu"] .menu-set-inline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body[data-page="guest-menu"] .menu-set-inline-title {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="guest-menu"] .menu-set-inline-meta {
  color: #7b8f6a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="guest-menu"] .menu-set-picks {
  display: grid;
  gap: 10px;
}

body[data-page="guest-menu"] .menu-set-pick {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(114, 198, 192, 0.2);
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
}

body[data-page="guest-menu"] .menu-set-pick.is-selected {
  color: #fffdf8;
  border-color: transparent;
  background: linear-gradient(135deg, #72c6c0 0%, #54b0aa 54%, #d96835 100%);
  box-shadow: 0 18px 28px rgba(84, 176, 170, 0.22);
}

body[data-page="guest-menu"] .menu-set-pick-copy {
  display: grid;
  gap: 6px;
  flex: 1;
}

body[data-page="guest-menu"] .menu-set-pick strong {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="guest-menu"] .menu-set-pick span {
  color: #6a5d53;
  line-height: 1.45;
}

body[data-page="guest-menu"] .menu-set-pick.is-selected strong,
body[data-page="guest-menu"] .menu-set-pick.is-selected span {
  color: #fffdf8;
}

body[data-page="guest-menu"] .menu-set-pick-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(114, 198, 192, 0.24);
  flex-shrink: 0;
}

body[data-page="guest-menu"] .menu-set-pick.is-selected .menu-set-pick-stepper {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

body[data-page="guest-menu"] .menu-set-pick-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

body[data-page="guest-menu"] .menu-set-pick-button:disabled {
  opacity: 0.35;
  cursor: default;
}

body[data-page="guest-menu"] .menu-set-pick.is-selected .menu-set-pick-button {
  background: rgba(255, 255, 255, 0.22);
  color: #fffdf8;
}

body[data-page="guest-menu"] .menu-set-pick-value {
  min-width: 22px;
  text-align: center;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #34261f;
}

body[data-page="guest-menu"] .menu-set-pick.is-selected .menu-set-pick-value {
  color: #fffdf8;
}

body[data-page="guest-menu"] .menu-set-inline-actions {
  justify-content: flex-end;
}

body[data-page="guest-menu"] .menu-quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(114, 198, 192, 0.24);
  box-shadow: 0 12px 24px rgba(77, 54, 31, 0.08);
}

body[data-page="guest-menu"] .menu-stepper-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

body[data-page="guest-menu"] .menu-stepper-button:active,
body[data-page="guest-menu"] .menu-stepper-button.is-pressed {
  background: linear-gradient(135deg, #4aa29c, #347f7a);
  transform: scale(0.986);
}

body[data-page="guest-menu"] .menu-stepper-value {
  min-width: 26px;
  text-align: center;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #34261f;
}

body[data-page="guest-menu"] .price {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 30px;
  line-height: 1;
  color: #d96835;
}

body[data-page="guest-menu"] .floating-home-button {
  padding: 0 20px;
  min-height: 56px;
  border: 0;
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 20px 36px rgba(84, 176, 170, 0.28);
}

body[data-page="guest-menu"] .floating-home-button:active,
body[data-page="guest-menu"] .floating-home-button.is-pressed {
  background: linear-gradient(135deg, #4aa29c, #347f7a);
  transform: scale(0.986);
}

.floating-cart-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 56px;
  padding: 12px 18px;
  border: 0;
  color: #fffdf8;
  background: linear-gradient(180deg, #d96835, #b84a1d);
  box-shadow: 0 20px 36px rgba(184, 74, 29, 0.28);
}

.floating-cart-title {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.floating-cart-meta {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.floating-cart-button:active,
.floating-cart-button.is-pressed {
  background: linear-gradient(180deg, #b84a1d, #8f3711);
  transform: scale(0.986);
}

body[data-page="guest-cart"] {
  position: relative;
  background:
    radial-gradient(circle at 10% 16%, rgba(114, 198, 192, 0.2), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(217, 104, 53, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf4e8 0%, #f3eadf 52%, #efe0cf 100%);
}

body[data-page="guest-cart"]::before,
body[data-page="guest-cart"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body[data-page="guest-cart"]::before {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.7), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.36), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(165, 193, 129, 0.16), transparent 20%),
    radial-gradient(circle at 18% 86%, rgba(217, 104, 53, 0.1), transparent 16%);
}

body[data-page="guest-cart"]::after {
  opacity: 0.22;
  background-image:
    linear-gradient(125deg, rgba(114, 198, 192, 0.18) 0 8%, transparent 8% 100%),
    linear-gradient(305deg, rgba(166, 209, 164, 0.18) 0 8%, transparent 8% 100%);
  background-size: 92px 92px, 92px 92px;
  background-position: 0 0, 46px 30px;
  mask-image: radial-gradient(circle at center, black 72%, transparent 100%);
}

body[data-page="guest-cart"] .shell {
  position: relative;
  z-index: 1;
}

body[data-page="guest-cart"] .guest-shell {
  width: min(860px, calc(100% - 20px));
}

body[data-page="guest-cart"] .topbar-guest {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

body[data-page="guest-cart"] .brand-fresh {
  justify-content: center;
  align-items: center;
  gap: 0;
}

body[data-page="guest-cart"] .topbar-guest .brand-copy {
  display: none;
}

body[data-page="guest-cart"] .topbar-guest .brand-logo-image {
  width: min(260px, 70vw);
  opacity: 0.98;
  filter: none;
}

body[data-page="guest-cart"] .table-badge {
  color: #456761;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(114, 198, 192, 0.32);
  box-shadow: 0 12px 24px rgba(74, 55, 36, 0.08);
}

body[data-page="guest-cart"] .guest-column {
  max-width: none;
}

body[data-page="guest-cart"] .guest-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="guest-cart"] .guest-hero-card-cart {
  position: relative;
  overflow: hidden;
  padding: 18px 6px 10px;
  margin-bottom: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="guest-cart"] .guest-hero-card-cart::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 220px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 198, 192, 0.12) 0%, rgba(114, 198, 192, 0) 72%);
}

body[data-page="guest-cart"] .eyebrow {
  font-family: "Marck Script", cursive;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
  color: #8f6c4f;
  margin-bottom: 8px;
}

body[data-page="guest-cart"] .guest-title-main {
  margin-bottom: 8px;
  font-size: clamp(44px, 12vw, 68px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="guest-cart"] .guest-lead {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7b8f6a;
}

body[data-page="guest-cart"] .cart-page-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border-color: rgba(128, 100, 71, 0.16);
  background:
    radial-gradient(circle at 16% 14%, rgba(114, 198, 192, 0.16), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(217, 104, 53, 0.1), transparent 18%),
    radial-gradient(circle at 54% 100%, rgba(165, 193, 129, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 247, 239, 0.95));
  box-shadow: 0 22px 40px rgba(71, 48, 28, 0.11);
}

body[data-page="guest-cart"] .cart-page-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, #72c6c0, #9edabf 42%, #d96835);
}

body[data-page="guest-cart"] .cart-summary-head {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

body[data-page="guest-cart"] .cart-list {
  display: grid;
  gap: 12px;
}

body[data-page="guest-cart"] .cart-total-footer {
  display: grid;
  justify-items: end;
  gap: 4px;
  margin-top: 18px;
}

body[data-page="guest-cart"] .cart-total-label {
  color: #7b8f6a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-page="guest-cart"] #cart-total {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(42px, 8vw, 54px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #b84a1d;
}

body[data-page="guest-cart"] .cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(128, 100, 71, 0.14);
}

body[data-page="guest-cart"] .cart-item-main {
  display: grid;
  gap: 4px;
}

body[data-page="guest-cart"] .cart-item-category {
  color: #7b8f6a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-page="guest-cart"] .cart-item h4 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 26px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body[data-page="guest-cart"] .cart-item-meta {
  color: #7b8f6a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="guest-cart"] .cart-item-selection {
  color: #6a5d53;
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="guest-cart"] .cart-item-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

body[data-page="guest-cart"] .cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(114, 198, 192, 0.24);
}

body[data-page="guest-cart"] .cart-stepper-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

body[data-page="guest-cart"] .cart-stepper-value {
  min-width: 20px;
  text-align: center;
  font-weight: 800;
}

body[data-page="guest-cart"] .cart-line-total {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #d96835;
}

body[data-page="guest-cart"] .cart-remove-button {
  border: 0;
  background: transparent;
  color: #a6401d;
  font-weight: 800;
  cursor: pointer;
}

body[data-page="guest-cart"] .cart-bottom-actions {
  margin-top: 18px;
}

body[data-page="guest-cart"] .cart-empty-card {
  text-align: center;
}

body[data-page="guest-cart"] .floating-home-button {
  padding: 0 20px;
  min-height: 56px;
  border: 0;
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 20px 36px rgba(84, 176, 170, 0.28);
}

body[data-page="guest-cart"] .floating-home-button:active,
body[data-page="guest-cart"] .floating-home-button.is-pressed {
  background: linear-gradient(135deg, #4aa29c, #347f7a);
  transform: scale(0.986);
}

body[data-page="home"],
body[data-page="admin"],
body[data-page="login"],
body[data-page="tables"] {
  position: relative;
  background:
    radial-gradient(circle at 12% 14%, rgba(114, 198, 192, 0.18), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(217, 104, 53, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf4e8 0%, #f3eadf 52%, #efe0cf 100%);
}

body[data-page="home"]::before,
body[data-page="admin"]::before,
body[data-page="login"]::before,
body[data-page="tables"]::before,
body[data-page="home"]::after,
body[data-page="admin"]::after,
body[data-page="login"]::after,
body[data-page="tables"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body[data-page="home"]::before,
body[data-page="admin"]::before,
body[data-page="login"]::before,
body[data-page="tables"]::before {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.7), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.36), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(165, 193, 129, 0.16), transparent 20%),
    radial-gradient(circle at 18% 86%, rgba(217, 104, 53, 0.08), transparent 16%);
}

body[data-page="home"]::after,
body[data-page="admin"]::after,
body[data-page="login"]::after,
body[data-page="tables"]::after {
  opacity: 0.2;
  background-image:
    linear-gradient(125deg, rgba(114, 198, 192, 0.18) 0 8%, transparent 8% 100%),
    linear-gradient(305deg, rgba(166, 209, 164, 0.18) 0 8%, transparent 8% 100%);
  background-size: 92px 92px, 92px 92px;
  background-position: 0 0, 46px 30px;
  mask-image: radial-gradient(circle at center, black 72%, transparent 100%);
}

.shell-fresh {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 20px));
}

.topbar-fresh {
  align-items: center;
  margin-bottom: 18px;
}

.brand-fresh {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.brand-seal {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(131, 103, 70, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 236, 223, 0.96));
  color: #8c6747;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(75, 51, 30, 0.1);
}

.brand-logo-image {
  width: 94px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(75, 51, 30, 0.12));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-kicker {
  font-family: "Marck Script", cursive;
  font-size: 24px;
  color: #8f6c4f;
  margin-bottom: -4px;
}

.topbar-fresh .brand-title {
  font-size: clamp(34px, 5vw, 46px);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.topbar-fresh .brand-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: #82956d;
}

.topbar-fresh .pill-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(114, 198, 192, 0.24);
  box-shadow: 0 12px 24px rgba(74, 55, 36, 0.08);
  font-weight: 700;
}

.topbar-fresh .pill-link.active {
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 14px 24px rgba(84, 176, 170, 0.22);
}

.fresh-heading {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 18px 22px 16px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 247, 240, 0.94)),
    linear-gradient(120deg, rgba(114, 198, 192, 0.08), rgba(217, 104, 53, 0.08));
  border: 1px solid rgba(146, 118, 85, 0.14);
  box-shadow: 0 24px 48px rgba(70, 47, 25, 0.12);
}

.fresh-heading::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 14px;
  background: linear-gradient(90deg, #72c6c0, #9edabf 58%, #d96835);
}

.fresh-heading .eyebrow {
  font-family: "Marck Script", cursive;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
  color: #8f6c4f;
  margin-bottom: 8px;
}

.section-title {
  margin: 0;
  font-size: clamp(42px, 8vw, 62px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="home"] .panel,
body[data-page="admin"] .panel,
body[data-page="login"] .panel,
body[data-page="tables"] .panel,
body[data-page="home"] .soft-card,
body[data-page="admin"] .soft-card,
body[data-page="login"] .soft-card,
body[data-page="tables"] .soft-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 247, 239, 0.95)),
    linear-gradient(135deg, rgba(114, 198, 192, 0.08), rgba(217, 104, 53, 0.06));
  border: 1px solid rgba(128, 100, 71, 0.16);
  box-shadow: 0 22px 40px rgba(71, 48, 28, 0.11);
}

body[data-page="home"] .panel::before,
body[data-page="admin"] .panel::before,
body[data-page="login"] .panel::before,
body[data-page="tables"] .panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, #72c6c0, #9edabf 42%, #d96835);
}

body[data-page="home"] .button-primary,
body[data-page="admin"] .button-primary,
body[data-page="login"] .button-primary,
body[data-page="tables"] .button-primary,
body[data-page="home"] .status-button,
body[data-page="admin"] .status-button,
body[data-page="login"] .status-button,
body[data-page="tables"] .status-button {
  color: #fffdf8;
  background: linear-gradient(180deg, #d96835, #b84a1d);
}

body[data-page="home"] .button-secondary,
body[data-page="admin"] .button-secondary,
body[data-page="login"] .button-secondary,
body[data-page="tables"] .button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(114, 198, 192, 0.24);
}

body[data-page="home"] .input,
body[data-page="login"] .input,
body[data-page="tables"] .input {
  min-height: 56px;
  border-radius: 18px;
  border-color: rgba(114, 198, 192, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-page="home"] .input:focus,
body[data-page="login"] .input:focus,
body[data-page="tables"] .input:focus {
  outline: 2px solid rgba(84, 176, 170, 0.2);
  border-color: rgba(84, 176, 170, 0.6);
}

body[data-page="admin"] .badge,
body[data-page="tables"] .badge,
body[data-page="home"] .badge {
  color: #456761;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(114, 198, 192, 0.32);
  box-shadow: 0 12px 24px rgba(74, 55, 36, 0.08);
}

body[data-page="admin"] .admin-column {
  max-width: 780px;
}

body[data-page="admin"] .panel-header {
  margin-bottom: 14px;
}

body[data-page="admin"] .request-card {
  border-left-width: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(128, 100, 71, 0.12);
  border-right: 1px solid rgba(128, 100, 71, 0.12);
  border-bottom: 1px solid rgba(128, 100, 71, 0.12);
  box-shadow: 0 18px 34px rgba(77, 54, 31, 0.08);
}

body[data-page="admin"] .request-pill {
  color: #456761;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(114, 198, 192, 0.32);
}

body[data-page="admin"] .request-card h3 {
  margin-bottom: 2px;
}

.admin-sessions-panel {
  margin-top: 16px;
}

.sessions-list {
  display: grid;
  gap: 12px;
}

body[data-page="login"] .login-fresh-panel {
  padding-top: 20px;
}

body[data-page="login"] .login-fresh-panel .fresh-heading {
  margin-bottom: 16px;
}

body[data-page="login"] #login-form {
  gap: 14px;
}

body[data-page="login"] #login-error {
  color: #a6401d;
}

body[data-page="tables"] .tables-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

body[data-page="tables"] .owner-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

body[data-page="tables"] .owner-nav-button {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="tables"] .owner-nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(74, 46, 28, 0.08);
}

body[data-page="tables"] .owner-nav-button.active {
  background: var(--ink);
  border-color: transparent;
  color: #fff9f1;
}

body[data-page="tables"] .owner-view-grid,
body[data-page="tables"] .owner-qr-panel,
body[data-page="tables"] .owner-complaints-panel {
  margin-top: 0;
}

body[data-page="tables"] .owner-view.hidden {
  display: none;
}

body[data-page="tables"] label {
  font-weight: 700;
  color: #5e4b3d;
}

body[data-page="tables"] .table-card {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(128, 100, 71, 0.14);
}

body[data-page="tables"] .table-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body[data-page="tables"] .tag {
  color: #456761;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(114, 198, 192, 0.32);
}

body[data-page="tables"] .table-qr-preview-box {
  display: grid;
  justify-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px dashed rgba(114, 198, 192, 0.32);
}

body[data-page="tables"] .table-qr-visual,
body[data-page="table-qr"] .table-qr-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

body[data-page="tables"] .table-qr-visual {
  width: min(184px, 100%);
}

body[data-page="table-qr"] .table-qr-visual {
  width: 100%;
}

body[data-page="tables"] .table-qr-visual-image,
body[data-page="table-qr"] .table-qr-visual-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: #ffffff;
  padding: 10px;
}

body[data-page="tables"] .table-qr-center-badge,
body[data-page="table-qr"] .table-qr-center-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #d96835;
  border: 4px solid #d96835;
  box-shadow: 0 10px 24px rgba(86, 54, 31, 0.12);
}

body[data-page="tables"] .table-qr-center-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

body[data-page="table-qr"] .table-qr-center-badge {
  width: 94px;
  height: 94px;
  border-width: 6px;
  border-radius: 24px;
}

body[data-page="tables"] .table-qr-center-number,
body[data-page="table-qr"] .table-qr-center-number {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1;
}

body[data-page="tables"] .table-qr-center-number {
  font-size: 30px;
}

body[data-page="table-qr"] .table-qr-center-number {
  font-size: 52px;
}

body[data-page="tables"] .table-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="tables"] .table-actions .button {
  width: 100%;
}

body[data-page="tables"] .table-delete-button {
  color: #a6401d;
}

body[data-page="tables"] .table-tips-block {
  gap: 10px;
}

body[data-page="tables"] .table-settings-block {
  margin-top: 8px;
}

body[data-page="tables"] .table-settings-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6a4e;
}

.field-hint {
  margin: 0;
  color: #7a6a5d;
  font-size: 13px;
  line-height: 1.45;
}

.textarea {
  resize: vertical;
}

.owner-management-layout {
  margin-top: 18px;
}

.owner-settings-layout,
.owner-menu-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-mini-form,
.owner-dish-form {
  margin-bottom: 16px;
}

.owner-list {
  display: grid;
  gap: 12px;
}

.owner-complaints-panel {
  margin-top: 18px;
}

.owner-manage-filter-panel {
  margin-top: 0;
  margin-bottom: 18px;
}

.owner-manage-categories {
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.owner-manage-categories::-webkit-scrollbar {
  height: 8px;
}

.owner-manage-categories::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(84, 176, 170, 0.32);
}

.owner-manage-categories .menu-chip {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(114, 198, 192, 0.24);
}

.owner-manage-categories .menu-chip.active {
  color: #fffdf8;
  background: linear-gradient(135deg, #72c6c0, #54b0aa);
  box-shadow: 0 14px 24px rgba(84, 176, 170, 0.22);
}

.tables-manage-list {
  display: grid;
  gap: 12px;
}

.table-manage-card {
  gap: 16px;
}

.table-manage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.complaints-list {
  min-height: 12px;
}

.complaint-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(79, 46, 22, 0.1);
}

.complaint-card-head,
.complaint-card-meta,
.complaint-card-contact,
.complaint-detail-meta,
.complaint-detail-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.complaint-card-meta,
.complaint-card-contact,
.complaint-detail-meta,
.complaint-detail-contact {
  color: var(--muted);
  font-size: 0.95rem;
}

.complaint-card-head {
  align-items: center;
  justify-content: space-between;
}

.complaint-preview-button,
.complaint-delete-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

.complaint-preview-button {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.complaint-preview-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: var(--ink);
  line-height: 1.5;
  white-space: pre-wrap;
}

.complaint-delete-link {
  color: #a6401d;
  cursor: pointer;
}

.complaint-detail-card {
  display: grid;
  gap: 14px;
}

.complaint-detail-text {
  color: var(--ink);
  line-height: 1.6;
  word-break: break-word;
}

.owner-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.owner-category-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="tables"] .table-tips-label {
  font-size: 13px;
  font-weight: 700;
  color: #65564a;
}

body[data-page="tables"] .table-tips-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

body[data-page="tables"] .table-tips-input {
  min-width: 0;
}

body[data-page="tables"] .table-tips-save {
  white-space: nowrap;
}

body[data-page="table-qr"] {
  position: relative;
  background:
    radial-gradient(circle at 12% 14%, rgba(114, 198, 192, 0.18), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(217, 104, 53, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf4e8 0%, #f3eadf 52%, #efe0cf 100%);
}

body[data-page="table-qr"]::before,
body[data-page="table-qr"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body[data-page="table-qr"]::before {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.7), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.36), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(165, 193, 129, 0.16), transparent 20%),
    radial-gradient(circle at 18% 86%, rgba(217, 104, 53, 0.08), transparent 16%);
}

body[data-page="table-qr"]::after {
  opacity: 0.2;
  background-image:
    linear-gradient(125deg, rgba(114, 198, 192, 0.18) 0 8%, transparent 8% 100%),
    linear-gradient(305deg, rgba(166, 209, 164, 0.18) 0 8%, transparent 8% 100%);
  background-size: 92px 92px, 92px 92px;
  background-position: 0 0, 46px 30px;
  mask-image: radial-gradient(circle at center, black 72%, transparent 100%);
}

body[data-page="table-qr"] .qr-shell {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 20px));
}

body[data-page="table-qr"] .qr-page-card {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

body[data-page="table-qr"] .qr-title {
  font-size: clamp(38px, 6vw, 56px);
}

body[data-page="table-qr"] .qr-print-sheet {
  width: 100%;
  display: grid;
  justify-items: center;
}

body[data-page="table-qr"] .qr-print-card {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px 24px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(128, 100, 71, 0.14);
  box-shadow: 0 22px 40px rgba(71, 48, 28, 0.11);
}

body[data-page="table-qr"] .qr-print-logo {
  width: min(240px, 72vw);
  display: block;
}

body[data-page="table-qr"] .qr-print-label {
  display: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b8f6a;
}

body[data-page="table-qr"] .qr-print-table {
  display: block;
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(44px, 9vw, 64px);
  line-height: 0.96;
  text-transform: uppercase;
  color: #34261f;
}

body[data-page="table-qr"] .qr-print-code-frame {
  width: min(360px, 100%);
  padding: 16px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px dashed rgba(114, 198, 192, 0.34);
}

body[data-page="table-qr"] .qr-print-code-frame .table-qr-visual-image {
  border-radius: 24px;
  padding: 12px;
}

body[data-page="table-qr"] .qr-print-copy {
  max-width: 24ch;
  color: #5f5145;
  font-size: 16px;
}

body[data-page="table-qr"] .qr-page-link {
  max-width: min(100%, 520px);
  font-size: 13px;
  line-height: 1.5;
  word-break: break-all;
}

body[data-page="table-qr"] .qr-admin-actions {
  justify-content: center;
}

body[data-page="table-qr"][data-print="true"] .qr-topbar,
body[data-page="table-qr"][data-print="true"] .qr-page-note,
body[data-page="table-qr"][data-print="true"] .qr-page-link,
 body[data-page="table-qr"][data-print="true"] .qr-admin-actions,
 body[data-page="table-qr"][data-print="true"] .qr-print-label,
 body[data-page="table-qr"][data-print="true"] .qr-print-table {
  display: none;
}

@media print {
  body[data-page="table-qr"] {
    background: #ffffff !important;
  }

  body[data-page="table-qr"]::before,
  body[data-page="table-qr"]::after {
    display: none !important;
  }

  body[data-page="table-qr"] .qr-print-label,
  body[data-page="table-qr"] .qr-print-table {
    display: none !important;
  }

  body[data-page="table-qr"] .shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  body[data-page="table-qr"] .qr-page-card {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
  }

  body[data-page="table-qr"] .qr-print-sheet {
    min-height: 100vh;
    align-items: center;
  }

  body[data-page="table-qr"] .qr-print-card {
    width: 100%;
    max-width: 118mm;
    box-shadow: none;
    border: 0;
    background: #ffffff;
    padding: 0;
  }
}
body[data-page="home"] .home-panel {
  padding-top: 22px;
}

body[data-page="home"] .home-grid {
  margin-bottom: 0;
}

body[data-page="home"] .entry-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 220px;
  padding-top: 26px;
}

body[data-page="home"] .entry-card h2 {
  margin-bottom: 0;
}

body[data-page="home"] .entry-card p {
  font-size: 15px;
}

body[data-page="home"] .entry-card .button {
  align-self: flex-start;
}

@keyframes requestPulse {
  0% { transform: scale(1); background: var(--surface-2); }
  25% { transform: scale(1.01); background: #fff1e7; }
  50% { transform: scale(1); background: var(--surface-2); }
  75% { transform: scale(1.01); background: #fff1e7; }
  100% { transform: scale(1); background: var(--surface-2); }
}

@keyframes badgePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(208, 102, 45, 0.28); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(208, 102, 45, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(208, 102, 45, 0); }
}

@media (max-width: 980px) {
  .dashboard-grid, .layout-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 16px, 1240px); }
  .hero-copy, .hero-card, .panel, .soft-card { padding: 18px; border-radius: 22px; }
  .topbar, .panel-header, .header-row, .request-meta { flex-direction: column; align-items: flex-start; }
  body[data-page="guest"] .brand-fresh { gap: 0; }
  body[data-page="guest"] .topbar-guest .brand-logo-image { width: min(226px, 78vw); }
  body[data-page="guest"] .guest-cafe-info {
    position: static;
    width: 100%;
    margin-top: 6px;
    text-align: center;
  }
  body[data-page="guest"] .guest-hero-card { padding: 14px 4px 8px; }
  body[data-page="guest"] .guest-title-main { font-size: 42px; }
  body[data-page="guest"] .guest-secondary-actions { grid-template-columns: 1fr; }
  body[data-page="guest"] .action-button { min-height: 92px; padding: 16px 18px; }
  body[data-page="guest"] .action-title { font-size: 26px; }
  body[data-page="guest"] .surface-card { border-radius: 24px; }
  body[data-page="guest"] .option { min-width: 100%; }
  body[data-page="guest"] .floating-home-button {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }
  body[data-page="guest-menu"] .brand-fresh { gap: 0; }
  body[data-page="guest-menu"] .topbar-guest .brand-logo-image { width: min(226px, 78vw); }
  body[data-page="guest-menu"] .guest-hero-card-menu { padding: 14px 4px 8px; }
  body[data-page="guest-menu"] .guest-title-main { font-size: 42px; }
  body[data-page="guest-menu"] .menu-page-card { border-radius: 24px; }
  body[data-page="guest-menu"] .menu-item-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-cart-button {
    left: 12px;
    right: 12px;
    bottom: 80px;
    align-items: center;
    text-align: center;
  }
  body[data-page="guest-menu"] .floating-home-button {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }
  body[data-page="guest-cart"] .brand-fresh { gap: 0; }
  body[data-page="guest-cart"] .topbar-guest .brand-logo-image { width: min(226px, 78vw); }
  body[data-page="guest-cart"] .guest-hero-card-cart { padding: 14px 4px 8px; }
  body[data-page="guest-cart"] .guest-title-main { font-size: 42px; }
  body[data-page="guest-cart"] .cart-page-card { border-radius: 24px; }
  body[data-page="guest-cart"] .cart-summary-head,
  body[data-page="guest-cart"] .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  body[data-page="guest-cart"] .cart-total-footer {
    justify-items: flex-start;
  }
  .owner-inline-grid,
  .owner-category-checklist {
    grid-template-columns: 1fr;
  }
  body[data-page="guest-cart"] .cart-item-side {
    width: 100%;
    justify-items: stretch;
  }
  body[data-page="guest-cart"] .cart-stepper {
    justify-content: space-between;
    width: 100%;
  }
  body[data-page="guest-cart"] .floating-home-button {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }
  .dialog-backdrop {
    padding: 12px;
    align-items: flex-end;
  }
  .dialog-card {
    width: min(100vw - 24px, 540px);
  }
  .shell-fresh { width: min(100% - 16px, 980px); }
  .topbar-fresh { flex-direction: column; align-items: flex-start; }
  .brand-fresh { gap: 12px; }
  .brand-seal { width: 52px; height: 52px; font-size: 24px; }
  .brand-logo-image { width: 82px; }
  .brand-kicker { font-size: 21px; }
  .topbar-fresh .brand-title { font-size: 32px; }
  .fresh-heading { padding: 18px 18px 16px; border-radius: 26px; }
  .section-title { font-size: 40px; }
  body[data-page="tables"] .tables-layout { grid-template-columns: 1fr; }
  .owner-settings-layout,
  .owner-menu-layout,
  .owner-management-layout { grid-template-columns: 1fr; }
  body[data-page="tables"] .table-actions { grid-template-columns: 1fr; }
  body[data-page="tables"] .table-tips-row { grid-template-columns: 1fr; }
  body[data-page="home"] .entry-card { min-height: auto; }
  body[data-page="table-qr"] .qr-shell { width: min(100% - 16px, 860px); }
  body[data-page="table-qr"] .qr-print-card { padding: 22px 18px 20px; border-radius: 24px; }
  body[data-page="table-qr"] .qr-print-code-frame { width: min(280px, 100%); }
  body[data-page="table-qr"] .table-qr-center-badge { width: 74px; height: 74px; border-radius: 18px; }
  body[data-page="table-qr"] .table-qr-center-number { font-size: 40px; }
}
