/* â”€â”€ Sistema de DiseÃ±o & Variables (Speakeasy / Cyber-Chic) â”€â”€ */
:root {
  --bg-primary: #09080c;
  --bg-secondary: #0f0d14;
  --bg-tertiary: #16141d;
  --accent-magenta: #ff2e93;
  --accent-magenta-hover: #e01b7a;
  --accent-blue: #00f0ff;
  --accent-blue-hover: #00d2df;
  --accent-gold: #d9be8f;
  --accent-gold-hover: #c3aa7d;
  --accent-copper: #e27d42; /* Used only in discounts as requested */
  --accent-purple: #7b52ab;
  --text-primary: #ffffff;
  --text-secondary: #b5b2bd;
  --text-muted: #6e6b76;
  
  --border-color: rgba(255, 46, 147, 0.12); /* Subtly tinted with magenta */
  --border-glow: rgba(0, 240, 255, 0.2);
  --glass-bg: rgba(15, 13, 20, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(14px);
  
  --font-serif: 'Cinzel', Georgia, serif;
  --font-serif-decor: 'Cinzel Decorative', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-neon-magenta: 0 0 15px rgba(255, 46, 147, 0.45);
  --shadow-neon-blue: 0 0 15px rgba(0, 240, 255, 0.4);
  --shadow-neon-gold: 0 0 15px rgba(217, 190, 143, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-magenta) var(--bg-primary);
}

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

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

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

button, input {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* â”€â”€ Scrollbar Personalizada â”€â”€ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-magenta);
}

/* â”€â”€ AnimaciÃ³n Scroll Reveal â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Contenedores â”€â”€ */
.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

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

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-magenta);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-title span {
  color: var(--accent-magenta);
  font-family: var(--font-serif-decor);
  text-shadow: 0 0 10px rgba(255, 46, 147, 0.3);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

/* â”€â”€ Botones Premium â”€â”€ */
.btn-primary, .btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-neon-magenta);
}

.btn-primary:hover {
  background-color: var(--accent-magenta-hover);
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.6);
}

.btn-primary-glow {
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon-blue);
}
.btn-primary-glow:hover {
  background-color: var(--accent-blue-hover);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon-blue);
}

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

/* â”€â”€ Glassmorphic Header / Navbar â”€â”€ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
  padding: 24px 0;
}

#navbar.scrolled {
  background-color: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}
#navbar.scrolled .nav-logo-img {
  height: 40px;
}

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

.nav-link-item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-magenta);
  transition: var(--transition-fast);
}

.nav-link-item:hover {
  color: var(--text-primary);
}
.nav-link-item:hover::after {
  width: 100%;
}

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

.nav-cta-btn {
  border: 1px solid var(--accent-magenta);
  color: var(--accent-magenta);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.nav-cta-btn:hover {
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  box-shadow: var(--shadow-neon-magenta);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mm-logo {
  height: 44px;
}

.mm-close {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.mm-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.mm-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.mm-link:hover {
  color: var(--accent-magenta);
}

.mm-cta {
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  box-shadow: var(--shadow-neon-magenta);
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* â”€â”€ Hero Section â”€â”€ */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(1.1) blur(0.5px);
  transform: scale(1.03);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Scanlines */
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.35) 50%),
    /* Vignette gradient */
    linear-gradient(to bottom, 
      rgba(9, 8, 12, 0.7) 0%, 
      rgba(9, 8, 12, 0.4) 40%, 
      rgba(9, 8, 12, 0.95) 85%, 
      var(--bg-primary) 100%
    );
  background-size: 100% 4px, 100% 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  color: var(--accent-magenta);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
  margin-bottom: 20px;
}

.title-editorial {
  display: block;
  font-family: var(--font-serif);
  font-size: 6.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 12px;
  line-height: 1;
}

.title-accent {
  display: block;
  font-family: var(--font-serif-decor);
  font-size: 10.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 0.9;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.title-accent.highlight-magenta {
  color: var(--accent-magenta);
  text-shadow: 0 0 40px rgba(255, 46, 147, 0.9), 0 0 15px rgba(255, 46, 147, 0.5);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 46, 147, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: var(--accent-magenta);
  animation: scroll-anim 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scroll-anim {
  0% { top: -15px; }
  100% { top: 48px; }
}

/* â”€â”€ Marquee Bar (Ticker) â”€â”€ */
.marquee-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.marquee-track .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--accent-magenta);
  border-radius: 50%;
  margin: 0 30px;
}

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

/* â”€â”€ Storytelling Section (Historia) â”€â”€ */
#historia {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text-col {
  display: flex;
  flex-direction: column;
}

.story-paragraph {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 300;
}

.story-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.story-paragraph.highlight {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-gold);
  border-left: 2px solid var(--accent-copper);
  padding-left: 20px;
  margin: 10px 0 30px;
  line-height: 1.5;
  font-weight: 400;
}

