﻿/***************************************
 * SAN PIO BURGER - HOJA DE ESTILOS
 * 
 * ÍNDICE:
 * 1. Variables y configuración global
 * 2. Estilos básicos (body, enlaces, tipografía)
 * 3. Header y navegación
 * 4. Sección landing
 * 5. Contenido principal
 * 6. Componentes reutilizables
 * 7. Footer
 * 8. Elementos flotantes
 * 9. Utilidades y animaciones
 * 10. Media queries
 * 11. Sección de contacto
 ***************************************/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/***************************************
 * 1. VARIABLES Y CONFIGURACIÓN GLOBAL
 ***************************************/
:root {
  /* Colores principales */
  --primary-gold: #D4AF37;
  --gold-dark: #9C7A1C;
  --gold-light: #F2D57E;
  --bg-main: #0F0F0F;
  --bg-section: #1C1C1C;
  --bg-card: #222222;
  --border-soft: #2E2E2E;
  --text-primary: #FFFFFF;
  --text-secondary: #CFCFCF;
  --text-muted: #8A8A8A;
  --text-on-gold: #1A1A1A;
  --accent-wine: #6B1E1E;
  --accent-green: #2F5D3A;
  --accent-cream: #F5EFE6;
  --accent-red: #B3261E;
  --color-primary: var(--primary-gold);
  --color-primary-dark: var(--gold-dark);
  --color-secondary: var(--gold-light);
  --color-text: var(--text-secondary);
  --color-light: var(--bg-section);
  --color-white: var(--text-primary);
  --color-gray: var(--text-muted);
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 22px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, 0.55);
  
  /* Fuentes */
  --font-primary: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-logo: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  
  /* Tamaños */
  --header-height: 80px;
  --header-height-scrolled: 60px;
  
  /* Transiciones */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
}

/* Protección de imágenes global */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Protecciones específicas para el logo */
#header .logo img, .preloader-logo {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/***************************************
 * 2. ESTILOS BÁSICOS
 ***************************************/
body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.98)), url('assets/img/background.png') fixed;
  background-size: cover;
  background-position: center center;
  background-color: var(--bg-main);
  line-height: 1.6;
}

@media (max-width: 576px) {
  body {
    background-position: 10% center;
  }
}

body.has-fixed-header {
  padding-top: var(--header-height);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/***************************************
 * 3. HEADER Y NAVEGACIÓN
 ***************************************/
#header {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.98) 0%, rgba(15, 15, 15, 0.96) 100%);
  transition: all var(--transition-normal);
  z-index: 997;
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: visible;
}

#header.header-scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background: rgba(15, 15, 15, 0.96);
}

/* Logo */
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-logo);
  position: relative;
  z-index: 1000;
  transition: all var(--transition-normal);
}

#header .logo a {
  display: block;
  position: relative;
  height: 60px;
  color: var(--text-primary);
  overflow: visible;
  transition: all var(--transition-normal);
  }

#header.header-scrolled .logo a {
  height: 45px;
}

#header .logo a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width var(--transition-fast);
}

#header .logo a:hover:after {
  width: 100%;
}

#header .logo img {
  max-height: 180px;
  max-width: 180px;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all var(--transition-normal);
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
  animation: burgerBounce 2s infinite;
  z-index: 1001;
}

#header.header-scrolled .logo img {
  max-height: 120px;
  max-width: 120px;
  top: -10px;
}

#header .logo a:hover img {
  filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.4));
}

/* Barra de navegación */
.navbar {
  padding: 0;
  margin-left: 100px;
  transition: all var(--transition-normal);
}

#header.header-scrolled .navbar {
  margin-left: 80px;
}

.navbar-nav .nav-item {
  margin-right: 5px;
  transition: all var(--transition-fast);
}

.navbar-nav .nav-link {
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 15px;
  transition: all var(--transition-fast);
}

#header.header-scrolled .navbar-nav .nav-link {
  padding: 6px 12px;
  font-size: 13px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}

/* Botón de menú móvil */
.navbar-toggler {
  border-color: rgba(212, 175, 55, 0.6);
  transition: all var(--transition-fast);
}

#header.header-scrolled .navbar-toggler {
  padding: 0.2rem 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Formulario de búsqueda */
.search-form {
  margin-left: 10px;
  transition: all var(--transition-fast);
}

#header.header-scrolled .search-form {
  margin-left: 5px;
}

.search-form input {
  border-radius: 20px;
  padding-left: 15px;
  border: none;
  min-width: 200px;
  transition: all var(--transition-fast);
  background: rgba(34, 34, 34, 0.9);
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px var(--border-soft);
  }

#header.header-scrolled .search-form input {
  min-width: 180px;
  padding: 4px 12px;
}

/***************************************
 * 4. SECCIÓN LANDING
 ***************************************/
.landing-page {
  width: 100%;
  min-height: 60vh;
  background: url('assets/img/banner.png') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  margin-top: 0;
}

.landing-page .container {
  position: relative;
  z-index: 1;
}

.content-wrapper {
  position: relative;
  padding: 30px;
  width: 100%;
}

.content-wrapper.text-end .fast-food {
  margin-left: auto;
  margin-right: 0;
}

.productos-circle {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto;
  border: 12px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.productos-circle img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: -10% 0 0 -10%;
}

.content-wrapper .d-flex.justify-content-end {
  width: 100%;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.content-wrapper .text-md-end {
  text-align: right;
  margin-right: 0;
  width: 100%;
}

.content-wrapper .btn-order {
  display: inline-block;
  margin-left: auto;
}

.pattern-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--color-secondary) 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.3;
}

.pattern-dots-1 {
  top: 0;
  left: 0;
}

.pattern-dots-2 {
  bottom: 0;
  right: 0;
  z-index: 0;
}

.fast-food {
  font-size: 50px;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: var(--color-primary);
  display: inline-block;
  padding: 10px 10px;
  margin-bottom: 0;
  border-radius: 10px;
}

.special-menu {
  font-size: 48px;
  color: var(--color-primary);
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

.burger-image {
  border-radius: 50%;
  max-width: 90%;
  box-shadow: var(--shadow-md);
  border: 10px solid var(--color-white);
}

.discount-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
  }

.discount-badge span {
    font-size: 28px;
  font-weight: 800;
  line-height: 1;
  }

/***************************************
 * 5. CONTENIDO PRINCIPAL
 ***************************************/
main section:not(.landing-page) {
  padding-top: 50px;
  padding-bottom: 30px;
  scroll-margin-top: 60px; /* Propiedad moderna para scroll-snap */
}

/* Sección de título */
.section-title {
  padding-bottom: 40px;
  text-align: end;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
  font-family: var(--font-logo);
}

.section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

#informacion .section-title,
#metodos-pago .section-title {
  text-align: center;
}

#contacto .section-title,
#metodos-pago .section-title {
  text-align: center;
}

#informacion .section-title {
  text-align: center;
}

#contacto .section-title h2::before,
#metodos-pago .section-title h2::before {
  content: none;
  display: none;
}

#informacion .section-title h2::before {
  content: none;
  display: none;
}

#informacion .section-title h2,
#contacto .section-title h2,
#metodos-pago .section-title h2 {
  font-size: 16px;
  letter-spacing: 3px;
}

#informacion .section-title p,
#contacto .section-title p,
#metodos-pago .section-title p {
  font-size: 44px;
  line-height: 1.15;
}

#contacto .section-title p {
  font-family: 'Great Vibes', var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
}

@media (max-width: 480px) {
  #informacion .section-title p,
  #contacto .section-title p,
  #metodos-pago .section-title p {
    font-size: 34px;
  }
}

/* Filtros del menú */
#menu-flters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 10px;
}

#menu-flters li {
  background: rgba(34, 34, 34, 0.92);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--border-soft);
}

#menu-flters li:hover,
#menu-flters li.filter-active {
  background: rgba(212, 175, 55, 0.18);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

#menu-flters li:last-child {
  background-color: var(--primary-gold);
  color: #fff;
}

#menu-flters li:last-child:hover {
  background-color: var(--gold-light);
  color: #fff;
}

/***************************************
 * 6. COMPONENTES REUTILIZABLES
 ***************************************/
