/* Maharaaj - Theme: off-white, blue #395572. Clean, modern, mobile-first. */
:root {
  --color-bg: #f8f7f4;
  --color-bg-card: #fff;
  --color-primary: #395572;
  --color-primary-dark: #2d4359;
  --color-primary-light: #4a6a8c;
  --color-primary-gradient: linear-gradient(135deg, #4a6a8c 0%, #395572 50%, #2d4359 100%);
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-border: #e5e3de;
  --color-success: #0d7d4d;
  --color-error: #b91c1c;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(57, 85, 114, 0.08);
  --header-height: 56px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  padding-top: var(--header-height);
}
body.cookie-notice-active {
  padding-bottom: 5.5rem;
}

/* Admin pages don't use the front-end fixed header */
.admin-body {
  padding-top: 0;
}

.main-content {
  min-height: calc(100vh - var(--header-height) - 80px);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header – blue bar with white text */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-primary-gradient);
  background-color: var(--color-primary);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.logo:hover {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
}
.logo:hover img {
  opacity: 0.92;
}
.main-nav {
  display: none;
  gap: 1.25rem;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
}
.main-nav a:hover {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}
.header-wait-times {
  display: none;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.95);
  gap: 1rem;
}
.wait-item strong {
  color: #fff;
}
.header-basket {
  margin-left: auto;
}
.btn-basket {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btn-basket:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}
.basket-count {
  background: var(--color-primary);
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}
.basket-label {
  font-size: 0.9rem;
}
.basket-total-mini {
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 0.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .header-wait-times { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav open – keep blue bar with white text */
.site-header.nav-open .main-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-primary);
  background: var(--color-primary-gradient);
  padding: 1rem;
  flex-direction: column;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.site-header.nav-open .header-wait-times {
  display: flex;
  width: 100%;
  padding: 0 1rem 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
}
.btn-secondary {
  background: var(--color-border);
  color: var(--color-text);
}
.btn-secondary:hover {
  background: #ddd;
}
.btn-block { width: 100%; }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.875rem; }

/* Hero / Slider – use new blue gradient */
.hero {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: var(--color-primary);
  background: var(--color-primary-gradient);
}
.hero-slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  background: var(--color-primary);
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.hero-overlay h1 { margin: 0 0 0.25rem; font-size: 1.75rem; }
.hero-overlay p { margin: 0; opacity: 0.95; font-size: 1rem; }
.hero-cta { margin-top: 0.5rem; display: inline-block; }

@media (min-width: 768px) {
  .hero { max-height: 480px; }
  .hero-slide { height: 480px; }
  .hero-overlay h1 { font-size: 2.25rem; }
}

/* Content sections */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.section h2 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.section p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.landing-article { max-width: 720px; }
.landing-article p { color: var(--color-text); line-height: 1.65; }
.landing-figure {
  margin: 1.75rem 0;
}
.landing-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}

