/* ==========================================================================
   LA ÚNICA TAQUERÍA DIGITAL - NOCTURNAL STREET TAQUERÍA DESIGN SYSTEM
   Imported & Adapted from Google Stitch Design System (projects/15136444187982041520)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette derived directly from Official Logo */
  --bg-main: #111010;
  --bg-lowest: #0a0a0a;
  --bg-card: #1c1a1a;
  --bg-card-high: #262323;
  --bg-card-highest: #312e2e;
  
  --primary-red: #dc3834;
  --primary-red-light: #f04d49;
  --primary-red-dim: #fca5a2;
  --on-primary: #5c0004;

  --secondary-yellow: #fce6c1; /* Exact Cream Vanilla from Logo Typography */
  --secondary-yellow-glow: #fff1d6;
  --on-secondary: #4a3818;

  --tertiary-orange: #ffb781;
  --tertiary-orange-bright: #fb8500;

  --text-primary: #f5f0eb;
  --text-muted: #bfaea9;
  --text-variant: #e6cecb;

  --border-neon: rgba(220, 56, 52, 0.4);
  --border-neon-solid: #dc3834;
  --border-yellow-neon: rgba(252, 230, 193, 0.45);

  /* Neon Glows */
  --glow-red-sm: 0 0 10px rgba(220, 56, 52, 0.5);
  --glow-red-md: 0 0 20px rgba(220, 56, 52, 0.75);
  --glow-red-lg: 0 0 35px rgba(220, 56, 52, 0.9);
  --glow-yellow: 0 0 15px rgba(252, 230, 193, 0.7);

  /* Fonts */
  --font-headline: 'Anton', sans-serif;
  --font-data: 'Space Grotesk', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --header-height: 74px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(220, 56, 52, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(252, 230, 193, 0.05) 0%, transparent 45%);
}

/* Neon Animations */
@keyframes neon-flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 12px rgba(220, 56, 52, 0.9), 0 0 24px rgba(220, 56, 52, 0.6); }
  42% { opacity: 0.95; }
  43% { opacity: 0.7; text-shadow: none; }
  44% { opacity: 1; text-shadow: 0 0 12px rgba(220, 56, 52, 0.9), 0 0 24px rgba(220, 56, 52, 0.6); }
  80% { opacity: 0.98; }
  81% { opacity: 0.85; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--glow-red-md); }
  50% { box-shadow: var(--glow-red-lg); }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Typography Classes */
