/**
 * MEX TACO HOUSE - Mobile Site CSS
 * Clean, mobile-first stylesheet
 * No Bootstrap, no template conflicts
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Colors */
  --primary-red: #dc2626;
  --primary-red-dark: #b91c1c;
  --primary-red-light: #ef4444;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Typography */
  --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Shadows Into Light', cursive;

  /* Layout */
  --marquee-height: 32px;
  --navbar-height: 60px;
  --bottom-nav-height: 65px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ========================================
   BASE RESET
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: calc(var(--marquee-height) + var(--navbar-height));
  padding-bottom: calc(var(--bottom-nav-height) + var(--safe-area-bottom));
}

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

/* ========================================
   MARQUEE BANNER
   ======================================== */
.marquee-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--marquee-height);
  background: var(--black);
  overflow: hidden;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  animation: marquee-scroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-item i {
  color: var(--primary-red);
}

.marquee-separator {
  color: var(--primary-red);
  padding: 0 10px;
  font-size: 0.7rem;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-md);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-red { color: var(--primary-red); }
.text-gray { color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* ========================================
   TOP NAVBAR
   ======================================== */
.mobile-navbar {
  position: fixed;
  top: var(--marquee-height);
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.mobile-navbar-logo {
  height: 45px;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-navbar-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
}

.mobile-navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.mobile-navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   MOBILE MENU OVERLAY & PANEL
   ======================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-normal);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-lg);
  padding-top: calc(var(--marquee-height) + var(--navbar-height) + var(--space-xl));
}

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

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-menu-link {
  display: block;
  padding: var(--space-md);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: var(--gray-100);
  color: var(--primary-red);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-200);
  margin: var(--space-md) 0;
}

.mobile-menu-hours {
  padding: var(--space-sm) 0;
}

.mobile-menu-hours-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary-red);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu-hours-title i {
  font-size: 1rem;
}

.mobile-menu-hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-menu-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.mobile-menu-hours-item.closed span:last-child {
  color: var(--primary-red);
  font-weight: 600;
}

.mobile-menu-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.mobile-menu-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--primary-red);
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.mobile-menu-social a:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* ========================================
   BOTTOM NAVIGATION
   ======================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--bottom-nav-height) + var(--safe-area-bottom));
  padding-bottom: var(--safe-area-bottom);
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--space-sm) 0;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item:active {
  transform: scale(0.95);
  opacity: 0.8;
}

.bottom-nav-icon {
  font-size: 1.25rem;
}

.bottom-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
}

.hero-welcome {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Hero Video Styles */
.hero-video-section {
  position: relative;
  overflow: hidden;
}

.hero-video-section::before {
  display: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-video-section .hero-content {
  z-index: 2;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-fast);
  min-height: 48px;
  text-align: center;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--primary-red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover,
.btn-outline:active {
  background: var(--white);
  color: var(--primary-red);
}

.btn-white {
  background: var(--white);
  color: var(--primary-red);
}

.btn-white:hover,
.btn-white:active {
  background: var(--gray-100);
}

/* ========================================
   NOW HIRING BANNER
   ======================================== */
.now-hiring-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--primary-red);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.now-hiring-banner:hover,
.now-hiring-banner:active {
  background: var(--primary-red-dark);
}

.now-hiring-banner i:first-child {
  font-size: 1.1rem;
}

.now-hiring-banner i:last-child {
  font-size: 0.75rem;
  opacity: 0.8;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  font-size: 1.125rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--space-2xl) var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--gray-900);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-gray {
  background: var(--gray-50);
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body {
  padding: var(--space-lg);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* ========================================
   ABOUT SECTION (Homepage)
   ======================================== */
.about-content {
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto var(--space-lg);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-text {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   GALLERY (Homepage)
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

/* ========================================
   REVIEWS
   ======================================== */
.reviews-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
}

.reviews-track {
  display: flex;
  gap: var(--space-md);
  padding: 0 var(--space-md);
}

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.review-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--gray-900);
}

/* ========================================
   MENU ACCORDION
   ======================================== */
.menu-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.menu-category {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--gray-50);
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-category-header:active {
  background: var(--gray-100);
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-red);
}

.menu-category-icon {
  font-size: 1.5rem;
  color: var(--primary-red);
  transition: var(--transition-normal);
}

.menu-category.open .menu-category-icon {
  transform: rotate(45deg);
}

.menu-category-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.menu-category.open .menu-category-items {
  max-height: 2000px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
}

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

.menu-item-info {
  flex: 1;
  padding-right: var(--space-md);
}

