/* ==========================================================================
   ATHANASSIOU • GELATO & DOLCE | Maracay, Venezuela
   Luxury Dark & Gold Experience
   #VuelaConmigo
   ========================================================================== */

:root {
  --bg-black: #060608;
  --bg-deep: #0B0B0E;
  --bg-surface: #121217;
  --bg-card: rgba(18, 18, 24, 0.72);
  --bg-card-hover: rgba(28, 28, 38, 0.85);
  --bg-glass: rgba(10, 10, 14, 0.75);
  
  --gold-primary: #D4AF37;
  --gold-light: #F7E599;
  --gold-bright: #FFE885;
  --gold-dark: #9A741E;
  --gold-metallic: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #8C6115 100%);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.3);
  --gold-border: rgba(212, 175, 55, 0.22);
  --gold-border-bright: rgba(212, 175, 55, 0.6);

  --text-primary: #FBFBFC;
  --text-muted: #9E9EA8;
  --text-subtle: #6D6D78;
  --text-gold: #E5BE53;

  --accent-green: #25D366;
  --accent-green-glow: rgba(37, 211, 102, 0.35);

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Playfair Display', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-card: 0 16px 36px -12px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --shadow-elevated: 0 24px 48px -12px rgba(0, 0, 0, 0.85);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #15141A 0%, var(--bg-black) 60%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle background luxury ambient glow */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Typography Utilities */
.font-serif { font-family: var(--font-serif); }
.font-accent { font-family: var(--font-accent); }
.text-gold {
  color: var(--gold-light);
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-glow {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   1. FLOATING MINIMAL HEADER
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 1rem;
  pointer-events: none;
}

.header-nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.4rem;
  background: rgba(14, 14, 18, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.08);
  transition: all var(--transition-smooth);
}

.header-nav.scrolled {
  background: rgba(10, 10, 14, 0.92);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.12);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-icon-svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.logo-texts {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  line-height: 1.1;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-metallic);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-item a:hover {
  color: #FFFFFF;
}

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

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Floating WhatsApp Badge Button "1 AGENTE DISPONIBLE" */
.btn-agent-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4EFA8B;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.btn-agent-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25D366;
  box-shadow: 0 0 15px var(--accent-green-glow);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.status-beacon {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px #25D366;
}

.status-beacon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Header Cart Trigger */
.btn-header-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  transition: all var(--transition-fast);
}

.btn-header-cart:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.cart-count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--gold-metallic);
  color: #060608;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--gold-light);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Navigation Drawer */
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 4.8rem;
  left: 1rem;
  right: 1rem;
  background: rgba(14, 14, 20, 0.96);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(25px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
  animation: slideDownMobile 0.3s ease forwards;
}

.mobile-nav-menu.open {
  display: flex;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem 4rem 1rem;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38) contrast(1.15);
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 6, 8, 0.3) 0%, rgba(6, 6, 8, 0.95) 85%),
              linear-gradient(to bottom, rgba(6, 6, 8, 0.5) 0%, transparent 30%, rgba(6, 6, 8, 0.95) 90%, var(--bg-black) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Slogan Tag Pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.hero-tag span {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.wings-icon-mini {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
  line-height: 1.65;
}

.hero-subtitle strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold-metallic);
  color: #0B0B0E;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.btn-glass:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 950px;
  background: rgba(18, 18, 24, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.15);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   3. BRAND VALUES & EXPERIENCE (#VUELA CONMIGO)
   ========================================================================== */
.experience-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cards-grid-tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.luxury-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-metallic);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.luxury-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-card), 0 0 30px rgba(212, 175, 55, 0.12);
}

.luxury-card:hover::before {
  opacity: 1;
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.luxury-card:hover .card-icon-wrap {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-primary);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   4. INTERACTIVE DIGITAL MENU (EUROS €)
   ========================================================================== */
.menu-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, #15141D 0%, var(--bg-black) 70%);
}

/* Menu Filter Bar */
.menu-filters-wrapper {
  margin-bottom: 2.5rem;
}