h1, h2, h3, .font-headline {
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.neon-text-red {
  color: #fff;
  text-shadow: 0 0 10px var(--primary-red), 0 0 20px var(--primary-red);
}

.neon-text-yellow {
  color: var(--secondary-yellow);
  text-shadow: 0 0 8px var(--secondary-yellow);
}

.font-data {
  font-family: var(--font-data);
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(17, 16, 16, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 12px;
  transition: all 0.3s ease;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 0 10px rgba(252, 230, 193, 0.7)) drop-shadow(0 0 15px rgba(220, 56, 52, 0.8));
  transition: transform 0.3s ease;
}

.brand-container:hover .brand-logo-img {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.95;
}

.brand-title {
  font-family: var(--font-headline);
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.04em;
  animation: neon-flicker 4s infinite alternate;
}

.brand-sub {
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 700;
  color: var(--secondary-yellow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red-light);
  text-shadow: 0 0 8px var(--primary-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  box-shadow: var(--glow-red-sm);
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid var(--border-neon);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary-yellow);
  white-space: nowrap;
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 10px #2ecc71;
  animation: pulse-dot 1.5s infinite;
}

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

.btn-icon {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-icon:hover {
  border-color: var(--primary-red);
  box-shadow: var(--glow-red-sm);
  color: var(--primary-red-light);
  transform: translateY(-1px);
}

.btn-cart {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 0 16px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--glow-red-md);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cart:hover {
  background: var(--primary-red-light);
  box-shadow: var(--glow-red-lg);
  transform: translateY(-1px);
}

.cart-count {
  background: #fff;
  color: var(--on-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

/* Buttons */
.btn-primary {
  background: var(--primary-red);
  color: #fff;
  border: 2px solid var(--primary-red-light);
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--glow-red-md);
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-red-light);
  box-shadow: var(--glow-red-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(19, 19, 19, 0.8);
  color: #fff;
  border: 2px solid var(--primary-red);
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(230, 57, 70, 0.2);
  border-color: var(--primary-red-light);
  box-shadow: var(--glow-red-sm);
  color: #fff;
  transform: translateY(-2px);
}

/* Marquee Bar */
.marquee-bar {
  margin-top: var(--header-height);
  background: var(--primary-red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  height: 34px;
  display: flex;
  align-items: center;
  box-shadow: var(--glow-red-md);
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
  font-family: var(--font-headline);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.4) 0%, rgba(19, 19, 19, 0.95) 100%),
              url('assets/tacos_al_pastor.jpg') center/cover no-repeat;
  filter: brightness(0.4) contrast(1.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(237, 193, 87, 0.15);
  border: 1px solid var(--secondary-yellow);
  color: var(--secondary-yellow);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  box-shadow: var(--glow-yellow);
}

.hero-title {
  font-size: clamp(44px, 7vw, 84px);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.8), 0 0 40px rgba(230, 57, 70, 0.4);
}

.hero-description {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-primary);
  max-width: 720px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 60px;
  text-align: left;
}

.feature-card {
  background: rgba(32, 31, 31, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-neon);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  font-size: 32px;
  color: var(--primary-red-light);
}

.feature-title {
  font-family: var(--font-headline);
  font-size: 18px;
  color: #fff;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Menu Section */
.section {
  padding: 90px 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-family: var(--font-data);
  color: var(--secondary-yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  text-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
}

/* Category Filter Tabs */
.category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  color: var(--text-primary);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red-light);
  color: #fff;
  box-shadow: var(--glow-red-sm);
}

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

.menu-card {
  background: rgba(32, 31, 31, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red-solid);
  box-shadow: var(--glow-red-md);
}

.menu-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #000;
  border: 1px solid var(--secondary-yellow);
  color: var(--secondary-yellow);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--glow-yellow);
}

.spicy-level {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.menu-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-title {
  font-family: var(--font-headline);
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

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

.menu-card-price {
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-yellow);
}

.btn-add-item {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--glow-red-sm);
  transition: all 0.2s ease;
}

.btn-add-item:hover {
  background: var(--primary-red-light);
  transform: scale(1.05);
}

/* Reservations Section */
.reservation-container {
  background: rgba(32, 31, 31, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.reservation-info h3 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

.reservation-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.zone-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.zone-option {
  background: var(--bg-card-high);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zone-option:hover, .zone-option.selected {
  border-color: var(--primary-red);
  background: rgba(230, 57, 70, 0.15);
  box-shadow: var(--glow-red-sm);
}

.zone-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.zone-name {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-input, .form-select {
  width: 100%;
  background: var(--bg-lowest);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary-red-light);
  box-shadow: var(--glow-red-sm);
}

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

/* Contact & Location Section */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.location-card {
  background: rgba(32, 31, 31, 0.85);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  padding: 32px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  background: var(--primary-red);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--glow-red-sm);
  flex-shrink: 0;
}

.detail-title {
  font-family: var(--font-headline);
  font-size: 18px;
  color: #fff;
}

.detail-text {
  font-size: 14px;
  color: var(--text-muted);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: radial-gradient(circle, #2a2a2a 0%, #131313 100%);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(230,57,70,0.1) 20px),
              repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(230,57,70,0.1) 20px);
}

.map-content {
  position: relative;
  z-index: 2;
}

/* Modals & Drawers */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg-main);
  border-left: 2px solid var(--border-neon-solid);
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  flex-shrink: 0;
}

.drawer-scroll-container {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  display: flex;
  flex-direction: column;
}

