/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Inter:wght@300;400;500;600;700&display=swap');

/* Root variables for consistent theming */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffcc02;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-primary: 0 10px 30px rgba(255, 107, 53, 0.3);
  --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 15px;
  
  /* Light mode specific variables */
  --bg-color: #f7fafc;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-bg-hover: rgba(255, 255, 255, 1);
  --card-bg: white;
  --text-color: #2d3748;
  --text-light: #4a5568;
  --muted-text: #718096;
  --border-color: rgba(255, 107, 53, 0.1);
  --input-border: #e2e8f0;
  --surface-bg: #f8f9fa;
  --light-color: #f8f9fa;
}

/* Dark mode variables */
[data-theme="dark"] {
  --bg-color: #1a202c;
  --bg-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  --nav-bg: rgba(26, 32, 44, 0.95);
  --nav-bg-hover: rgba(26, 32, 44, 1);
  --card-bg: #2d3748;
  --text-color: #e2e8f0;
  --text-light: #a0aec0;
  --muted-text: #718096;
  --border-color: rgba(255, 107, 53, 0.3);
  --input-border: #4a5568;
  --surface-bg: #374151;
  --light-color: #374151;
  --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.3);
  --dark-color: #e2e8f0;
}

/* Auto dark mode based on system preference */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-color: #1a202c;
    --bg-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    --nav-bg: rgba(26, 32, 44, 0.95);
    --nav-bg-hover: rgba(26, 32, 44, 1);
    --card-bg: #2d3748;
    --text-color: #e2e8f0;
    --text-light: #a0aec0;
    --border-color: rgba(255, 107, 53, 0.3);
    --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

html {
  height: 100%;
  width: 100%;
  /* Smooth scroll only enabled after user interaction to prevent page jump on load */
}

