/* ========================================
   MORRITOS SNACKS - Red, White & Black Design
   Clean, Bold, Appetite-Inducing
   ======================================== */

/* ========================================
   CSS VARIABLES - Refined Color System
   ======================================== */
:root {
  /* Primary Colors */
  --red: #E53935;        /* Brand red - appetizing, energetic */
  --red-hover: #C62828;  /* Darker red for hover states */
  --black: #000000;      /* Pure black for contrast */
  --white: #FFFFFF;      /* Clean white */
  
  /* Grays for depth */
  --gray-100: #F5F5F5;   /* Light backgrounds */
  --gray-200: #EEEEEE;   /* Borders */
  --gray-300: #E0E0E0;   /* Dividers */
  --gray-400: #BDBDBD;   /* Disabled states */
  --gray-600: #757575;   /* Secondary text */
  --gray-800: #424242;   /* Body text */
  --gray-900: #212121;   /* Headlines */
  
  /* Typography */
  --font-primary: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fredoka', 'Comic Sans MS', cursive;
  
  /* Spacing - Golden Ratio Based */
  --space-xs: 0.382rem;   /* ~6px */
  --space-sm: 0.618rem;   /* ~10px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.618rem;   /* ~26px */
  --space-xl: 2.618rem;   /* ~42px */
  --space-2xl: 4.236rem;  /* ~68px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows - Subtle but effective */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.3;
  color: var(--black);
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center {
  text-align: center;
}

/* ========================================
   BUTTONS - Conversion Optimized
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.9375rem;
}

/* Primary CTA - Red for maximum conversion */
.btn-primary {
  background-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

/* Secondary - Black with red on hover */
.btn-secondary {
  background-color: var(--black);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--gray-900);
  box-shadow: var(--shadow-md);
}

/* Ghost button */
.btn-outline {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}

/* ========================================
   NAVIGATION - Clean & Professional
   ======================================== */
.navbar {
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

/* Logo - Matches uniform style */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  padding: 0;
  border: 2px solid var(--red);
  object-fit: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo placeholder */
.logo img:not([src]),
.logo img[src=""] {
  background-color: var(--white);
  border: 2px solid var(--red);
}

.logo img:not([src])::before,
.logo img[src=""]::before {
  content: 'M';
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  position: absolute;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-menu a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
  position: relative;
  padding: var(--space-xs) 0;
  letter-spacing: 0;
}

/* Red underline on hover/active */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--black);
  transition: all 0.3s ease;
}

/* ========================================
   HERO HEADER - Full Screen with Transform
   ======================================== */
.hero-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero background with gradient */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    /* Subtle circles pattern */
    radial-gradient(circle at 20% 80%, transparent 30%, rgba(0,0,0,0.03) 30.5%, rgba(0,0,0,0.03) 31%, transparent 31.5%),
    radial-gradient(circle at 80% 20%, transparent 30%, rgba(255,255,255,0.05) 30.5%, rgba(255,255,255,0.05) 31%, transparent 31.5%),
    radial-gradient(circle at 60% 60%, transparent 25%, rgba(0,0,0,0.02) 25.5%, rgba(0,0,0,0.02) 26%, transparent 26.5%),
    /* Base gradient - smoother */
    linear-gradient(135deg, var(--red) 0%, #E53935 100%);
  background-size: 600px 600px, 700px 700px, 800px 800px, 100% 100%;
  background-position: 0 0, 100% 0, 50% 50%, 0 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    /* Very subtle vignette effect */
    radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(0, 0, 0, 0.15) 100%
    );
  background-size: 100% 100%;
  background-position: 0 0;
}

/* Hero content container */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-xl);
  max-width: 1000px;
  width: 100%;
}

/* Hero logo */
.logo-hero {
  margin-bottom: var(--space-xl);
  animation: fadeInDown 1s ease-out;
}

.logo-hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--white);
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 5px solid var(--white);
  object-fit: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero logo placeholder */
.logo-hero img:not([src]),
.logo-hero img[src=""] {
  background-color: var(--white);
}

.logo-hero img:not([src])::before,
.logo-hero img[src=""]::before {
  content: 'M';
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  position: absolute;
}

/* Hero quote */
.hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--space-2xl);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  animation: fadeInUp 1s ease-out 0.3s both;
  font-weight: 700;
}

.hero-quote span {
  display: block;
  font-size: 0.8em;
  font-weight: 500;
  margin-top: var(--space-sm);
  color: var(--white);
  opacity: 0.95;
}

/* Hero navigation badges */
.hero-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.nav-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  min-width: 90px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-badge.active {
  background-color: var(--red);
  color: var(--white);
}

.badge-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  color: inherit;
}

.nav-badge:not(.active) .badge-text {
  color: var(--black);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 0.7;
}

/* Fixed navigation (hidden initially) */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  opacity: 0;
}

.fixed-nav.show {
  transform: translateY(0);
  opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   FEATURES - Trust Building
   ======================================== */
.features {
  padding: var(--space-2xl) 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--red);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--black);
}

.feature-card p {
  color: var(--gray-600);
}

