/* ============================================
   BAR ARCADIA - CUSTOM STYLES
   Diseño oscuro sofisticado con toques dorados
   Optimizado para móvil y desktop
   ============================================ */

/* ============================================
   ROOT & CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #141414;
  --color-bg-card: #1a1a1a;

  --color-text-primary: #ffffff;
  --color-text-secondary: #a3a3a3;
  --color-text-muted: #737373;

  --color-accent-amber: #f59e0b;
  --color-accent-orange: #ea580c;
  --color-accent-gold: #d97706;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-radial: radial-gradient(circle at center, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.2);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ocultar scrollbar pero mantener funcionalidad de scroll */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display {
  font-family: var(--font-display);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 48px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  backdrop-filter: blur(10px);
  min-height: 48px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-nav {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nav:hover {
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-link {
  position: relative;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-base);
  padding: 0.5rem 0;
  display: inline-block;
}

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

.nav-link:hover {
  color: var(--color-text-primary);
}

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

/* ============================================
   CARDS
   ============================================ */
.card-glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.card-glass:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(245, 158, 11, 0.15);
}

.dish-card {
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(245, 158, 11, 0.2);
}

.info-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(245, 158, 11, 0.15);
}

.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

/* ============================================
   SWIPER CUSTOMIZATION
   ============================================ */
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-pagination {
  bottom: 1.5rem !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  transition: var(--transition-base);
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--gradient-primary) !important;
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition-base);
  color: white !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.25rem !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(245, 158, 11, 0.25) !important;
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 1s ease-out;
}

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Gradient animation for radial backgrounds */
.bg-gradient-radial {
  background: radial-gradient(circle at center, currentColor 0%, transparent 70%);
}

/* ============================================
   UTILITIES
   ============================================ */
.backdrop-blur-xl {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.text-shadow {
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
}

.text-shadow-sm {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Scroll bar customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.4);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Ajustes para móviles pequeños */
@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

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

  /* Botones más grandes en móvil */
  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .btn-nav {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Cards con más padding en móvil */
  .dish-card {
    padding: 1.25rem;
  }

  .dish-card h3 {
    font-size: 1.5rem !important;
  }

  .dish-card p {
    font-size: 1rem !important;
  }

  .info-card {
    padding: 1.5rem;
  }

  .info-card h3 {
    font-size: 1.5rem !important;
  }

  /* Swiper en móvil */
  .swiper-button-next,
  .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.125rem !important;
  }

  .swiper-pagination {
    bottom: 1rem !important;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }

  .swiper-pagination-bullet-active {
    width: 24px;
  }

  /* Hero en móvil - centrado y sin carrusel */
  section:first-of-type .grid {
    grid-template-columns: 1fr !important;
    display: block !important;
  }

  section:first-of-type .grid > div:first-child {
    order: 1 !important;
  }

  section:first-of-type .grid > div:last-child {
    display: none !important;
  }

  section:first-of-type .text-center {
    text-align: center !important;
  }

  section:first-of-type .lg\\:text-left {
    text-align: center !important;
  }

  section:first-of-type .lg\\:mx-0 {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  section:first-of-type .justify-center {
    justify-content: center !important;
  }

  section:first-of-type .lg\\:justify-start {
    justify-content: center !important;
  }

  /* Textos más legibles en móvil */
  p, li {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* Navegación móvil con fondo */
  #mobile-menu {
    padding-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  }

  #mobile-menu a {
    font-size: 1.125rem;
    padding: 1rem;
    display: block;
    border-radius: 0.5rem;
    transition: all 0.2s;
  }

  #mobile-menu a:hover,
  #mobile-menu a:active {
    background: rgba(245, 158, 11, 0.1);
  }

  /* Footer en móvil */
  footer h3 {
    font-size: 1.75rem !important;
  }

  footer h4 {
    font-size: 1.25rem !important;
  }

  /* Galería en móvil - 2 columnas */
  .gallery-grid {
    gap: 0.75rem;
  }
}

/* Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  html {
    font-size: 15.5px;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .dish-card,
  .info-card {
    padding: 1.5rem;
  }
}

/* Desktop grande */
@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
}

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

/* Focus states para accesibilidad */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent-amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Aumentar área táctil en móviles */
@media (hover: none) and (pointer: coarse) {
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ============================================
   LOADING STATES
   ============================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[loading="lazy"] {
  opacity: 1;
  transition: opacity 0.3s;
}

img {
  opacity: 1;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

/* ============================================
   MENU / CARTA STYLES
   ============================================ */
.filter-chip {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--color-text-primary);
}

.filter-chip.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-glow);
}