.story-signature {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.sig-name {
  font-family: var(--font-serif-decor);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.sig-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.story-visuals-col {
  position: relative;
}

.story-image-canvas {
  position: relative;
  width: 100%;
  height: 480px;
}

.story-img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-wrapper:hover img {
  transform: scale(1.05);
}

.img-large {
  width: 70%;
  height: 380px;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.img-small {
  width: 50%;
  height: 260px;
  bottom: 0;
  right: 0;
  border: 3px solid var(--bg-primary);
  z-index: 2;
}

.story-decor-glowing-light {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--accent-purple);
  opacity: 0.15;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* â”€â”€ Editorial Media Gallery â”€â”€ */
#ambiente {
  background-color: var(--bg-secondary);
  position: relative;
  border-top: 1px solid var(--border-color);
}

/* â”€â”€ RediseÃ±o Creativo de GalerÃ­a (Mosaico AsimÃ©trico) â”€â”€ */
.gallery-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px 25px;
  padding: 40px 0;
  position: relative;
}

.gal-card {
  position: relative;
  border-radius: 8px;
  background: rgba(18, 12, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 12px 42px 12px; /* Polaroid/Glassmorphic frame */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

/* Polaroid-style caption */
.gal-card::after {
  content: attr(data-tag);
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gal-card-inner {
  width: 100%;
  height: 240px; /* default card content height */
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.gal-card img, .gal-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gal-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 8, 12, 0.85) 0%, rgba(9, 8, 12, 0) 70%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gal-zoom-btn {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  border: 1px solid var(--accent-blue);
  padding: 6px 12px;
  background-color: rgba(9, 8, 12, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  font-weight: 800;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gal-card:hover img, .gal-card:hover video {
  transform: scale(1.06);
}

.gal-card:hover .gal-card-overlay {
  opacity: 1;
}

.gal-card:hover .gal-zoom-btn {
  transform: translateY(0);
}

/* Asymmetric mosaic sizing and placements */
/* Card 1: Small image - left side, rotated left */
.gal-card:nth-child(1) {
  grid-column: span 4;
  transform: rotate(-1.8deg) translateY(10px);
  border-color: rgba(0, 240, 255, 0.25);
}
.gal-card:nth-child(1)::after { color: var(--accent-blue); }

/* Card 2: Vertical large video - middle, rotated right */
.gal-card:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
  transform: rotate(1.2deg);
  border-color: rgba(255, 46, 147, 0.25);
}
.gal-card:nth-child(2) .gal-card-inner {
  height: 570px; /* extra height for the large vertical format */
}
.gal-card:nth-child(2)::after { color: var(--accent-magenta); }

/* Card 3: Landscape image - right side, shifted down */
.gal-card:nth-child(3) {
  grid-column: span 3;
  transform: rotate(-0.5deg) translateY(35px);
}

/* Card 4: Square image - left side, shifted up */
.gal-card:nth-child(4) {
  grid-column: span 4;
  transform: rotate(1.5deg) translateY(-25px);
  border-color: rgba(0, 240, 255, 0.25);
}
.gal-card:nth-child(4)::after { color: var(--accent-blue); }

/* Card 5: Small video - right side, rotated left */
.gal-card:nth-child(5) {
  grid-column: span 3;
  transform: rotate(-2.2deg) translateY(15px);
  border-color: rgba(255, 46, 147, 0.25);
}
.gal-card:nth-child(5)::after { color: var(--accent-magenta); }

/* Card 6: Landscape image - bottom left */
.gal-card:nth-child(6) {
  grid-column: span 5;
  transform: rotate(-1deg) translateY(-10px);
}

/* Card 7: Vertical video - bottom middle, offset */
.gal-card:nth-child(7) {
  grid-column: span 3;
  transform: rotate(2deg) translateY(30px);
  border-color: rgba(255, 46, 147, 0.25);
}
.gal-card:nth-child(7)::after { color: var(--accent-magenta); }

/* Card 8: Square image - bottom right */
.gal-card:nth-child(8) {
  grid-column: span 4;
  transform: rotate(-1.5deg) translateY(-20px);
  border-color: rgba(0, 240, 255, 0.25);
}
.gal-card:nth-child(8)::after { color: var(--accent-blue); }

/* Hover transitions: straighten out and glow neon */
.gal-card:hover {
  transform: rotate(0deg) scale(1.05) translate3d(0, -12px, 20px) !important;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.gal-card:nth-child(1):hover,
.gal-card:nth-child(4):hover,
.gal-card:nth-child(8):hover {
  border-color: var(--accent-blue);
  box-shadow: 0 15px 45px rgba(0, 240, 255, 0.4), 0 0 20px rgba(0, 240, 255, 0.2);
}

.gal-card:nth-child(1):hover::after,
.gal-card:nth-child(4):hover::after,
.gal-card:nth-child(8):hover::after {
  text-shadow: 0 0 6px var(--accent-blue);
  color: var(--text-primary);
}

.gal-card:nth-child(2):hover,
.gal-card:nth-child(5):hover,
.gal-card:nth-child(7):hover {
  border-color: var(--accent-magenta);
  box-shadow: 0 15px 45px rgba(255, 46, 147, 0.4), 0 0 20px rgba(255, 46, 147, 0.2);
}

.gal-card:nth-child(2):hover::after,
.gal-card:nth-child(5):hover::after,
.gal-card:nth-child(7):hover::after {
  text-shadow: 0 0 6px var(--accent-magenta);
  color: var(--text-primary);
}

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

.insta-icon {
  width: 16px;
  height: 16px;
}

/* â”€â”€ Lightbox Viewport â”€â”€ */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 8, 12, 0.95);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lb-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}
.lb-close:hover {
  color: var(--text-primary);
}

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 20px;
  z-index: 10;
  transition: var(--transition-fast);
  user-select: none;
}
.lb-prev:hover, .lb-next:hover {
  color: var(--accent-magenta);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-content-wrapper {
  max-width: 80%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-content-wrapper img, .lb-content-wrapper video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lb-counter {
  position: absolute;
  bottom: 30px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* â”€â”€ La Ruleta Section â”€â”€ */
#la-ruleta {
  position: relative;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.ruleta-bg-blur {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--accent-copper);
  opacity: 0.07;
  filter: blur(120px);
  top: 40%;
  right: -100px;
  pointer-events: none;
}

.ruleta-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.ruleta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 300;
}

.ruleta-rules {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.rule-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-magenta);
  background-color: rgba(255, 46, 147, 0.08);
  border: 1px solid rgba(255, 46, 147, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
}

.rule-limit {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 5px;
}

/* Ruleta Action Cards (Form, Cooldown, Result) */
.ruleta-action-container {
  min-height: 340px;
  position: relative;
}

.ruleta-form-card, .ruleta-cooldown-card, .ruleta-result-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.4s ease forwards;
}

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

.ruleta-form-card h3, .ruleta-cooldown-card h3, .ruleta-result-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

#ruleta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-magenta);
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.25);
}

.btn-primary-glow {
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  border: none;
  padding: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: var(--shadow-neon-blue);
  transition: var(--transition-smooth);
}
.btn-primary-glow:hover {
  background-color: var(--accent-blue-hover);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.btn-primary-glow:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Cooldown Card */
.ruleta-cooldown-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cd-icon {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.cd-timer {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-magenta);
  letter-spacing: 2px;
  margin: 10px 0;
  text-shadow: var(--shadow-neon-magenta);
}

/* Result Card */
.ruleta-result-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.result-celebration-emoji {
  font-size: 3rem;
  margin-bottom: 10px;
}

.result-prize-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-magenta);
  text-transform: uppercase;
  margin: 10px 0;
  text-shadow: var(--shadow-neon-magenta);
}