.btn-order {
  background: var(--primary-gold);
  color: var(--text-on-gold);
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-order:hover {
  background: var(--gold-light);
  color: var(--text-on-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Animación para destacar los precios especiales */
@keyframes destacarPrecio {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Botón de pedido para cards */
.btn-order2 {
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-gold);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: 2px solid rgba(212, 175, 55, 0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-order2:hover {
  background: var(--primary-gold);
  color: var(--text-on-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

/* Botón de pedido principal en el banner */
.landing-page .btn-order {
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

.landing-page .btn-order:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.landing-page .btn-order i {
  font-size: 28px;
  margin-right: 10px;
  vertical-align: middle;
}

.landing-page .btn-order::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
  height: 100%;
  width: 100px;
  top: 0;
  left: -150px;
  transform: skewX(-20deg);
  transition: all 0.8s ease;
  z-index: -1;
}

.landing-page .btn-order:hover::after {
  left: 120%;
}

.social-icons a {
  color: var(--primary-gold);
  font-size: 24px;
  margin-right: 15px;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
}

/***************************************
 * 7. FOOTER
 ***************************************/
#footer {
  background: var(--bg-section);
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer .copyright {
  padding-bottom: 10px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--color-white);
}

#footer .credits a {
  color: var(--primary-gold);
}

/***************************************
 * 8. ELEMENTOS FLOTANTES
 ***************************************/
/* Contenedor de botones flotantes */
.float-buttons-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 1000;
}

#alerta-agregado {
  pointer-events: none;
}

.add-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(28, 28, 28, 0.9);
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  animation: addToastIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.add-toast.is-leaving {
  animation: addToastOut 220ms ease both;
}

.add-toast-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.add-toast-body {
  flex: 1 1 auto;
  min-width: 0;
}

.add-toast-title {
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.add-toast-message {
  margin-top: 2px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.25;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.add-toast-close {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: 0 0 auto;
  transition: transform 120ms ease, background 160ms ease, color 160ms ease;
}

.add-toast-close:hover {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.18);
  color: var(--text-primary);
}

.add-toast-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.add-toast-progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
  transform-origin: left;
  transform: scaleX(1);
  animation: addToastProgress 2400ms linear both;
  border-radius: 999px;
}

@keyframes addToastProgress {
  to {
    transform: scaleX(0);
  }
}

@keyframes addToastIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes addToastOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .add-toast,
  .add-toast.is-leaving,
  .add-toast-progress::after {
    animation: none !important;
  }
}

/* Botón de WhatsApp */
.whatsapp-float {
  width: 55px;
  height: 55px;
  background-color: #1f7a3d;
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
  background-color: #2a8a4b;
}

/* Botón de volver arriba */
.back-to-top {
  width: 55px;
  height: 55px;
  visibility: hidden;
  opacity: 0;
  border-radius: 50px;
  transition: all 0.4s;
  background: var(--primary-gold);
  color: var(--text-on-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 28px;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--gold-light);
  color: var(--text-on-gold);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  animation: logoAnimation 2s infinite alternate;
}

.preloader-text {
  position: relative;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 24px;
  text-align: center;
  animation: fadeInOut 2s ease-in-out infinite;
}

.preloader-text span {
  display: inline-block;
  color: var(--primary-gold);
  font-weight: bold;
  position: relative;
}

.preloader-text span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: expand 2s ease-in-out infinite;
}

@keyframes logoAnimation {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes expand {
  0%, 100% {
    width: 0;
    left: 50%;
  }
  50% {
    width: 100%;
    left: 0;
  }
}

/* Media queries para el preloader en dispositivos móviles */
@media (max-width: 768px) {
  .preloader-logo {
    width: 120px;
  }
  
  .preloader-text {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .preloader-logo {
    width: 100px;
  }
  
  .preloader-text {
    font-size: 25px;
  }
}

/***************************************
 * 9. UTILIDADES Y ANIMACIONES
 ***************************************/
@keyframes burgerBounce {
  0% {
    transform: translateY(0);
}
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/***************************************
 * 10. MEDIA QUERIES
 ***************************************/
@media (max-width: 991px) {
  body.has-fixed-header {
    padding-top: 60px;
}

  .landing-page {
    min-height: auto;
    padding: 80px 0 60px 0;
    margin-top: 0;
}

  .fast-food {
    font-size: 40px;
}

  .special-menu {
    font-size: 32px;
  }
  
  .burger-image {
    margin-top: 40px;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .landing-page {
  text-align: center;
  }
  
  .social-icons {
  justify-content: center;
  display: flex;
  }
  
  .content-wrapper .text-md-end {
  text-align: center;
  }
  
  .content-wrapper .d-flex.justify-content-end {
    justify-content: center !important;
    margin-right: 0;
}

  .float-buttons-container {
    bottom: 20px;
    right: 20px;
  }
  
  #menu-flters {
    margin: 0 auto;
  }
}

/***************************************
 * 11. SECCIÓN DE CONTACTO
 ***************************************/
section.contact {
  background: none;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

section.contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: url('images/fondos/1.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 1;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.03);
  animation: contactBgRotate 30s infinite;
  will-change: background-image, transform;
}

section.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.50), rgba(10, 10, 10, 0.68));
  z-index: 1;
  pointer-events: none;
}

section.contact .container {
  position: relative;
  z-index: 2;
}

@keyframes contactBgRotate {
  0% {
    background-image: url('images/fondos/1.png');
    opacity: 1;
  }
  18% { opacity: 1; }
  20% {
    opacity: 0;
    background-image: url('images/fondos/2.png');
  }
  22% { opacity: 1; }

  38% { opacity: 1; }
  40% {
    opacity: 0;
    background-image: url('images/fondos/3.png');
  }
  42% { opacity: 1; }

  58% { opacity: 1; }
  60% {
    opacity: 0;
    background-image: url('images/fondos/4.png');
  }
  62% { opacity: 1; }

  78% { opacity: 1; }
  80% {
    opacity: 0;
    background-image: url('images/fondos/5.png');
  }
  82% { opacity: 1; }

  98% { opacity: 1; }
  100% {
    background-image: url('images/fondos/1.png');
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  section.contact::after {
    animation: none;
  }
}

@media (max-width: 768px) {
  section.contact::after {
    background-attachment: scroll;
    background-position: center top;
    transform: scale(1.0);
    filter: saturate(1.02) contrast(1.0);
  }

  section.contact::before {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.74));
  }
}

@media (max-width: 480px) {
  section.contact::after {
    background-position: 50% 18%;
  }
}

section.contact .section-title h2,
section.contact .section-title p {
  color: var(--color-white);
}

#metodos-pago .info {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

#metodos-pago .info,
#metodos-pago .info * {
  color: #fff !important;
}

#metodos-pago .info .form-control {
  color: #111 !important;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
}

#metodos-pago .info .btn {
  color: #fff !important;
  border-color: rgba(34, 197, 94, 0.75);
  background: rgba(34, 197, 94, 0.15);
}

.info {
  padding: 30px;
  background: rgba(28, 28, 28, 0.92);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
}

.info .address,
.info .open-hours,
.info .email,
.info .phone {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.info .address:hover,
.info .open-hours:hover,
.info .email:hover,
.info .phone:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--text-primary);
  transform: translateY(-5px);
}

.info i {
  font-size: 32px;
  color: var(--primary-gold);
  float: left;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.info .address:hover i,
.info .open-hours:hover i,
.info .email:hover i,
.info .phone:hover i {
  background: rgba(212, 175, 55, 0.28);
  color: var(--text-primary);
}

.info h4 {
  padding-left: 60px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.info p {
  padding-left: 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-muted);
  word-break: break-word;
  overflow-wrap: anywhere;
}

#contacto .info .address h4,
#contacto .info .address p,
#contacto .info .phone h4,
#contacto .info .phone p,
#contacto .info .email h4,
#contacto .info .email p,
#contacto .info .open-hours h4,
#contacto .info .open-hours p {
  color: #fff !important;
}

#contacto .info i {
  color: var(--primary-gold) !important;
}

.info .address:hover h4,
.info .open-hours:hover h4,
.info .email:hover h4,
.info .phone:hover h4,
.info .address:hover p,
.info .open-hours:hover p,
.info .email:hover p,
.info .phone:hover p {
  color: var(--color-white);
}

/* Estilo tipo hexágono para horarios de apertura */
.open-hours-hexagon {
  background: var(--primary-gold);
  color: var(--text-on-gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  padding: 40px 30px;
  text-align: center;
  margin: 30px auto;
  max-width: 350px;
}

.open-hours-hexagon h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-on-gold);
  text-transform: uppercase;
}

.open-hours-hexagon .day {
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-heading {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-align: center;
}

.contact-heading:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menu {
  padding: 90px 0 60px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.45), rgba(15, 15, 15, 0.6)), url('assets/img/background1.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 12, 12, 0.35);
  z-index: 0;
}