.menu-card {
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(245, 158, 11, 0.2);
}

.menu-category {
  scroll-margin-top: 6rem;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: block;
  opacity: 1;
}

.modal-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.modal-container.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-2xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(245, 158, 11, 0.3);
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
  position: absolute;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-base);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.6);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-amber);
  margin-bottom: 1rem;
}

.modal-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-options {
  margin-bottom: 1.5rem;
}

.modal-option-group {
  margin-bottom: 1rem;
}

.modal-option-label {
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.modal-option-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.modal-option-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
}

.modal-option-item input[type="checkbox"],
.modal-option-item input[type="radio"] {
  margin-right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

.modal-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.modal-quantity-label {
  font-weight: 600;
  color: white;
}

.modal-quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-quantity-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--color-accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  transition: var(--transition-base);
}

.modal-quantity-btn:hover {
  background: rgba(245, 158, 11, 0.3);
  border-color: rgba(245, 158, 11, 0.6);
  transform: scale(1.1);
}

.modal-quantity-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  min-width: 2rem;
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-add-cart {
  flex: 1;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-add-detail {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--color-accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition-base);
  line-height: 1;
}

.btn-add-detail:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* Scrollbar en modales */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.5);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.7);
}

/* ============================================
   LIGHT MODE STYLES
   ============================================ */
body.light-mode {
  --color-bg-primary: #fafafa;
  --color-bg-secondary: #f5f5f5;
  --color-bg-card: #ffffff;

  --color-text-primary: #0a0a0a;
  --color-text-secondary: #525252;
  --color-text-muted: #737373;

  --color-accent-amber: #f59e0b;
  --color-accent-orange: #ea580c;
  --color-accent-gold: #d97706;

  /* Gradients ajustados para modo claro */
  --gradient-glass: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);

  /* Shadows para modo claro */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.25);

  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

/* Cards en modo claro */
body.light-mode .card-glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-lg);
}

body.light-mode .card-glass:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(245, 158, 11, 0.15);
}

body.light-mode .dish-card,
body.light-mode .menu-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .dish-card:hover,
body.light-mode .menu-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(245, 158, 11, 0.2);
}

body.light-mode .info-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .info-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(245, 158, 11, 0.15);
}

/* Navegación en modo claro */
body.light-mode #main-nav {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-link {
  color: var(--color-text-secondary);
}

body.light-mode .nav-link:hover {
  color: var(--color-text-primary);
}

/* Botones secundarios en modo claro */
body.light-mode .btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-primary);
}

body.light-mode .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
}

/* Filter chips en modo claro */
body.light-mode .filter-chip {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-secondary);
}

body.light-mode .filter-chip:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--color-text-primary);
}

body.light-mode .filter-chip.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

/* Modal en modo claro */
body.light-mode .modal-overlay {
  background: rgba(255, 255, 255, 0.85);
}

body.light-mode .modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(245, 158, 11, 0.3);
}

body.light-mode .modal-close {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-text-primary);
}

body.light-mode .modal-close:hover {
  background: rgba(245, 158, 11, 0.15);
}

body.light-mode .modal-title {
  color: var(--color-text-primary);
}

body.light-mode .modal-option-label,
body.light-mode .modal-quantity-label {
  color: var(--color-text-primary);
}

body.light-mode .modal-option-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .modal-option-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(245, 158, 11, 0.3);
}

body.light-mode .modal-quantity {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .modal-quantity-value {
  color: var(--color-text-primary);
}

/* Mobile menu en modo claro */
body.light-mode #mobile-menu {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

body.light-mode #mobile-menu a {
  color: var(--color-text-secondary);
}

body.light-mode #mobile-menu a:hover,
body.light-mode #mobile-menu a:active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-text-primary);
}

/* Gradientes decorativos en modo claro */
body.light-mode .fixed.inset-0.pointer-events-none > div {
  opacity: 0.3;
}

/* Swiper en modo claro */
body.light-mode .swiper-button-next,
body.light-mode .swiper-button-prev {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-primary) !important;
}

body.light-mode .swiper-button-next:hover,
body.light-mode .swiper-button-prev:hover {
  background: rgba(245, 158, 11, 0.2) !important;
  border-color: rgba(245, 158, 11, 0.5);
}

