   SCANLAYER – MONTHLY MENU GUEST PAGE
   Premium hospitality / restaurant display
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #FAF9F7;
  --card:       #FFFFFF;
  --card-alt:   #F7F6F3;
  --text:       #1A1712;
  --text-2:     #5A544A;
  --text-3:     #9A9082;
  --border:     #EAE6DF;
  --border-2:   #D8D2C8;
  --accent:     #B5893A;
  --accent-l:   #F5ECD7;
  --accent-d:   #8A6420;
  --gold:       #B5893A;
  --gold-l:     #F5ECD7;
  --gold-d:     #8A6420;
  --hero-bg:    linear-gradient(160deg, #1A1712 0%, #2C2418 55%, #3A2E1C 100%);
  --hero-glow1: rgba(181,137,58,.18);
  --hero-glow2: rgba(181,137,58,.10);
  --green:      #2D6A4F;
  --green-l:    #D8ECD6;
  --red:        #C0392B;
  --red-l:      #FAEAE8;
  --closed-bg:  #F5F4F2;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 2px 8px rgba(26,23,18,.06), 0 8px 32px rgba(26,23,18,.05);
  --shadow-lg:  0 4px 24px rgba(26,23,18,.10);
  --font:       'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --bar-safe:   calc(72px + env(safe-area-inset-bottom, 0px));
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }

/* ════════════════════════════════════════
   HERO HEADER
════════════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  color: #fff;
  padding: 52px 24px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, var(--hero-glow1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 70%, var(--hero-glow2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.hero-business {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-business-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  padding: 6px;
}
.hero-business-name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin: 0;
  line-height: 1.25;
}
.hero-business-line {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.45;
  margin: 0;
  max-width: 28rem;
}
.hero-business-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  font-size: .78rem;
}
.hero-business-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
}
.hero-business-link:hover { color: var(--gold); }
.hero-business-sep { color: rgba(255,255,255,.35); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(181,137,58,.35); border-radius: 99px;
  padding: 4px 14px; margin-bottom: 18px;
}

.hero-venue {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hero-venue em { font-style: italic; color: var(--gold); }

.hero-month {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 300; color: rgba(255,255,255,.65);
  letter-spacing: .04em; margin-bottom: 20px;
}

.hero-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 0 auto 20px; max-width: 200px;
}
.hero-divider-line { flex: 1; height: 1px; background: rgba(181,137,58,.35); }
.hero-divider-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .75rem; color: rgba(255,255,255,.5);
}
.hero-meta-item svg { opacity: .6; }

/* ════════════════════════════════════════
   MONTH NAV BAR
════════════════════════════════════════ */
.month-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,247,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.month-nav-title {
  font-size: .875rem; font-weight: 700; color: var(--text);
}
.month-nav-controls { display: flex; align-items: center; gap: 6px; }
.month-nav-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2); transition: all .15s;
}
.month-nav-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-l); }
.month-nav-stats {
  display: flex; align-items: center; gap: 10px;
}
.mnav-pill {
  font-size: .68rem; font-weight: 600; padding: 3px 9px; border-radius: 99px;
  white-space: nowrap;
}
.mnav-pill.green { background: var(--green-l); color: var(--green); }
.mnav-pill.gold  { background: var(--gold-l);  color: var(--gold-d); }

/* ── Menu switcher (multiple menus per month) ── */
.menu-switcher {
  max-width: 860px; margin: 0 auto;
  padding: 14px 16px 0;
}
.menu-switcher-inner {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.menu-switch-btn {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 10px 14px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--card);
  cursor: pointer; font-family: var(--font); text-align: left;
  transition: all .15s; min-width: 140px; max-width: 220px;
}
.menu-switch-btn:hover { border-color: var(--gold); background: var(--gold-l); }
.menu-switch-btn.active {
  border-color: var(--gold); background: var(--gold-l);
  box-shadow: 0 0 0 2px rgba(181,137,58,.15);
}
.menu-switch-name { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.menu-switch-sub  { font-size: .68rem; color: var(--text-3); line-height: 1.3; }
.hero-menu-name {
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  font-weight: 500; color: rgba(255,255,255,.75);
  margin-top: 6px; letter-spacing: .02em;
}
.hero-menu-sub {
  font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 4px;
}

/* ════════════════════════════════════════
   MAIN LAYOUT
════════════════════════════════════════ */
.page-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 32px 16px var(--bar-safe);
}
@media (min-width: 1100px) {
  .page-wrap { padding-bottom: 80px; }
}

