/* ==========================================================================
   TAQUERIA CASAS - MODERN DESIGN SYSTEM & STYLESHEET
   Vanilla CSS | Pure Performance | Ultra-Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts & Typography
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Permanent+Marker&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (Strictly Preserved) */
  --color-primary: #600000;
  --color-primary-dark: #320707;
  --color-primary-deep: #50000d;
  --color-primary-light: #830015;
  
  --color-accent: #0000ff;
  --color-accent-hover: #2626ff;
  --color-accent-soft: rgba(0, 0, 255, 0.08);

  --color-gold: #ffea64;
  --color-gold-bright: #fddb00;
  --color-gold-dark: #645600;

  /* Mexican Flag Green (Minimal & Tasteful Accents) */
  --color-green: #006847;
  --color-green-light: #00875a;
  --color-green-dark: #004d35;
  --color-green-glow: rgba(0, 104, 71, 0.35);
  --color-green-soft: rgba(0, 104, 71, 0.14);
  --color-green-border: rgba(0, 104, 71, 0.35);

  --color-turquoise: #a0e2e1;
  --color-turquoise-dark: #1f6463;

  --color-success: #10b981;
  --color-danger: #ef4444;

  /* Neutral & Plaster Tones */
  --color-bg-plaster: #eff0ec;
  --color-bg-light: #fafafa;
  --color-bg-card: rgba(255, 255, 255, 0.92);
  --color-bg-card-dark: rgba(26, 26, 26, 0.88);
  --color-border-subtle: rgba(96, 0, 0, 0.12);
  --color-border-glass: rgba(255, 255, 255, 0.7);

  --color-text-main: #1f2421;
  --color-text-muted: #5c6360;
  --color-text-white: #ffffff;

  /* Typography */
  --font-display: 'Permanent Marker', cursive, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 24px 48px rgba(50, 7, 7, 0.22), 0 8px 16px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* --------------------------------------------------------------------------
   Container & Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Typography Utilities
   -------------------------------------------------------------------------- */
.font-display {
  font-family: var(--font-display);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(96, 0, 0, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(96, 0, 0, 0.16);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag-gold {
  background: rgba(255, 234, 100, 0.25);
  color: var(--color-primary-dark);
  border-color: rgba(100, 86, 0, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-title-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-primary);
  line-height: 1.1;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.6);
}

.section-title-white {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
}

/* --------------------------------------------------------------------------
   Badges & Indicators
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  cursor: default;
}

.badge:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.badge-primary:hover {
  background-color: var(--color-primary-light);
}

.badge-gold {
  background-color: var(--color-gold);
  color: var(--color-gold-dark);
  box-shadow: 0 2px 6px rgba(255, 234, 100, 0.35);
}

.badge-gold:hover {
  background-color: var(--color-gold-bright);
  box-shadow: 0 4px 12px rgba(255, 234, 100, 0.55);
}

.badge-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.badge-accent:hover {
  background-color: var(--color-accent-hover);
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  line-height: 1;
  transition: all var(--transition-fast);
  cursor: default;
}

.live-status-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 7, 7, 0.12);
  border-color: rgba(96, 0, 0, 0.25);
  background: #ffffff;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.live-status-pill:hover .status-indicator {
  transform: scale(1.2);
}

.status-open {
  background-color: var(--color-success);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-open::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--color-success);
  animation: pulseBeacon 2s infinite ease-out;
}

.status-closed {
  background-color: var(--color-danger);
}

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

/* --------------------------------------------------------------------------
   Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(96, 0, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(96, 0, 0, 0.4);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 255, 0.3);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 255, 0.45);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-gold-dark);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 234, 100, 0.4);
}

.btn-gold:hover {
  background-color: var(--color-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 234, 100, 0.6);
}

.btn-green {
  background-color: var(--color-green);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--color-green-glow);
}

.btn-green:hover {
  background-color: var(--color-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--color-green-glow);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  border: 1px solid rgba(96, 0, 0, 0.18);
}

.btn-secondary:hover {
  background-color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background-color: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Navbar & Navigation
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar-scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(96, 0, 0, 0.08);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-bounce);
}

.navbar-brand:hover .brand-logo-img {
  transform: scale(1.08) rotate(-3deg);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-primary);
  line-height: 1;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-phone-btn {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(50, 7, 7, 0.25);
  transition: all var(--transition-fast);
}

.navbar-phone-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 7, 7, 0.35);
}

/* Mobile Toggler */
.navbar-toggler {
  display: none;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border: 1px solid rgba(96, 0, 0, 0.15);
}

.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-primary-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar-toggler.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  border-bottom: 2px solid var(--color-primary);
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: var(--color-bg-plaster);
  background-image: url('/assets/images/plaster-1128958-1280-1280x720.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-backdrop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 240, 236, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(50, 7, 7, 0.25));
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-logo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-cuisine-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(96, 0, 0, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: default;
}

.hero-cuisine-tag:hover {
  transform: translateY(-2px) scale(1.02);
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 6px 16px rgba(96, 0, 0, 0.15);
  color: var(--color-primary-light);
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--color-primary);
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8), 0 10px 25px rgba(96, 0, 0, 0.15);
}

