/* ==========================================================================
   BIRYANI JUNCTION STYLE SYSTEM (View-Only Digital Menu)
   Theme: Royal Indian Dining (Dark Charcoal, Saffron Gold, Amber, Emerald Green)
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
  --color-bg: #0b0908;
  --color-bg-light: #15110f;
  --color-surface: rgba(28, 22, 19, 0.75);
  --color-surface-hover: rgba(38, 30, 26, 0.95);
  --color-surface-border: rgba(223, 177, 91, 0.15);
  --color-surface-border-hover: rgba(223, 177, 91, 0.4);
  
  /* Primary Accents */
  --color-primary: #dfb15b;       /* Saffron Gold */
  --color-primary-hover: #f1c97a; /* Bright Gold */
  --color-primary-rgb: 223, 177, 91;
  --color-text-main: #fcf9f6;
  --color-text-muted: #bdafa4;
  
  /* Status Colors */
  --color-veg: #10b981;      /* Emerald Green */
  --color-nonveg: #ef4444;   /* Crimson Red */

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadow & Blur */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 16px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
  --shadow-gold-glow: 0 0 15px rgba(223, 177, 91, 0.25);
  --glass-blur: blur(16px);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & FOUNDATION --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  line-height: 1.5;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(223, 177, 91, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(223, 177, 91, 0.6);
}

/* --- AMBIENT GLOW EFFECT --- */
.glow {
  position: fixed;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.12;
  z-index: -1;
  transition: all 1s ease;
}
.glow-1 {
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10vw;
  right: -10vw;
}
.glow-2 {
  background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
  bottom: -10vw;
  left: -10vw;
}

/* --- LAYOUT WRAPPER --- */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* --- BUTTONS & LINKS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.2px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #110905;
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-main);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

/* --- VEG / NON-VEG ICONS --- */
.veg-dot, .nonveg-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid;
  padding: 2px;
  position: relative;
}
.veg-dot {
  border-color: var(--color-veg);
}
.veg-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-veg);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nonveg-dot {
  border-color: var(--color-nonveg);
}
.nonveg-dot::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid var(--color-nonveg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* --- HERO SECTION --- */
.hero-section {
  width: 100%;
  padding: 1.5rem;
}
.hero-banner {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(223, 177, 91, 0.15);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 10px rgba(223, 177, 91, 0.4));
  border-radius: 8px;
}
.restaurant-name {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-text-main) 30%, var(--color-primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.restaurant-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.meta-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
}
.meta-divider {
  color: rgba(255, 255, 255, 0.2);
}
.veg-only-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-veg);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- CONTROLS SECTION (Search, Filter, Categories) --- */
.controls-section {
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-normal);
}
.controls-section.scrolled {
  background-color: rgba(11, 9, 8, 0.85);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.controls-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--color-surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-surface-border);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}
.controls-section.scrolled .controls-container {
  margin-bottom: 0.5rem;
  border-color: rgba(223, 177, 91, 0.08);
  background-color: rgba(20, 16, 14, 0.6);
}

/* Search Box */
.search-box {
  position: relative;
  flex: 1 1 350px;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-primary);
  pointer-events: none;
}
.search-box input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-main);
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.search-box input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(223, 177, 91, 0.15);
  background-color: rgba(0, 0, 0, 0.6);
}
.search-clear-btn {
  position: absolute;
  right: 1.1rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--transition-fast);
}
.search-clear-btn:hover {
  color: var(--color-primary);
}

/* Diet Filters Pill */
.diet-filter-pill-group {
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.diet-pill {
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}
.diet-pill.active {
  background-color: var(--color-primary);
  color: #110905;
}
.diet-pill:not(.active):hover {
  color: var(--color-text-main);
  background-color: rgba(255, 255, 255, 0.04);
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.diet-pill.active .pill-dot {
  background-color: #110905;
  border-color: #110905;
}

/* Category Tab Navigation */
.categories-nav {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 0.25rem;
}
.categories-nav-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0.5rem;
  padding: 4px 4px 10px 4px;
  -webkit-overflow-scrolling: touch;
}
.categories-nav-wrapper::-webkit-scrollbar {
  height: 4px;
}
.categories-nav-wrapper::-webkit-scrollbar-thumb {
  background: rgba(223, 177, 91, 0.15);
}
.category-tab {
  flex: 0 0 auto;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.category-tab:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(223, 177, 91, 0.2);
  color: var(--color-text-main);
}
.category-tab.active {
  background: linear-gradient(135deg, rgba(223, 177, 91, 0.2) 0%, rgba(223, 177, 91, 0.05) 100%);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: inset 0 0 10px rgba(223, 177, 91, 0.08);
}
.tab-icon {
  font-size: 1.15rem;
}

/* --- MAIN MENU DISPLAY AREA --- */
.menu-main-content {
  padding: 1.5rem;
  flex: 1;
}

/* Empty State / No Results */
.no-results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--color-surface);
  border-radius: 16px;
  border: 1px dashed rgba(223, 177, 91, 0.2);
  animation: fadeIn 0.5s ease-out;
}
.empty-icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.no-results-container h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.no-results-container p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