/* ════════════════════════════════════════
   WEEK GROUP
════════════════════════════════════════ */
.week-group {
  margin-bottom: 32px;
}
.week-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.week-label-text {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3);
  white-space: nowrap;
}
.week-label-line { flex: 1; height: 1px; background: var(--border); }

/* ════════════════════════════════════════
   DAY CARD — OPEN
════════════════════════════════════════ */
.day-card {
  scroll-margin-top: 72px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 10px;
}
.day-card:hover { box-shadow: var(--shadow); }
.day-card.is-weekend { border-color: #EAE0C8; background: #FFFEF8; }
.day-card.is-today   { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(181,137,58,.18); }

.day-card-inner {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 84px;
}
@media (max-width: 480px) {
  .day-card-inner { grid-template-columns: 60px 1fr; }
}

/* Date column */
.day-date-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px 8px;
  border-right: 1px solid var(--border);
  background: var(--card-alt);
  gap: 2px;
}
.is-weekend .day-date-col { background: #F8F5EC; }
.is-today   .day-date-col { background: var(--gold-l); }

.day-num-big {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 700; line-height: 1;
  color: var(--text);
}
.is-today .day-num-big { color: var(--gold-d); }

.day-dow {
  font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3);
}
.is-today .day-dow { color: var(--gold); }

.day-badge {
  display: inline-block; font-size: .55rem; font-weight: 700;
  padding: 1px 5px; border-radius: 99px; text-transform: uppercase;
  letter-spacing: .06em; margin-top: 4px;
}
.badge-today   { background: var(--gold);   color: #fff; }
.badge-weekend { background: #FDF3DC; color: var(--gold-d); }
.badge-weekday { background: #F0F0EE; color: var(--text-3); }

/* Dishes column */
.day-dishes-col {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 8px;
  justify-content: center;
}
@media (max-width: 480px) {
  .day-dishes-col { padding: 12px 14px; }
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}
@media (max-width: 400px) {
  .dishes-grid { grid-template-columns: 1fr; }
}

.dish-item {
  display: flex; align-items: flex-start; gap: 7px;
}
.dish-num {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-l); color: var(--gold-d);
  font-size: .58rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; letter-spacing: 0;
}
.dish-name {
  font-size: .82rem; color: var(--text); font-weight: 500; line-height: 1.35;
}
.dish-name.empty {
  color: var(--text-3); font-style: italic; font-weight: 400;
}

/* ════════════════════════════════════════
   DAY CARD — CLOSED (compact)
════════════════════════════════════════ */
.day-card.is-closed {
  background: var(--closed-bg);
  border-color: var(--border);
  opacity: .82;
}
.day-card.is-closed.is-compact,
.day-card.is-closed.is-closed-group {
  margin-bottom: 6px;
}
.day-card.is-closed.is-compact:hover,
.day-card.is-closed.is-closed-group:hover {
  box-shadow: none;
  transform: none;
}
.day-card-inner--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  padding: 9px 14px;
}
.closed-compact-date {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.closed-compact-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-3);
  line-height: 1;
}
.closed-compact-dow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.closed-compact-label,
.closed-group-dates {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
}
.closed-group-dates {
  font-family: var(--font-serif);
  font-size: .92rem;
  letter-spacing: .01em;
}
.day-card.is-closed.is-closed-group {
  border-style: dashed;
}

/* Legacy closed layout (print/PDF parity helpers) */
.day-card.is-closed .day-date-col {
  background: #EDECE9;
}
.day-card.is-closed .day-num-big,
.day-card.is-closed .day-dow { color: var(--text-3); }

.closed-message {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  color: var(--text-3);
}
.closed-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: #E8E6E0; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.closed-text-main { font-size: .875rem; font-weight: 600; color: var(--text-2); }
.closed-text-sub  { font-size: .72rem; color: var(--text-3); }