.menu-search-container {
  max-width: 450px;
  margin: 0 auto 1.75rem auto;
  position: relative;
}

.menu-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  background: rgba(22, 22, 28, 0.75);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
  outline: none;
  transition: all var(--transition-fast);
}

.menu-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  background: rgba(28, 28, 36, 0.95);
}

.menu-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 1rem;
}

/* Tabs */
.menu-categories-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

.category-tab-btn {
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.category-tab-btn:hover {
  color: #FFFFFF;
  border-color: var(--gold-border-bright);
  background: rgba(212, 175, 55, 0.08);
}

.category-tab-btn.active {
  background: var(--gold-metallic);
  color: #060608;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

/* Currency Notice Banner */
.currency-notice {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.currency-notice span {
  color: var(--gold-light);
  font-weight: 600;
}

/* Product Cards Grid */
.menu-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Single Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(14px);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #14141A;
}

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

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.5rem;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-currency {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.price-ref {
  font-size: 0.68rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--gold-metallic);
  color: #0B0B0E;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   5. INTERACTIVE LOCATION & SCHEDULE SECTION
   ========================================================================== */
.location-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

/* Live Status Badge */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.live-status-pill.open {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4EFA8B;
}

.live-status-pill.closed {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FBBF24;
}

.location-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem 0;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.detail-texts h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.detail-texts p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.location-action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
}

/* Map Card */
.map-visual-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-card);
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.9);
}

.map-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(14, 14, 20, 0.92);
  border: 1px solid var(--gold-border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-badge-text span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.map-badge-text strong {
  font-size: 0.92rem;
  color: #FFFFFF;
}

/* ==========================================================================
   6. FLOATING WHATSAPP CTA BADGE & DRAWER
   ========================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  align-items: center;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition-bounce);
}

.floating-wa-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55), 0 0 25px rgba(37, 211, 102, 0.35);
}

.wa-pulse-dot {
  width: 9px;
  height: 9px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: pulseBeacon 1.8s infinite;
}

/* Cart Slide-Over Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: rgba(14, 14, 18, 0.98);
  border-left: 1px solid var(--gold-border);
  box-shadow: var(--shadow-elevated);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  backdrop-filter: blur(25px);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
}

.btn-close-drawer {
  color: var(--text-muted);
  font-size: 1.3rem;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.btn-close-drawer:hover {
  color: #FFFFFF;
}

.cart-items-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  gap: 1rem;
}

.cart-empty-icon {
  font-size: 3rem;
  color: var(--gold-dark);
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  gap: 0.75rem;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.cart-item-unit-price {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-qty {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-qty:hover {
  background: var(--gold-primary);
  color: #000;
}

.qty-number {
  font-size: 0.85rem;
  font-weight: 700;
  width: 18px;
  text-align: center;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 14, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-totals-summary {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cart-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cart-total-line.grand-total {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-total-line.grand-total span:last-child {
  color: var(--gold-light);
}

.order-type-selector {
  display: flex;
  gap: 0.5rem;
}

.order-type-btn {
  flex: 1;
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.order-type-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-send-whatsapp-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-send-whatsapp-order:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.site-footer {
  background: #040405;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 4.5rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-hashtag {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-top: 1.25rem;
  display: inline-block;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.social-links-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--gold-metallic);
  color: #060608;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS (MOBILE-FIRST POLISH)
   ========================================================================== */
@media (max-width: 1024px) {
  .cards-grid-tri {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .btn-agent-wa span.agent-text {
    display: none;
  }
  .btn-agent-wa {
    padding: 0.45rem 0.65rem;
  }
  .hero-section {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .cards-grid-tri {
    grid-template-columns: 1fr;
  }
  .menu-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .floating-wa-btn span {
    display: none;
  }
  .floating-wa-btn {
    padding: 0.9rem;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .header-nav {
    padding: 0.5rem 0.9rem;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-sub {
    font-size: 0.55rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .btn-gold, .btn-glass {
    width: 100%;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-item::after {
    display: none !important;
  }
  .cart-drawer {
    max-width: 100%;
  }
}