.menu-item-name {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.menu-item-price {
  font-weight: 700;
  color: var(--primary-red);
  white-space: nowrap;
}

/* ========================================
   NEWS CARDS
   ======================================== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-card-body {
  padding: var(--space-lg);
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.news-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.news-card-excerpt {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.contact-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.contact-info {
  color: var(--gray-600);
}

.contact-info a {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-hours {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  border-radius: 12px;
  padding: var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.contact-hours h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-hours-list {
  font-size: 1rem;
  line-height: 1.8;
}

.contact-map {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--black);
  color: var(--gray-300);
  padding: var(--space-xl) var(--space-md);
  padding-bottom: calc(var(--space-xl) + var(--bottom-nav-height));
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin: 0 auto var(--space-lg);
}

.footer-address {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-phone a {
  color: var(--primary-red);
}

.footer-hours {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.footer-hours-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary-red);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.footer-hours-item {
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: var(--space-xs);
}

.footer-hours-item .closed {
  color: var(--primary-red);
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-red);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-desktop-link {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-decoration: underline;
}

/* ========================================
   ORDER DROPDOWN (Bottom Nav)
   ======================================== */
.order-dropdown {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--safe-area-bottom) + var(--space-md));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  width: calc(100% - var(--space-xl));
  max-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1001;
}

.order-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.order-dropdown-title {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

.order-dropdown-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.order-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.order-option:active {
  background: var(--gray-100);
}

.order-option-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.order-option-icon.call {
  background: var(--primary-red);
}

.order-option-icon.grubhub {
  background: #f63440;
}

.order-option-icon.ubereats {
  background: #06c167;
}

.order-option-text {
  font-weight: 600;
  color: var(--gray-800);
}

.order-dropdown-close {
  display: block;
  width: 100%;
  padding: var(--space-md);
  margin-top: var(--space-md);
  text-align: center;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========================================
   CALL POPUP
   ======================================== */
.call-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1002;
  padding: var(--space-lg);
}

.call-popup.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   LEAVING SITE MODAL
   ======================================== */
.leaving-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.leaving-modal.active {
  opacity: 1;
  visibility: visible;
}

.leaving-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-xl);
  width: 100%;
  max-width: 320px;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.leaving-modal.active .leaving-modal-content {
  transform: scale(1);
}

.leaving-modal-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  font-size: 1.75rem;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
}

.leaving-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.leaving-modal-text {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.leaving-modal-text span {
  font-weight: 600;
  color: var(--primary-red);
}

.leaving-modal-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.leaving-modal-cancel {
  background: transparent;
}

.call-popup-content {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-xl);
  width: 100%;
  max-width: 320px;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.call-popup.active .call-popup-content {
  transform: scale(1);
}

.call-popup-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
}

.call-popup-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.call-popup-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-lg);
}

.call-popup-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ========================================
   HOLIDAY POPUP
   ======================================== */
.holiday-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1003;
  padding: var(--space-lg);
}

.holiday-popup.active {
  opacity: 1;
  visibility: visible;
}

.holiday-popup-content {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-xl);
  width: 100%;
  max-width: 340px;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.holiday-popup.active .holiday-popup-content {
  transform: scale(1);
}

.holiday-popup-image {
  width: 200px;
  height: auto;
  margin: 0 auto var(--space-lg);
}

.holiday-popup-title {
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
}

.holiday-popup-text {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.holiday-popup-close {
  width: 100%;
}

.holiday-popup-x {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--gray-500);
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
  transition: color 0.2s ease;
}

.holiday-popup-x:hover {
  color: var(--gray-700);
}

/* Event Popup (Trucks & Coffee) */
.event-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: var(--space-md);
}

.event-popup.active {
  opacity: 1;
  visibility: visible;
}

.event-popup-content {
  background: white;
  border-radius: 16px;
  max-width: 350px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.event-popup.active .event-popup-content {
  transform: scale(1);
}

.event-popup-image {
  width: 100%;
  height: auto;
  display: block;
}

.event-popup-details {
  padding: var(--space-md);
  text-align: center;
}

.event-popup-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.event-popup-subtitle {
  font-size: 1rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.event-popup-info {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.event-popup-location {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.event-popup-close {
  margin: 0 var(--space-md) var(--space-md);
  width: calc(100% - var(--space-md) * 2);
}

.event-popup-x {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.event-popup-x:hover {
  background: white;
  color: #dc2626;
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

/* Hide scrollbar but allow scrolling */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s ease forwards;
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */
@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles if needed */
}