/* ════════════════════════════════════════
   JUMP TO TODAY BUTTON
════════════════════════════════════════ */
.jump-today {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 99px;
  background: var(--gold); color: #fff;
  font-size: .78rem; font-weight: 600; cursor: pointer;
  border: none; font-family: var(--font);
  box-shadow: 0 2px 12px rgba(181,137,58,.35);
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none;
}
.jump-today:hover { background: var(--gold-d); box-shadow: 0 4px 18px rgba(181,137,58,.4); transform: translateY(-1px); }
.jump-today:active { transform: translateY(0); }

/* ════════════════════════════════════════
   SUMMARY FOOTER BAR
════════════════════════════════════════ */
.summary-footer {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px; margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 400px) { .summary-footer { grid-template-columns: 1fr; } }

.sf-item-num  { font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1; }
.sf-item-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); margin-top: 3px; }

@media (max-width: 1099px) {
  .powered-footer {
    margin-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}

/* ════════════════════════════════════════
   DESKTOP PRINT TOOLBAR
════════════════════════════════════════ */
.print-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 20px;
  display: none;
  align-items: center; justify-content: space-between; gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 1100px) {
  .print-bar--desktop { display: flex; }
}
.print-bar-brand {
  display: flex; align-items: center; gap: 7px;
  font-size: .72rem; color: var(--text-3);
}
.print-bar-brand .guest-brand-link__logo {
  height: 22px;
}
.print-bar-actions { display: flex; align-items: center; gap: 8px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--card);
  font-family: var(--font); font-size: .78rem; font-weight: 600;
  color: var(--text-2); cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-l); text-decoration: none; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  border: none; background: var(--gold);
  font-family: var(--font); font-size: .78rem; font-weight: 700;
  color: #fff; cursor: pointer; transition: all .15s;
}
.btn-gold:hover { background: var(--gold-d); }

/* ════════════════════════════════════════
   MOBILE STICKY ACTION BAR (product catalog pattern)
════════════════════════════════════════ */
.action-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; z-index: 800;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; gap: 10px;
}
@media (min-width: 1100px) {
  .action-bar,
  .more-menu { display: none !important; }
}
.bar-more-btn {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--card); color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer; transition: border-color .15s, color .15s;
}
.bar-more-btn:hover { border-color: var(--accent); color: var(--accent); }
.bar-primary-btn {
  flex: 1; height: 44px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-d, var(--gold-d)) 100%);
  color: #fff;
  font-size: 14px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: transform .15s, opacity .15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.bar-primary-btn:hover { opacity: .92; transform: translateY(-1px); }