.result-prize-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.coupon-tag {
  display: inline-block;
  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: 2px;
  background-color: rgba(226, 125, 66, 0.1);
  border: 1px dashed var(--accent-copper);
  color: var(--accent-copper);
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-weight: 700;
}

/* Wheel Graphics */
.ruleta-wheel-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.wheel-outer-glowing-ring {
  position: relative;
  width: 500px;
  height: 500px;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  padding: 14px;
  border: 2px solid rgba(255, 46, 147, 0.45);
  box-shadow: 0 0 60px rgba(9, 8, 12, 0.95), var(--shadow-neon-magenta);
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--accent-magenta);
  filter: drop-shadow(0 4px 12px rgba(255, 46, 147, 0.7));
  z-index: 10;
}

.wheel-inner-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(0deg);
}

#ruleta-svg {
  width: 100%;
  height: 100%;
}

.wheel-center-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  background: radial-gradient(circle, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  border-radius: 50%;
  border: 2px solid var(--accent-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 46, 147, 0.4);
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  z-index: 5;
}

.cap-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Status Banner */
.ruleta-status-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 16px 24px;
  border-radius: 50px;
  width: 100%;
  max-width: 380px;
}

.status-icon {
  font-size: 1.5rem;
}

.status-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-magenta);
}

.status-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Confetti System */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0.8;
  animation: fall 3s ease-out infinite;
}

@keyframes fall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(350px) rotate(360deg); opacity: 0; }
}

/* â”€â”€ Promos (VIP Tickets) â”€â”€ */
#promos {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.promos-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* VIP Ticket Shape with masks */
.promo-ticket {
  display: flex;
  background-color: var(--bg-tertiary);
  border-radius: 6px;
  overflow: hidden;
  min-height: 180px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--border-color);
}

/* Radial cuts to look like an authentic ticket */
.promo-ticket::before, .promo-ticket::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--bg-secondary); /* matches parent section bg */
  border-radius: 50%;
  z-index: 5;
  left: calc(75% - 8px);
}
.promo-ticket::before {
  top: -8px;
  border-bottom: 1px solid var(--border-color);
}
.promo-ticket::after {
  bottom: -8px;
  border-top: 1px solid var(--border-color);
}

.ticket-media {
  width: 30%;
  position: relative;
  overflow: hidden;
}

.ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 190, 143, 0.15) 0%, transparent 100%);
}

.ticket-body, .ticket-body-only {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-body {
  width: 45%;
}

.ticket-body-only {
  width: 75%;
}

.ticket-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-copper);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ticket-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ticket-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.ticket-condition {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ticket-stub {
  width: 25%;
  border-left: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.stub-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Color Themes for Tickets */
.theme-magenta {
  border-color: var(--accent-magenta);
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.15), var(--shadow-card);
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.04) 0%, var(--bg-tertiary) 60%);
}
.theme-magenta .ticket-tag { color: var(--accent-magenta); }
.theme-magenta .stub-text { color: var(--accent-magenta); }
.theme-magenta .ticket-glow { background: linear-gradient(135deg, rgba(255, 46, 147, 0.25) 0%, transparent 100%); }

.theme-blue {
  border-color: var(--accent-blue);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15), var(--shadow-card);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.04) 0%, var(--bg-tertiary) 60%);
}
.theme-blue .ticket-tag { color: var(--accent-blue); }
.theme-blue .stub-text { color: var(--accent-blue); }
.theme-blue .ticket-glow { background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, transparent 100%); }

.theme-purple {
  border-color: var(--accent-purple);
  box-shadow: 0 0 25px rgba(123, 82, 171, 0.15), var(--shadow-card);
  background: linear-gradient(135deg, rgba(123, 82, 171, 0.04) 0%, var(--bg-tertiary) 60%);
}
.theme-purple .ticket-tag { color: #b692ea; }
.theme-purple .stub-text { color: #b692ea; }
.theme-purple .ticket-glow { background: linear-gradient(135deg, rgba(123, 82, 171, 0.25) 0%, transparent 100%); }

.theme-gold {
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(217, 190, 143, 0.15), var(--shadow-card);
  background: linear-gradient(135deg, rgba(217, 190, 143, 0.04) 0%, var(--bg-tertiary) 60%);
}
.theme-gold .ticket-tag { color: var(--accent-gold); }
.theme-gold .stub-text { color: var(--accent-gold); }
.theme-gold .ticket-glow { background: linear-gradient(135deg, rgba(217, 190, 143, 0.25) 0%, transparent 100%); }

.theme-copper {
  border-color: var(--accent-copper);
  box-shadow: 0 0 25px rgba(226, 125, 66, 0.15), var(--shadow-card);
  background: linear-gradient(135deg, rgba(226, 125, 66, 0.04) 0%, var(--bg-tertiary) 60%);
}
.theme-copper .ticket-tag { color: var(--accent-copper); }
.theme-copper .stub-text { color: var(--accent-copper); }
.theme-copper .ticket-glow { background: linear-gradient(135deg, rgba(226, 125, 66, 0.25) 0%, transparent 100%); }

/* Ronda de Shots Banner */
.shots-vip-card {
  position: relative;
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 46, 147, 0.4);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.12), var(--shadow-card);
}