.hero-lead-text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-text-main);
  line-height: 1.6;
  font-weight: 500;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0.5rem 0;
}

.hero-feat-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(96, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: default;
}

.hero-feat-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 10px 24px rgba(50, 7, 7, 0.12);
}

.hero-feat-icon {
  font-size: 1.4rem;
  transition: transform var(--transition-bounce);
  display: inline-block;
  width: fit-content;
}

.hero-feat-item:hover .hero-feat-icon {
  transform: scale(1.22) rotate(-5deg);
}

.hero-feat-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

.hero-feat-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Interactive Menu Section
   -------------------------------------------------------------------------- */
.menu-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-primary-dark);
  background-image: url('/assets/images/taqueriacasas-background.png');
  background-repeat: repeat;
  background-size: 400px;
  color: #ffffff;
}

.menu-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top, rgba(80, 0, 13, 0.75) 0%, rgba(30, 4, 4, 0.94) 100%);
  pointer-events: none;
}

.menu-header-block {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decorated Section Title */
.title-decorated-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 600px;
}

.title-flourish-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.title-flourish-symbol {
  color: var(--color-green-light);
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 8px var(--color-green-glow);
}

.title-sub-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.flourish-diamond {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.5rem;
}

/* Master Carnes / Fillings Reference Bar (No pills, elegant typography) */
.master-fillings-bar {
  margin-top: 1.5rem;
  background: rgba(15, 0, 2, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  max-width: 980px;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.fillings-bar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 580px;
}

.bar-decor-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.bar-decor-icon {
  color: var(--color-green-light);
  font-size: 0.75rem;
  opacity: 0.9;
}

.fillings-bar-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.fillings-flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.75rem;
  line-height: 1.6;
}

.filling-entry {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 0.92rem;
  transition: transform var(--transition-fast);
}

.filling-entry:hover {
  transform: translateY(-1px);
}

.filling-entry .meat-name {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.filling-entry .meat-trans {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
}

.flow-sep {
  color: var(--color-green-light);
  font-size: 0.55rem;
  opacity: 0.75;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Interactive Dish Hero Grid (Dropdown / Reveal)
   -------------------------------------------------------------------------- */
.dish-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  padding: 1.5rem 0;
  align-items: start;
}

@media (max-width: 1200px) {
  .dish-hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .dish-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }
}

.dish-hero-card {
  position: relative;
  background: rgba(20, 0, 3, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  align-self: start;
  height: auto;
}

.dish-hero-card:hover {
  background: rgba(28, 0, 4, 0.75);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.dish-hero-card.tray-open {
  z-index: 70;
  transform: translateY(-8px);
  border-color: var(--color-green-light);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: rgba(24, 0, 3, 0.98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.8), 0 0 20px var(--color-green-glow);
}

.dish-hero-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  cursor: pointer;
}

.dish-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
}

.dish-hero-card:hover .dish-icon-badge {
  transform: scale(1.12) rotate(-8deg);
}

.dish-hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dish-hero-title {
  font-size: 1.7rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Card Reveal Trigger Button */
.btn-dish-reveal {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
  min-height: 46px;
}

.btn-dish-reveal:hover, .dish-hero-card.tray-open .btn-dish-reveal {
  background: var(--color-green);
  color: #ffffff;
  border-color: var(--color-green-light);
  box-shadow: 0 4px 14px var(--color-green-glow);
}

.reveal-arrow {
  font-size: 1rem;
  transition: transform var(--transition-fast);
}

/* Smooth Floating Overlay Reveal Tray */
.dish-reveal-tray {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background: rgba(24, 0, 3, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-green-light);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  z-index: 75;
}

.dish-hero-card.tray-open .dish-reveal-tray {
  opacity: 1;
  pointer-events: auto;
  padding: 0.85rem 1.25rem 1.25rem;
}

.dish-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dish-item-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 0.25rem 0.3rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: background var(--transition-fast);
}

.dish-item-row:last-child {
  border-bottom: none;
}

.dish-item-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dish-item-row .item-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #ffffff;
  font-size: 0.88rem;
}