.menu .container {
  position: relative;
  z-index: 1;
}

.menu .section-title {
  margin-bottom: 50px;
}

.menu .section-title h2,
.menu .section-title p {
  color: var(--color-white);
}

.menu .menu-container {
  padding: 0;
  position: relative;
  overflow: visible;
  max-width: none;
  margin: 0;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media (max-width: 991.98px) {
  .menu .menu-container {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .menu .container {
    padding-left: clamp(28px, 4vw, 70px);
    padding-right: clamp(28px, 4vw, 70px);
  }

  .menu .menu-container {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 2.25rem;
  }

  .menu .menu-card {
    max-width: clamp(320px, 92%, 520px);
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
    gap: 16px;
  }
}

.menu .menu-content {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
  border-bottom: 2px dashed var(--border-soft);
}

.menu .menu-content a {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-gold);
  transition: 0.3s;
  font-family: var(--font-heading);
  text-decoration: none;
}

.menu .menu-content a:hover {
  color: var(--gold-light);
}

.menu .menu-content span {
  background: var(--primary-gold);
  color: var(--text-on-gold);
  font-size: 18px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 50px;
  position: relative;
  z-index: 2;
  animation: destacarPrecio 3s infinite;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  display: inline-block;
  min-width: 80px;
  text-align: center;
}

.menu .menu-item {
  padding: 0;
  position: relative;
  margin-bottom: 0;
  transition: none;
}

.menu-card {
  background: rgba(34, 34, 34, 0.96);
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 18px;
  position: relative;
  height: auto;
  transition: transform 160ms ease, box-shadow 220ms ease, background 220ms ease;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

.menu-card[role="button"] {
  cursor: pointer;
}

.menu-card[role="button"]:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 4px;
}

.menu-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}

.menu-card::before {
  display: none;
}

.menu-card:hover::before {
  display: none;
}

.menu .menu-img-container {
  width: 96px;
  height: 96px;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-soft);
  background-color: var(--bg-section);
  flex: 0 0 auto;
}

.menu-card:hover .menu-img-container {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

.menu .menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  display: block;
  transform: none;
}

.menu-card:hover .menu-img {
  transform: scale(1.04);
}

.menu-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-title {
  font-weight: 950;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text-primary);
}

.menu .menu-ingredients {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
}

.menu-price {
  margin-top: 6px;
  font-weight: 950;
  font-size: 1.06rem;
  color: var(--primary-gold);
}

.menu-add-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(28, 28, 28, 0.95);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-add-btn span {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.menu-add-btn:hover {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
}

.menu-add-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.menu-add-btn:focus-visible {
  outline: 3px solid rgba(251, 191, 36, 0.35);
  outline-offset: 3px;
}

.menu-card .btn-order2 {
  align-self: center;
  margin-top: 20px;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Estilo para el botón de pedido a domicilio en la barra de navegación */
#ver-pedido-btn, #ver-pedido-btn-mobile {
  background: var(--primary-gold) !important;
  color: var(--text-on-gold) !important;
  border: 2px solid rgba(212, 175, 55, 0.7) !important;
  font-weight: 600;
  transition: all var(--transition-fast);
}

#ver-pedido-btn:hover, #ver-pedido-btn-mobile:hover {
  background: var(--gold-light) !important;
  color: var(--text-on-gold) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Ajuste para el contador de items en el botón */
#contador-items, #contador-items-mobile {
  background-color: var(--accent-wine) !important;
  color: #000 !important;
  font-weight: bold;
}