.shots-vip-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217,190,143,0.08) 0%, rgba(226,125,66,0.04) 50%, transparent 100%);
  pointer-events: none;
}

.shots-vip-content {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.shots-vip-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 10px rgba(217,190,143,0.3));
}

.shots-vip-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.shots-vip-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.shots-vip-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.shots-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-shadow: var(--shadow-neon-blue);
}

/* â”€â”€ La Carta (Menu) â”€â”€ */
#carta {
  background-color: var(--bg-primary);
  position: relative;
}

.carta-tabs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(22, 20, 29, 0.4);
  border: 1px solid var(--border-color);
  padding: 8px;
  border-radius: 50px;
  width: max-content;
  margin: 0 auto 50px;
  position: sticky;
  top: 90px;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.menu-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-tab-btn.active {
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  box-shadow: var(--shadow-neon-magenta);
}

.tab-icon {
  font-size: 1rem;
}

/* Menu Panels Transition states */
.menu-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-panel.active {
  display: block;
  opacity: 1;
}

.menu-subsection {
  margin-bottom: 24px;
}

.subsection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 24px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.subsection-header:hover {
  border-color: rgba(255, 46, 147, 0.4);
  background-color: var(--bg-tertiary);
  box-shadow: 0 0 15px rgba(255, 46, 147, 0.1);
}

.subsection-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.accordion-arrow {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.subsection-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease;
  padding: 0 24px;
}

/* Active State */
.menu-subsection.active .subsection-header {
  border-color: rgba(255, 46, 147, 0.4);
  background-color: var(--bg-tertiary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.menu-subsection.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--accent-magenta);
  text-shadow: 0 0 8px rgba(255, 46, 147, 0.6);
}

.menu-subsection.active .subsection-content {
  max-height: 3500px;
  padding: 30px 24px;
  border: 1px solid var(--border-color);
  border-top: none;
  background-color: rgba(22, 20, 29, 0.05);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Dish Card */
.dish-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.dish-card:hover {
  border-color: rgba(255, 46, 147, 0.5);
  box-shadow: var(--shadow-neon-magenta);
}

.dish-card-inner {
  display: flex;
  height: 100%;
  width: 100%;
}

.dish-media {
  width: 32%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.dish-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.dish-header h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.badge-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-tag.hot {
  background-color: rgba(226, 125, 66, 0.15);
  color: var(--accent-copper);
}
.badge-tag.sweet {
  background-color: rgba(217, 190, 143, 0.15);
  color: var(--accent-gold);
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-blue);
  white-space: nowrap;
}

.dish-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 5px;
}

/* Quantity Selectors */
.dish-actions {
  display: flex;
  align-items: center;
  align-self: flex-end;
  gap: 12px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 4px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  box-shadow: var(--shadow-neon-magenta);
}

.qty-count {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.qty-count.active {
  color: var(--accent-magenta);
}

/* Card in Cart State styling */
.dish-card.in-cart {
  border-color: var(--accent-magenta);
  background-color: var(--bg-tertiary);
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.1);
}

/* If no image, make layout simple card */
.dish-card.no-img .dish-body {
  width: 100%;
}

/* â”€â”€ Floating Cart Trigger â”€â”€ */
.cart-floating-trigger {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 150px);
  width: 90%;
  max-width: 500px;
  z-index: 90;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-floating-trigger.visible {
  transform: translate(-50%, 0);
}

.cart-float-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  border: 1px solid var(--accent-magenta);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), var(--shadow-neon-magenta);
  backdrop-filter: var(--glass-blur);
  padding: 12px 20px;
  border-radius: 50px;
}

.cart-float-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cart-icon {
  font-size: 1.1rem;
}

.cart-badge-count {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.separator {
  color: var(--text-muted);
}

.cart-badge-total {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent-blue);
}

.btn-cart-floating-action {
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-neon-blue);
}

.btn-cart-floating-action:hover {
  background-color: var(--accent-blue-hover);
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* â”€â”€ Cart Drawer Panel â”€â”€ */
.cart-drawer-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-drawer-container.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 8, 12, 0.75);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-container.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
}

.drawer-close {
  font-size: 1.3rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.drawer-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-row-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.item-row-qty {
  font-size: 0.75rem;
  color: var(--accent-magenta);
}

.item-row-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.drawer-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 10px;
}

.drawer-total-box span {
  font-weight: 700;
  font-size: 0.95rem;
}

.total-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-blue);
  text-shadow: var(--shadow-neon-blue);
}

.drawer-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
}

.btn-send-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  padding: 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-send-whatsapp:hover {
  background-color: #20ba59;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.wa-btn-icon {
  width: 18px;
  height: 18px;
}

/* â”€â”€ Contact & Location Section â”€â”€ */
#ubicacion {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 20px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 4px;
}

.info-icon {
  font-size: 2rem;
  line-height: 1;
}

.info-body h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-magenta);
  margin-bottom: 6px;
}

.info-body p, .info-body a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 4px;
}

.schedule-list li span:first-child {
  font-weight: 600;
}

.contact-map-col {
  width: 100%;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--accent-magenta);
  box-shadow: var(--shadow-card);
  filter: grayscale(1) invert(0.9) contrast(1.2); /* elegant dark filter */
}

/* â”€â”€ Footer â”€â”€ */
#footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 15px;
}

.footer-quote {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  color: var(--accent-magenta);
  border-color: var(--accent-magenta);
  transform: rotate(8deg);
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.4);
}

.footer-links-section {
  display: flex;
  gap: 60px;
}

.footer-col-links h5 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent-magenta);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-col-links ul li a:hover {
  color: var(--text-primary);
}

.alert-age {
  color: var(--accent-copper) !important;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 30px 0;
}