html.smooth-scroll {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  min-height: 100vh;
  position: relative;
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Add animated background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Enhanced Navigation */
nav {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: var(--shadow-secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

nav:hover {
  background: var(--nav-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* The Scran Van title - BIGGER and more dramatic */
nav li strong {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

nav li strong:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(255, 107, 53, 0.4));
}

/* Navigation links */
nav ul li a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

nav ul li a:hover::before {
  left: 0;
}

nav ul li a:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

nav ul li a[role="button"] {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

nav ul li a[role="button"]:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-secondary);
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

.theme-toggle:hover {
  background: var(--primary-color);
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--shadow-primary);
  color: white;
}

.theme-toggle:focus {
  outline: none;
  background: var(--card-bg);
  color: var(--text-color);
}

.theme-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.theme-toggle:hover .theme-icon {
  transform: scale(1.2);
}

/* Responsive text display */
.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

@media screen and (max-width: 768px) {
  .mobile-text {
    display: inline;
  }
  
  .desktop-text {
    display: none;
  }
}

/* Main content container */
main {
  background: var(--card-bg);
  margin: 2rem auto;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  transition: background 0.3s ease;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

/* Enhanced typography */
h2, h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

hgroup h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

hgroup h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-style: italic;
}

/* Enhanced sections */
section {
  padding: 3rem;
}

section h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Enhanced images */
figure {
  margin: 3rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
}

figure:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

figure img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

figure:hover img {
  transform: scale(1.05);
}

figcaption {
  padding: 1rem;
  background: var(--surface-bg);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Enhanced paragraphs */
p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Subscribe section enhancement */
section[aria-label="Subscribe example"] {
  background: var(--gradient-secondary);
  margin: 0;
  padding: 4rem 0;
}

section[aria-label="Subscribe example"] article {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

section[aria-label="Subscribe example"] article:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

section[aria-label="Subscribe example"] h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced form elements */
input {
  border-radius: var(--border-radius) !important;
  border: 2px solid var(--input-border) !important;
  padding: 1rem 1.5rem !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  background: var(--card-bg) !important;
  color: var(--text-color) !important;
}

input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
  transform: translateY(-2px) !important;
}

button[type="submit"] {
  background: var(--gradient-primary) !important;
  border: none !important;
  border-radius: var(--border-radius) !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: var(--shadow-primary) !important;
  transition: all 0.3s ease !important;
}

button[type="submit"]:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4) !important;
}

/* Enhanced footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  margin-top: 2rem;
}

footer a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

footer a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  nav li strong {
    font-size: 2.5rem;
  }
  
  hgroup h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 2rem;
  }
  
  main {
    margin: 1rem;
    border-radius: 20px;
  }
}

/* Open/Closed Status - Neon Diner Sign Styling */
:root {
  --neon-green: #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.8);
  --neon-red: #ff073a;
  --neon-red-glow: rgba(255, 7, 58, 0.6);
}

[data-theme="dark"] {
  --neon-green: #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.9);
  --neon-red: #ff073a;
  --neon-red-glow: rgba(255, 7, 58, 0.7);
}

.open-status {
  margin: 2rem 0;
  padding: 2.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 20px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.open-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 3px
    );
  pointer-events: none;
}

.status-main {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.status-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.open-status.is-open .status-main {
  color: var(--neon-green);
  text-shadow: 
    0 0 10px var(--neon-green-glow),
    0 0 20px var(--neon-green-glow),
    0 0 30px var(--neon-green-glow),
    0 0 40px var(--neon-green-glow),
    0 0 70px var(--neon-green-glow),
    0 0 80px var(--neon-green-glow);
  animation: neonPulseGreen 2s ease-in-out infinite;
}

.open-status.is-open .status-subtitle {
  color: var(--neon-green);
  text-shadow: 
    0 0 5px var(--neon-green-glow),
    0 0 10px var(--neon-green-glow);
}

.open-status.is-open {
  border-color: var(--neon-green);
  box-shadow: 
    0 0 20px var(--neon-green-glow),
    0 0 40px var(--neon-green-glow),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.open-status.is-closed .status-main {
  color: var(--neon-red);
  text-shadow: 
    0 0 8px var(--neon-red-glow),
    0 0 15px var(--neon-red-glow),
    0 0 25px var(--neon-red-glow);
  opacity: 0.7;
  animation: neonFlickerRed 4s ease-in-out infinite;
}

.open-status.is-closed .status-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.open-status.is-closed {
  border-color: var(--neon-red);
  box-shadow: 
    0 0 15px var(--neon-red-glow),
    0 0 30px var(--neon-red-glow),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes neonPulseGreen {
  0%, 100% {
    text-shadow: 
      0 0 10px var(--neon-green-glow),
      0 0 20px var(--neon-green-glow),
      0 0 30px var(--neon-green-glow),
      0 0 40px var(--neon-green-glow),
      0 0 70px var(--neon-green-glow),
      0 0 80px var(--neon-green-glow);
  }
  50% {
    text-shadow: 
      0 0 5px var(--neon-green-glow),
      0 0 10px var(--neon-green-glow),
      0 0 15px var(--neon-green-glow),
      0 0 20px var(--neon-green-glow),
      0 0 35px var(--neon-green-glow),
      0 0 40px var(--neon-green-glow);
  }
}

@keyframes neonFlickerRed {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 
      0 0 8px var(--neon-red-glow),
      0 0 15px var(--neon-red-glow),
      0 0 25px var(--neon-red-glow);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.75;
  }
  30% {
    opacity: 0.6;
  }
  40%, 80% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.65;
  }
}

/* Menu styling */
.menu-highlight {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  transform: perspective(1000px) rotateX(2deg);
  transition: all 0.3s ease;
}

.menu-highlight:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.menu-highlight h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-highlight p {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--border-radius) * 0.75);
  margin: 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Desktop layout optimization for chips & sides + drinks & snacks */
@media (min-width: 769px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr 0.6fr;
    grid-template-areas: 
      "sandwiches burgers chips-sides"
      "sandwiches burgers drinks-snacks"
      "extras extras extras";
  }
  
  .menu-section:nth-child(1) { /* Sandwiches & Wraps */
    grid-area: sandwiches;
  }
  
  .menu-section:nth-child(2) { /* Burgers */
    grid-area: burgers;
  }
  
  .menu-section:nth-child(3) { /* Chips & Sides */
    grid-area: chips-sides;
  }
  
  .menu-section:nth-child(4) { /* Drinks & Snacks */
    grid-area: drinks-snacks;
  }
  
  .extras-section { /* Extras - full width row */
    grid-area: extras;
  }
}

.menu-section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-secondary);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.menu-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menu-section h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--surface-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.menu-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
}

.menu-item.featured {
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid var(--primary-color);
  font-weight: 600;
}

.menu-item span:first-child {
  font-weight: 500;
  color: var(--text-color);
  flex: 1;
  text-align: center;
}

.menu-item span:last-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  flex: 1;
  text-align: center;
}

