/* ==========================================================================
   BaanJia (บ้านเจีย) — Mobile-First 2026 UX/UI Design System
   Crafted Comfort Food & Dining | Dual Branch Hub
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=IBM+Plex+Sans+Thai:wght@300;400;500;600;700&family=Kanit:wght@300;400;500;600;700&family=Mitr:wght@400;500;600&family=Outfit:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,400&family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Sarabun:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens & Color Palette --- */
:root {
  /* Theme Colors */
  --bg-main: #061a12;
  --bg-deep: #030d09;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-hover: rgba(255, 255, 255, 0.09);
  --surface-active: rgba(255, 255, 255, 0.14);
  --surface-card: rgba(14, 38, 28, 0.65);
  --surface-highlight: rgba(200, 169, 110, 0.12);
  
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-gold: rgba(200, 169, 110, 0.35);
  --border-gold-glow: rgba(200, 169, 110, 0.6);
  
  --text-primary: #f6f3eb;
  --text-secondary: rgba(246, 243, 235, 0.72);
  --text-muted: rgba(246, 243, 235, 0.42);
  
  --gold: #c8a96e;
  --gold-light: #e2cca0;
  --gold-dark: #9f7d45;
  --gold-glow: rgba(200, 169, 110, 0.22);
  
  --emerald-accent: #22c55e;
  --emerald-glow: rgba(34, 197, 94, 0.28);
  --ambient-green: rgba(22, 101, 52, 0.45);
  
  --line-color: #06c755;
  --line-glow: rgba(6, 199, 85, 0.25);
  
  /* Radii & Shadows */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-bento: 0 12px 36px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-subtle);
  --shadow-glow-gold: 0 8px 32px rgba(200, 169, 110, 0.18);

  /* Typography Defaults: Option 1 (Modern Heritage) */
  --font-heading-th: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading-en: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'IBM Plex Sans Thai', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en-sub: 'Outfit', sans-serif;
  
  --safe-bottom: env(safe-area-inset-bottom, 20px);
}

/* --- Dynamic Font Pairing Presets --- */
body.font-pairing-1 {
  /* Option 1: Modern Heritage (Prompt + Cormorant + IBM Plex Sans Thai) */
  --font-heading-th: 'Prompt', sans-serif;
  --font-heading-en: 'Cormorant Garamond', serif;
  --font-body: 'IBM Plex Sans Thai', sans-serif;
}

body.font-pairing-2 {
  /* Option 2: Contemporary Bold (Kanit + Plus Jakarta Sans + Anuphan) */
  --font-heading-th: 'Kanit', sans-serif;
  --font-heading-en: 'Outfit', sans-serif;
  --font-body: 'Anuphan', sans-serif;
}

body.font-pairing-3 {
  /* Option 3: Warm Artisanal Craft (Mitr + Prompt) */
  --font-heading-th: 'Mitr', sans-serif;
  --font-heading-en: 'Outfit', sans-serif;
  --font-body: 'Prompt', sans-serif;
}

body.font-pairing-4 {
  /* Option 4: Classic Thai Bistro (Sarabun + Playfair Display) */
  --font-heading-th: 'Sarabun', sans-serif;
  --font-heading-en: 'Playfair Display', serif;
  --font-body: 'Sarabun', sans-serif;
}

/* --- Reset & Global Scaffolding --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px calc(24px + var(--safe-bottom));
  position: relative;
  overflow-x: hidden;
}

/* --- Atmospheric Ambience & Noise Grain --- */
.ambient-glow {
  position: fixed;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.ambient-top {
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--ambient-green) 0%, transparent 70%);
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

.ambient-bottom {
  bottom: 50px;
  right: -150px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  animation: pulseGlow2 14s ease-in-out infinite alternate;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Main Layout Container --- */
.app-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

/* --- Utility Typography --- */
.font-th-head { font-family: var(--font-heading-th); }
.font-en-head { font-family: var(--font-heading-en); }
.font-body { font-family: var(--font-body); }

/* --- 1. Brand Hero Header --- */
.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 0 6px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.avatar-container {
  position: relative;
  margin-bottom: 14px;
}

.avatar-ring {
  width: 96px;
  height: 96px;
  padding: 3px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--gold) 0deg, rgba(200, 169, 110, 0.2) 90deg, var(--gold) 180deg, rgba(200, 169, 110, 0.2) 270deg, var(--gold) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(200, 169, 110, 0.25);
  animation: rotateRing 20s linear infinite;
}

