/* style.css - Saint George Digital Menu */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Dark Theme Tokens (Default) */
  --bg-color-h: 220;
  --bg-color-s: 8%;
  --bg-color-l: 8%;
  --bg-base: hsl(var(--bg-color-h), var(--bg-color-s), var(--bg-color-l));
  --bg-card: hsl(var(--bg-color-h), var(--bg-color-s), calc(var(--bg-color-l) + 4%));
  --bg-glass: hsla(var(--bg-color-h), var(--bg-color-s), calc(var(--bg-color-l) + 2%), 0.85);
  
  --text-primary: #f5f5f5;
  --text-secondary: #c5c5c5;
  
  --gold-primary: #d4af37;
  --gold-secondary: #aa8c2c;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glass: rgba(212, 175, 55, 0.08);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.3);
  
  --brightness-val: 1;
  --contrast-val: 1;
  
  --safe-padding: 16px;
  --header-height: 80px;
}

/* Light Theme overrides (Optimized for intense sunlight readability) */
[data-theme="light"] {
  --bg-color-h: 0;
  --bg-color-s: 0%;
  --bg-color-l: 100%;
  --bg-base: #ffffff; /* Pure white for maximum backlight strength */
  --bg-card: #fdfdfd; /* Very subtle card structure */
  --bg-glass: rgba(255, 255, 255, 0.96);
  
  --text-primary: #000000; /* Pure black text for maximum contrast ratio */
  --text-secondary: #222222; /* Very dark secondary text */
  
  --gold-primary: #8a6c1e; /* Darker, high-contrast gold */
  --gold-secondary: #5e4a13; /* Muted olive gold */
  --gold-glow: rgba(138, 108, 30, 0.12);
  --gold-glass: rgba(138, 108, 30, 0.05);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.18);
  
  --border-glass: rgba(0, 0, 0, 0.16); /* High contrast border lines */
  --border-gold: rgba(138, 108, 30, 0.6);
}

/* Warm/Cream Theme overrides (Parchment look for comfortable indoor/dusk reading) */
[data-theme="warm"] {
  --bg-color-h: 40;
  --bg-color-s: 30%;
  --bg-color-l: 92%;
  --bg-base: #f4ecd8; /* Warm parchment/cream background */
  --bg-card: #fbf7eb; /* Lighter warm card background */
  --bg-glass: rgba(244, 236, 216, 0.94);
  
  --text-primary: #4a3b2c; /* Soft dark brown instead of harsh black */
  --text-secondary: #725f4c; /* Medium brown */
  
  --gold-primary: #b58c23; /* Warm gold */
  --gold-secondary: #805e10; /* Deeper bronze gold */
  --gold-glow: rgba(181, 140, 35, 0.15);
  --gold-glass: rgba(181, 140, 35, 0.05);
  
  --shadow-sm: 0 2px 8px rgba(74, 59, 44, 0.08);
  --shadow-md: 0 8px 20px rgba(74, 59, 44, 0.12);
  --shadow-lg: 0 16px 36px rgba(74, 59, 44, 0.16);
  
  --border-glass: rgba(74, 59, 44, 0.12);
  --border-gold: rgba(181, 140, 35, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  /* Apply global brightness/contrast filtering */
  filter: brightness(var(--brightness-val)) contrast(var(--contrast-val));
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Base scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

/* Page Layout */
.app-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--safe-padding) 100px var(--safe-padding);
  position: relative;
  min-height: 100vh;
}