.extras-section {
  background: rgba(255, 204, 2, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 3rem 0;
  border: 2px dashed var(--accent-color);
}

.extras-section h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.extras-section .menu-item {
  display: flex !important;
  flex-direction: column !important;
  padding: 0.75rem;
  font-size: 0.95rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.extras-section .menu-item span:first-child,
.extras-section .menu-item span:last-child {
  text-align: center;
  flex: none;
  width: 100%;
}

.extras-tier {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-secondary);
  border: 2px solid var(--accent-color);
}

.extras-tier h5 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.extras-tier p {
  margin: 0;
  color: var(--dark-color);
  font-weight: 500;
}

/* Contact section styling */
.contact-section {
  margin: 3rem 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-secondary);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card li {
  padding: 0.5rem 0;
  color: var(--dark-color);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-card li:last-child {
  border-bottom: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
  color: white;
}

/* Chef's Recommendations styling */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.recommendation-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.recommendation-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.recommendation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recommendation-card:hover img {
  transform: scale(1.1);
}

.recommendation-content {
  padding: 1.5rem;
}

.recommendation-content h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.recommendation-content p {
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.recommendation-content strong {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Photo Gallery styling */
.photo-gallery {
  margin: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  text-align: center;
  background: var(--light-color);
  min-height: 4.5rem;
}

/* Location section styling */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

.location-info {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-secondary);
}

.location-info h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hours-info {
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.hours-info h5 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hours-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-info li {
  padding: 0.5rem 0;
  color: var(--dark-color);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.hours-info li:last-child {
  border-bottom: none;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
}

.map-container iframe {
  height: 100% !important;
  min-height: 100%;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--nav-bg);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 2rem 1.5rem;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
  float: right;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li a {
  display: block;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 200px;
  box-sizing: border-box;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a[role="button"] {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(10px);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide all navigation links except theme toggle and hamburger */
  nav ul:last-child li:not(:nth-last-child(1)):not(:nth-last-child(2)) {
    display: none;
  }
  
  nav ul:first-child {
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  
  nav ul:last-child {
    gap: 1rem;
    align-items: center;
  }

  nav li strong {
    font-size: 2.2rem;
  }
  
  hgroup h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 2rem;
  }
  
  main {
    margin: 1rem;
    border-radius: 20px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .open-status {
    padding: 1.5rem;
  }
  
  .status-main {
    font-size: 2.5rem;
  }
  
  .status-subtitle {
    font-size: 1.1rem;
  }
  
  .menu-highlight h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile navigation fixes */
  nav ul li a {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  nav li strong {
    font-size: 1.75rem;
  }
  
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .menu-grid {
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .location-section {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .recommendation-card, .menu-section {
    padding: 1.5rem;
  }
}

/* Add subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out;
}

/* Interactive Menu Tooltip Styles */
.menu-tooltip {
  position: fixed;
  background: var(--card-bg);
  color: var(--text-color);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--border-color);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 280px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: none;
  backdrop-filter: blur(10px);
}

.menu-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-tooltip::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--card-bg);
}

.tooltip-content {
  font-weight: 400;
  color: var(--text-light);
}

/* Interactive Menu Item Styling */
.interactive-menu-item {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.interactive-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.interactive-menu-item:hover::before {
  left: 100%;
}

.interactive-menu-item:hover {
  transform: translateX(5px);
  background: var(--surface-bg);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.interactive-menu-item:hover .menu-item-name {
  color: var(--primary-color);
  font-weight: 500;
}

.interactive-menu-item:hover .menu-item-price {
  font-weight: 600;
  color: var(--secondary-color);
}

/* Mobile tap styles */
.interactive-menu-item:active {
  transform: scale(0.98);
}

/* Featured item special styling */
.interactive-menu-item.featured:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

/* Dark mode tooltip adjustments */
[data-theme="dark"] .menu-tooltip {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
}

[data-theme="dark"] .menu-tooltip::before {
  border-top-color: var(--card-bg);
}

[data-theme="dark"] .interactive-menu-item:hover {
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

/* Mobile tooltip adjustments */
@media (max-width: 768px) {
  .menu-tooltip {
    max-width: calc(100vw - 2rem);
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
  
  .interactive-menu-item:hover {
    transform: none;
  }
}

/* Daily Specials Section */
.daily-specials {
  margin: 1.5rem 0;
  animation: fadeInUp 0.6s ease-out;
}

.specials-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.specials-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.specials-banner h4 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.special-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  border-radius: calc(var(--border-radius) * 0.75);
  margin: 1rem 0;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.special-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.special-price {
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--border-radius) * 0.5);
}

.special-description {
  margin: 0.75rem 0 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Admin Panel Styles */
.admin-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.admin-content {
  background: var(--card-bg);
  color: var(--text-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid var(--border-color);
}

.admin-content h3 {
  margin: 0 0 1rem 0;
  color: var(--primary-color);
  text-align: center;
  font-size: 1.3rem;
}

/* Admin Login Specific Styles */
.admin-login {
  max-width: 400px;
}

.login-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: calc(var(--border-radius) * 0.75);
  text-align: center;
}

.login-error p {
  margin: 0;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Enhanced Admin Panel Layout */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.admin-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.admin-session {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.logout-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: #c82333;
  transform: translateY(-1px);
}

/* Admin Tab Sections */
.admin-tab-section {
  margin-bottom: 1.5rem;
  padding: 0;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.admin-tab-section h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.admin-tab-section h4:hover {
  background: rgba(255, 107, 53, 0.08);
}

.admin-tab-section h4::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.admin-tab-section.collapsed h4::after {
  transform: rotate(-90deg);
}

.admin-tab-content {
  padding: 1rem 1.2rem;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 5000px;
  opacity: 1;
}

.admin-tab-section.collapsed .admin-tab-content {
  max-height: 0;
  opacity: 0;
  padding: 0 1.2rem;
  overflow: hidden;
}

/* Toggle Controls */
.admin-toggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) * 0.75);
  border: 2px solid #dc3545;
  transition: all 0.3s ease;
  position: relative;
}

.admin-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Toggle states - Red when OFF, Green when ON */
.admin-toggle {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
}

.admin-toggle.active {
  background: rgba(40, 167, 69, 0.1);
  border-color: #28a745;
}

.admin-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #28a745;
}

.toggle-label {
  font-weight: 500;
  color: var(--text-color);
  user-select: none;
  transition: color 0.3s ease;
}

.admin-toggle input[type="checkbox"]:checked + .toggle-label {
  color: #28a745;
  font-weight: 600;
}

.admin-toggle:not(.active) .toggle-label {
  color: #dc3545;
}

/* Status indicator */
.admin-toggle::after {
  content: "OFF";
  position: absolute;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: bold;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--border-radius) * 0.5);
  transition: all 0.3s ease;
}

.admin-toggle.active::after {
  content: "ON";
  color: #28a745;
  background: rgba(40, 167, 69, 0.2);
}

/* Admin Footer */
.admin-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.admin-close-btn {
  background: var(--border-color);
  color: var(--text-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.admin-close-btn:hover {
  background: var(--text-color);
  color: var(--card-bg);
  transform: translateY(-2px);
}

/* Photo Gallery Admin Styles */
.gallery-admin-controls {
  margin-top: 1rem;
}

.admin-gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

/* Recommendations Admin Styles */
.recommendations-admin-controls {
  margin-top: 1rem;
}

.admin-recommendations-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.admin-recommendation-item {
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) * 0.75);
  padding: 0.75rem;
  border: 2px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.admin-recommendation-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.admin-recommendation-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) * 0.5);
  margin-bottom: 0.75rem;
}

.admin-recommendation-item h6 {
  margin: 0.5rem 0;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-recommendation-item p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.8;
}

.admin-recommendation-item .price {
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0.5rem 0;
}

.admin-recommendation-item .controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.admin-recommendation-item .controls button {
  flex: 1;
  min-width: 60px;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  border: none;
  border-radius: calc(var(--border-radius) * 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.admin-recommendation-item .controls .edit-btn {
  background: var(--primary-color);
  color: white;
}

.admin-recommendation-item .controls .delete-btn {
  background: #dc3545;
  color: white;
}

.admin-recommendation-item .controls .move-btn {
  background: var(--surface-bg);
  color: var(--text-color);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.admin-recommendation-item .controls button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.admin-photo-item {
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) * 0.75);
  padding: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.admin-photo-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.admin-photo-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) * 0.5);
  margin-bottom: 0.75rem;
}

.admin-photo-item .photo-description {
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.admin-photo-item .photo-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-photo-item button {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.admin-photo-item .edit-btn {
  background: #17a2b8;
  color: white;
}

.admin-photo-item .edit-btn:hover {
  background: #138496;
}

.admin-photo-item .delete-btn {
  background: #dc3545;
  color: white;
}

.admin-photo-item .delete-btn:hover {
  background: #c82333;
}

.admin-photo-item .move-btn {
  background: #ffc107;
  color: #212529;
}

.admin-photo-item .move-btn:hover {
  background: #e0a800;
}

.admin-photo-item .photo-order {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.photo-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.photo-upload-area:hover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

.photo-upload-area.dragover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
  transform: scale(1.02);
}

#add-photo-btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#add-photo-btn:hover {
  background: #e55a47;
  transform: translateY(-2px);
}

#add-photo-btn:disabled {
  background: var(--border-color);
  cursor: not-allowed;
  transform: none;
}

.rotation-indicator {
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid #ffc107;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  color: #856404;
  font-weight: 500;
}

.rotation-indicator .rotation-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.admin-section {
  margin-bottom: 0.75rem;
}

.admin-section label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: var(--text-color);
  font-size: 0.9rem;
}

.admin-section input,
.admin-section textarea {
  width: 100%;
  padding: 0.6rem;
  border: 2px solid var(--border-color);
  border-radius: calc(var(--border-radius) * 0.75);
  background: var(--card-bg);
  color: var(--text-color);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.admin-section input:focus,
.admin-section textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.admin-section textarea {
  min-height: 80px;
  resize: vertical;
}

.admin-row {
  margin-bottom: 1rem;
}

.admin-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.admin-row input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.admin-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.admin-buttons button {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: none;
  border-radius: calc(var(--border-radius) * 0.75);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  font-size: 0.9rem;
}

#save-special {
  background: var(--primary-color);
  color: white;
}

#save-special:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

#clear-special {
  background: #dc3545;
  color: white;
}

#clear-special:hover {
  background: #c82333;
  transform: translateY(-2px);
}

