:root {
  --primary-accent: #e62e00; /* High Contrast Accessible Red */
  --bg-dark: #121212;
  --text-main: #2b2b2b;
  --text-muted: #595959;
  --card-surface: #fdfdfd;
  --border-element: #dbdbdb;
  --focus-outline: #005bc4;
}

/* Base Accessibility Reset Rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #f7f8fa;
  color: var(--text-main);
  line-height: 1.5;
}

/* Header & Location Elements */
.menu-app-header {
  background: #ffffff;
  text-align: center;
}
.header-container {
  padding: 24px 16px 12px;
  text-align: center;
}


.brand-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--bg-dark);
}
.brand-loc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Draggable Sticky Tab Bar Elements */
.sticky-nav-wrapper {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-element);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.nav-scroll-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  scrollbar-width: none;
}
.nav-scroll-track::-webkit-scrollbar {
  display: none;
}
.nav-tab {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 16px 24px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}
.nav-tab:focus-visible {
  outline: 3px solid var(--focus-outline);
  outline-offset: -3px;
}
.nav-tab.active {
  color: var(--primary-accent);
  border-bottom-color: var(--primary-accent);
}
.nav-arrow {
  background: #ffffff;
  border: none;
  font-size: 28px;
  padding: 0 16px;
  color: var(--text-muted);
  cursor: pointer;
}

/* Viewport Containers */
.menu-content-view {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}
.menu-section {
  display: none;
}
.menu-section.active {
  display: block;
}

/* Category Intro Banners */
.section-banner {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border-left: 6px solid var(--primary-accent);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.section-banner h2 { font-size: 24px; margin-bottom: 6px; }
.schedule { font-weight: 700; color: var(--primary-accent); font-size: 14px; }
.notices { font-size: 14px; color: var(--text-muted); margin-top: 2px; }

/* Mobile-First Responsive Layout Grid Rules */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default Mobile Display Track */
  gap: 16px;
}
@media (min-width: 680px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); } /* Tablets */
}
@media (min-width: 960px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); } /* Desktops */
}

/* Dynamic Item Cards */
.menu-card {
  background: var(--card-surface);
  border: 1px solid var(--border-element);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.card-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.card-title h3 { font-size: 17px; font-weight: 700; color: var(--bg-dark); }
.price {
  font-weight: 800;
  font-size: 16px;
  color: var(--bg-dark);
}
.card-details {
  font-size: 14px;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 12px;
}

/* Dietary Information Indicators */
.diet-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}
.diet-tag.raw { background: #fff1ee; color: var(--primary-accent); }
.diet-tag.vege { background: #ebf7ee; color: #1e7e34; }









.menu-category-header {
  margin-top: 32px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.menu-category-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bg-dark);
  
} 

.category-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

:root {
  --brand-red: #e62e00;
  --bg-card: #ffffff;
  --border-color: #dbdbdb;
  --text-main: #2b2b2b;
  --contrast-ratio: 4.5; /* Target WCAG AA compliance */
}

/* Mobile-First Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 16px;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .special-highlight {
    grid-column: span 2; /* Make the popular roll special stand out */
  }
}

/* Accessible Menu Cards */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-red);
}

/* Diet/Raw Labels with High Contrast */
.diet-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--brand-red);
}