/* Featured items (home) */
.featured-items {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.featured-items-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.featured-items-head h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}
.featured-items-link {
  font-weight: 600;
  font-size: 0.92rem;
}
.featured-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}
.featured-item-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-card);
  box-shadow: var(--shadow);
}
.featured-item-thumb {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 0;
  cursor: pointer;
}
.featured-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-item-body {
  flex: 1;
  min-width: 0;
}
.featured-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.featured-item-name {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}
.featured-item-price {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.featured-item-desc {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Menu page */
.menu-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
.menu-page h1 {
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.menu-promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.menu-promo-box {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.menu-promo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .menu-promo-row {
    grid-template-columns: 1fr;
  }
}
.menu-checkout-bar {
  display: none;
  margin: 0.5rem 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.menu-checkout-bar.visible {
  display: flex;
}
.menu-checkout-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.menu-allergen-filter {
  margin: 0 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-card);
  box-shadow: var(--shadow);
}
.menu-allergen-filter-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--color-primary);
}
.menu-allergen-filter-summary::-webkit-details-marker {
  display: none;
}
.menu-allergen-filter[open] .menu-allergen-filter-summary {
  border-bottom: 1px solid var(--color-border);
}
.menu-allergen-filter-body {
  padding: 0.8rem 1rem 1rem;
}
.menu-allergen-filter-text {
  margin: 0 0 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.menu-allergen-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.45rem 0.9rem;
  margin-bottom: 0.75rem;
}
.menu-allergen-disclaimer {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.menu-accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-card);
  box-shadow: var(--shadow);
}
.menu-category {
  border-bottom: 1px solid var(--color-border);
}
.menu-category:last-child { border-bottom: none; }
.menu-category-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--color-bg-card);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.menu-category-header:hover {
  background: var(--color-bg);
}
.menu-category-header::after {
  content: '▼';
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.menu-category.open .menu-category-header::after {
  transform: rotate(180deg);
}
.menu-category-body {
  display: none;
  padding: 0 1.25rem 1rem;
}
.menu-category.open .menu-category-body { display: block; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0;
  cursor: pointer;
}
.menu-item-image:hover {
  border-color: #d0d0d0;
}
.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 500;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-img {
  max-width: min(960px, 95vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  background: #111;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
}
.lightbox-close:hover {
  background: rgba(0,0,0,0.55);
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-info h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.menu-item-info p { margin: 0; font-size: 0.875rem; color: var(--color-text-muted); }
.menu-item-allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}
.menu-allergen-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.14rem 0.45rem 0.14rem 0.35rem;
  font-size: 0.72rem;
  color: #4b5563;
  background: #f5f7fa;
  border: 1px solid #d7dfe8;
  border-radius: 999px;
  line-height: 1.2;
}
.menu-allergen-chip::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.62rem;
  font-weight: 700;
}
.menu-allergen-chip--celery::before { content: "Ce"; }
.menu-allergen-chip--gluten::before { content: "Gl"; }
.menu-allergen-chip--crustaceans::before { content: "Cr"; }
.menu-allergen-chip--eggs::before { content: "Eg"; }
.menu-allergen-chip--fish::before { content: "Fi"; }
.menu-allergen-chip--lupin::before { content: "Lu"; }
.menu-allergen-chip--milk::before { content: "Mi"; }
.menu-allergen-chip--molluscs::before { content: "Mo"; }
.menu-allergen-chip--mustard::before { content: "Mu"; }
.menu-allergen-chip--peanuts::before { content: "Pn"; }
.menu-allergen-chip--sesame::before { content: "Se"; }
.menu-allergen-chip--soybeans::before { content: "So"; }
.menu-allergen-chip--sulphites::before { content: "Su"; }
.menu-allergen-chip--tree_nuts::before { content: "Tn"; }
.menu-item.is-filtered-out {
  display: none;
}
.menu-category.all-items-filtered {
  display: none;
}
.menu-item-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.menu-item-price { font-weight: 600; color: var(--color-primary); }
.btn-add {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}
.btn-add:hover { background: var(--color-primary-dark); }

/* Basket drawer */
.basket-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.basket-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.basket-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.25s;
}
.basket-drawer.open .basket-drawer-backdrop { opacity: 1; }
.basket-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background: var(--color-bg-card);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
}
.basket-drawer.open .basket-drawer-panel { transform: translateX(0); }
.basket-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.basket-drawer-header h2 { margin: 0; font-size: 1.25rem; }
.basket-close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}
.basket-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1rem;
}
.basket-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.basket-line-name { font-weight: 500; }
.basket-line-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.basket-line-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.basket-line-controls button:hover {
  background: var(--color-border);
}
.basket-line-qty { min-width: 1.5rem; text-align: center; font-weight: 600; }
.basket-line-price { color: var(--color-primary); font-weight: 600; }
.basket-drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
.basket-total { font-size: 1.1rem; margin-bottom: 0.75rem; }
.basket-empty { padding: 1rem; color: var(--color-text-muted); text-align: center; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(57, 85, 114, 0.15);
}
.form-group-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.form-group-row label {
  margin-bottom: 0;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-border);
  border-radius: 1.5rem;
  transition: 0.2s;
}
.toggle-slider::before {
  position: absolute;
  content: "";
  height: 1.15rem;
  width: 1.15rem;
  left: 0.2rem;
  bottom: 0.175rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-primary);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(1.25rem);
}
.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 3px rgba(57, 85, 114, 0.2);
}
.allergen-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.45rem 0.9rem;
}
.allergen-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--color-text);
  cursor: pointer;
}
.allergen-checkbox input {
  width: auto;
  cursor: pointer;
}
.allergen-checkbox span {
  cursor: pointer;
}