body.light-mode .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.3) !important;
}

/* Scrollbar en modo claro */
body.light-mode ::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

body.light-mode ::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.5);
}

body.light-mode ::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.7);
}

/* Text colors específicos en modo claro */
body.light-mode .text-neutral-400 {
  color: #737373 !important;
}

body.light-mode .text-neutral-300 {
  color: #525252 !important;
}

body.light-mode .text-white {
  color: var(--color-text-primary) !important;
}

/* Footer en modo claro */
body.light-mode footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode footer p,
body.light-mode footer li,
body.light-mode footer a {
  color: var(--color-text-secondary);
}

body.light-mode footer a:hover {
  color: var(--color-text-primary);
}

/* Theme Toggle Button Styles */
.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}

body.light-mode .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
}

body.light-mode .theme-toggle svg {
  color: var(--color-text-primary);
}

/* Icono de sol (visible en modo oscuro) */
.theme-toggle .sun-icon {
  position: absolute;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Icono de luna (visible en modo claro) */
.theme-toggle .moon-icon {
  position: absolute;
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

/* Cuando está en modo claro */
body.light-mode .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

body.light-mode .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination,
  nav,
  .btn-primary,
  .btn-secondary,
  .theme-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card-glass,
  .dish-card,
  .info-card {
    border: 1px solid #ccc;
    background: white;
  }
}

/* ============================================
   MEJORAS ESPECÍFICAS PARA MÓVIL
   ============================================ */
@media (max-width: 768px) {
  /* Asegurar que el contenido sea visible */
  body {
    font-size: 16px;
  }

  /* Mejorar contraste en móvil */
  .text-neutral-400 {
    color: #c4c4c4 !important;
  }

  .text-neutral-300 {
    color: #e0e0e0 !important;
  }

  /* Cards más visibles en móvil */
  .card-glass,
  .dish-card,
  .info-card {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Hero más compacto pero impactante */
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }

  /* Logo más pequeño en móvil */
  .hero-section img[alt*="Logo"] {
    width: 200px !important;
    max-width: 80vw;
  }

  /* Espaciados optimizados */
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Navegación sticky más pequeña */
  #main-nav {
    height: auto;
  }

  #main-nav .h-20 {
    height: 4rem;
  }

  /* Botones más accesibles */
  .btn-primary svg,
  .btn-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* OCULTAR HERO SWIPER EN MÓVIL - Simplifica todo */
  .order-1.lg\:order-2,
  .order-1 .hero-swiper,
  .hero-swiper,
  .swiper.hero-swiper,
  div.hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide,
  .hero-swiper .swiper-pagination {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
  }

  /* Ocultar todo el contenedor del carrusel */
  section:first-of-type .order-1,
  section:first-of-type > div > div > .order-1 {
    display: none !important;
  }

  section:first-of-type > div > div > div[class*="order-1"] {
    display: none !important;
  }

  /* Matar cualquier swiper en el hero section */
  section:first-of-type [class*="swiper"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }

  /* Hero section más compacto sin carrusel */
  section:first-of-type {
    min-height: auto !important;
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
  }

  /* Navegación flotante SIEMPRE en móvil */
  #main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    backdrop-filter: blur(20px) !important;
    background: rgba(0, 0, 0, 0.85) !important;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  }

  /* Espaciado para el nav fijo */
  body {
    padding-top: 0 !important;
  }

  /* Asegurar que otros elementos sean clicables */
  a,
  button,
  .btn-primary,
  .btn-secondary {
    position: relative;
    z-index: 10;
  }

  /* Scroll indicator oculto en móvil */
  .animate-bounce {
    display: none !important;
  }

  /* Asegurar que dishes swiper funcione bien */
  .dishes-swiper {
    position: relative;
    overflow: visible !important;
    padding-bottom: 3rem;
  }

  .dishes-swiper .swiper-wrapper {
    position: relative;
  }

  /* Botones de navegación del dishes swiper */
  .dishes-prev,
  .dishes-next {
    display: none !important;
  }

  /* Paginación más visible */
  .dishes-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 2rem !important;
  }

  /* Filter chips en móvil */
  .filter-chip {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Menu cards en móvil */
  .menu-card {
    padding: 1.25rem;
  }

  .menu-card h3 {
    font-size: 1.25rem !important;
  }

  .menu-card p {
    font-size: 0.875rem !important;
  }
}
