/* =====================================================
   BITE CLUB BURGERS — Main Styles
   Paleta: #133dc2 / #f2f1f4 / #9d83fb / #45599d
   ===================================================== */

/* ---- Custom Properties ---- */
:root {
  --blue:      #133dc2;
  --light:     #f2f1f4;
  --purple:    #9d83fb;
  --dark-blue: #45599d;
  --bg:        #060610;
  --bg-card:   rgba(19, 61, 194, 0.07);
  --bg-glass:  rgba(15, 20, 50, 0.7);
  --border:    rgba(157, 131, 251, 0.15);
  --text:      #f2f1f4;
  --text-muted:#a0a8c0;
  --wsp-green: #25d366;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 8px 40px rgba(19, 61, 194, 0.25);
  --shadow-lg: 0 20px 80px rgba(19, 61, 194, 0.35);
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     72px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utilities ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(157, 131, 251, 0.1);
  border: 1px solid rgba(157, 131, 251, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 6, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(157, 131, 251, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
}
.logo-img:hover { transform: scale(1.08) rotate(-3deg); }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(242, 241, 244, 0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--light);
  background: rgba(157, 131, 251, 0.08);
}

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

.btn-rappi-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-rappi-nav:hover {
  background: rgba(255, 102, 0, 0.3);
  border-color: rgba(255, 102, 0, 0.6);
}

.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--light);
  background: rgba(157, 131, 251, 0.1);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-cart:hover {
  background: rgba(157, 131, 251, 0.2);
  border-color: var(--purple);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform 0.2s;
}
.cart-badge.bump { transform: scale(1.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  background: rgba(6, 6, 16, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px 24px 30px;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.mob-link, .mob-wsp {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mob-link:hover { color: var(--light); background: rgba(157,131,251,0.08); }
.mob-wsp {
  color: var(--wsp-green);
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
}

/* =====================================================
   BUTTONS (Global)
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-wsp {
  background: var(--wsp-green);
  color: white;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-wsp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  background: rgba(242, 241, 244, 0.08);
  border: 1px solid rgba(242, 241, 244, 0.15);
  color: var(--light);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(242, 241, 244, 0.15);
  transform: translateY(-2px);
}

.btn-xl {
  font-size: 18px;
  padding: 18px 36px;
}

.btn-outline-rappi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.4);
  color: #ff6600;
  transition: all var(--transition);
}
.btn-outline-rappi:hover {
  background: rgba(255, 102, 0, 0.2);
  transform: translateY(-2px);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19, 61, 194, 0.5) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(157, 131, 251, 0.3) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(69, 89, 157, 0.4) 0%, transparent 70%);
  bottom: -100px; left: 40%;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  background: rgba(157, 131, 251, 0.1);
  border: 1px solid rgba(157, 131, 251, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wsp-green);
  box-shadow: 0 0 8px var(--wsp-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--light);
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 60%, #6dd5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-size: 20px; }
.stat-label { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; }

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(157, 131, 251, 0.2);
}

.hero-logo-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 61, 194, 0.3) 0%, rgba(157, 131, 251, 0.15) 50%, transparent 70%);
  animation: ring-pulse 3s ease-in-out infinite;
}

.hero-logo-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(19, 61, 194, 0.6));
  animation: float 6s ease-in-out infinite;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-arrow {
  animation: bounce 2s ease-in-out infinite;
}

/* =====================================================
   FEATURED
   ===================================================== */
.featured {
  padding: 100px 0;
  overflow: hidden;
}

.featured-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}
.featured-track::-webkit-scrollbar { display: none; }

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(157, 131, 251, 0.35);
}

.featured-card-img {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.card-emoji {
  font-size: 72px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  z-index: 1;
  animation: float-sm 4s ease-in-out infinite;
}

.featured-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue);
  color: white;
  z-index: 2;
}
.featured-badge-hot { background: #c21313; }
.featured-badge-premium { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.featured-badge-new { background: #13c278; }

.featured-card-body { padding: 20px; }
.card-name { font-family: var(--font-head); font-size: 24px; letter-spacing: 0.03em; margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--light);
}

.btn-wsp-card {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--blue);
  color: white;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-wsp-card:hover {
  background: var(--purple);
  transform: scale(1.04);
}

.featured-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.feat-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(157,131,251,0.1);
  border: 1px solid var(--border);
  color: var(--light);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.feat-nav-btn:hover { background: rgba(157,131,251,0.2); border-color: var(--purple); }

.feat-dots { display: flex; gap: 6px; }
.feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.feat-dot.active { background: var(--purple); width: 20px; border-radius: 3px; }

/* =====================================================
   MENU SECTION
   ===================================================== */
.menu-section { padding: 100px 0; }

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(242,241,244,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.menu-tab:hover { color: var(--light); border-color: rgba(157,131,251,0.3); }
.menu-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 4px 20px rgba(19, 61, 194, 0.4);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  display: none;
}
.menu-grid.active { display: grid; }

.menu-grid-extras {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(157, 131, 251, 0.3);
}

.menu-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--card-color, #133dc2) 0%, color-mix(in srgb, var(--card-color, #133dc2) 30%, #050508) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.menu-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.menu-emoji { font-size: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

.menu-card-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-card-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.menu-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--purple);
  white-space: nowrap;
}

.menu-card-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--wsp-green);
  color: white;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}