.footer-bottom-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-container a {
  color: var(--text-secondary);
}
.footer-bottom-container a:hover {
  color: var(--accent-blue);
}

/* â”€â”€ Media Queries (Responsividad) â”€â”€ */

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .story-visuals-col {
    display: flex;
    justify-content: center;
  }
  .story-image-canvas {
    max-width: 600px;
  }
  .ruleta-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .promos-ticket-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .title-editorial {
    font-size: 3.2rem;
  }
  .title-accent {
    font-size: 4.2rem;
  }
  
  /* Navbar */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta-btn {
    display: none;
  }
  
  /* Hero buttons */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
  }

  /* Gallery */
  .gallery-editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 30px;
  }
  .gal-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    transform: none !important;
    margin: 0 !important;
    padding: 10px 10px 36px 10px;
  }
  .gal-card .gal-card-inner {
    height: 280px !important;
  }

  /* Roulette */
  .wheel-outer-glowing-ring {
    width: 360px;
    height: 360px;
    padding: 10px;
  }
  
  /* Menu */
  .carta-tabs-wrapper {
    width: 90%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 6px;
    top: 70px;
  }
  .menu-tab-btn {
    white-space: nowrap;
    padding: 8px 16px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .dish-card-inner {
    flex-direction: column;
  }
  .dish-media {
    width: 100%;
    height: 160px;
  }
  .dish-actions {
    align-self: flex-end;
  }
  
  /* Shots Card banner */
  .shots-vip-content {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }
  .shots-vip-action {
    align-items: center;
    width: 100%;
  }
  .shots-vip-action .btn-primary-glow {
    width: 100%;
  }
  
  /* Ticket shape */
  .promo-ticket {
    flex-direction: column;
  }
  .ticket-media {
    width: 100%;
    height: 140px;
  }
  .ticket-body, .ticket-body-only {
    width: 100%;
  }
  .ticket-stub {
    width: 100%;
    border-left: none;
    border-top: 1px dashed var(--border-color);
    padding: 15px;
  }
  .stub-text {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
  }
  .promo-ticket::before, .promo-ticket::after {
    left: auto;
    top: calc(70% - 8px);
  }
  .promo-ticket::before { left: -8px; }
  .promo-ticket::after { right: -8px; }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-section {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* â”€â”€ 3D Tilt & Animated Neon Contours â”€â”€ */

/* Enable 3D rendering context on targets */
.dish-card, .promo-ticket, .gal-card, .shots-vip-card, 
.ruleta-form-card, .ruleta-cooldown-card, .ruleta-result-card, 
.btn-primary, .btn-outline, .btn-primary-glow, .wheel-outer-glowing-ring {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

/* 3D Depth floating elements inside cards */
.dish-card h4, .dish-card .dish-price, .dish-card .dish-media, .dish-card .qty-count,
.promo-ticket .ticket-title, .promo-ticket .ticket-tag, .promo-ticket .ticket-stub,
.shots-vip-content h3, .shots-vip-content .shots-price,
.ruleta-form-card h3, .ruleta-form-card button {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.dish-card:hover .dish-price, 
.promo-ticket:hover .ticket-tag, 
.shots-vip-card:hover .shots-price {
  transform: translate3d(0, 0, 35px);
}

.dish-card:hover h4, 
.promo-ticket:hover .ticket-title, 
.shots-vip-card:hover h3 {
  transform: translate3d(0, 0, 25px);
}

.dish-card:hover .dish-media {
  transform: translate3d(0, 0, 15px);
}

/* Flowing Neon Contour Animation */
.promo-ticket, .shots-vip-card, 
.ruleta-form-card, .ruleta-cooldown-card, .ruleta-result-card, 
.btn-primary, .btn-primary-glow {
  border: 1px solid var(--accent-magenta);
  animation: neon-glow-contour 8s linear infinite;
}

.promo-ticket:hover, .shots-vip-card:hover, 
.ruleta-form-card:hover, 
.btn-primary:hover, .btn-primary-glow:hover {
  animation: neon-glow-contour-hover 3s linear infinite;
}

.btn-outline {
  border: 1px solid var(--accent-blue);
  animation: neon-outline-contour 8s linear infinite;
}

.btn-outline:hover {
  animation: neon-glow-contour-hover 3s linear infinite;
  color: var(--text-primary);
}

@keyframes neon-glow-contour {
  0%, 100% {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.3), inset 0 0 5px rgba(255, 46, 147, 0.05);
  }
  50% {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 5px rgba(0, 240, 255, 0.05);
  }
}

@keyframes neon-glow-contour-hover {
  0%, 100% {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 25px rgba(255, 46, 147, 0.65), inset 0 0 10px rgba(255, 46, 147, 0.15);
  }
  50% {
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.65), inset 0 0 10px rgba(0, 240, 255, 0.15);
  }
}

@keyframes neon-outline-contour {
  0%, 100% {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }
  50% {
    border-color: var(--accent-magenta);
    color: var(--accent-magenta);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SECTION BACKGROUND IMAGES â€” Blurred & Dimmed
   Photo sits behind content, blurred + dark vignette
   that fades the image into black at all edges.
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* The actual blurred photo */
.section-bg-image {
  position: absolute;
  inset: -4%;          /* slight overflow to hide blur edge artifact */
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: blur(8px);
  will-change: filter;
}

/* Dark vignette overlay â€” sits on top of the image, below content */
/* Uses a radial gradient: transparent center, dark edges */
.section-bg-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* top fade */
    linear-gradient(to bottom,  #0a0a0f 0%, transparent 28%),
    /* bottom fade */
    linear-gradient(to top,     #0a0a0f 0%, transparent 28%),
    /* left fade */
    linear-gradient(to right,   #0a0a0f 0%, transparent 22%),
    /* right fade */
    linear-gradient(to left,    #0a0a0f 0%, transparent 22%);
}

/* Roulette: even lighter â€” the spinning wheel provides visual interest */
#la-ruleta .section-bg-image {
  opacity: 0.18 !important;
  filter: blur(6px) !important;
}


/* Sections need position:relative + overflow:hidden so blur edge doesn't leak out */
#historia, #ambiente, #la-ruleta, #promos, #carta, #reserva-directa, #ubicacion {
  position: relative;
  overflow: hidden;
}

/* Content inside sections must sit above the bg-wrapper (z-index 0) and its vignette (z-index 1) */
#historia .section-container, 
#ambiente .section-container, 
#la-ruleta .section-container, 
#promos .section-container, 
#carta .section-container,
#reserva-directa .section-container,
#ubicacion .section-container {
  position: relative;
  z-index: 2;
}

/* â”€â”€ Neon Flicker Effect on Hero Title â”€â”€ */
.neon-flicker {
  animation: flicker-neon 2.2s ease-out forwards;
}

@keyframes flicker-neon {
  0% {
    opacity: 0.15;
    text-shadow: none;
    color: rgba(255, 46, 147, 0.4);
  }
  2% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 46, 147, 0.9), 0 0 10px rgba(255, 46, 147, 0.5);
    color: var(--accent-magenta);
  }
  4% {
    opacity: 0.15;
    text-shadow: none;
    color: rgba(255, 46, 147, 0.4);
  }
  6% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 46, 147, 0.9), 0 0 10px rgba(255, 46, 147, 0.5);
    color: var(--accent-magenta);
  }
  8% {
    opacity: 0.2;
    text-shadow: none;
    color: rgba(255, 46, 147, 0.4);
  }
  12% {
    opacity: 1;
    text-shadow: 0 0 35px rgba(255, 46, 147, 0.95), 0 0 12px rgba(255, 46, 147, 0.5);
    color: var(--accent-magenta);
  }
  14% {
    opacity: 0.3;
    text-shadow: none;
  }
  18% {
    opacity: 1;
    text-shadow: 0 0 40px rgba(255, 46, 147, 1), 0 0 15px rgba(255, 46, 147, 0.6);
    color: var(--accent-magenta);
  }
  20% {
    opacity: 0.2;
    text-shadow: none;
  }
  24% {
    opacity: 1;
    text-shadow: 0 0 40px rgba(255, 46, 147, 1), 0 0 15px rgba(255, 46, 147, 0.6);
    color: var(--accent-magenta);
  }
}