/* Page containers */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.container h1 { margin-top: 0; color: var(--color-primary); }

/* Footer */
.site-footer {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-card);
}
.site-footer--home {
  background: var(--color-primary);
  background: var(--color-primary-gradient);
  color: rgba(255,255,255,0.95);
  border-top: none;
  padding: 2.5rem 1rem 1.5rem;
}
.site-footer--home a {
  color: #e7b700;
}
.site-footer--home a:hover {
  text-decoration: underline;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  text-align: left;
}
.footer-col h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  border-bottom: 2px solid #e7b700;
  display: inline-block;
  padding-bottom: 0.25rem;
}
.footer-col h3.footer-subhead {
  margin-top: 1.25rem;
}
.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
}
.footer-map iframe {
  width: 100%;
  height: 235px;
  border: 0;
}
.footer-hygiene img {
  max-width: 100%;
  height: auto;
}
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.footer-small {
  margin: 0.25rem 0 0;
}

/* Opening hours */
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
}
.hours-list li:last-child { border-bottom: none; }

/* Alerts */
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* Admin */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: var(--color-primary);
  background: var(--color-primary-gradient);
  color: #fff;
  padding: 1rem 0;
}
.admin-sidebar-header {
  padding: 0 1.25rem 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.admin-sidebar-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.admin-sidebar-sub {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.15rem;
}
.admin-sidebar a { color: rgba(255,255,255,0.9); display: block; padding: 0.5rem 1.25rem 0.5rem 2rem; }
.admin-sidebar a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.admin-sidebar a.admin-nav-link-orders {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.nav-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #ef4444;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
}
.admin-nav-section {
  padding: 0.9rem 1.25rem 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.admin-sidebar a + .admin-nav-section {
  margin-top: 0.5rem;
}
.admin-nav-divider {
  height: 1px;
  margin: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.18);
}
.admin-main { flex: 1; padding: 1.5rem 2rem; background: var(--color-bg); }
.admin-main h1 { margin-top: 0; color: var(--color-primary); }
.order-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; background: var(--color-bg-card); }
.order-card-head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.order-unread { border-left: 4px solid var(--color-primary); }
.order-unprinted { background: #feecec; }
.order-printed { background: #eaf8ee; }
.admin-table { border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 0.5rem; text-align: left; border: 1px solid var(--color-border); }

/* Admin dashboard */
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}
.admin-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.admin-card-value {
  font-size: 1.4rem;
  font-weight: 600;
}
.admin-card-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}
.admin-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.admin-dashboard-actions a.btn {
  text-decoration: none;
}
.admin-chart {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.admin-chart-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.admin-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 140px;
}
.admin-chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
}
.admin-chart-bar-inner {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
  min-height: 2px;
}
.admin-chart-bar-label {
  margin-top: 0.35rem;
  color: var(--color-text-muted);
}
.menu-promo-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.menu-promo-admin-slot {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--color-bg-card);
}
.menu-promo-admin-preview {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  margin-bottom: 0.5rem;
}
.menu-promo-admin-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Utilities */
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* Legal pages */
.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.legal-page h3 {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--color-text);
}
.legal-page ul {
  padding-left: 1.25rem;
}
.legal-meta {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: -0.25rem;
}

/* Footer legal links */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-legal {
  margin: 0;
  font-size: 0.8rem;
}
.site-footer--home .footer-legal {
  color: rgba(255,255,255,0.85);
}
.site-footer--home .footer-legal a {
  color: #e7b700;
}
.footer-bottom .footer-legal {
  flex-basis: 100%;
  text-align: center;
  margin-top: 0.35rem;
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}
.cookie-notice-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.cookie-notice-text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.45;
}
.cookie-notice-accept {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .cookie-notice-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-notice-accept {
    width: 100%;
  }
}