/* Animación para destacar los precios */
@keyframes destacarPrecio {
  0% {
    transform: scale(1);
    box-shadow: 0 3px 8px rgba(46, 139, 87, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 3px 8px rgba(46, 139, 87, 0.2);
  }
}

/* Ajustes específicos para dispositivos móviles */
@media (max-width: 768px) {
  .menu .menu-ingredients {
    font-size: 0.78rem;
    margin-bottom: 0;
  }
  
  .menu-card {
    padding: 14px;
  }
  
  .menu-card .btn-order2 {
    margin-top: 15px;
  }
}

/* === FOOTER SAN PIO BURGER MODERNO SIN ENLACES === */
.footer-spb {
  position: relative;
  background: linear-gradient(120deg, #121212 0%, #1f1f1f 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
  font-family: var(--font-primary);
}

.footer-wave {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 30C120 60 360 0 720 30C1080 60 1320 0 1440 30V60H0V30Z" fill="%23fff" fill-opacity="0.15"/></svg>') repeat-x;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
  animation: waveMove 8s linear infinite;
}

@keyframes waveMove {
  0% { background-position-x: 0; }
  100% { background-position-x: 1000px; }
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  background: rgba(28, 28, 28, 0.9);
  margin-bottom: 8px;
  transition: transform 0.3s;
}
.footer-logo:hover {
  transform: scale(1.08) rotate(-5deg);
}

.footer-brand {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.footer-slogan {
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 0;
}

.footer-phrase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 10px 0;
}
.footer-phrase-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  animation: fadeInFooter 2s;
}
.footer-phrase-sub {
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
  font-style: italic;
  animation: fadeInFooter 2.5s;
}
@keyframes fadeInFooter {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

.footer-contact {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
  transition: color 0.2s;
  justify-content: flex-end;
}
.footer-contact i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-right: 4px;
  transition: color 0.2s;
}
.footer-contact:hover {
  color: var(--gold-light);
}
.footer-contact:hover i {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1.5px solid rgba(255,255,255,0.18);
  margin: 1.5rem 0;
}

.footer-copyright {
  color: #fff;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.footer-credits {
  color: var(--primary-gold);
  font-size: 0.95rem;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 767px) {
  .footer-spb .row > div {
    text-align: center !important;
    margin-bottom: 18px;
  }
  .footer-logo {
    margin: 0 auto 8px auto;
  }
  .footer-divider {
    margin: 1rem 0;
  }
  .footer-contact {
    justify-content: center;
  }
}

.precio-especial {
      font-weight: bold;
      margin-top: 15px;
      font-size: 18px;
    }

    .precio-especial span {
      color: var(--primary-gold);
      background: -webkit-linear-gradient(var(--gold-dark), var(--gold-light));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 22px;
      padding: 5px 10px;
      position: relative;
      font-weight: 700;
      text-shadow: 0px 0px 1px rgba(212, 175, 55, 0.35);
      animation: brillar 2s infinite alternate;
    }

    @keyframes brillar {
      from {
        opacity: 0.8;
      }

      to {
        opacity: 1;
        text-shadow: 0px 0px 5px rgba(212, 175, 55, 0.4);
      }
    }

    /* Estilos para las imágenes del menú */
    .menu .menu-img {
      width: 100%;
      height: 100%;
      border-radius: 22px;
      object-fit: cover;
      transition: transform 260ms ease;
      cursor: pointer;
      border: 0;
      box-shadow: none;
      margin-right: 0;
    }

    .menu .menu-img:hover {
      transform: none;
      border-color: transparent;
      box-shadow: none;
    }

    /* Ajustes para el lightbox */
    .glightbox-clean .gslide-media {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) !important;
      border-radius: 8px;
      overflow: hidden;
    }

    .carrito-pedido {
      background-color: var(--bg-card);
      border-radius: 8px;
      padding: 15px;
      margin-top: 20px;
    }

    .carrito-pedido h5 {
      color: var(--text-primary);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .lista-pedido {
      max-height: 200px;
      overflow-y: auto;
    }

    .item-seleccionado {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      border-bottom: 1px solid var(--border-soft);
      margin-bottom: 5px;
    }

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

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

    .item-seleccionado .info-item h6 {
      margin: 0;
      color: var(--text-primary);
    }

    .item-seleccionado .info-item p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.9em;
    }

    .item-seleccionado .acciones-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .item-seleccionado .acciones-item button {
      background: none;
      border: none;
      color: var(--accent-red);
      cursor: pointer;
      padding: 5px;
    }

    .item-seleccionado .acciones-item button:hover {
      color: #d93a32;
    }

    .item-seleccionado .cantidad {
      font-weight: bold;
      color: var(--text-primary);
    }

    /* Estilos para el botón de carrito en la barra de navegación */
    #ver-pedido-btn {
      transition: all 0.3s ease;
    }
    
    #ver-pedido-btn:hover {
      transform: scale(1.05);
      background-color: var(--gold-light) !important;
    }
    
    #contador-items, 
    #contador-items-mobile {
      font-size: 10px;
      font-weight: bold;
      padding: 0.25em 0.6em;
      transform: translate(-50%, -50%);
    }

    @keyframes badgePop {
      0% { transform: translate(-50%, -50%) scale(0.85); }
      60% { transform: translate(-50%, -50%) scale(1.15); }
      100% { transform: translate(-50%, -50%) scale(1); }
    }
    .badge-pop {
      animation: badgePop 180ms ease-out;
      will-change: transform;
    }
    
    /* Estilos para el botón de pedido móvil */
    #ver-pedido-btn-mobile {
      font-size: 0.9rem;
      padding: 0.5rem 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary-gold);
      color: var(--text-on-gold);
      border: none;
      border-radius: 4px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    }
    
    #ver-pedido-btn-mobile i {
      font-size: 1.1rem;
    }
    
    #ver-pedido-btn-mobile:hover {
      background-color: var(--gold-light);
    }
    
    /* Estilos para el botón Pedir en Local */
    .btn-order-local {
      background: linear-gradient(135deg, #2f5d3a 0%, #3c7a4a 100%);
      color: var(--text-primary);
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .btn-order-local:hover {
      background: linear-gradient(135deg, #3c7a4a 0%, #2f5d3a 100%);
      color: var(--text-primary);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
    
    .btn-order-local i {
      margin-right: 8px;
      font-size: 1.2rem;
    }
    
    /* Estilos para el modal de pedido local */
    .modal-local .modal-header {
      background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
      color: #0f172a;
      border-bottom: none;
    }

    #pedidoModal .modal-dialog {
      max-width: 980px;
    }

    #pedidoModal .modal-content {
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 18px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
      background: rgba(255, 255, 255, 0.98);
      color: #0f172a;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    #pedidoModal .modal-header {
      border: 0;
      padding: 18px 22px;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      color: #0f172a;
    }

    #pedidoModal .modal-title {
      font-weight: 800;
      letter-spacing: 0.2px;
      color: #0f172a;
    }

    #pedidoModal .btn-close {
      filter: none;
      opacity: 0.95;
    }

    #pedidoModal .modal-body {
      padding: 18px 22px 10px;
    }

    #pedidoModal .form-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.72);
      margin-bottom: 8px;
    }

    #pedidoModal .form-control,
    #pedidoModal .form-select,
    #pedidoModal textarea.form-control {
      border-radius: 12px;
      border-color: rgba(15, 23, 42, 0.12);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
      padding: 0.7rem 0.85rem;
      color: #0f172a;
    }

    #pedidoModal .select-arrow-wrap,
    #pedidoLocalModal .select-arrow-wrap {
      position: relative;
    }

    #pedidoModal .select-arrow-wrap > .form-select,
    #pedidoLocalModal .select-arrow-wrap > .form-select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: none !important;
      padding-right: 2.35rem;
    }

    #pedidoModal .select-arrow,
    #pedidoLocalModal .select-arrow {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      transform-origin: center;
      pointer-events: none;
      transition: transform 160ms ease, opacity 160ms ease;
      opacity: 0.75;
      color: rgba(15, 23, 42, 0.65);
      font-size: 1rem;
      line-height: 1;
    }

    #pedidoModal .select-arrow-wrap.is-open .select-arrow,
    #pedidoLocalModal .select-arrow-wrap.is-open .select-arrow {
      transform: translateY(-50%) rotate(180deg);
      opacity: 0.95;
    }

    #pedidoModal .form-control:focus,
    #pedidoModal .form-select:focus,
    #pedidoModal textarea.form-control:focus {
      border-color: rgba(179, 0, 0, 0.45);
      box-shadow: 0 0 0 0.25rem rgba(179, 0, 0, 0.14);
    }

    #pedidoModal .carrito-pedido {
      background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.92) 100%);
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 14px;
      padding: 16px;
      margin-top: 14px;
    }

    #pedidoModal .lista-pedido {
      max-height: 240px;
      overflow-y: auto;
      padding-right: 6px;
    }

    #pedidoModal .lista-pedido::-webkit-scrollbar {
      width: 8px;
    }

    #pedidoModal .lista-pedido::-webkit-scrollbar-thumb {
      background: rgba(15, 23, 42, 0.18);
      border-radius: 999px;
    }

    #pedidoModal .item-seleccionado {
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
      padding: 10px 8px;
      border-radius: 10px;
      color: #0f172a;
    }

    #pedidoModal .item-seleccionado:hover {
      background: rgba(179, 0, 0, 0.06);
    }

    #pedidoModal .item-seleccionado .info-item h6 {
      color: #0f172a;
    }

    #pedidoModal .item-seleccionado .info-item p {
      color: rgba(15, 23, 42, 0.65);
    }

    #pedidoModal .item-seleccionado .cantidad {
      color: #0f172a;
    }

    #pedidoModal .item-seleccionado .acciones-item button {
      color: #dc3545;
    }

    #pedidoModal .total-pedido {
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: rgba(255, 255, 255, 0.9);
      border-radius: 14px;
      padding: 14px 16px;
      color: #0f172a;
    }

    #pedidoModal .total-pedido h4 {
      margin-bottom: 0;
      font-weight: 900;
      letter-spacing: 0.2px;
      color: #0f172a;
    }

    #pedidoModal .card {
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      color: #0f172a;
    }

    #pedidoModal .card-body {
      padding: 12px;
      color: #0f172a;
    }

    #pedidoModal .btn {
      border-radius: 12px;
    }

    #pedidoModal .btn-success {
      border: 0;
      background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
      box-shadow: 0 12px 26px rgba(34, 197, 94, 0.25);
    }

    #pedidoModal .btn-success:hover {
      filter: brightness(0.98);
      box-shadow: 0 14px 30px rgba(34, 197, 94, 0.3);
    }

    #pedidoModal .btn-outline-primary {
      border-color: rgba(179, 0, 0, 0.35);
      color: #b30000;
    }

    #pedidoModal .btn-outline-primary:hover {
      background: rgba(179, 0, 0, 0.08);
      border-color: rgba(179, 0, 0, 0.5);
      color: #b30000;
    }

    #pedidoModal .modal-footer {
      border-top: 1px solid rgba(15, 23, 42, 0.08);
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.96);
      color: #0f172a;
    }

    @media (max-width: 575.98px) {
      #pedidoModal .modal-dialog {
        margin: 0.75rem;
      }
      #pedidoModal .modal-content {
        border-radius: 16px;
      }
      #pedidoModal .modal-body {
        padding: 16px 16px 10px;
      }

      #pedidoModal .modal-footer {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
      }

      #pedidoModal .modal-footer .btn {
        min-width: 0;
        white-space: normal;
        line-height: 1.15;
        padding: 0.7rem 0.75rem;
        font-size: 0.92rem;
      }

      #pedidoModal .modal-footer .btn.btn-secondary {
        flex: 0 0 auto;
      }

      #pedidoModal .modal-footer .btn.btn-success {
        flex: 1 1 auto;
      }
    }
    
    .modal-local .modal-title {
      font-weight: 700;
      letter-spacing: 1px;
    }
    
    .modal-local .btn-close {
      filter: invert(1);
    }
    
    .mesa-selector {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    #pedidoLocalModal .mesa-selector.is-invalid {
      border: 2px solid rgba(220, 53, 69, 0.85);
      border-radius: 14px;
      padding: 10px;
      background: rgba(220, 53, 69, 0.04);
    }
    
    .mesa-option {
      padding: 15px 10px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: white;
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    .mesa-option:hover {
      border-color: #28a745;
      background: #f8fff9;
      transform: scale(1.05);
    }
    
    .mesa-option.selected {
      background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
      color: white;
      border-color: #28a745;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    
    .mesa-option.selected:hover {
      background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    }
    
    /* Estilos específicos para dispositivos móviles */
    @media (max-width: 991.98px) {
      .navbar {
        position: relative;
      }
      
      .navbar-collapse {
        text-align: right;
      }
      
      .navbar-nav {
        width: 100%;
      }
      
      .navbar-nav .nav-link {
        padding-right: 0;
        text-align: right;
      }
      
      .navbar .d-flex {
        margin-top: 15px;
        justify-content: flex-end !important;
        width: 100%;
      }
      
      .navbar-toggler {
        border: none;
        padding-right: 0;
      }
      
      #header .logo {
        margin-right: auto;
      }
      
      /* Ajustar altura del header en móvil */
      #header {
        height: auto;
        padding: 15px 0;
      }
      
      /* Cuando el menú está abierto */
      #header.menu-open {
        padding-top: 10px;
      }
      
      #header.menu-open .logo {
        position: absolute;
        top: 10px;
        left: 15px;
        z-index: 1030;
        transform: scale(0.85);
        transform-origin: top left;
        transition: all 0.3s ease;
      }
      
      #header.menu-open .navbar-collapse {
        margin-top: 40px;
        padding-top: 10px;
      }
      
      /* Animación suave para los cambios */
      #header .logo,
      #header .navbar-collapse {
        transition: all 0.3s ease;
      }
      
      /* Estilos para los filtros del menú en móvil */
      #menu-flters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 0 10px;
      }
      
      #menu-flters li {
        font-size: 14px;
        padding: 6px 12px;
        margin: 0;
        border-radius: 20px;
        min-width: auto;
        white-space: nowrap;
      }
      
      /* Sobrescribir padding para el contenedor en tabletas */
      .filtros-container {
        padding: 0px 30px;
      }
      
      /* Espaciado correcto entre logo y botones */
      #header .container-fluid {
        align-items: center;
      }
    }
    
    /* Ajuste específico para pantallas muy pequeñas */
    @media (max-width: 380px) {
      #ver-pedido-btn-mobile {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
      }
      
      #ver-pedido-btn-mobile i {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 767px) {
      .filtros-container {
        padding: 0px 20px;
      }
    }
    
    /* Media query específico para dispositivos muy pequeños */
    @media (max-width: 480px) {
      #menu-flters {
        gap: 4px;
        padding: 0 5px;
      }
      
      #menu-flters li {
        font-size: 12px;
        padding: 5px 10px;
      }
      
      .filtros-container {
        padding: 0px 10px !important;
      }
    }
    
    /* Estilos para el contenedor de filtros */
    .filtros-container {
      padding: 0px 120px;
    }

    /* Estilos para el contador de items en el botón */
    #contador-items, #contador-items-mobile {
      background-color: var(--color-primary) !important;
  color: #000 !important;
      font-weight: bold;
    }

    /* Estilos para destacar la cantidad en la lista de pedido */
    .cantidad-destacada {
      font-size: 1.2em; /* Make font size larger */
      font-weight: bold; /* Make text bold */
      color: var(--color-primary-dark); /* Use a prominent color */
      margin-right: 10px; /* Add some spacing */
    }
    
    .subtotal {
      font-weight: bold;
      color: #000; /* Use a prominent color, like black */
    }

    /* === FOOTER  MODERNO CON ENLACE DESTACADO === */
    .footer-spb {
      position: relative;
      background: linear-gradient(120deg, #b30000 0%, #d20000 100%);
      color: #fff;
      overflow: hidden;
      box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
      font-family: var(--font-primary);
    }

    .footer-wave {
      position: absolute;
      top: -30px;
      left: 0;
      width: 100%;
      height: 60px;
      background: url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 30C120 60 360 0 720 30C1080 60 1320 0 1440 30V60H0V30Z" fill="%23fff" fill-opacity="0.15"/></svg>') repeat-x;
      background-size: cover;
      z-index: 2;
      pointer-events: none;
      animation: waveMove 8s linear infinite;
    }

    @keyframes waveMove {
      0% { background-position-x: 0; }
      100% { background-position-x: 1000px; }
    }

    .footer-logo {
      width: 60px;
      height: 60px;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: none;
      background: transparent;
      margin-bottom: 8px;
      transition: transform 0.3s;
    }
    .footer-logo:hover {
      transform: scale(1.08) rotate(-2deg);
    }

    .footer-brand {
      font-family: var(--font-logo);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #ffc107;
      margin-bottom: 0.2rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }

    .footer-slogan {
      font-size: 1rem;
      color: #fff;
      opacity: 0.85;
      font-style: italic;
      margin-bottom: 0;
    }

    .footer-phrase {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 80px;
      padding: 10px 0;
    }
    .footer-phrase-text {
      font-size: 1.15rem;
      font-weight: 600;
      color: #ffc107;
      text-shadow: 0 2px 8px rgba(0,0,0,0.10);
      letter-spacing: 0.5px;
      margin-bottom: 2px;
      animation: fadeInFooter 2s;
    }

    .footer-phrase-sub {
      font-size: 1rem;
      color: #fff;
      opacity: 0.85;
      font-style: italic;
      animation: fadeInFooter 2.5s;
    }

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

    .footer-contact {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0.92;
      transition: color 0.2s;
      justify-content: flex-end;
    }
    .footer-contact i {
      color: #ffc107;
      font-size: 1.2rem;
      margin-right: 4px;
      transition: color 0.2s;
    }
    .footer-contact:hover {
      color: #ffc107;
    }
    .footer-contact:hover i {
      color: #fff;
    }

    .footer-divider {
      border: none;
      border-top: 1.5px solid rgba(255,255,255,0.18);
      margin: 1.5rem 0;
    }

    .footer-copyright {
      color: #fff;
      font-size: 1rem;
      opacity: 0.85;
      margin-bottom: 2px;
      letter-spacing: 0.5px;
    }
    .footer-credits {
      color: #ffc107;
      font-size: 1.05rem;
      opacity: 0.95;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 2px;
    }
    .footer-link-sb {
      color: #fff;
      font-weight: 700;
      background: linear-gradient(90deg, #ffc107 0%, #ff4d4d 100%);
      padding: 3px 14px 3px 10px;
      border-radius: 20px;
      margin-left: 6px;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(255,193,7,0.10);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    .footer-link-sb i {
      color: #fff700;
      font-size: 1.1em;
      margin-right: 2px;
      transition: color 0.2s;
    }
    .footer-link-sb:hover {
      background: linear-gradient(90deg, #ff4d4d 0%, #ffc107 100%);
      color: #b30000;
      transform: scale(1.08) rotate(-2deg);
      box-shadow: 0 4px 16px rgba(255,77,77,0.18);
      text-decoration: none;
    }
    .footer-link-sb:hover i {
      color: #b30000;
    }

    @media (max-width: 767px) {
      .footer-spb .row > div {
        text-align: center !important;
        margin-bottom: 18px;
      }
      .footer-logo {
        margin: 0 auto 8px auto;
      }
      .footer-divider {
        margin: 1rem 0;
      }
      .footer-contact {
        justify-content: center;
      }
    }

    /* ALERTA FLOTANTE RESPONSIVE */
    #alerta-agregado {
      display: none;
      position: fixed;
      top: 90px;
      right: 30px;
      z-index: 2000;
      min-width: 260px;
      max-width: 350px;
      transition: left 0.3s, right 0.3s, transform 0.3s;
    }
    @media (max-width: 768px) {
      #alerta-agregado {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: 80px;
      }
    }

    /* Imagen destacada sobre el mapa - MEJORA SORPRENDENTE */
    .map-highlight-container {
      width: 100%;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border: 3px solid rgba(255,255,255,0.8);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .map-highlight-container:hover {
      box-shadow: 0 12px 40px rgba(179,0,0,0.18), 0 2px 12px rgba(255,193,7,0.10);
      transform: scale(1.015);
    }
    .map-highlight-img {
      width: 100%;
      aspect-ratio: 16/9;
      height: auto;
      object-fit: cover;
      border-radius: 17px;
      filter: brightness(0.97) contrast(1.08) saturate(1.08);
      box-shadow: inset 0 0 20px rgba(0,0,0,0.08);
      display: block;
      transition: all 0.5s cubic-bezier(.4,2,.6,1);
      transform: scale(1.00);
    }
    .map-highlight-container:hover .map-highlight-img {
      transform: scale(1.06) rotate(-1deg);
      filter: brightness(1.05) contrast(1.15) saturate(1.18);
    }
    @media (max-width: 991px) {
      .map-highlight-container {
        max-width: 100%;
      }
      .map-highlight-img {
        aspect-ratio: 16/10;
      }
    }
    @media (max-width: 575px) {
      .map-highlight-img {
        aspect-ratio: 16/12;
      }
    }

    .ubicacion-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: linear-gradient(90deg, #fff 60%, #ffe5e5 100%);
      border-radius: 2em;
      box-shadow: 0 4px 24px rgba(179,0,0,0.10), 0 1.5px 8px rgba(179,0,0,0.08);
      padding: 10px 38px 10px 22px;
      font-weight: 700;
      font-size: 1.25rem;
      color: #b30000;
      position: relative;
      margin: 0 auto 12px auto;
      border: 2.5px solid #fff3f3;
      transition: box-shadow 0.2s, background 0.2s;
      max-width: 420px;
      min-width: 260px;
      width: fit-content;
      white-space: nowrap;
      overflow: hidden;
      letter-spacing: 0.5px;
      /* Efecto de brillo animado */
      box-shadow: 0 0 0 4px rgba(255,193,7,0.08), 0 4px 24px rgba(179,0,0,0.10);
      z-index: 1;
    }
    .ubicacion-badge::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      border-radius: 2em;
      pointer-events: none;
      z-index: 2;
      border: 2.5px solid transparent;
      background: linear-gradient(120deg, #ffc107 0%, #b30000 100%) border-box;
      mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      -webkit-mask-composite: xor;
      opacity: 0.7;
      animation: ubicacionBrillo 2.5s linear infinite;
    }
    @keyframes ubicacionBrillo {
      0% { opacity: 0.7; box-shadow: 0 0 0 0 #ffc107; }
      50% { opacity: 1; box-shadow: 0 0 16px 4px #ffc10788; }
      100% { opacity: 0.7; box-shadow: 0 0 0 0 #ffc107; }
    }
    .ubicacion-badge:hover {
      box-shadow: 0 8px 32px rgba(179,0,0,0.18), 0 2px 12px rgba(255,193,7,0.10), 0 0 16px 2px #ffc10755;
      background: linear-gradient(90deg, #fff 40%, #ffd6d6 100%);
      transform: scale(1.03) rotate(-1deg);
    }
    @media (max-width: 600px) {
      .ubicacion-badge {
        font-size: 1em;
        padding: 8px 10vw 8px 6vw;
        max-width: 98vw;
        min-width: 0;
      }
    }

    .ubicacion-icon {
      background: linear-gradient(135deg, #b30000 0%, #ffc107 100%);
      color: #fff;
      border-radius: 50%;
      width: 2.5em;
      height: 2.5em;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6em;
      box-shadow: 0 2px 8px rgba(179,0,0,0.12);
      animation: pulseUbicacion 2.2s infinite;
    }
    @keyframes pulseUbicacion {
      0%, 100% { transform: scale(1);}
      50% { transform: scale(1.12);}
    }
    .ubicacion-text {
      display: flex;
      flex-direction: column;
      font-family: var(--font-primary);
      font-size: 1.1em;
      color: #b30000;
      line-height: 1.1;
      letter-spacing: 0.5px;
    }
    .ubicacion-text small {
      color: #444;
      font-size: 0.95em;
      font-weight: 500;
      letter-spacing: 0.2px;
      margin-top: 2px;
    }
    @media (max-width: 600px) {
      .ubicacion-badge {
        font-size: 1em;
        padding: 10px 12px 10px 10px;
        gap: 10px;
      }
      .ubicacion-icon {
        width: 2em;
        height: 2em;
        font-size: 1.2em;
      }
    }
    @keyframes badgeFadeIn {
      from { opacity: 0; transform: translateY(-18px);}
      to { opacity: 1; transform: translateY(0);}
    }

    .info .address h4,
    .info .address p,
    .info .email h4,
    .info .email p,
    .info .phone h4,
    .info .phone p {
      color: #111 !important;
      font-weight: 600;
      letter-spacing: 0.2px;
    }
    /* Galería del local */
    .gallery-wrapper {
      max-width: 980px;
      margin: 0 auto 0.75rem auto;
    }
    .gallery-video-container {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 6px 22px rgba(0,0,0,0.10);
      margin: 0 auto 1rem auto;
      max-width: 980px;
      aspect-ratio: 16 / 9;
    }
    .gallery-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .video-mute-btn {
      position: absolute;
      right: 12px;
      bottom: 12px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.55);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
      z-index: 3;
    }
    .video-mute-btn:hover { background: rgba(0,0,0,0.7); transform: translateY(-1px); }
    .video-mute-btn:active { transform: scale(0.96); }
    .video-mute-btn.pulse { animation: btnPulse .28s ease; }
    @keyframes btnPulse { from { box-shadow: 0 0 0 0 rgba(255,255,255,.35);} to { box-shadow: 0 0 0 12px rgba(255,255,255,0);} }
    @media (max-width: 575px) {
      .gallery-video-container { aspect-ratio: 16 / 10; }
    }
    .gallery-title {
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #b30000;
    }
    .gallery-item {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      background: #f8f9fa;
      box-shadow: 0 6px 22px rgba(0,0,0,0.10);
      aspect-ratio: 1 / 1;
    }
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 0.5s cubic-bezier(.4,2,.6,1), filter 0.3s ease;
      display: block;
    }
    .gallery-item:hover .gallery-img {
      transform: scale(1.08);
      filter: contrast(1.05) saturate(1.05);
    }
    .gallery-zoom {
      position: absolute;
      right: 10px;
      bottom: 10px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,0.55);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .22s ease, transform .22s ease;
      pointer-events: none;
    }
    .gallery-item:hover .gallery-zoom {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 991.98px) {
      body.menu-overlay-open {
        overflow: auto;
        touch-action: auto;
      }

      #header .navbar {
        position: static;
      }

      #header .navbar > .container-fluid {
        position: static;
        padding-left: 0;
        padding-right: 0;
      }

      #header .navbar-toggler {
        width: 48px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.35);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1101;
      }

      #header.menu-open .navbar-toggler {
        position: fixed;
        top: 16px;
        right: 16px;
        left: auto;
        z-index: 1103;
      }

      #header.menu-open #ver-pedido-btn-mobile {
        opacity: 0;
        pointer-events: none;
      }

      #header .navbar-toggler:focus {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25), 0 10px 28px rgba(0, 0, 0, 0.45);
      }

      #header .navbar-toggler .navbar-toggler-icon {
        background-image: none;
        width: 20px;
        height: 2px;
        background: var(--gold-light);
        border-radius: 999px;
        position: relative;
        transition: background 180ms ease;
      }

      #header .navbar-toggler .navbar-toggler-icon::before,
      #header .navbar-toggler .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 20px;
        height: 2px;
        background: var(--gold-light);
        border-radius: 999px;
        transition: transform 260ms cubic-bezier(.2, .9, .2, 1), top 260ms cubic-bezier(.2, .9, .2, 1);
      }

      #header .navbar-toggler .navbar-toggler-icon::before {
        top: -7px;
      }

      #header .navbar-toggler .navbar-toggler-icon::after {
        top: 7px;
      }

      #header.menu-open .navbar-toggler .navbar-toggler-icon {
        background: transparent;
      }

      #header.menu-open .navbar-toggler .navbar-toggler-icon::before {
        top: 0;
        transform: rotate(45deg);
      }

      #header.menu-open .navbar-toggler .navbar-toggler-icon::after {
        top: 0;
        transform: rotate(-45deg);
      }

      #navbarNav.navbar-collapse {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 76px);
        right: 14px;
        left: auto;
        bottom: auto;
        z-index: 1100;
        width: min(92vw, 360px);
        max-height: calc(100vh - 96px);
        padding: 12px 14px 14px;
        background: rgba(28, 28, 28, 0.94);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border: 1px solid var(--border-soft);
        box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        border-radius: 22px;
        -webkit-clip-path: circle(22px at calc(100% - 22px) 22px);
        clip-path: circle(22px at calc(100% - 22px) 22px);
        transition: opacity 220ms ease, -webkit-clip-path 560ms cubic-bezier(.2, .9, .2, 1), clip-path 560ms cubic-bezier(.2, .9, .2, 1);
        display: flex !important;
        flex-direction: column;
        gap: 12px;
      }

      #navbarNav.navbar-collapse::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(1200px 600px at 120% -10%, rgba(107, 30, 30, 0.28) 0%, rgba(107, 30, 30, 0) 55%),
          radial-gradient(900px 540px at -10% 20%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 60%),
          linear-gradient(180deg, rgba(28, 28, 28, 0.96) 0%, rgba(15, 15, 15, 0.94) 100%);
        opacity: 1;
        pointer-events: none;
      }

      #navbarNav.navbar-collapse > * {
        position: relative;
        z-index: 1;
      }


      #navbarNav .mobile-menu-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 520px;
        margin: 0 auto;
        padding: 10px 12px;
        border-radius: 18px;
        background: rgba(34, 34, 34, 0.85);
        border: 1px solid var(--border-soft);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
      }

      #navbarNav .mobile-menu-brand img {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        object-fit: contain;
        background: rgba(28, 28, 28, 0.9);
        border: 1px solid var(--border-soft);
        padding: 6px;
        filter: drop-shadow(0px 10px 18px rgba(0, 0, 0, 0.4));
      }

      #navbarNav .mobile-menu-brand-title {
        font-family: var(--font-logo);
        font-weight: 950;
        letter-spacing: 0.02em;
        color: var(--text-primary);
        text-transform: uppercase;
        line-height: 1.05;
        font-size: 1rem;
      }

      #navbarNav .mobile-menu-brand-subtitle {
        font-family: var(--font-primary);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 0.72rem;
        color: var(--text-muted);
        margin-top: 2px;
      }

      #header.menu-open #navbarNav.navbar-collapse {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        -webkit-clip-path: circle(160% at calc(100% - 22px) 22px);
        clip-path: circle(160% at calc(100% - 22px) 22px);
      }

      #navbarNav.collapse:not(.show) {
        display: block !important;
      }

      #navbarNav.collapsing,
      #navbarNav.show {
        height: auto !important;
      }

      #navbarNav .mobile-menu-title {
        font-family: var(--font-logo);
        font-weight: 950;
        letter-spacing: 0.02em;
        color: var(--text-primary);
        text-transform: uppercase;
        line-height: 1.05;
        font-size: 0.95rem;
        padding: 6px 4px 2px;
      }

      #navbarNav .mobile-menu-header {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 520px;
        margin: 0 auto;
        padding: 2px 4px 0;
      }

      #navbarNav .mobile-menu-header-logo {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        object-fit: contain;
        background: rgba(28, 28, 28, 0.9);
        border: 1px solid var(--border-soft);
        padding: 4px;
        filter: drop-shadow(0px 10px 18px rgba(0, 0, 0, 0.4));
      }

      #navbarNav .navbar-nav {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        max-width: 520px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      #navbarNav .navbar-nav.me-auto {
        margin-top: 0;
      }

      #navbarNav .nav-item {
        width: 100%;
      }

      #navbarNav .nav-link {
        text-align: left;
        padding: 15px 16px;
        border-radius: 18px;
        font-family: var(--font-logo);
        font-weight: 800;
        font-size: 0.98rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-primary) !important;
        background: linear-gradient(180deg, rgba(34, 34, 34, 0.96) 0%, rgba(24, 24, 24, 0.92) 100%);
        border: 1px solid var(--border-soft);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      #navbarNav .nav-link .nav-link-left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
      }

      #navbarNav .nav-link .nav-link-left span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      #navbarNav .nav-link .nav-link-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(212, 175, 55, 0.15);
        color: var(--primary-gold);
        flex: 0 0 auto;
      }

      #navbarNav .nav-link .nav-link-icon svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      #navbarNav .nav-link .nav-link-chevron {
        opacity: 0.55;
        color: var(--text-muted);
        flex: 0 0 auto;
      }

      #navbarNav .nav-link .nav-link-chevron svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      #navbarNav .nav-link:hover,
      #navbarNav .nav-link:focus {
        background: rgba(212, 175, 55, 0.12);
        transform: translateY(-1px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
      }

      #navbarNav .nav-link:active {
        transform: translateY(0);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
      }

      #header.menu-open .logo {
        opacity: 1;
        pointer-events: auto;
      }

      #header.menu-open .navbar-collapse {
        margin-top: 0;
        padding-top: 5;
      }

      #navbarNav .d-flex {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        justify-content: flex-start !important;
      }

      #navbarNav > .d-flex {
        display: none !important;
      }

      #navbarNav #ver-pedido-btn {
        display: none !important;
      }

      #navbarNav #installAppBtnMobile {
        width: 100%;
        max-width: 520px;
        border-radius: 16px;
        font-weight: 900;
        letter-spacing: 0.02em;
        padding: 12px 14px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
        border: 0;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
      }

      #navbarNav #installAppBtnMobile svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        vertical-align: -3px;
        margin-right: 8px;
      }

      #installAppBtnDesktop.btn-install-pro {
        border-radius: 999px;
        padding: 12px 28px;
        font-weight: 800;
        letter-spacing: 0.02em;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
        position: relative;
        overflow: hidden;
      }

      #installAppBtnDesktop.btn-install-pro i {
        margin-right: 8px;
        vertical-align: -2px;
      }

      #installAppBtnDesktop.btn-install-pro::after {
        content: '';
        position: absolute;
        top: 0;
        left: -140px;
        width: 95px;
        height: 100%;
        background: rgba(255, 255, 255, 0.26);
        transform: skewX(-20deg);
        transition: left 0.8s ease;
        pointer-events: none;
      }

      #installAppBtnDesktop.btn-install-pro:hover::after {
        left: 130%;
      }

      #ver-pedido-btn-mobile,
      #ver-pedido-btn {
        border-radius: 999px !important;
      }

      #ver-pedido-btn-mobile img,
      #ver-pedido-btn img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        display: inline-block;
        vertical-align: -3px;
        margin-right: 8px;
        transform-origin: 50% 70%;
        will-change: transform;
        filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
        animation: cart-pro 4.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
      }

      #ver-pedido-btn-mobile:hover img,
      #ver-pedido-btn-mobile:focus-visible img,
      #ver-pedido-btn:hover img,
      #ver-pedido-btn:focus-visible img {
        animation-duration: 1.6s;
      }

      @media (prefers-reduced-motion: reduce) {
        #ver-pedido-btn-mobile img,
        #ver-pedido-btn img {
          animation: none !important;
          transition: none !important;
        }
      }

      #navbarNav .w-100.d-lg-none.text-end.mt-3 {
        text-align: left !important;
        margin-top: auto !important;
      }

      #navbarNav .nav-item {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 220ms ease, transform 220ms ease;
      }

      #header.menu-open #navbarNav .nav-item {
        opacity: 1;
        transform: translateY(0);
      }

      #header.menu-open #navbarNav .nav-item:nth-child(1) { transition-delay: 40ms; }
      #header.menu-open #navbarNav .nav-item:nth-child(2) { transition-delay: 80ms; }
      #header.menu-open #navbarNav .nav-item:nth-child(3) { transition-delay: 120ms; }
      #header.menu-open #navbarNav .nav-item:nth-child(4) { transition-delay: 160ms; }
    }

    #ver-pedido-btn-mobile img,
    #ver-pedido-btn img {
      width: 18px;
      height: 18px;
      object-fit: contain;
      display: inline-block;
      vertical-align: -3px;
      margin-right: 8px;
      transform-origin: 50% 70%;
      will-change: transform;
      filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
      animation: cart-pro 4.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
    }

    #ver-pedido-btn-mobile:hover img,
    #ver-pedido-btn-mobile:focus-visible img,
    #ver-pedido-btn:hover img,
    #ver-pedido-btn:focus-visible img {
      animation-duration: 1.6s;
    }

    @keyframes cart-pro {
      0%,
      72%,
      100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }
      78% {
        transform: translate3d(2px, -1px, 0) rotate(-6deg);
      }
      84% {
        transform: translate3d(-1px, 0px, 0) rotate(4deg);
      }
      90% {
        transform: translate3d(1px, -1px, 0) rotate(-3deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      #ver-pedido-btn-mobile img,
      #ver-pedido-btn img {
        animation: none !important;
        transition: none !important;
      }
    }