/* ========================================
   MENU SECTION - Product Showcase
   ======================================== */
.menu-preview {
  padding: var(--space-2xl) 0;
  background-color: var(--gray-100);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.category-btn {
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.category-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.category-btn.active {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.category-count {
  background-color: var(--gray-200);
  color: var(--gray-600);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.category-btn:hover .category-count {
  background-color: var(--red);
  color: var(--white);
}

.category-btn.active .category-count {
  background-color: var(--white);
  color: var(--red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.menu-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.menu-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.menu-item:hover .menu-item-image {
  transform: scale(1.05);
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--gray-100);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder styles for missing images */
.menu-item-image:not([src]), 
.menu-item-image[src=""],
.menu-item-image[src*="menu/"] {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.menu-item-image:not([src])::before,
.menu-item-image[src=""]::before,
.menu-item-image[src*="menu/"]::before {
  content: '🍴';
  font-size: 3rem;
  opacity: 0.4;
  position: absolute;
}

/* Specific placeholder styles for each menu item */
.menu-item[data-category="dulces"] .menu-item-image::before {
  content: '🍭';
  color: #E91E63;
}

.menu-item[data-category="salados"] .menu-item-image::before {
  content: '🌮';
  color: #FF5722;
}

.menu-item[data-category="bebidas"] .menu-item-image::before {
  content: '🥤';
  color: #2196F3;
}

/* Specific icons for each item */
.menu-raspados .menu-item-image::before { content: '🍧'; }
.menu-tostilocos .menu-item-image::before { content: '🌶️'; }
.menu-elotes-preparados .menu-item-image::before { content: '🌽'; }
.menu-fruta-preparada .menu-item-image::before { content: '🍉'; }
.menu-aguas-frescas .menu-item-image::before { content: '🥤'; }
.menu-nachos-especiales .menu-item-image::before { content: '🧀'; }
.menu-paletas-de-hielo .menu-item-image::before { content: '🍡'; }
.menu-papas-preparadas .menu-item-image::before { content: '🥔'; }
.menu-micheladas .menu-item-image::before { content: '🍺'; }
.menu-churros-rellenos .menu-item-image::before { content: '🥨'; }
.menu-esquites .menu-item-image::before { content: '🌽'; }
.menu-jugos-naturales .menu-item-image::before { content: '🍊'; }

.menu-item-content {
  padding: var(--space-lg);
  position: relative;
}

.menu-item-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--black);
}

.menu-item-price {
  color: var(--red);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Click indicator */
.menu-item-content::after {
  content: 'Ver más';
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  font-size: 0.75rem;
  color: var(--gray-400);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.menu-item:hover .menu-item-content::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--red);
}

/* No items message */
.no-items-message {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--gray-600);
  font-size: 1.125rem;
  font-weight: 500;
}

.no-items-message p {
  margin: 0;
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-feed {
  padding: var(--space-2xl) 0;
  background-color: var(--white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--gray-100);
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Instagram placeholder */
.instagram-item:not(:has(img[src])),
.instagram-item img:not([src]),
.instagram-item img[src*="instagram/"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item:not(:has(img[src]))::before,
.instagram-item img:not([src])::before,
.instagram-item img[src*="instagram/"]::before {
  content: '📸';
  font-size: 3rem;
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-stats {
  color: var(--white);
  display: flex;
  gap: var(--space-lg);
  font-weight: 600;
}

/* ========================================
   CONTACT SECTION - Enhanced Design
   ======================================== */
.contact {
  padding: var(--space-2xl) 0;
  background: linear-gradient(to bottom, var(--white) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(229, 57, 53, 0.05) 0%, transparent 40%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-top: var(--space-md);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.contact-info {
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--red);
}

.contact-info.featured {
  background: linear-gradient(135deg, var(--white) 0%, #FFF5F5 100%);
  border-color: var(--red);
  transform: scale(1.05);
}

.contact-info.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  position: relative;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.contact-info.featured .contact-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 4px 20px rgba(229, 57, 53, 0.5); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3); }
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--gray-900);
  font-family: var(--font-display);
}

.contact-info p {
  font-size: 1.25rem;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.contact-info a {
  color: var(--gray-800);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.contact-info a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.3s ease;
}

.contact-info a:hover {
  color: var(--red);
}

.contact-info a:hover::after {
  width: 100%;
}

.contact-detail {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: var(--space-xs);
}

/* CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #FFF5F5 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--gray-900);
  font-family: var(--font-display);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  font-size: 1.25rem;
  padding: var(--space-md) var(--space-xl);
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

.cta-divider {
  margin: var(--space-xl) 0;
  position: relative;
  text-align: center;
}

.cta-divider span {
  background: var(--white);
  padding: 0 var(--space-md);
  color: var(--gray-600);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.cta-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--gray-300);
}

.quick-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.quick-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-full);
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-action:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.quick-action i {
  font-size: 1.1rem;
}

/* Contact Features */
.contact-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--gray-200);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--gray-600);
  font-weight: 500;
}

.feature-item i {
  font-size: 1.25rem;
  color: var(--red);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info.featured {
    transform: scale(1);
  }
  
  .contact-features {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
}

/* ========================================
   BAR DESIGNER SECTION
   ======================================== */
.bar-designer {
  padding: var(--space-2xl) 0;
  background: linear-gradient(to bottom, var(--gray-100) 0%, var(--white) 100%);
}

.designer-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  margin: var(--space-md) 0 var(--space-2xl);
}

.designer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .bar-preview {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  
  .bar-preview::-webkit-scrollbar {
    width: 8px;
  }
  
  .bar-preview::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
  }
  
  .bar-preview::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
  }
  
  .bar-preview::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
  }
}

/* Snacks Panel */
.snacks-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.snacks-panel h3 {
  margin-bottom: var(--space-lg);
  color: var(--gray-900);
}

.snacks-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.snack-category h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.snack-category h4 i {
  color: var(--red);
}

.snack-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: var(--space-sm);
}