/* Category Title Banner */
.category-header-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.5s ease-out;
}
.category-header-banner:first-child {
  margin-top: 0;
}
.category-header-banner h2 {
  font-size: 2.2rem;
  color: var(--color-primary);
  white-space: nowrap;
}
.category-header-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(223, 177, 91, 0.3), transparent);
}

/* Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Featured / Full Width Category Banner Card */
.category-hero-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  background-color: var(--color-surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-surface-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}
.category-hero-image {
  flex: 0 0 35%;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.category-hero-body {
  padding: 2rem;
  flex: 1;
}
.category-hero-body h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.category-hero-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Item Card */
.menu-item-card {
  background-color: var(--color-surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-surface-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.4s ease-out;
}
.menu-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-surface-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  background-color: var(--color-surface-hover);
}
.menu-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: transparent;
  transition: var(--transition-fast);
}
.menu-item-card.veg::before {
  background-color: rgba(16, 185, 129, 0.4);
}
.menu-item-card.non-veg::before {
  background-color: rgba(239, 68, 68, 0.4);
}
.menu-item-card:hover::before {
  opacity: 1;
  width: 6px;
}

/* Card Header (Veg icon & badges) */
.item-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.diet-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.diet-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.menu-item-card.veg .diet-label {
  color: var(--color-veg);
}
.menu-item-card.non-veg .diet-label {
  color: var(--color-nonveg);
}
.popular-badge {
  background-color: rgba(223, 177, 91, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(223, 177, 91, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Body */
.item-card-body {
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.item-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.item-description {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* Variants Selector (Chips) */
.variants-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.variant-chip {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  flex: 1 1 calc(50% - 0.4rem);
  text-align: center;
}
.variant-chip:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(223, 177, 91, 0.2);
  color: var(--color-text-main);
}
.variant-chip.active {
  background-color: rgba(223, 177, 91, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}
.variant-price {
  font-weight: 700;
  margin-left: 2px;
}

/* Card Footer (Price only) */
.item-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.price-display {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}
.price-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* --- FOOTER --- */
.app-footer {
  margin-top: auto;
  background-color: #0c0908;
  border-top: 1px solid rgba(223, 177, 91, 0.1);
  padding: 4rem 2rem 2rem 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  color: #110905;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact h4, .footer-links h4 {
  font-size: 1.1rem;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-contact h4::after, .footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--color-primary);
}
.footer-contact p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-action-link {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.footer-action-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 992px) {
  .hero-banner {
    min-height: 320px;
    padding: 2rem 1.5rem;
  }
  .restaurant-name {
    font-size: 2.8rem;
  }
  .tagline {
    font-size: 1.1rem;
  }
  .categories-nav-wrapper {
    padding-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0.75rem;
  }
  .hero-banner {
    border-radius: 12px;
    min-height: 280px;
    padding: 1.5rem 1.25rem;
  }
  .hero-logo-img {
    height: 65px;
    margin-bottom: 0.75rem;
  }
  .restaurant-name {
    font-size: 2.2rem;
  }
  .tagline {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .restaurant-meta {
    gap: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .meta-divider {
    display: none;
  }
  .meta-item {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .hero-actions {
    gap: 0.5rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    flex-grow: 1;
  }

  .controls-section {
    padding: 0 0.75rem;
  }
  .controls-container {
    padding: 0.75rem;
    border-radius: 12px;
    gap: 0.75rem;
  }
  .search-box {
    flex: 1 1 100%;
  }
  .search-box input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
  }
  .search-icon {
    left: 0.85rem;
  }
  .diet-filter-pill-group {
    width: 100%;
    justify-content: space-between;
  }
  .diet-pill {
    flex-grow: 1;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .menu-main-content {
    padding: 0.75rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .category-header-banner {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .category-header-banner h2 {
    font-size: 1.6rem;
  }
  
  .category-hero-card {
    flex-direction: column;
  }
  .category-hero-image {
    flex: 0 0 100%;
    width: 100%;
    height: 140px;
  }
  .category-hero-body {
    padding: 1.25rem;
  }
  .category-hero-body h3 {
    font-size: 1.4rem;
  }
  .category-hero-body p {
    font-size: 0.85rem;
  }

  .app-footer {
    padding: 3rem 1rem 1.5rem 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
