/* CSS Document for Golden Masala Restaurant Menu */

:root {
  --bg-dark: #0A0A0C;
  --bg-dark-secondary: #121216;
  --card-bg: rgba(26, 26, 32, 0.6);
  --card-border: rgba(212, 175, 55, 0.15);
  --card-border-hover: rgba(212, 175, 55, 0.4);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA7C11;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #AA7C11 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFE4B5 0%, #FFD700 50%, #D4AF37 100%);
  
  --text-light: #F5F5F7;
  --text-muted: #A0A0AB;
  --text-dark: #121216;
  
  --status-green: #4ade80;
  --status-orange: #fb923c;
  --status-red: #f87171;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.2);
  --shadow-gold-heavy: 0 0 25px rgba(212, 175, 55, 0.4);
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, serif;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

/* Typography helper */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Ambient glow blobs */
.ambient-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.glow-1 {
  top: 10%;
  left: -10%;
}
.glow-2 {
  top: 60%;
  right: -10%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-heavy);
}

.btn-gold-outline {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
}
.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--text-light);
}

.btn-block {
  width: 100%;
}

/* Navbar */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background-image: url('assets/images/cover.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 12, 0.7) 0%, rgba(10, 10, 12, 0.95) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-owner {
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero-logo-box {
  margin-bottom: 3rem;
}

.logo-circle-gold {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #AA7C11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  padding: 3px;
  box-shadow: var(--shadow-gold-heavy);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-dark);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin-bottom: 4rem;
}

.offer-card {
  background: rgba(20, 20, 25, 0.75);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.discount-amount {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.discount-label {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 5px;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.offer-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.delivery-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.delivery-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.delivery-condition {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.delivery-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Info Bar */
.hero-info-bar {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  width: 100%;
  background: rgba(15, 15, 20, 0.9);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
  backdrop-filter: blur(15px);
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 1rem;
}

.info-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--gold-primary);
}

.info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Interactive Menu Wrapper */
.menu-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Filters Bar */
.filters-bar-container {
  position: sticky;
  top: 4.5rem;
  z-index: 100;
  background: var(--bg-dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
}

.filters-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-and-toggles {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.search-box {
  position: relative;
  flex-grow: 1;
  max-width: 600px;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 1.25rem;
  height: 1.25rem;
}

.search-box input {
  width: 100%;
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.9rem 1.25rem 0.9rem 3.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  background: rgba(20, 20, 25, 1);
}

.toggle-filters {
  display: flex;
  gap: 0.75rem;
}

.filter-toggle-btn {
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.filter-toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-toggle-btn.active {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.veg-dot { background-color: var(--status-green); }
.vegan-dot { background-color: var(--status-green); border: 1px solid var(--text-light); }
.spicy-dot { background-color: var(--status-red); }

/* Scrollable Category Tabs */
.category-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.category-tabs-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.category-tabs {
  display: flex;
  gap: 0.6rem;
  padding: 0.2rem 0;
  width: max-content;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

/* Active Filters Box */
.active-filters-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
}
.active-filters-summary span {
  color: var(--text-muted);
}
.tags-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.active-tag-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-remove-tag {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
}
.btn-remove-tag:hover {
  color: var(--text-light);
}
.btn-clear-filters {
  margin-left: auto;
  color: var(--status-red);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Menu Layout Columns */
.menu-content-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

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

/* Heading banner for sections inside grid */
.section-banner-card {
  grid-column: 1 / -1;
  position: relative;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
}

.section-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s ease;
}

.section-banner-card:hover .section-banner-img {
  transform: scale(1.03);
}

.section-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.4) 60%, rgba(10, 10, 12, 0.8) 100%);
  z-index: 2;
}

.section-banner-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-banner-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-light);
}

.section-banner-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Menu Card */
.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-sm);
}

.menu-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: rgba(30, 30, 38, 0.8);
}

.card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.card-id-name {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.item-id {
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
}

.card-body {
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.item-indicators {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.indicator-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-veg {
  background-color: rgba(74, 222, 128, 0.15);
  color: var(--status-green);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-vegan {
  background-color: rgba(74, 222, 128, 0.2);
  color: var(--status-green);
  border: 1px solid var(--status-green);
}

.spicy-icon-container {
  display: inline-flex;
  gap: 1px;
}
.chili-svg {
  width: 14px;
  height: 14px;
  color: var(--status-red);
}

.allergen-badge-list {
  display: flex;
  gap: 2px;
}
.allergen-mini {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.btn-add-plate {
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-add-plate:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-add-plate svg {
  width: 16px;
  height: 16px;
}

/* Order Sidebar */
.order-sidebar {
  position: sticky;
  top: 10.5rem;
  z-index: 90;
}

.sidebar-sticky {
  background: rgba(20, 20, 25, 0.85);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 12rem);
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-light);
}
.sidebar-header .badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.sidebar-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

/* Empty plate view */
.empty-plate-view {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
}
.empty-plate-icon {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}
.empty-plate-view p {
  font-size: 0.85rem;
}

/* Plate items list */
.plate-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plate-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plate-item-info {
  flex-grow: 1;
}

.plate-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

.plate-item-price {
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-top: 0.2rem;
}

.plate-item-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-dark-secondary);
  padding: 0.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-qty {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 800;
}
.btn-qty:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-val {
  font-size: 0.8rem;
  font-weight: 700;
  width: 16px;
  text-align: center;
}

.sidebar-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.total-line {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}

.total-line span:last-child {
  color: var(--gold-primary);
}

.minimum-order-warning {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: var(--status-red);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.warning-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Catering Section */
.catering-section {
  background-color: var(--bg-dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6rem 2rem;
}

.catering-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.catering-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.catering-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
}

.catering-info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}

.c-box {
  background: var(--bg-dark);
  border: 1px solid var(--card-border);
  padding: 1.5rem;
  border-radius: 15px;
}
.c-box h4 {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.c-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.catering-image-panel {
  height: 450px;
  border-radius: 25px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}

/* Legal info / Allergens */
.legal-info-section {
  padding: 5rem 2rem;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.accordion-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.legal-column h4 {
  color: var(--gold-primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.allergen-list, .additive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.allergen-list li, .additive-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.allergen-list strong, .additive-list strong {
  color: var(--gold-primary);
  margin-right: 0.5rem;
}

/* Floating Cart on Mobile */
.floating-cart-btn {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.cart-badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--status-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}
.cart-icon {
  width: 28px;
  height: 28px;
}

/* Footer */
.main-footer {
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-primary);
}

.footer-links p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .menu-content-container {
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
  }
  .catering-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .catering-image-panel {
    height: 300px;
    order: -1;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-info-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .info-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  
  .menu-content-container {
    grid-template-columns: 1fr;
  }
  
  /* Mobile Sidebar Toggle behavior */
  .order-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    z-index: 1001;
    transition: right 0.3s ease;
  }
  
  .order-sidebar.open {
    right: 0;
  }
  
  .sidebar-sticky {
    height: 100%;
    border-radius: 0;
    max-height: 100vh;
    border-left: 1px solid var(--card-border);
  }
  
  .floating-cart-btn {
    display: flex;
  }
  
  .accordion-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .search-and-toggles {
    flex-direction: column;
    align-items: stretch;
  }
  .filters-bar-container {
    top: 4rem;
  }
  .hero-section {
    padding-top: 6rem;
  }
}