.drawer-body {
  padding: 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.cart-item-name {
  font-family: var(--font-headline);
  font-size: 16px;
  color: #fff;
}

.cart-item-price {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--secondary-yellow);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-qty {
  background: var(--bg-card-high);
  border: 1px solid var(--border-neon);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
}

.qty-val {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  width: 20px;
  text-align: center;
}

.drawer-footer {
  padding: 24px;
  background: var(--bg-lowest);
  border-top: 1px solid var(--border-neon);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--text-muted);
}

.summary-total {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  margin-top: 12px;
}

.summary-total-val {
  color: var(--secondary-yellow);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--primary-red-solid);
  box-shadow: var(--glow-red-md);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toast-in {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
footer {
  background: var(--bg-lowest);
  border-top: 1px solid var(--border-neon);
  padding: 60px 32px 30px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-red-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   2D FLOOR PLAN / MAPA DE MESAS INTERACTIVO
   -------------------------------------------------------------------------- */
.floor-plan-card {
  background: var(--bg-lowest);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.floor-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.legend-container {
  display: flex;
  gap: 16px;
  font-family: var(--font-data);
  font-size: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.avail { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }
.legend-dot.occup { background: var(--primary-red); box-shadow: 0 0 8px var(--primary-red); }
.legend-dot.select { background: var(--secondary-yellow); box-shadow: 0 0 8px var(--secondary-yellow); }

.table-grid-map {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.table-item {
  background: var(--bg-card);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.table-item.available {
  border-color: rgba(46, 204, 113, 0.4);
}

.table-item.available:hover {
  border-color: #2ecc71;
  background: rgba(46, 204, 113, 0.15);
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.5);
  transform: translateY(-3px);
}

.table-item.selected {
  border-color: var(--secondary-yellow);
  background: rgba(237, 193, 87, 0.2);
  box-shadow: var(--glow-yellow);
  transform: scale(1.04);
}

.table-item.occupied {
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.1);
  opacity: 0.5;
  cursor: not-allowed;
}

.table-code {
  font-family: var(--font-headline);
  font-size: 20px;
  color: #fff;
}

.table-seats {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   ORDER TRACKER TIMELINE
   -------------------------------------------------------------------------- */
.tracker-box {
  background: rgba(32, 31, 31, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
  position: relative;
}

.step-point {
  background: var(--bg-lowest);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-point.active {
  border-color: var(--primary-red);
  background: rgba(230, 57, 70, 0.15);
  box-shadow: var(--glow-red-sm);
}

.step-point.completed {
  border-color: #2ecc71;
  background: rgba(46, 204, 113, 0.15);
}

.step-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.step-label {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* --------------------------------------------------------------------------
   TACO BUILDER WIZARD
   -------------------------------------------------------------------------- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ingredient-card {
  background: var(--bg-card-high);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ingredient-card:hover, .ingredient-card.selected {
  border-color: var(--primary-red);
  background: rgba(230, 57, 70, 0.2);
  box-shadow: var(--glow-red-sm);
}

.ingredient-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.ingredient-name {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.ingredient-price {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--secondary-yellow);
}

/* --------------------------------------------------------------------------
   COMMUNITY REVIEWS MURAL
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(32, 31, 31, 0.85);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--secondary-yellow);
  font-size: 16px;
}

.review-comment {
  font-size: 14px;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
}

/* Mobile Navigation Drawer Overlay */
.btn-mobile-toggle {
  display: none;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(17, 16, 16, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.mobile-nav-links a {
  color: #fff;
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--primary-red-light);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .reservation-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .navbar {
    padding: 0 12px;
    height: 62px;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 8px;
  }

  .nav-links, .open-badge, .sound-toggle-desktop {
    display: none !important;
  }

  .btn-mobile-toggle {
    display: flex;
  }

  .btn-cart {
    padding: 0 10px;
    font-size: 11px;
    height: 36px;
    gap: 4px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-official-logo {
    width: 220px;
    max-width: 75vw;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    height: 46px;
    font-size: 13px;
  }

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

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

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

  .tracker-box {
    padding: 20px 14px;
  }

  .timeline-stepper {
    grid-template-columns: 1fr 1fr;
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }

  .modal-content {
    padding: 20px 16px;
    max-width: 95vw;
  }
}