.dish-item-row .item-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Dedicated Refrescos & Bebidas Section (Open Plaster Layout - No Cards)
   -------------------------------------------------------------------------- */
.drinks-section {
  position: relative;
  padding: 5.5rem 0 6rem;
  background-color: var(--color-bg-plaster);
  background-image: url('/assets/images/plaster-1128958-1280-1280x720.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.drinks-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(239, 240, 236, 0.92);
  pointer-events: none;
}

.drinks-header-block {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-decorated-light .line-light {
  background: linear-gradient(90deg, transparent, rgba(96, 0, 0, 0.22), transparent);
}

.title-decorated-light .symbol-light {
  color: var(--color-green);
  text-shadow: none;
}

.drinks-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

/* Open Columns Layout (No Cards) */
.drinks-open-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.drink-item-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 0.5rem;
}

.drink-column-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(96, 0, 0, 0.15) 20%, rgba(96, 0, 0, 0.15) 80%, transparent);
}

@media (max-width: 992px) {
  .drinks-open-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .drink-column-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .drinks-open-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.drink-item-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.drink-item-icon {
  font-size: 1.75rem;
  line-height: 1;
  display: inline-block;
  transition: transform var(--transition-bounce);
}

.drink-item-column:hover .drink-item-icon {
  transform: scale(1.2) rotate(-8deg);
}

.drink-item-title {
  font-size: 1.6rem;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.drink-item-sub {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-green-dark);
}

.drink-item-desc {
  font-size: 0.92rem;
  color: var(--color-text-main);
  line-height: 1.55;
}

.drink-item-flavors {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(96, 0, 0, 0.15);
}

.flavors-heading {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary-dark);
}

.flavors-list-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.flavor-entry strong {
  color: var(--color-primary);
  font-weight: 800;
}

.flavor-entry em {
  font-style: normal;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-left: 0.15rem;
}

.flavor-dot {
  color: var(--color-green);
  font-size: 0.55rem;
  opacity: 0.8;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Contact, Location & Hours Section
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-bg-plaster);
  background-image: url('/assets/images/plaster-1128958-1280-1280x720.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(239, 240, 236, 0.88);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(96, 0, 0, 0.08);
  transition: transform var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(96, 0, 0, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

/* Schedule Table */
.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  transition: background var(--transition-fast);
}

.schedule-row:nth-child(even) {
  background: #f8faf5;
}

.schedule-row.today-highlight {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(96, 0, 0, 0.25);
}

.today-badge {
  background: var(--color-green);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  text-transform: uppercase;
  box-shadow: 0 2px 6px var(--color-green-glow);
}

/* Address & Contact Details */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.detail-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Map Frame */
.map-frame-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(96, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.map-embed-container {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   Footer (Sleek & Compact)
   -------------------------------------------------------------------------- */
.footer-section {
  background: var(--color-primary-dark);
  color: #ffffff;
  padding: 1.75rem 0;
  border-top: 3px solid var(--color-green);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/* --------------------------------------------------------------------------
   Floating Controls & Mobile Dock
   -------------------------------------------------------------------------- */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition-normal);
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
}

/* Toast Notifications */
.app-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-primary-dark);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-green-light);
  z-index: 1100;
  opacity: 0;
  transition: all var(--transition-bounce);
  pointer-events: none;
}

.app-toast.toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries (Mobile & Tablet Optimized)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-brand-logo-frame {
    max-width: 140px;
    margin: 0 auto;
  }

  .hero-title-main {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .hero-pill-row, .hero-cta-group {
    justify-content: center;
  }

  .hero-features-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .dish-hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links, .nav-actions .live-status-pill {
    display: none;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .navbar-toggler {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .hero-section {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-title-main {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dish-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .dish-hero-card {
    padding: 1.25rem 1rem;
  }

  .dish-hero-title {
    font-size: 1.5rem;
  }

  .master-fillings-bar {
    padding: 1rem 0.85rem;
    gap: 0.65rem;
  }

  .fillings-bar-label {
    font-size: 0.78rem;
    white-space: normal;
    text-align: center;
  }

  .fillings-flow-list {
    gap: 0.35rem 0.6rem;
  }

  .filling-entry {
    font-size: 0.85rem;
  }

  .filling-entry .meat-trans {
    font-size: 0.76rem;
  }

  .schedule-row {
    font-size: 0.85rem;
    padding: 0.45rem 0.5rem;
  }

  .map-frame-wrapper {
    min-height: 320px;
  }

  .map-embed-container {
    min-height: 280px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 380px) {
  .hero-title-main {
    font-size: 1.7rem;
  }

  .btn-dish-reveal {
    font-size: 0.82rem;
    padding: 0.6rem 0.75rem;
  }
}