#contacto [data-aos] {
        opacity: 1 !important;
        transform: none !important;
      }

.btn-como-llegar-maps-img {
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  justify-content: center;
                  background: rgba(28, 28, 28, 0.95);
                  color: var(--text-primary);
                  font-weight: 600;
                  font-size: 1.13rem;
                  border: 1px solid var(--border-soft);
                  border-radius: 16px;
                  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
                  padding: 16px 24px 12px 24px;
                  text-decoration: none;
                  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s, color 0.18s;
                  margin-top: 0.5rem;
                  min-width: 200px;
                  max-width: 100%;
                  text-align: center;
                  gap: 7px;
                  position: relative;
                  overflow: hidden;
                  z-index: 2;
                  cursor: pointer;
                  outline: none;
                  user-select: none;
                }
                .btn-como-llegar-maps-img:hover, .btn-como-llegar-maps-img:focus {
                  box-shadow: 0 16px 32px rgba(0,0,0,0.55);
                  border-color: rgba(212, 175, 55, 0.6);
                  color: var(--primary-gold);
                  transform: translateY(-2px) scale(1.035);
                  text-decoration: none;
                }
                .btn-como-llegar-maps-img:active {
                  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
                  transform: scale(0.98);
                }
                .btn-como-llegar-maps-img .icono-maps-img {
                  margin-bottom: 2px;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  transition: filter 0.18s;
                }
                .btn-como-llegar-maps-img:hover .icono-maps-img img, .btn-como-llegar-maps-img:focus .icono-maps-img img {
                  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45)) brightness(1.08);
                }
                .btn-como-llegar-maps-img .texto-btn-maps-img {
                  font-size: 1.15rem;
                  font-weight: 800;
                  letter-spacing: 0.5px;
  color: var(--text-primary);
                  margin-bottom: 2px;
                  transition: color 0.18s;
                  display: inline-block;
                }
                .btn-como-llegar-maps-img:hover .texto-btn-maps-img, .btn-como-llegar-maps-img:focus .texto-btn-maps-img {
                  color: var(--primary-gold);
                }
                .btn-como-llegar-maps-img .direccion-btn-maps-img {
                  font-size: 1.01rem;
  color: var(--text-muted);
                  font-weight: 500;
                  margin-top: 2px;
                  line-height: 1.2;
                  opacity: 0.93;
                  transition: color 0.18s;
                }
                .btn-como-llegar-maps-img:hover .direccion-btn-maps-img, .btn-como-llegar-maps-img:focus .direccion-btn-maps-img {
                  color: var(--gold-light);
                }
                @media (max-width: 767px) {
                  .btn-como-llegar-maps-img {
                    font-size: 1rem;
                    padding: 11px 7px 8px 7px;
                    min-width: 120px;
                  }
                  .btn-como-llegar-maps-img .icono-maps-img img {
                    width: 22px;
                    height: 22px;
                  }
                  .btn-como-llegar-maps-img .direccion-btn-maps-img {
                    font-size: 0.97rem;
                  }
                }
                @media (max-width: 480px) {
                  .btn-como-llegar-maps-img {
                    font-size: 0.97rem;
                    padding: 8px 2vw 6px 2vw;
                  }
                  .btn-como-llegar-maps-img .icono-maps-img img {
                    width: 18px;
                    height: 18px;
                  }
                  .btn-como-llegar-maps-img .direccion-btn-maps-img {
                    font-size: 0.93rem;
                  }
                }