.snack-item {
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  cursor: grab;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.snack-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  background: var(--white);
}

.snack-item:active {
  cursor: grabbing;
  transform: scale(0.95);
}

.snack-item.dragging {
  opacity: 0.5;
  transform: scale(0.8);
}

.snack-item.used {
  opacity: 0.7;
  background: var(--gray-200);
}

.snack-item-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.snack-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.snack-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Bar Preview */
.bar-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.bar-preview h3 {
  margin-bottom: var(--space-lg);
  color: var(--gray-900);
}

.bar-table {
  position: relative;
  margin-bottom: var(--space-xl);
  perspective: 1000px;
}

.table-cloth {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -20px;
  height: 40px;
  background: repeating-linear-gradient(
    45deg,
    #E53935,
    #E53935 10px,
    #FFFFFF 10px,
    #FFFFFF 20px
  );
  border-radius: var(--radius-md);
  transform: rotateX(60deg);
  opacity: 0.8;
}

.bar-surface {
  background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.1),
    0 4px 8px rgba(0,0,0,0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-sm);
  min-height: 280px;
}

.drop-zone {
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: all 0.3s ease;
  position: relative;
}

.drop-zone.drag-over {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: scale(1.05);
}

.drop-zone.has-item {
  background: rgba(255,255,255,0.15);
  border-style: solid;
  border-color: rgba(255,255,255,0.5);
}

.drop-hint {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-align: center;
}

.drop-zone.has-item .drop-hint {
  display: none;
}

.drop-zone.just-added {
  animation: pulse-glow 0.6s ease-out;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50% { box-shadow: 0 0 20px 10px rgba(255,255,255,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.dropped-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: dropIn 0.3s ease-out;
}

@keyframes dropIn {
  from {
    transform: translateY(-20px) scale(1.1);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.dropped-item .snack-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.dropped-item .snack-name {
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.2;
}

.remove-item {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropped-item:hover .remove-item {
  opacity: 1;
}

/* Actions and Summary */
.bar-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
}

.btn-secondary:hover {
  background: var(--gray-300);
  transform: translateY(-2px);
}

.selection-summary {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.selection-summary h4 {
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

.selection-summary ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-sm);
}

.selection-summary li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-700);
}

.designer-tips {
  text-align: center;
  background: #FFF5F5;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--red);
}

.designer-tips i {
  color: var(--red);
  margin-right: var(--space-sm);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .designer-container {
    grid-template-columns: 1fr;
  }
  
  .bar-surface {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .snack-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: var(--space-2xl) 0;
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.about-text p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About image placeholder */
.about-image:not(:has(img[src])),
.about-image img:not([src]),
.about-image img[src*="about"] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 100%);
}

.about-image:not(:has(img[src]))::before,
.about-image img:not([src])::before {
  content: '👨‍👩‍👧‍👦';
  font-size: 5rem;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: var(--space-xl) 0;
  text-align: center;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

/* ========================================
   WHATSAPP BUTTON - High Visibility
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Pulse animation for attention */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  /* Mobile navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 10px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Hero header mobile adjustments */
  .logo-hero img {
    width: 100px;
    height: 100px;
  }
  
  .hero-quote {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
  }
  
  .hero-nav {
    gap: var(--space-sm);
  }
  
  .nav-badge {
    min-width: 80px;
    padding: var(--space-sm);
  }
  
  .badge-icon {
    font-size: 1.25rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  /* Responsive spacing */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  /* Smaller WhatsApp button on mobile */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   MENU MODAL
   ======================================== */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  padding: var(--space-md);
}

.menu-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-modal.active .modal-overlay {
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.menu-modal.active .modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.modal-close:hover {
  background-color: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-image {
  position: relative;
  overflow: hidden;
  background-color: var(--gray-100);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.modal-price {
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.modal-description {
  flex: 1;
  margin-bottom: var(--space-xl);
}

.modal-description p {
  color: var(--gray-600);
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: var(--space-md);
}

.modal-whatsapp {
  flex: 1;
  justify-content: center;
}

/* Mobile modal adjustments */
@media (max-width: 640px) {
  .modal-content {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
  
  .modal-image {
    height: 250px;
  }
  
  .modal-info {
    padding: var(--space-lg);
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
/* Hide scrollbar but keep functionality */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-hover);
}