/* â”€â”€ Floating Speakeasy Lofi Player â”€â”€ */
.lofi-player-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--accent-magenta);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-neon-magenta);
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
  width: max-content;
}

.player-disk-wrapper {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 50%;
  border: 1px solid var(--accent-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.vinyl-disk {
  font-size: 1.1rem;
  transition: transform 0.1s linear;
}

.vinyl-disk.spinning {
  animation: spin-vinyl 3s linear infinite;
}

@keyframes spin-vinyl {
  100% { transform: rotate(360deg); }
}

.player-controls {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.control-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-btn {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px;
  transition: var(--transition-fast);
}

.player-btn:hover {
  color: var(--accent-magenta);
  transform: scale(1.1);
}

.volume-slider-input {
  width: 50px;
  height: 3px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  transition: var(--transition-fast);
}
.volume-slider-input::-webkit-slider-thumb:hover {
  background: var(--accent-magenta);
  box-shadow: 0 0 6px var(--accent-magenta);
}

/* â”€â”€ Cocktail Mood Matcher â”€â”€ */
.mood-matcher-card {
  position: relative;
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 800px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.1), var(--shadow-card);
}

.mood-matcher-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.mood-header {
  text-align: center;
  margin-bottom: 20px;
}

.mood-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mood-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.mood-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.mood-btn {
  background-color: rgba(22, 20, 29, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mood-btn:hover, .mood-btn.active {
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-neon-blue);
}

.shaker-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--accent-blue);
  margin: 20px 0;
  animation: pulse-loader 1s infinite alternate;
}

.shaker-emoji {
  font-size: 2rem;
  animation: shake-cup 0.5s ease infinite;
}

@keyframes shake-cup {
  0%, 100% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(15deg) translate(2px, -2px); }
  75% { transform: rotate(-15deg) translate(-2px, 2px); }
}

@keyframes pulse-loader {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.mood-result-box {
  background-color: rgba(22, 20, 29, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 4px;
  animation: fade-in-result 0.4s ease-out forwards;
}

@keyframes fade-in-result {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mood-drink-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mood-drink-title h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-magenta);
}

#mood-drink-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent-blue);
  font-weight: 700;
}

#mood-drink-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* â”€â”€ Enliven Neon Glow Outline â”€â”€ */
.promo-ticket, .shots-vip-card, 
.ruleta-form-card, .ruleta-cooldown-card, .ruleta-result-card {
  border: 1px solid var(--accent-magenta);
  animation: neon-glow-contour 8s linear infinite !important;
}

.promo-ticket:hover, .shots-vip-card:hover, 
.ruleta-form-card:hover {
  animation: neon-glow-contour-hover 3s linear infinite !important;
}

.btn-primary, .btn-primary-glow {
  border: 1px solid var(--accent-magenta);
  animation: neon-glow-contour 8s linear infinite, button-flicker 6s infinite alternate !important;
}

.btn-primary:hover, .btn-primary-glow:hover {
  animation: neon-glow-contour-hover 3s linear infinite !important;
}

.btn-outline {
  border: 1px solid var(--accent-blue);
  animation: neon-outline-contour 8s linear infinite, button-flicker 6.5s infinite alternate !important;
}

.btn-outline:hover {
  animation: neon-glow-contour-hover 3s linear infinite !important;
  color: var(--text-primary);
}

/* Apply flicker animation to other custom CTA buttons */
.nav-cta-btn, .mm-cta, .btn-cart-floating-action {
  animation: button-flicker 5.8s infinite alternate !important;
}