.avatar-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 169, 110, 0.25);
  pointer-events: none;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-deep);
  border: 2px solid var(--bg-main);
  animation: counterRotateRing 20s linear infinite;
}

/* Status Pill */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: #4ade80;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s infinite ease-in-out;
}

.status-badge.closed .status-dot {
  background-color: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

/* Titles */
.brand-title-th {
  font-size: clamp(1.9rem, 6vw, 2.3rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-title-en {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
  width: 100%;
}

.ornament-line {
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.5), transparent);
}

.ornament-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
}

.brand-tagline-th {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

.brand-tagline-en {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.85;
  margin-top: 2px;
}

/* --- 2. Branch Selector & Interactive Location Card --- */
.branch-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.section-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

/* Branch Toggle Tabs */
.branch-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0, 0, 0, 0.35);
  padding: 5px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  position: relative;
  gap: 6px;
}

.branch-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}

.branch-tab-btn .badge-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.branch-tab-btn.active {
  background: var(--surface-card);
  color: var(--gold-light);
  font-weight: 600;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.branch-tab-btn.active .badge-pill {
  background: var(--gold);
  color: var(--bg-deep);
}

/* Branch Detail Card (Bento) */
.location-bento-card {
  background: var(--surface-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-bento);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.location-bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.branch-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.branch-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.branch-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.branch-hours-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.22);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.branch-hours-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Branch Action Buttons */
.branch-actions-grid {
  display: flex;
  width: 100%;
  margin-top: 4px;
}

.btn-nav-map {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.3);
  transition: all 0.18s ease;
}

.btn-nav-map:active {
  transform: scale(0.97);
}

.btn-copy-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-copy-address:active {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(0.97);
}

/* --- 3. Core Action Links (Bento Cards) --- */
.links-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Hero LINE Card */
.hero-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(6, 199, 85, 0.15) 0%, rgba(6, 26, 18, 0.8) 100%);
  border: 1px solid rgba(6, 199, 85, 0.4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(6, 199, 85, 0.12), 0 0 0 1px rgba(6, 199, 85, 0.2);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hero-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(6, 199, 85, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-action-card:active {
  transform: scale(0.98);
}

.action-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.action-card-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.action-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

.action-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

.arrow-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-action-card:hover .arrow-badge,
.standard-action-card:hover .arrow-badge {
  transform: translateX(3px);
  background: rgba(200, 169, 110, 0.2);
}

/* Standard Action Cards */
.standard-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-bento);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.standard-action-card:active {
  transform: scale(0.98);
  background: var(--surface-active);
}

.standard-action-card.gold-card {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.12) 0%, rgba(6, 26, 18, 0.8) 100%);
  border-color: var(--border-gold);
}

/* --- 4. Signature Food Highlights (Bento Mini Showcase) --- */
.food-showcase-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.food-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.food-card {
  background: var(--surface-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: all 0.2s ease;
}

.food-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.food-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.food-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

.food-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* --- 5. Social Grid --- */
.social-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 6px;
  background: var(--surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  gap: 6px;
  transition: all 0.18s ease;
}

.social-card:active {
  transform: scale(0.96);
  background: var(--surface-active);
}

.social-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.social-handle {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* --- 6. Thai Typography Switcher Widget --- */
.font-switcher-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(200, 169, 110, 0.3);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.font-switcher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.font-switcher-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.font-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.font-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.font-pill-btn .font-meta {
  font-size: 0.66rem;
  color: var(--text-muted);
}

.font-pill-btn.active {
  background: var(--surface-highlight);
  border-color: var(--border-gold);
  color: var(--gold-light);
  font-weight: 600;
}

/* --- 7. Footer --- */
.app-footer {
  text-align: center;
  padding: 20px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-credits {
  font-size: 0.7rem;
  color: rgba(246, 243, 235, 0.28);
}

/* --- 8. Toast Notification --- */
.toast-notice {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(200, 169, 110, 0.95);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --- 9. Menu Preview Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  background: var(--bg-main);
  border: 1px solid var(--border-gold);
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  padding: 24px 20px calc(24px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.modal-overlay.open .modal-sheet {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-title {
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px dashed var(--border-subtle);
  padding-bottom: 4px;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
}

.menu-item-name {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.menu-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* --- Animations --- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1.15); opacity: 0.75; }
}

@keyframes pulseGlow2 {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0.65; }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes counterRotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Desktop Polish */
@media (min-width: 600px) {
  body {
    padding-top: 48px;
  }
  .app-container {
    max-width: 500px;
  }
}
