/* ============================================
   ONE WAY COMIDAS RÁPIDAS - STYLES
   Diseño dark moderno tipo burger joint urbano
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores principales */
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ff8c61;
  --secondary: #ffc947;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --gray-900: #1f1f1f;
  --gray-700: #404040;
  --gray-500: #808080;
  --gray-400: #a0a0a0;
  --gray-300: #c0c0c0;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --success: #22c55e;
  --danger: #ef4444;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
  --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  --gradient-hero: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.15), transparent 60%),
                   radial-gradient(ellipse at bottom right, rgba(255, 201, 71, 0.08), transparent 60%);
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
  --shadow-primary: 0 8px 24px rgba(255, 107, 53, 0.4);
  
  /* Tipografía */
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  
  /* Espaciados */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Bordes */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Transiciones */
  --transition-fast: all 0.2s ease;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 1000;
  --z-modal-overlay: 999;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-base);
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-sm) 0;
  font-size: 0.875rem;
  text-align: center;
  position: relative;
  z-index: 10;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.top-bar p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.top-bar strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   HEADER
   ============================================ */
#header {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  gap: var(--space-xl);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.4));
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-300);
  position: relative;
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-base);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.cart-btn {
  position: relative;
  background: var(--dark-3);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.cart-btn:hover {
  background: var(--dark-2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.cta-btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-primary);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.burger span {
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--dark-2);
  z-index: var(--z-modal);
  padding: var(--space-4xl) var(--space-xl);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  border-left: 2px solid var(--primary);
}

.mobile-menu.open { right: 0; }

.mobile-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.mobile-menu.open::before {
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  font-size: 1.5rem;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.mobile-menu ul a {
  font-size: 1.25rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  display: block;
  color: var(--gray-300);
  border: 1px solid transparent;
}

.mobile-menu ul a:hover {
  background: var(--dark-3);
  color: var(--primary);
  border-color: rgba(255, 107, 53, 0.2);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: var(--dark-3);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

.btn-icon {
  transition: transform 0.3s;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--gradient-hero), var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 201, 71, 0.08), transparent 50%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  filter: blur(60px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateY(-50%) scale(1.1); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 107, 53, 0.1);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: var(--radius-full);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: var(--space-xl);
  letter-spacing: 2px;
}

.hero-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: var(--dark-2);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-weight: 600;
  color: var(--white);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.floating-card strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.floating-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.card-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 35%; right: 0; animation-delay: 0.8s; }
.card-3 { bottom: 25%; left: 10%; animation-delay: 1.6s; }
.card-4 { bottom: 5%; right: 15%; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--space-4xl) 0;
  background: var(--dark-2);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--dark-3);
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  letter-spacing: 1px;
}

.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: var(--space-4xl) 0;
  background: var(--dark);
  position: relative;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: var(--dark-3);
  color: var(--gray-300);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.menu-item {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.3);
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item-header {
  margin-bottom: var(--space-md);
  min-height: 24px;
}

.menu-item-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-item-badge.new {
  background: var(--success);
  color: var(--white);
}

.menu-item-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

.menu-item-desc {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.add-to-cart {
  background: var(--dark-3);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

.add-to-cart span:first-child {
  font-size: 1.25rem;
  font-weight: 700;
}

.menu-cta {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(255, 107, 53, 0.3);
}

.menu-cta p {
  color: var(--gray-300);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.menu-cta strong {
  color: var(--primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--space-4xl) 0;
  background: var(--dark-2);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-content .section-tag {
  margin-bottom: var(--space-md);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.about-text {
  font-size: 1.0625rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-check {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.about-feature strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.about-feature p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* About Visual - Rating Card */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  color: var(--white);
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.5s;
}

.rating-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.rating-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  border-radius: inherit;
}

.rating-card > * {
  position: relative;
  z-index: 1;
}

.rating-stars {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  letter-spacing: 4px;
}

.rating-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -2px;
}

.rating-text {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.rating-divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-full);
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rating-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.rating-info-item strong {
  font-size: 1.5rem;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-section {
  padding: var(--space-4xl) 0;
  background: var(--dark);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.schedule-card {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.schedule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: var(--shadow-lg);
}

.schedule-card.highlight {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.schedule-card.highlight .schedule-time,
.schedule-card.highlight .schedule-note,
.schedule-card.highlight h3 {
  color: var(--white);
}

.schedule-ribbon {
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--secondary);
  color: var(--dark);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.schedule-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.schedule-emoji {
  font-size: 2.5rem;
}

.schedule-header h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
}

.schedule-time {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 1px;
}

.schedule-note {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
}

.schedule-cta {
  text-align: center;
  padding: var(--space-xl);
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.schedule-cta p {
  color: var(--gray-300);
  font-size: 1rem;
}

.schedule-cta strong {
  color: var(--primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--space-4xl) 0;
  background: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.contact-card {
  background: var(--dark-3);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.3);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
  transform: scale(1.15);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
}

.contact-info {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: var(--space-sm);
  border: 1px solid rgba(34, 197, 94, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: var(--radius-full);
  animation: pulseDot 2s ease infinite;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #050505;
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 2px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-col .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.footer-col .footer-logo .logo-text span {
  color: var(--primary);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: var(--primary);
  letter-spacing: 1.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul li,
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  transition: var(--transition-base);
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* ============================================
   CART MODAL
   ============================================ */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.cart-content {
  position: absolute;
  top: 0;
  right: -500px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  border-left: 2px solid var(--primary);
}

.cart-modal.open .cart-content {
  right: 0;
}

.cart-header {
  padding: var(--space-xl);
  background: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 1px;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--dark-3);
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-close:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  color: var(--gray-400);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.cart-empty p {
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.empty-subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
  color: var(--gray-400);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--white);
  letter-spacing: 0.5px;
}

.cart-item-info .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9375rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--dark-3);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--dark-2);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-qty button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cart-qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
}

.cart-footer {
  padding: var(--space-xl);
  background: var(--dark);
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
}

.cart-total span {
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
}

.cart-total strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  color: var(--primary);
  letter-spacing: 1px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 50;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 24px rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.5); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.cart-count.bump {
  animation: cartBump 0.4s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero .container,
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .hero-visual {
    height: 450px;
    order: -1;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-grid,
  .contact-grid,
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-visual {
    height: auto;
  }
}

@media (max-width: 768px) {
  .top-bar p {
    font-size: 0.75rem;
  }
  
  .nav-links,
  .nav-actions .cta-btn {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .hero {
    padding: var(--space-2xl) 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-stats {
    gap: var(--space-lg);
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .features-grid,
  .menu-grid,
  .contact-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-content {
    max-width: 100%;
  }
  
  section {
    padding: var(--space-3xl) 0 !important;
  }
  
  .rating-number {
    font-size: 5rem;
  }
  
  .rating-card {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .menu-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .menu-filters::-webkit-scrollbar {
    display: none;
  }
  
  .filter-btn {
    flex-shrink: 0;
  }
  
  .floating-card {
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
  }
  
  .card-icon {
    font-size: 1.75rem;
  }
  
  .hero-visual {
    height: 350px;
  }
  
  .card-1 { top: 5%; left: 0; }
  .card-2 { top: 30%; right: -5%; }
  .card-3 { bottom: 25%; left: 0; }
  .card-4 { bottom: 5%; right: 0; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-3);
  border-radius: 10px;
  border: 2px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selección de texto */
::selection {
  background: var(--primary);
  color: var(--white);
}