.btn-order:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-order-sm {
  padding: 8px 14px;
  font-size: 13px;
}

/* Combo card specifics */
.combo-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.combo-includes span {
  font-size: 11px;
  font-weight: 600;
  background: rgba(157,131,251,0.1);
  border: 1px solid rgba(157,131,251,0.2);
  color: var(--purple);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Extra card specifics */
.menu-card-extra {
  flex-direction: row;
  align-items: center;
  padding: 16px 20px;
  gap: 16px;
}
.extra-emoji { font-size: 40px; flex-shrink: 0; }
.menu-card-extra .menu-card-info { padding: 0; }
.menu-card-extra .menu-card-header { margin-bottom: 4px; }
.menu-card-extra .menu-card-header h3 { font-size: 18px; }
.menu-card-extra p { font-size: 12px; margin-bottom: 12px; }

.menu-rappi-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.menu-rappi-cta p { color: var(--text-muted); margin-bottom: 16px; }

.btn-rappi-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.4);
  color: #ff6600;
  transition: all var(--transition);
}
.btn-rappi-full:hover { background: rgba(255, 102, 0, 0.25); transform: translateY(-2px); }

/* =====================================================
   ABOUT
   ===================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 61, 194, 0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text .section-tag { margin-bottom: 20px; }
.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.value-icon { font-size: 28px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.value-item span { font-size: 13px; color: var(--text-muted); }

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-logo-display {
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.about-logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.about-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 61, 194, 0.4) 0%, transparent 70%);
  animation: ring-pulse 3s ease-in-out infinite;
}

.about-stat-cards {
  display: flex;
  gap: 16px;
  width: 100%;
}
.about-stat-card {
  flex: 1;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.asc-number {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 4px;
}
.asc-label { font-size: 12px; color: var(--text-muted); }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { padding: 100px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item-large { grid-row: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.03); }

.gallery-emoji { font-size: 48px; }
.gallery-placeholder p {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-instagram-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  transition: all var(--transition);
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253, 29, 29, 0.35); }

/* =====================================================
   LOCATION
   ===================================================== */
.location-section { padding: 100px 0; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 16px; }

.location-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.location-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.location-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.location-card p { font-size: 15px; line-height: 1.5; }

.location-wsp-btn, .location-ig-btn, .location-rappi-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 8px;
  transition: all var(--transition);
}
.location-wsp-btn { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: var(--wsp-green); }
.location-ig-btn { background: rgba(253,29,29,0.1); border: 1px solid rgba(253,29,29,0.3); color: #fd1d1d; }
.location-rappi-btn { background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.3); color: #ff6600; }
.location-wsp-btn:hover { background: rgba(37,211,102,0.2); }
.location-ig-btn:hover { background: rgba(253,29,29,0.2); }
.location-rappi-btn:hover { background: rgba(255,102,0,0.2); }

.location-map { display: flex; flex-direction: column; gap: 16px; }
.map-wrapper {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; height: 100%; }

.btn-maps {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}
.btn-maps:hover { background: #1a4fd8; transform: translateY(-2px); }

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg { position: absolute; inset: 0; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19, 61, 194, 0.25) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.cta-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(157, 131, 251, 0.2) 0%, transparent 70%);
  bottom: -200px; right: -100px;
}