#close-admin {
  background: var(--border-color);
  color: var(--text-color);
}

#close-admin:hover {
  background: var(--text-color);
  color: var(--card-bg);
  transform: translateY(-2px);
}

.admin-help {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.admin-help small {
  color: var(--text-color);
  opacity: 0.7;
}

/* Mobile responsive adjustments for admin and specials */
@media (max-width: 768px) {
  .special-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .admin-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .admin-buttons {
    flex-direction: column;
  }
  
  .admin-buttons button {
    width: 100%;
  }
}

/* Customer Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.reviews-section hgroup {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-section h2 {
  color: var(--primary-color);
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.reviews-section h3 {
  color: var(--text-color);
  opacity: 0.8;
  font-weight: 400;
  font-size: 1.2rem;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-container {
  position: relative;
  min-height: 250px;
  transition: height 0.6s ease;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  backdrop-filter: blur(10px);
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}

.review-content {
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Navigation dots */
.reviews-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.5rem;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 4px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  outline: none;
}

.nav-dot:hover {
  background: rgba(255, 107, 53, 0.6);
  transform: scale(1.15);
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Dark mode adjustments */
[data-theme="dark"] .review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-color: var(--secondary-color);
}

[data-theme="dark"] .review-text::before {
  color: var(--secondary-color);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .reviews-section {
    padding: 3rem 0;
  }
  
  .reviews-section h2 {
    font-size: 2rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .review-text::before {
    font-size: 2rem;
    top: -0.3rem;
    left: -0.5rem;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nav-dot {
    width: 10px;
    height: 10px;
  }
}

/* Menu Management Styles */
.menu-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-form-grid .admin-input,
.menu-form-grid .admin-select {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.6rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.menu-form-grid .admin-input:focus,
.menu-form-grid .admin-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.admin-btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  grid-column: span 2;
}

.admin-btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.menu-sections-list {
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.menu-section-admin {
  background: var(--surface-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.menu-section-header {
  background: rgba(255, 107, 53, 0.1);
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-actions {
  display: flex;
  gap: 0.5rem;
}

.menu-section-header h6 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-items-admin {
  padding: 0;
}

.menu-item-admin {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr auto auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  align-items: center;
  transition: all 0.3s ease;
  text-align: center;
}

.menu-item-admin:last-child {
  border-bottom: none;
}

.menu-item-admin:hover {
  background: rgba(255, 107, 53, 0.05);
}

.menu-item-admin.featured {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--primary-color);
}

.menu-item-name {
  font-weight: 600;
  color: var(--text-color);
}

.menu-item-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

.menu-item-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.menu-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 85px;
  white-space: nowrap;
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-btn.featured-btn {
  background: #28a745;
}

.menu-btn.featured-btn:hover {
  background: #218838;
}

.menu-btn.featured-btn.active {
  background: #ffc107;
  color: #212529;
}

.menu-btn.edit-btn {
  background: #17a2b8;
}

.menu-btn.edit-btn:hover {
  background: #138496;
}

.menu-btn.delete-btn {
  background: #dc3545;
}

.menu-btn.delete-btn:hover {
  background: #c82333;
}

.featured-indicator {
  background: #ffc107;
  color: #212529;
  padding: 0.2rem 0.5rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .menu-form-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-btn-primary {
    grid-column: span 1;
  }
  
  .menu-item-admin {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  
  .menu-item-actions {
    justify-content: center;
  }
}