@keyframes neon-glow-contour {
  0%, 100% {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 10px var(--accent-magenta), 0 0 20px rgba(255, 46, 147, 0.25), inset 0 0 5px rgba(255, 46, 147, 0.1);
  }
  50% {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue), 0 0 20px rgba(0, 240, 255, 0.25), inset 0 0 5px rgba(0, 240, 255, 0.1);
  }
}

@keyframes neon-glow-contour-hover {
  0%, 100% {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 20px var(--accent-magenta), 0 0 40px rgba(255, 46, 147, 0.5), inset 0 0 10px rgba(255, 46, 147, 0.2);
  }
  50% {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue), 0 0 40px rgba(0, 240, 255, 0.5), inset 0 0 10px rgba(0, 240, 255, 0.2);
  }
}

@keyframes neon-outline-contour {
  0%, 100% {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
  }
  50% {
    border-color: var(--accent-magenta);
    color: var(--accent-magenta);
    box-shadow: 0 0 8px rgba(255, 46, 147, 0.1);
  }
}

/* â”€â”€ Electric Neon Flicker Animation for Buttons â”€â”€ */
@keyframes button-flicker {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  38% {
    opacity: 1;
    filter: brightness(1);
  }
  40% {
    opacity: 0.9;
    filter: brightness(0.85);
  }
  41% {
    opacity: 1;
    filter: brightness(1.1);
  }
  42% {
    opacity: 0.94;
    filter: brightness(0.9);
  }
  43% {
    opacity: 1;
    filter: brightness(1);
  }
  85% {
    opacity: 1;
    filter: brightness(1);
  }
  86% {
    opacity: 0.88;
    filter: brightness(0.8);
  }
  88% {
    opacity: 1;
    filter: brightness(1);
  }
}

/* â”€â”€ WhatsApp Floating Button Styles & Flicker â”€â”€ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: var(--bg-secondary);
  border: 2px solid var(--accent-magenta);
  color: var(--accent-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 46, 147, 0.4);
  animation: whatsapp-neon-flicker 4s infinite;
  transform-style: preserve-3d;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  border-color: var(--accent-magenta);
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.8);
  animation: none !important;
  transform: scale(1.1) translate3d(0, 0, 10px);
}

.whatsapp-float svg {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 2px currentColor);
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

@keyframes whatsapp-neon-flicker {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5), 0 0 30px rgba(255, 46, 147, 0.3);
    filter: brightness(1);
  }
  2% {
    box-shadow: 0 0 5px rgba(255, 46, 147, 0.15);
    filter: brightness(0.65);
  }
  4% {
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5), 0 0 30px rgba(255, 46, 147, 0.3);
    filter: brightness(1);
  }
  68% {
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5), 0 0 30px rgba(255, 46, 147, 0.3);
    filter: brightness(1);
  }
  69% {
    box-shadow: 0 0 6px rgba(255, 46, 147, 0.2);
    filter: brightness(0.8);
  }
  70% {
    box-shadow: 0 0 2px rgba(255, 46, 147, 0.1);
    filter: brightness(0.5);
  }
  71% {
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5), 0 0 30px rgba(255, 46, 147, 0.3);
    filter: brightness(1);
  }
  94% {
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5), 0 0 30px rgba(255, 46, 147, 0.3);
    filter: brightness(1);
  }
  95% {
    box-shadow: 0 0 4px rgba(255, 46, 147, 0.1);
    filter: brightness(0.7);
  }
  97% {
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5), 0 0 30px rgba(255, 46, 147, 0.3);
    filter: brightness(1);
  }
}

/* â”€â”€ Modo Speakeasy (Dim & Glow Boost) â”€â”€ */
body.speakeasy-active {
  background-color: #040307 !important;
}

body.speakeasy-active .section-bg-image {
  opacity: 0.38 !important;
  filter: blur(18px) saturate(1.6) !important;
}

/* Lighter blur and glow for roulette background in Speakeasy mode */
body.speakeasy-active #la-ruleta .section-bg-image {
  filter: blur(14px) saturate(1.4) !important;
  opacity: 0.20 !important;
}

body.speakeasy-active .btn-primary, 
body.speakeasy-active .btn-primary-glow,
body.speakeasy-active .whatsapp-float {
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.75), 0 0 50px rgba(255, 46, 147, 0.4), inset 0 0 15px rgba(255, 46, 147, 0.5) !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 15px var(--accent-magenta) !important;
}

body.speakeasy-active .btn-outline {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.75), 0 0 50px rgba(0, 240, 255, 0.4), inset 0 0 15px rgba(0, 240, 255, 0.5) !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 15px var(--accent-blue) !important;
}

body.speakeasy-active .speakeasy-toggle-btn {
  background-color: var(--accent-magenta) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-neon-magenta) !important;
  text-shadow: 0 0 8px #fff !important;
}

/* â”€â”€ Mobile Layout Adjustment for Floats â”€â”€ */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .lofi-player-container {
    bottom: 20px;
    left: 20px;
    padding: 8px 12px;
  }
}

/* â”€â”€ Reserva CTA Section â”€â”€ */
.reserva-cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  z-index: 1;
}

.reserva-cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 12px;
  border: 1px solid var(--accent-magenta);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--shadow-neon-magenta);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
}

.reserva-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.reserva-cta-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reserva-actions {
  display: flex;
  justify-content: center;
}

/* â”€â”€ Google Maps Direct Link â”€â”€ */
.btn-maps-direct {
  text-decoration: none;
}

.btn-maps-direct:hover {
  background-color: var(--accent-blue);
  color: var(--bg-primary) !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  border-style: solid !important;
}

@media (max-width: 768px) {
  .reserva-cta-section {
    padding: 60px 0;
  }
  .reserva-cta-box {
    padding: 40px 20px;
  }
  .reserva-cta-box h3 {
    font-size: 1.8rem;
  }
}