body.product-sheet-open {
  overflow: hidden;
}

body.product-sheet-open #alerta-agregado {
  z-index: 2600 !important;
}

.product-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 2400;
}

.product-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate3d(0, 110%, 0);
  transition: transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 2500;
  pointer-events: none;
}

.product-sheet-inner {
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  background: rgba(28, 28, 28, 0.98);
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-soft);
  border-bottom: 0;
  overflow: hidden;
}

.product-sheet-top {
  position: relative;
  padding: 10px 14px 8px 14px;
}

.product-sheet-handle {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 auto;
}

.product-sheet-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(34, 34, 34, 0.9);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.product-sheet-close:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.4);
  outline-offset: 3px;
}

.product-sheet-scroll {
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 14px 18px 16px 18px;
  -webkit-overflow-scrolling: touch;
}

.product-sheet-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-section);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-soft);
}

.product-sheet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-sheet-title {
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--text-primary);
}

.product-sheet-price {
  margin-top: 10px;
  font-weight: 950;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.product-sheet-incart {
  margin-top: 10px;
  display: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.product-sheet-desc {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-secondary);
  white-space: pre-wrap;
}

.product-sheet-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) 14px;
  border-top: 1px solid var(--border-soft);
  background: rgba(24, 24, 24, 0.98);
}