.more-menu {
  position: fixed; bottom: calc(68px + env(safe-area-inset-bottom, 0px)); left: 14px; z-index: 810;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 240px; max-width: min(320px, calc(100vw - 28px));
  opacity: 0; transform: translateY(10px) scale(.96); pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.more-menu.open {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.more-menu-item {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 11px 12px; border-radius: 10px;
  background: none; border: none; cursor: pointer; text-align: left;
  transition: background .12s; text-decoration: none; color: inherit;
}
.more-menu-item:hover { background: var(--bg); text-decoration: none; }
.more-menu-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.more-menu-icon.offer { background: rgba(245,158,11,.1); }
.more-item-title { font-size: 13px; font-weight: 700; color: var(--text); }
.more-item-sub { font-size: 11px; color: var(--text-3); margin-top: 1px; line-height: 1.4; }
.more-menu-divider { height: 1px; background: var(--border); margin: 4px 6px; }

body.theme-rustic .action-bar {
  background: rgba(28,18,8,.96);
  border-top-color: var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}
body.theme-rustic .bar-more-btn {
  border-color: var(--border);
  background: var(--card);
  color: var(--text-2);
}
body.theme-rustic .bar-more-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
body.theme-rustic .more-menu {
  background: var(--card);
  border-color: var(--border);
}

/* Post-print live menu shortcut */
.mm-post-print {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: var(--bar-safe);
  z-index: 210;
  display: none;
}
@media (min-width: 1100px) {
  .mm-post-print { bottom: 72px; }
}

.mm-post-print.is-visible {
  display: block;
}

.mm-post-print-inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(26, 23, 18, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mm-post-print-title {
  margin: 0 0 4px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
}

.mm-post-print-text {
  margin: 0 0 12px;
  font-size: .74rem;
  color: var(--text-2);
  line-height: 1.45;
}

.mm-post-print-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mm-post-print-link { text-decoration: none; }

@media (max-width: 520px) {
  .mm-post-print { bottom: 88px; }
  .mm-post-print-actions .btn-gold,
  .mm-post-print-actions .btn-ghost { flex: 1 1 auto; justify-content: center; }
}

/* ════════════════════════════════════════
   POWERED BY
════════════════════════════════════════ */
.powered-by {
  text-align: center; padding: 24px 16px 100px;
  color: var(--text-3); font-size: .72rem;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.powered-mark {
  width: 20px; height: 20px; border-radius: 5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: .6rem; font-weight: 800;
}

/* ════════════════════════════════════════
   LOADING / ERROR
════════════════════════════════════════ */
.loading-hero {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 40vh; gap: 16px; color: var(--text-3);
}
.spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center; padding: 64px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state-icon { font-size: 3rem; opacity: .3; }
.empty-state-title { font-size: 1.1rem; font-weight: 700; color: var(--text-2); }
.empty-state-sub   { font-size: .875rem; color: var(--text-3); }

/* ════════════════════════════════════════════════════════
   THEME — BISTRO (warm earthy terracotta)
═════════════════════════════════════════════════════════ */
body.theme-bistro {
  --bg:         #FDF8F3;
  --card:       #FFFFFF;
  --card-alt:   #FAF3EB;
  --text:       #2C1A0E;
  --text-2:     #6B4226;
  --text-3:     #A07850;
  --border:     #EDD8C0;
  --border-2:   #D9BFA0;
  --accent:     #C0622A;
  --accent-l:   #FAEADE;
  --accent-d:   #8C3D14;
  --gold:       #C0622A;
  --gold-l:     #FAEADE;
  --gold-d:     #8C3D14;
  --green:      #4A7C59;
  --green-l:    #D6EBDA;
  --closed-bg:  #F5EDE3;
  --hero-bg:    linear-gradient(160deg, #2C1A0E 0%, #4A2810 55%, #6B3A1A 100%);
  --hero-glow1: rgba(192,98,42,.22);
  --hero-glow2: rgba(192,98,42,.12);
  --font-serif: 'Lora', Georgia, serif;
}
body.theme-bistro .hero-eyebrow { border-color: rgba(192,98,42,.4); }
body.theme-bistro .day-card.is-weekend { border-color: #E8C9A0; background: #FFF8F0; }
body.theme-bistro .powered-mark,
body.theme-bistro .print-bar-brand .guest-brand-link__logo { height: 22px; }

/* ════════════════════════════════════════════════════════
   THEME — GARDEN (fresh green organic)
═════════════════════════════════════════════════════════ */
body.theme-garden {
  --bg:         #F3FAF4;
  --card:       #FFFFFF;
  --card-alt:   #EBF5EC;
  --text:       #0F2D18;
  --text-2:     #2A5C35;
  --text-3:     #5A9068;
  --border:     #C8E6CC;
  --border-2:   #A8D4AE;
  --accent:     #2E7D4F;
  --accent-l:   #D4EDDA;
  --accent-d:   #1A5C35;
  --gold:       #2E7D4F;
  --gold-l:     #D4EDDA;
  --gold-d:     #1A5C35;
  --green:      #2E7D4F;
  --green-l:    #D4EDDA;
  --closed-bg:  #EAF3EB;
  --hero-bg:    linear-gradient(160deg, #0D2B14 0%, #1A4D24 55%, #245E2E 100%);
  --hero-glow1: rgba(46,125,79,.25);
  --hero-glow2: rgba(46,125,79,.14);
  --font-serif: 'Lora', Georgia, serif;
}
body.theme-garden .hero-eyebrow { color: #7EC89A; border-color: rgba(126,200,154,.4); }
body.theme-garden .hero-divider-dot { background: #7EC89A; }
body.theme-garden .hero-divider-line { background: rgba(126,200,154,.35); }
body.theme-garden .hero-venue em { color: #7EC89A; }
body.theme-garden .day-card.is-weekend { border-color: #A8D4AE; background: #F0FBF1; }
body.theme-garden .month-nav { background: rgba(243,250,244,.94); }
body.theme-garden .powered-mark,
body.theme-garden .print-bar-brand .guest-brand-link__logo { height: 22px; }

/* ════════════════════════════════════════════════════════
   THEME — MINIMAL (clean white modern)
═════════════════════════════════════════════════════════ */
body.theme-minimal {
  --bg:         #F8F8F8;
  --card:       #FFFFFF;
  --card-alt:   #F4F4F4;
  --text:       #111111;
  --text-2:     #444444;
  --text-3:     #888888;
  --border:     #E0E0E0;
  --border-2:   #CCCCCC;
  --accent:     #111111;
  --accent-l:   #F0F0F0;
  --accent-d:   #000000;
  --gold:       #111111;
  --gold-l:     #F0F0F0;
  --gold-d:     #000000;
  --green:      #1A7A4A;
  --green-l:    #D8F0E4;
  --closed-bg:  #F0F0F0;
  --hero-bg:    linear-gradient(160deg, #111111 0%, #222222 55%, #333333 100%);
  --hero-glow1: rgba(255,255,255,.04);
  --hero-glow2: rgba(255,255,255,.02);
  --font:       'Outfit', 'Inter', system-ui, sans-serif;
  --font-serif: 'Outfit', 'Inter', system-ui, sans-serif;
}
body.theme-minimal .hero-eyebrow { color: #AAAAAA; border-color: rgba(255,255,255,.2); }
body.theme-minimal .hero-divider-dot { background: #888; }
body.theme-minimal .hero-divider-line { background: rgba(255,255,255,.2); }
body.theme-minimal .hero-venue em { color: #CCCCCC; }
body.theme-minimal .day-num-big { font-family: 'Outfit', sans-serif; font-weight: 700; }
body.theme-minimal .day-card.is-weekend { border-color: #CCCCCC; background: #FAFAFA; }
body.theme-minimal .day-card.is-today { border-color: #111; box-shadow: 0 0 0 2px rgba(0,0,0,.15); }
body.theme-minimal .month-nav { background: rgba(248,248,248,.96); }
body.theme-minimal .powered-mark,
body.theme-minimal .print-bar-brand .guest-brand-link__logo { height: 22px; }

/* ════════════════════════════════════════════════════════
   THEME — MEDITERRANEAN (blue coastal)
═════════════════════════════════════════════════════════ */
body.theme-mediterranean {
  --bg:         #F0F6FF;
  --card:       #FFFFFF;
  --card-alt:   #E8F0FA;
  --text:       #0D1F3C;
  --text-2:     #1E4080;
  --text-3:     #5078B8;
  --border:     #C0D4F0;
  --border-2:   #A0BCE8;
  --accent:     #1A55B8;
  --accent-l:   #DEEAF8;
  --accent-d:   #0F3C8A;
  --gold:       #1A55B8;
  --gold-l:     #DEEAF8;
  --gold-d:     #0F3C8A;
  --green:      #2E8B7A;
  --green-l:    #D0EDE8;
  --closed-bg:  #E8F0FA;
  --hero-bg:    linear-gradient(160deg, #0A1A3C 0%, #102550 55%, #183068 100%);
  --hero-glow1: rgba(26,85,184,.25);
  --hero-glow2: rgba(100,160,255,.14);
  --font-serif: 'Playfair Display', Georgia, serif;
}
body.theme-mediterranean .hero-eyebrow { color: #80B4FF; border-color: rgba(128,180,255,.4); }
body.theme-mediterranean .hero-divider-dot { background: #80B4FF; }
body.theme-mediterranean .hero-divider-line { background: rgba(128,180,255,.35); }
body.theme-mediterranean .hero-venue em { color: #80B4FF; }
body.theme-mediterranean .day-card.is-weekend { border-color: #A0BCE8; background: #F5F9FF; }
body.theme-mediterranean .day-card.is-today { border-color: #1A55B8; box-shadow: 0 0 0 2px rgba(26,85,184,.18); }
body.theme-mediterranean .month-nav { background: rgba(240,246,255,.94); }
body.theme-mediterranean .powered-mark,
body.theme-mediterranean .print-bar-brand .guest-brand-link__logo { height: 22px; }
body.theme-mediterranean .btn-gold { background: #1A55B8; }
body.theme-mediterranean .btn-gold:hover { background: #0F3C8A; }

/* ════════════════════════════════════════════════════════
   THEME — RUSTIC (dark wood amber)
═════════════════════════════════════════════════════════ */
body.theme-rustic {
  --bg:         #1C1208;
  --card:       #261A0C;
  --card-alt:   #2E2010;
  --text:       #F0E0C0;
  --text-2:     #C8A870;
  --text-3:     #8A6840;
  --border:     #3E2E18;
  --border-2:   #4E3A22;
  --accent:     #D4882A;
  --accent-l:   #3A2810;
  --accent-d:   #A86020;
  --gold:       #D4882A;
  --gold-l:     #3A2810;
  --gold-d:     #A86020;
  --green:      #5A9060;
  --green-l:    #1E3020;
  --closed-bg:  #181008;
  --hero-bg:    linear-gradient(160deg, #0E0800 0%, #1C1005 55%, #2A1808 100%);
  --hero-glow1: rgba(212,136,42,.20);
  --hero-glow2: rgba(212,136,42,.10);
  --font-serif: 'DM Serif Display', Georgia, serif;
}
body.theme-rustic .hero-eyebrow { border-color: rgba(212,136,42,.4); }
body.theme-rustic .day-card { border-color: var(--border); }
body.theme-rustic .day-card.is-weekend { border-color: #4E3A22; background: #2E2010; }
body.theme-rustic .day-card.is-today { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,136,42,.22); }
body.theme-rustic .day-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,.4); }
body.theme-rustic .day-date-col { border-right-color: var(--border); }
body.theme-rustic .is-weekend .day-date-col { background: #2E2010; }
body.theme-rustic .closed-icon { background: #3E2E18; }
body.theme-rustic .week-label-line { background: var(--border); }
body.theme-rustic .month-nav { background: rgba(28,18,8,.94); border-bottom-color: var(--border); }
body.theme-rustic .month-nav-btn { border-color: var(--border); background: var(--card); color: var(--text-2); }
body.theme-rustic .month-nav-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-l); }
body.theme-rustic .summary-footer { background: var(--card); border-color: var(--border); }
body.theme-rustic .print-bar { background: rgba(28,18,8,.95); border-top-color: var(--border); }
body.theme-rustic .btn-ghost { border-color: var(--border); background: var(--card); color: var(--text-2); }
body.theme-rustic .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-l); }
body.theme-rustic ::-webkit-scrollbar-thumb { background: var(--border-2); }
body.theme-rustic .powered-mark,
body.theme-rustic .print-bar-brand .guest-brand-link__logo { height: 22px; }
body.theme-rustic .print-bar-brand { color: var(--text-3); }

/* Subscribe / guest-message modals */
@keyframes mm-pop-in { from{transform:scale(0) rotate(-15deg)} to{transform:scale(1) rotate(0)} }
.modal-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(17,24,39,.6); backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .22s;
}
body.theme-rustic .modal-overlay { background: rgba(0, 0, 0, .78); }
.modal-overlay[hidden] { display: none !important; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  width: 100%; max-width: 480px;
  background: var(--card); border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 48px rgba(17,24,39,.22);
  box-sizing: border-box;
  max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 8px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(60px); opacity: 0;
  transition: transform .3s cubic-bezier(.32,1,.56,1), opacity .22s;
}
body.theme-rustic .modal-box {
  box-shadow: 0 -8px 48px rgba(0, 0, 0, .55);
  border: 1px solid var(--border);
}
.modal-overlay.open .modal-box { transform: translateY(0); opacity: 1; }
@media (min-width: 600px) {
  .modal-overlay { align-items: center; padding: 24px; }
  .modal-box { border-radius: 24px; transform: scale(.94); }
  .modal-overlay.open .modal-box { transform: scale(1); }
}
@media (max-width: 599px) {
  .modal-box {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    transform: none;
    transition: opacity .22s;
  }
  .modal-overlay.open .modal-box { transform: none; }
}
.offers-modal-head {
  background: var(--hero-bg);
  padding: 28px 24px 22px; text-align: center; position: relative; overflow: hidden;
  border-radius: 24px 24px 0 0;
}
@media (max-width: 599px) {
  .offers-modal-head { padding: 20px 20px 16px; border-radius: 20px 20px 0 0; }
}
.offers-modal-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, var(--hero-glow1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 70%, var(--hero-glow2) 0%, transparent 60%);
  pointer-events: none;
}
.offers-modal-icon { font-size: 44px; margin-bottom: 10px; position: relative; z-index: 1; animation: mm-pop-in .4s cubic-bezier(.34,1.56,.64,1); }
.offers-modal-title { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.02em; position: relative; z-index: 1; }
.offers-modal-sub { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; line-height: 1.5; position: relative; z-index: 1; }
.offers-perks {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  margin-top: 14px; position: relative; z-index: 1;
}
.offers-perk {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
}
.offers-modal-body { padding: 20px 24px 8px; }
.offers-modal-footer {
  padding: 14px 24px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; gap: 8px;
}
@media (max-width: 599px) {
  .offers-modal-body { padding: 16px 20px 8px; }
  .offers-modal-footer { padding: 12px 20px calc(16px + env(safe-area-inset-bottom, 0px)); }
}
.offers-field-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.offers-label { font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 4px; display: block; }
.offers-input {
  width: 100%; height: 46px; padding: 0 14px;
  border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); font-family: inherit; font-size: 14px;
  color: var(--text); outline: none; transition: border-color .15s, background .15s;
  box-sizing: border-box; display: block;
  -webkit-appearance: none; appearance: none;
}
@media (max-width: 599px) { .offers-input { font-size: 16px; } }
textarea.offers-input {
  height: auto; min-height: 88px; padding: 12px 14px;
  line-height: 1.45; resize: vertical;
}
.offers-input:focus { border-color: var(--accent); background: var(--card); }
.offers-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }
.offers-consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; accent-color: var(--accent); cursor: pointer; }
.offers-consent label {
  font-size: 12px; color: var(--text-3); line-height: 1.5; cursor: pointer;
  flex: 1; min-width: 0; overflow-wrap: anywhere;
}
.offers-consent label a { color: var(--accent); }
.btn-offers-send {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-d, var(--gold-d)) 100%);
  color: #fff;
  border: none; border-radius: 14px;
  font-family: inherit; font-size: 15px; font-weight: 800;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(26, 23, 18, .14);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-offers-send:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26, 23, 18, .18); }
.btn-offers-send:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-modal-cancel {
  width: 100%; padding: 12px;
  background: transparent; color: var(--text-3); border: none;
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
}
.offers-sent-state {
  padding: 44px 24px calc(28px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}
.offers-sent-icon {
  font-size: 56px;
  margin-bottom: 14px;
  line-height: 1;
  animation: mm-pop-in .45s cubic-bezier(.34,1.56,.64,1);
}
.offers-sent-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.offers-sent-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.offers-sent-actions {
  max-width: 300px;
  margin: 0 auto;
}
.mm-offers-sent-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-d, var(--gold-d)) 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  box-shadow: 0 4px 16px rgba(26, 23, 18, .14);
}
.mm-offers-sent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 23, 18, .18);
}
.mm-offers-sent-btn:active {
  transform: translateY(0);
}
.menu-subscribe-error { font-size: 12px; color: #DC2626; margin: 0; }
.menu-subscribe-success { font-size: 12px; color: #15803D; margin: 0; }
.menu-subscribe-optional { font-weight: 400; color: var(--text-3); }
.offers-modal-body .form-hint {
  font-size: 12px; color: var(--text-3); line-height: 1.45; margin: 0;
}
.mm-guest-message-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 4px;
  width: 100%;
}
.mm-guest-message-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(17, 24, 39, .12);
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  min-width: 0;
  text-align: center;
}
@media (max-width: 360px) {
  .mm-guest-message-types {
    grid-template-columns: 1fr;
  }
}
.mm-guest-message-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mm-guest-message-type:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--text);
}
.mm-guest-status-page {
  min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  padding: 24px 16px; background: var(--bg);
}
.mm-guest-status-card {
  width: 100%; max-width: 420px; background: var(--card);
  border-radius: 16px; padding: 28px 24px; box-shadow: 0 8px 32px rgba(0,0,0,.08);
  text-align: center;
}
.mm-guest-status-card h1 { font-size: 1.35rem; font-weight: 800; margin: 0 0 10px; color: var(--text); }
.mm-guest-status-card p { font-size: .92rem; color: var(--text-2); line-height: 1.55; margin: 0; }

@media print {
  .month-nav, .print-bar, .action-bar, .more-menu, .powered-footer, .jump-today-wrap, .modal-overlay { display: none !important; }
}