/* -----------------------------------------------------------
   VIDEO BACKGROUND para sección Ubicación
----------------------------------------------------------- */
.ubicacion-video-bg {
  overflow: hidden;
}
.section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.30;
  filter: blur(4px);
}

/* -----------------------------------------------------------
   RESPONSIVE — MOBILE FIRST (iOS & Android)
   Breakpoints: 480px (small phone) | 640px | 768px | 1024px
----------------------------------------------------------- */

/* — Base meta fixes for mobile — */
* { -webkit-tap-highlight-color: transparent; }
img, video { max-width: 100%; height: auto; }

/* — Ensure touch scrolling is smooth — */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (max-width: 480px) {
  /* Root font scale */
  :root { font-size: 14px; }

  /* Section padding */
  .section-container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-content {
    padding: 0 16px;
  }
  .title-editorial {
    font-size: 2.8rem;
    line-height: 1.1;
  }
  .title-accent {
    font-size: 3.6rem;
    line-height: 1.0;
  }
  .hero-tagline {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    gap: 10px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 14px 20px;
  }

  /* Ticker */
  .ticker-content { font-size: 0.75rem; }

  /* Storytelling */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .story-text-col { padding: 0; }
  .story-paragraph { font-size: 0.95rem; }

  /* Gallery section */
  .gallery-editorial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gal-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    transform: none !important;
    margin: 0 !important;
    padding: 8px 8px 32px 8px;
  }
  .gal-card .gal-card-inner {
    height: 220px !important;
  }
  .section-title {
    font-size: 1.9rem;
  }

  /* Roulette */
  .ruleta-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wheel-outer-glowing-ring {
    width: 300px;
    height: 300px;
    padding: 8px;
    margin: 0 auto;
  }
  .wheel-canvas {
    width: 100%;
    height: 100%;
  }
  .ruleta-form-card {
    padding: 24px 16px;
  }

  /* Promos grid */
  .promos-ticket-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promo-ticket {
    flex-direction: column;
  }
  .ticket-media {
    width: 100%;
    height: 160px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
  .ticket-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ticket-body, .ticket-body-only {
    width: 100%;
    padding: 20px 16px;
  }
  .ticket-stub {
    width: 100%;
    border-left: none;
    border-top: 1px dashed rgba(255,255,255,0.15);
    padding: 12px 16px;
  }
  .stub-text {
    writing-mode: horizontal-tb;
    transform: none;
  }

  /* Menu */
  .carta-tabs-wrapper {
    top: 60px;
    width: calc(100% - 32px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding: 4px;
  }
  .menu-tab-btn {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dish-card-inner {
    flex-direction: column;
  }
  .dish-media {
    width: 100%;
    height: 180px;
    border-radius: 6px 6px 0 0;
  }
  .dish-body {
    padding: 14px;
  }

  /* Shots VIP */
  .shots-vip-content {
    flex-direction: column;
    padding: 20px 16px;
    text-align: center;
  }
  .shots-vip-action {
    align-items: center;
    width: 100%;
  }
  .shots-vip-action .btn-primary-glow {
    width: 100%;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info {
    padding: 0;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 16px;
  }
  .footer-links-section {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px;
  }

  /* Music player */
  .lofi-player-container {
    left: 8px;
    bottom: 80px;
    max-width: calc(100vw - 80px);
  }

  /* WhatsApp button */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  /* Reserva CTA */
  .reserva-cta-box {
    padding: 32px 16px;
    margin: 0 8px;
  }
  .reserva-cta-box h3 {
    font-size: 1.6rem;
  }

  /* Subsection headers */
  .subsection-title {
    font-size: 1rem;
  }
  .subsection-header {
    padding: 14px 16px;
  }
}

/* — Tablet tweaks — */
@media (min-width: 481px) and (max-width: 768px) {
  .section-container { padding: 0 24px; }
  .title-editorial { font-size: 3.2rem; }
  .title-accent { font-size: 4rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .promos-ticket-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dish-card-inner { flex-direction: column; }
  .dish-media { width: 100%; height: 180px; }
  .wheel-outer-glowing-ring { width: 340px; height: 340px; }
}

/* — Fix: iOS safe area insets — */
@supports (padding: max(0px)) {
  .lofi-player-container {
    bottom: max(72px, calc(72px + env(safe-area-inset-bottom)));
  }
  .whatsapp-float {
    bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
    right: max(16px, calc(16px + env(safe-area-inset-right)));
  }
}

/* — Fix: prevent horizontal overflow on all screens — */
body, html {
  max-width: 100vw;
  overflow-x: hidden;
}
.section-container, .hero-content, .footer-container {
  max-width: min(1200px, 100%);
  box-sizing: border-box;
}


/* -----------------------------------------------------------
   Custom Cursor & Title Character Hover Effects
----------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, select, input, textarea, [role="button"], .clickable, .hover-char, .gal-card, .subsection-header, .lb-close, .lb-prev, .lb-next, .drawer-close {
    cursor: none !important;
  }
  
  .custom-cursor {
    width: 12px;
    height: 14px;
    color: var(--accent-magenta);
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    left: 0;
    top: 0;
    display: none;
    transform-origin: center top;
    transform: translate(-50%, 0) rotate(-15deg);
    filter: drop-shadow(0 0 5px var(--accent-magenta));
    will-change: left, top;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), color 0.15s ease, filter 0.15s ease;
  }
  
  .custom-cursor.cursor-hover {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 8px var(--accent-blue));
    transform: translate(-50%, 0) scale(1.4) rotate(35deg);
  }

  .title-editorial .hover-char:hover {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 15px var(--accent-blue), 0 0 5px #fff !important;
    transform: translateY(-5px) scale(1.1);
  }

  .title-accent .hover-char:hover {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 20px var(--accent-blue), 0 0 8px #fff !important;
    transform: translateY(-8px) scale(1.1);
  }
}

.title-editorial .hover-char,
.title-accent .hover-char {
  display: inline-block;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}