.product-sheet-actions {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.product-sheet-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(28, 28, 28, 0.95);
  border: 1px solid var(--border-soft);
}

.product-sheet-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(34, 34, 34, 0.9);
  color: var(--text-primary);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-sheet-qty-value {
  min-width: 34px;
  text-align: center;
  font-weight: 950;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.product-sheet-add {
  flex: 1 1 auto;
  height: 52px;
  border-radius: 18px;
  border: 0;
  background: var(--primary-gold);
  color: var(--text-on-gold);
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
  padding: 0 16px;
}

.product-sheet-go {
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(34, 34, 34, 0.92);
  color: var(--text-secondary);
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.product-sheet-go:hover {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.product-sheet-add:focus-visible,
.product-sheet-go:focus-visible,
.product-sheet-qty-btn:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.4);
  outline-offset: 3px;
}

body.product-sheet-open .product-sheet-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.product-sheet-open .product-sheet {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

@media (max-width: 575.98px) {
  .product-sheet-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-sheet-actions {
    width: 100%;
  }

  .product-sheet-scroll {
    max-height: 74vh;
    padding: 12px 14px 14px 14px;
  }

  .product-sheet-title {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-sheet,
  .product-sheet-overlay {
    transition: none !important;
  }
}

@keyframes modalIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
  #alerta-pedido-local { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 3000; align-items: center; justify-content: center; background: rgba(0,0,0,0.25); }
  #alerta-pedido-local .btn { margin-top: 10px; }
  @media (max-width: 480px) {
    #alerta-pedido-local > div { width: 90vw !important; padding: 28px 8vw 18px 8vw !important; }
  }

 .menu-intro {
   margin: 12px auto 18px;
   max-width: 680px;
   padding: 12px 14px;
   text-align: center;
   border: 1px solid rgba(255, 255, 255, 0.10);
   border-radius: 14px;
   background:
     radial-gradient(900px 220px at 50% 0%, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0) 60%),
     rgba(28, 28, 28, 0.72);
   box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
   backdrop-filter: blur(6px);
 }

 .menu-intro .menu-intro__tagline {
   margin: 0;
   font-family: 'Great Vibes', var(--font-heading);
   color: var(--text-secondary);
   font-weight: 400;
   font-size: 2.6rem !important;
   line-height: 1.25;
   letter-spacing: 0.02em;
   text-transform: none;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
 }

 .menu-intro__headline {
   margin: 8px 0 0;
   color: var(--text-primary);
   font-weight: 900;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .menu-intro__headline::after {
   content: '';
   display: block;
   width: 84px;
   height: 4px;
   margin: 12px auto 0;
   border-radius: 999px;
   background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 1), rgba(212, 175, 55, 0));
 }

 @media (max-width: 480px) {
   .menu-intro {
     margin: 10px auto 16px;
     padding: 11px 12px;
     border-radius: 12px;
   }

   .menu-intro .menu-intro__tagline {
     font-size: 2.1rem !important;
   }
 }

 .payment-prelude {
   margin: 10px auto 6px;
 }

 .payment-prelude__text {
   margin: 0;
   text-align: center;
   font-family: 'Great Vibes', var(--font-heading);
   color: var(--text-primary);
   font-weight: 400;
   font-size: 4.2rem;
   line-height: 1.1;
   letter-spacing: 0.02em;
   text-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
 }

 .payment-prelude__text::after {
   content: '';
   display: block;
   width: 110px;
   height: 4px;
   margin: 10px auto 0;
   border-radius: 999px;
   background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 1), rgba(212, 175, 55, 0));
 }

 @media (max-width: 480px) {
   .payment-prelude {
     margin: 6px auto 4px;
   }

   .payment-prelude__text {
     font-size: 2.8rem;
   }
 }

 .info-section {
   padding: 0;
 }

 .info-section__content {
   margin-top: 16px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   border-radius: 18px;
   background:
     radial-gradient(900px 260px at 50% 0%, rgba(212, 175, 55, 0.14), rgba(0, 0, 0, 0) 60%),
     rgba(28, 28, 28, 0.72);
   box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
   padding: 18px 18px;
 }

 .info-section__list {
   margin: 0;
   padding-left: 0;
   list-style: none;
   counter-reset: info;
 }

 .info-section__list li {
   position: relative;
   padding-left: 52px;
   margin: 14px 0;
   color: var(--text-secondary);
   font-weight: 600;
   letter-spacing: 0.02em;
   line-height: 1.7;
 }

 .info-section__list li::before {
   content: attr(value);
   position: absolute;
   left: 0;
   top: 2px;
   width: 38px;
   height: 38px;
   display: grid;
   place-items: center;
   border-radius: 12px;
   background: rgba(212, 175, 55, 0.14);
   border: 1px solid rgba(212, 175, 55, 0.35);
   color: var(--primary-gold);
   font-weight: 900;
   letter-spacing: 0.02em;
   box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
 }

 @media (max-width: 480px) {
   .info-section__content {
     border-radius: 16px;
     padding: 14px 14px;
   }

   .info-section__list li {
     padding-left: 46px;
     margin: 12px 0;
     font-weight: 600;
   }

   .info-section__list li::before {
     width: 34px;
     height: 34px;
     border-radius: 10px;
   }
 }