.final-cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1;
  margin-bottom: 20px;
}
.cta-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 320px; }
.footer-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(242,241,244,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials a:hover { color: var(--light); border-color: var(--purple); background: rgba(157,131,251,0.1); }

.footer-nav h4, .footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--light); }

.footer-address { margin-top: 20px; }
.footer-address p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: rgba(160, 168, 192, 0.6); }

/* =====================================================
   FLOATING ACTIONS
   ===================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-wsp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wsp-green);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: float-btn 4s ease-in-out infinite;
}
.float-wsp:hover {
  background: #1db954;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.float-label { white-space: nowrap; }

.float-cart {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(19, 61, 194, 0.5);
  transition: all var(--transition);
}
.float-cart:hover { background: #1a4fd8; transform: scale(1.08); }

.float-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  background: var(--purple);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* =====================================================
   CART DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #0d0d1f;
  border-left: 1px solid var(--border);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.05em;
}

.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  background: rgba(242,241,244,0.06);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.cart-close:hover { color: var(--light); background: rgba(242,241,244,0.12); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 8px;
  color: var(--text-muted);
}
.cart-empty span { font-size: 48px; }
.cart-empty p { font-weight: 600; }
.cart-empty small { font-size: 13px; }

.cart-items { display: flex; flex-direction: column; gap: 10px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.ci-name { flex: 1; font-size: 14px; font-weight: 600; }
.ci-controls { display: flex; align-items: center; gap: 8px; }
.ci-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  background: rgba(157,131,251,0.1);
  border: 1px solid var(--border);
  color: var(--light);
  transition: all var(--transition);
  cursor: pointer;
}
.ci-btn:hover { background: rgba(157,131,251,0.2); border-color: var(--purple); }
.ci-qty { font-size: 16px; font-weight: 700; min-width: 20px; text-align: center; }
.ci-price { font-size: 14px; font-weight: 700; color: var(--purple); white-space: nowrap; }

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}
#cartTotal { color: var(--purple); font-size: 22px; }

.btn-cart-wsp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--wsp-green);
  color: white;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 10px;
}
.btn-cart-wsp:hover { background: #1db954; }

.btn-cart-clear {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(242,241,244,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cart-clear:hover { color: var(--light); border-color: rgba(242,241,244,0.2); }

/* =====================================================
   TOAST
   ===================================================== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(19, 61, 194, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(157, 131, 251, 0.3);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .hero-logo-visual { width: 260px; }
  .hero-logo-img { width: 260px; height: 260px; }
  .logo-glow-ring { width: 300px; height: 300px; }
  .featured-track { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links, .btn-rappi-nav { display: none; }
  .hamburger { display: flex; }
  .nav-mobile.open { display: block; }

  .hero {
    flex-direction: column;
    padding: calc(var(--nav-h) + 40px) 24px 80px;
    text-align: center;
  }

  .hero-content { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-logo-visual {
    position: static;
    transform: none;
    margin-top: 40px;
    order: -1;
  }
  .hero-logo-img { width: 200px; height: 200px; }
  .logo-glow-ring { width: 240px; height: 240px; }

  .featured-track {
    grid-template-columns: repeat(4, 280px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .featured-nav { display: flex; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid-extras { grid-template-columns: 1fr; }
  .menu-card-extra { flex-direction: column; align-items: flex-start; }
  .extra-emoji { font-size: 32px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-large { grid-row: span 1; }

  .location-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .float-label { display: none; }
  .float-wsp { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .floating-actions { bottom: 20px; right: 16px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .btn-xl { font-size: 16px; padding: 16px 28px; }

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

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .section-container { padding: 0 16px; }
  .featured-track { grid-template-columns: repeat(4, 85vw); }
  .featured-card-img { height: 180px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-section .gallery-item-large { grid-row: span 1; }
}