/* --- Animated Art Deco Margins (Desktop / Tablet view) --- */
.deco-border {
  position: fixed;
  top: 5vh;
  bottom: 5vh;
  width: 32px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.deco-border-left {
  left: calc(50% - 400px - 32px - 10px);
}

.deco-border-right {
  right: calc(50% - 400px - 32px - 10px);
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .deco-border {
    display: none; /* Hide on mobile/tablet to avoid screen clutter */
  }
}

/* Recreating the book's Art Deco lines */
.art-deco-line-svg {
  width: 100%;
  height: 100%;
}

.deco-path {
  fill: none;
  stroke: var(--gold-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* Stroke dash array for draw-in animation */
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: animateDecoLine 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes animateDecoLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- Sticky Header & Controls (Header made relative) --- */
header {
  position: relative;
  background: transparent;
  z-index: 100;
  padding: 20px 0 10px 0;
  transition: background-color 0.4s ease;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--safe-padding);
}

/* Brand Section & Logo */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.brand-logo-svg {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
  transition: transform 0.4s ease;
}

.brand:hover .brand-logo-svg {
  transform: scale(1.05) rotate(1deg);
}

.logo-path {
  fill: none;
  stroke: var(--gold-primary);
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: animateDecoLine 2.8s ease-out forwards;
}

.brand h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.brand p {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Control Panel Grid */
.control-panel {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
}

@media (max-width: 580px) {
  .control-panel {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }
  
  .mode-toggle-container {
    grid-column: span 2;
    order: 3;
  }
}

/* Normal vs Take Away Sliding Pill Toggle */
.mode-toggle-container {
  display: flex;
  justify-content: center;
}

.mode-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 3px;
  border-radius: 30px;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 320px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.mode-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mode-btn.active {
  color: var(--bg-base);
}

.mode-slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  border-radius: 25px;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 2px 8px var(--gold-glow);
}

.mode-toggle[data-active="takeaway"] .mode-slider {
  transform: translateX(100%);
}

/* Language Dropdown Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lang-btn:hover {
  border-color: var(--gold-primary);
  background: var(--gold-glass);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  padding: 6px;
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
  animation: dropMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropMenu {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown.show {
  display: flex;
}

.lang-option {
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 8px 12px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-option:hover {
  background: var(--gold-glass);
  color: var(--gold-primary);
}

.lang-option.active {
  background: var(--gold-primary);
  color: var(--bg-base);
  font-weight: 600;
}

/* Theme / Brightness Controls */
/* 3-Choice Brightness/Theme Dropdown styling */
.brightness-dropdown-container {
  position: relative;
}

.brightness-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.brightness-btn:hover {
  border-color: var(--gold-primary);
  background: var(--gold-glass);
}

.brightness-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  padding: 6px;
  z-index: 200;
  animation: dropMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brightness-dropdown.show {
  display: flex;
}

.brightness-opt {
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 8px 12px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.brightness-opt:hover {
  background: var(--gold-glass);
  color: var(--gold-primary);
}

.brightness-opt.active {
  background: var(--gold-primary);
  color: var(--bg-base);
  font-weight: 600;
}

/* --- Sticky Control & Navigation Bar --- */
.sticky-nav-bar {
  position: sticky;
  top: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 95;
  padding: 12px 0 8px 0;
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background-color 0.4s ease;
}

.sticky-nav-bar .mode-toggle-container {
  width: 100%;
  padding: 0 var(--safe-padding);
}

.categories-nav {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
}

.categories-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for clean aesthetics */
  padding-bottom: 5px;
}

.categories-inner::-webkit-scrollbar {
  display: none;
}

.category-tab {
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.category-tab:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--bg-base);
  border-color: transparent;
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* --- Menu Grid & Cards --- */
.menu-section {
  scroll-margin-top: 110px; /* Reduced since sticky nav bar is now thinner */
  margin-bottom: 45px;
}

/* Section Header Dividers with elegant vectors */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  text-align: center;
}

.section-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.section-header-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 6px var(--gold-primary);
}

.items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Drink Item Card Styling */
.item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 6px 18px var(--gold-glow);
}

/* Drink Details */
.item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.item-title-block {
  flex: 1;
}

.item-name-primary {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

/* Side-by-side Greek support when translation is active */
.item-name-secondary {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-secondary);
  font-style: italic;
  margin-bottom: 4px;
}

.item-volume {
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: var(--border-glass);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 500;
}

.item-price {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-primary);
  white-space: nowrap;
}

.item-desc-primary {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.item-desc-secondary {
  font-size: 0.78rem;
  color: var(--gold-secondary);
  font-style: italic;
  line-height: 1.3;
  margin-top: 2px;
}

/* Order selection helper buttons (+/- Counter) */
.item-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 6px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-base);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.counter-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s, transform 0.1s;
}

.counter-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-base);
}

.counter-btn:active {
  transform: scale(0.9);
}

.counter-value {
  font-size: 0.85rem;
  font-weight: 600;
  width: 20px;
  text-align: center;
  color: var(--text-primary);
}

/* Add-to-cart style button before incremented */
.add-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: 15px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-base);
  box-shadow: 0 2px 8px var(--gold-glow);
}

/* --- Floating Order Button --- */
.floating-order-btn {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px); /* Initially hidden */
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--bg-base);
  border: none;
  padding: 14px 28px;
  border-radius: 35px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--gold-glow), var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.floating-order-btn.show {
  transform: translateX(-50%) translateY(0);
}

.floating-order-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 35px var(--gold-glow), var(--shadow-lg);
}

.order-badge {
  background: var(--bg-base);
  color: var(--gold-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* --- Waiter View / Order Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: var(--safe-padding);
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalIn {
  from { transform: scale(0.9) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.close-btn:hover {
  background: var(--border-glass);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* High contrast layout instructions for waiters */
.waiter-instruction {
  background: var(--gold-glass);
  border: 1px solid var(--border-gold);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.waiter-instruction p {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 500;
  line-height: 1.4;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Big items layout for quick waiter viewing */
.order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.order-item-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-item-quantity {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-right: 12px;
  min-width: 24px;
  display: inline-block;
}

.order-item-name-wrap {
  display: inline-block;
}

.order-item-name-translated {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.order-item-name-greek {
  font-size: 0.85rem;
  color: var(--gold-secondary);
  font-style: italic;
}

.order-item-remove {
  background: none;
  border: none;
  color: #ff4a4a;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.order-item-remove:hover {
  background: rgba(255, 74, 74, 0.1);
}

.modal-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total-label {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.order-total-price {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-primary);
}

.clear-order-btn {
  background: var(--bg-base);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 10px;
  border-radius: 25px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.clear-order-btn:hover {
  border-color: #ff4a4a;
  color: #ff4a4a;
}

/* --- Thank You & legal footer --- */
.menu-footer {
  margin-top: 60px;
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-decor-svg {
  width: 180px;
  height: 35px;
}

.footer-decor-path {
  fill: none;
  stroke: var(--gold-primary);
  stroke-width: 1.2;
}

.menu-footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  margin: 10px 0;
}

.menu-footer p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

/* Empty menu placeholder */
.no-items-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.9rem;
}
