:root {
  --green: #1B5E3A;
  --green-dark: #143D28;
  --green-light: #2D7A4E;
  --gold: #C4A35A;
  --gold-light: #D4B87A;
  --gold-glow: rgba(196, 163, 90, 0.3);
  --cream: #FDF8F0;
  --cream-dark: #F0EBE0;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --error: #D32F2F;
  --success: #2E7D32;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover { box-shadow: 0 6px 24px var(--gold-glow); }

.btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(253, 248, 240, 0.5);
}

.btn-outline-light:hover {
  background: rgba(253, 248, 240, 0.1);
  border-color: var(--cream);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-full { width: 100%; }

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: var(--green-dark);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ── Navbar ── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(27, 94, 58, 0.97);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 40px;
  width: 40px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform var(--transition);
}

.nav-logo-img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--green-light) 70%, var(--green) 100%);
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 163, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 163, 90, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(196, 163, 90, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(196, 163, 90, 0.3);
  border-radius: 50%;
  animation: floatUp linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: 2s; width: 5px; height: 5px; }
.particle:nth-child(3) { left: 45%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 65%; animation-duration: 14s; animation-delay: 1s; width: 6px; height: 6px; }
.particle:nth-child(5) { left: 80%; animation-duration: 11s; animation-delay: 3s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 92%; animation-duration: 13s; animation-delay: 5s; }

@keyframes floatUp {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.hero-left {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hours-card {
  background: rgba(253, 248, 240, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  width: 100%;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.status-dot.open { background: #4CAF50; box-shadow: 0 0 8px rgba(76, 175, 80, 0.6); }
.status-dot.closed { background: #ef5350; box-shadow: 0 0 8px rgba(239, 83, 80, 0.4); animation: none; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.status-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.hours-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hours-days {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.hours-time {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.hours-last-order {
  font-size: 0.85rem;
  color: rgba(253, 248, 240, 0.6);
  margin-top: 0.25rem;
}

.hours-closed {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(253, 248, 240, 0.8);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.naveh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 6px 16px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(253, 248, 240, 0.6);
  border: 1px solid rgba(253, 248, 240, 0.15);
  border-radius: 2rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-decoration: none;
}

.naveh-badge strong { color: var(--gold); }

.naveh-badge:hover {
  color: var(--cream);
  border-color: rgba(196, 163, 90, 0.4);
  background: rgba(253, 248, 240, 0.05);
}

.hero-right {
  flex: 0 0 50%;
}

/* ── Feedback Card ── */

.feedback-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  color: var(--text);
}

.feedback-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.feedback-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.feedback-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 94, 58, 0.1);
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.95rem;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.2s ease;
  background: var(--white);
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
}

.phone-row, .otp-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.phone-input-wrap, .otp-input-wrap {
  flex: 1;
  position: relative;
}

.phone-prefix {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  z-index: 1;
}

.phone-input-wrap input {
  padding-left: 48px;
}

.phone-input-wrap label {
  left: 48px;
}

.phone-input-wrap input:focus + label,
.phone-input-wrap input:not(:placeholder-shown) + label {
  left: 12px;
}

.phone-verified-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 0;
}

.form-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.feedback-success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  margin-bottom: 1rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.feedback-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.feedback-success p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ── Section Wave Divider ── */

.section-wave {
  margin-top: -2px;
  background: var(--green);
  line-height: 0;
}

.section-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ── About Section ── */

.about-section {
  background: var(--cream);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 94, 58, 0.08);
  color: var(--green);
  margin-bottom: 1.25rem;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.about-statement {
  margin-top: 3rem;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2.5rem;
  border-top: 1px solid rgba(196, 163, 90, 0.3);
  border-bottom: 1px solid rgba(196, 163, 90, 0.3);
}

.about-statement p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-statement {
    padding: 1.5rem;
  }
}

/* ── Menu Section ── */

.menu-section {
  background: var(--cream);
  padding: 4rem 0 6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--green);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.dietary-guide {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
}

.badge::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.badge-veg { border-color: #4CAF50; }
.badge-veg::after { background: #4CAF50; }

.badge-nonveg { border-color: #B71C1C; }
.badge-nonveg::after { background: #B71C1C; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tab {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--green);
  border-radius: 2rem;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: all var(--transition);
}

.tab.active, .tab:hover {
  background: var(--green);
  color: var(--cream);
}

.menu-content { min-height: 200px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-category {
  margin-bottom: 3rem;
}

.category-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green);
}

.category-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-light);
}

.subcategory-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--gold);
}

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

.menu-item {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
}

.item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 2px solid;
  flex-shrink: 0;
  position: relative;
}

.item-badge::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.item-badge.badge-veg { border-color: #4CAF50; }
.item-badge.badge-veg::after { background: #4CAF50; }

.item-badge.badge-nonveg { border-color: #B71C1C; }
.item-badge.badge-nonveg::after { background: #B71C1C; }

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

/* ── Footer ── */

.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer p {
  font-size: 0.9rem;
  color: rgba(253, 248, 240, 0.7);
  line-height: 1.6;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(253, 248, 240, 0.7);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  font-size: 0.85rem;
  color: rgba(253, 248, 240, 0.5);
}

.footer-bottom a {
  color: var(--gold);
  transition: opacity var(--transition);
}

.footer-bottom a:hover { opacity: 0.8; }

.footer-bottom p + p { margin-top: 0.25rem; }

/* ── Scroll Indicator ── */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  color: rgba(253, 248, 240, 0.5);
  font-size: 0.8rem;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  margin: 0.5rem auto 0;
  border-right: 2px solid rgba(253, 248, 240, 0.4);
  border-bottom: 2px solid rgba(253, 248, 240, 0.4);
  transform: rotate(45deg);
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(6px, 6px); opacity: 1; }
}

/* ── Animations ── */

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(40px);
  animation: slideLeft 0.8s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero-container {
    gap: 2.5rem;
  }

  .hero-left { flex: 0 0 42%; }
  .hero-right { flex: 0 0 54%; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { right: 0; }

  .nav-link { font-size: 1.1rem; }

  .nav-toggle { display: flex; }

  .hero {
    padding: 5rem 0 4rem;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-left, .hero-right {
    flex: none;
    width: 100%;
  }

  .hero-left { align-items: center; text-align: center; }

  .hero-logo {
    width: 140px;
    height: 140px;
  }

  .hero-tagline { font-size: 1.2rem; }

  .hours-time { font-size: 1.6rem; }

  .hero-ctas { justify-content: center; }

  .feedback-card { padding: 1.5rem; }

  .feedback-title { font-size: 1.3rem; }

  .scroll-indicator { display: none; }

  .section-title { font-size: 2rem; }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo { margin: 0 auto 0.75rem; }

  .phone-row, .otp-row {
    flex-direction: column;
  }

  .phone-input-wrap, .otp-input-wrap {
    width: 100%;
  }

  .phone-row .btn, .otp-row .btn {
    width: 100%;
  }

  .category-header {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 400px) {
  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hours-time { font-size: 1.4rem; }

  .menu-tabs { flex-wrap: wrap; }

  .tab { padding: 8px 20px; font-size: 0.85rem; }
}
