/* NAVBAR TABS */
.tabs-container {
  width: 100%;
  display: flex;
  height: 55px;
}
.tabs-container::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 1;
  border: none;
  background-color: #c1bca3; /* Beige del menú para que la activa se funda con el fondo */
  color: #555550; /* Mismo gris oscuro tipográfico de los platos */
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.5px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 5px 0 5px;
  transition: opacity 0.2s, background-color 0.2s;
}

/* Colores específicos para cuando la pestaña está ACTIVA (sin clase .inactive) */
.tab-btn[data-tab="platos"]:not(.inactive) {
  background-color: var(--accent-color); /* Naranja Coral */
  color: #fff;
}

.tab-btn[data-tab="extras"]:not(.inactive) {
  background-color: var(--tab-green); /* Verde Teal */
  color: #fff;
}

.tab-btn[data-tab="bebidas"]:not(.inactive) {
  background-color: #333; /* Mantemos un gris oscuro para bebidas */
  color: #fff;
}

.tab-btn.inactive {
  background-color: #a8a38a; /* Beige apagado para las inactivas */
  color: #6b685c;
}

/* CATEGORY DOM CONTAINERS */
.category-container {
  display: none;
  flex-direction: column;
  width: 100%;
}
.category-container.active {
  display: flex;
}

/* BRUTALIST ITEM ROW */
.brutal-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  cursor: default;
  border-bottom: none;
  transition: background-color 0.2s;
  background-color: transparent;
}
.brutal-item:hover {
  background-color: transparent;
}

.brutal-item-text {
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
}

.brutal-header-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2px;
}

.brutal-h2 {
  font-size: 42px;
  font-family: var(--font-display);
  color: #555550; /* Color gris oscuro topo referenciado */
  line-height: 0.85;
  margin: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0px transparent;
}

/* Badges encapsulados duros */
.brutal-price-box {
  border: 3px solid #555550;
  border-radius: 6px;
  padding: 0px 6px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  color: #555550;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  white-space: nowrap;
}

.brutal-badge-box {
  background-color: #ff1500; /* Fondo rojo estricto, super sólido */
  color: #fff; /* Tinta blanca para gritar "NUEVO" */
  border: 3px solid #ff1500;
  border-radius: 6px;
  padding: 0px 6px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0px;
}

.brutal-badge-box.green-badge {
  background-color: var(--tab-green);
  border-color: var(--tab-green);
}

.brutal-badge-box.orange-badge {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Highlights para proteínas */
.highlight-orange {
  background-color: var(--accent-color);
  color: #fff;
  padding: 1px 4px;
  border-radius: 4px;
}

.highlight-green {
  background-color: var(--tab-green);
  color: #fff;
  padding: 1px 4px;
  border-radius: 4px;
}

.brutal-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800; /* Extra bold */
  color: #60605a;
  line-height: 1.25;
  margin-top: 10px; /* Ya expandido */
  max-width: 95%;
  max-height: none; /* Quitamos el colapso por defecto */
  overflow: visible;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.brutal-item.active .brutal-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.brutal-ingred {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: none; /* Minúsculas naturales */
  color: #60605a;
  margin-top: 4px;
  letter-spacing: 0px;
  max-height: none;
  overflow: visible;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.brutal-item.active .brutal-ingred {
  max-height: 50px;
  opacity: 1;
  margin-top: 4px;
}

/* En escritorio mantenemos visibilidad total siempre */
@media (min-width: 1024px) {
  .brutal-desc, .brutal-ingred {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 8px !important;
    overflow: visible !important;
  }
}

/* EXPANDING EDGE-TO-EDGE IMAGE */
.brutal-img-wrap {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: var(--accent-color); /* Fondo rojo brillante de corte */
  transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1); /* Curva super sharp */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* La clase que jQuery/JS agrega al hacer click */
.brutal-item.active .brutal-img-wrap {
  max-height: 800px; /* Suficiente para abrir foto ancha */
}

.brutal-img-wrap img,
.brutal-img-wrap video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* --- ANIMACIÓN TERREMOTO --- */
@keyframes earthquake {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-2px, -1px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.shake-active {
  animation: earthquake 0.3s cubic-bezier(.36,.07,.19,.97) both;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* ================================
   HAMBURGER BUTTON
   ================================ */
.hamburger-btn {
  width: 45px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  z-index: 1001;
  position: absolute;
  left: 20px;
}

.hamburger-btn span {
  width: 32px;
  height: 4px;
  background-color: var(--text-color);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

/* ================================
   HEADER META INFO
   ================================ */
.header-meta {
  position: absolute;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px; /* Más espacio */
  font-family: var(--font-display);
  color: var(--text-color);
  pointer-events: none;
}

.header-tag {
  font-size: 25px; /* Gigantes */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1.5px solid var(--text-color);
  line-height: 1;
  display: inline-block;
}

.header-tag.accent-orange {
  background-color: var(--accent-color);
  color: #fff;
  border-color: #fff;
}

.header-tag.accent-red {
  background-color: #ff2e00;
  color: #fff;
  border-color: #fff;
  cursor: default; /* Indicar que es clickeable */
  pointer-events: all; /* Asegurar que recibe clics */
}

/* ================================
   WAZE MAP POPUP OVERLAY
   ================================ */
.map-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85); /* Fondo más oscuro */
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.map-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.map-popup {
  background: #f5f0e8;
  border: 5px solid #000;
  max-width: 800px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-overlay.visible .map-popup {
  transform: scale(1);
}

.map-header {
  padding: 20px;
  background-color: #000;
  color: #fff;
}

.map-badge {
  background: var(--accent-color);
  color: #fff;
  padding: 2px 8px;
  font-family: var(--font-display);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.map-title {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0;
  line-height: 1;
}

.map-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: default;
  z-index: 10;
}

.map-iframe-wrapper {
  width: 100%;
  height: 400px; /* Altura controlada para el recorte */
  background: #000;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.map-iframe-wrapper iframe {
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(100%);
  width: 110%; /* Más ancho para ocultar bordes laterales */
  height: 600px; /* Más alto para ocultar encabezado y pie de Google */
  position: absolute;
  top: -100px; /* Oculta la barra de búsqueda superior */
  left: -5%; /* Centra el recorte horizontal */
  pointer-events: auto;
}

.map-footer {
  padding: 15px 20px;
  font-family: var(--font-display);
  font-size: 16px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.header-lang {
  font-size: 14px; /* Más grandes */
  letter-spacing: 1px;
  display: flex;
  gap: 8px;
  margin-left: 5px;
}

.header-lang span {
  opacity: 0.4;
}

/* Visibilidad condicional: Solo desktop en el header principal. En móvil se oculta para dejar paso solo al logo. */
@media (max-width: 1023px) {
  header.header-brutalist .header-meta {
    display: none !important;
  }
}

/* Pero forzamos visibilidad en el menú lateral y mantenemos el tamaño grande pedido */
.menu-top-bar .header-meta {
  display: flex !important;
  position: static;
  pointer-events: all;
  color: #fff; /* Texto blanco en el menú negro */
  gap: 15px;
}

.menu-top-bar .header-tag {
  font-size: 25px; /* Tamaño grande pedido para el menú */
  padding: 5px 12px;
  border-color: #fff;
  color: #fff;
}

.menu-top-bar .lang-btn {
  font-size: 25px; /* Igualamos tamaño de idioma al del tag ARAURE */
  padding: 0 8px;
}

/* Estilos para los botones de idioma */
.header-lang {
  display: flex;
  gap: 5px;
  margin-left: 10px;
  pointer-events: all;
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--font-display);
  font-size: 16px;
  cursor: default;
  padding: 0 4px;
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s;
}

.lang-btn.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: scale(1.1);
}

.lang-btn:hover {
  opacity: 0.8;
}

/* Adaptación de colores para el menú lateral oscuro */
.menu-top-bar .header-tag {
  border-color: #fff;
  color: #fff;
}

/* Responsividad para móviles pequeños */
@media (max-width: 650px) {
  .header-tag:first-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-meta {
    gap: 4px;
    right: 10px;
  }
  .header-tag {
    font-size: 10px;
    padding: 2px 4px;
  }
}

/* ================================
   MENU OVERLAY (STREETXO STYLE)
   ================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #c1bca3; /* Fondo beige del menú aplicado */
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px; /* Altura unificada */
  background-color: #000;
  color: #fff;
}

.menu-close-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: default;
  padding: 0;
  display: flex;
  align-items: center;
}

.menu-rows {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Marquesinas debajo del header */
}

.menu-row {
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  padding: 25px 0; /* Altura aumentada como se solicitó */
  /* border-bottom removed for seamless flow */
  cursor: default;
}

/* MARQUEE INNER TRACK */
.menu-marquee-inner {
  display: flex;
  align-items: center; /* Asegura que el texto y las imágenes estén alineados */
  white-space: nowrap;
  gap: 60px; /* Aumentado para dar aire a los nuevos iconos gigantes */
  padding: 0 20px;
  will-change: transform;
  font-size: clamp(70px, 15vw, 120px); /* Movido aquí para herencia */
  pointer-events: none; /* Dejamos que el <a> capture el click */
}

.menu-marquee-inner span {
  font-family: var(--font-display);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.menu-marquee-img {
  height: 0.8em; /* Escala con el texto */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.2));
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.img-spin-left {
  animation: spinLeft 4s linear infinite;
}

@keyframes spinLeft {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.menu-row:hover .menu-marquee-img:not(.img-spin-left) {
  transform: rotate(10deg) scale(1.1);
}

.menu-row:hover .img-spin-left {
  animation-duration: 1.5s; /* Acelera al hacer hover */
}

/* MOBILE REFINEMENT: Bigger icons & tighter spacing */
@media (max-width: 768px) {
  .menu-marquee-inner {
    gap: 20px; /* Espacio reducido entre texto e iconos */
  }
  
  .menu-marquee-img {
    height: 1.1em; /* Iconos más grandes en móvil */
  }
}

/* Animations - INCREASED SPEED (from 30s to 15s) */
.marquee-left {
  animation: menuMarqueeLeft 15s linear infinite;
}

.marquee-right {
  animation: menuMarqueeRight 15s linear infinite;
}

/* Hover: Speed up even more */
.menu-row:hover .menu-marquee-inner {
  animation-duration: 8s;
}

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

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

/* Row Specific Colors & Contrast */
.row-orange { 
  background-color: #ff6600; 
  color: #000; 
}
.row-white { 
  background-color: #c1bca4; /* Updated from #fff to beige requested */
  color: #000; 
}
.row-green { 
  background-color: #2a6156; 
  color: #fff; 
}
.row-gray { 
  background-color: #555550; 
  color: #fff; 
}

/* Stencils are removed in favor of Marquee but keeping logic if needed */
.menu-stencil { display: none; }

/* Body Lock */
body.menu-open {
  overflow: hidden;
}

/* ================================
   DESKTOP SPLIT VIEW (HOVER)
   ================================ */
@media (min-width: 1024px) {
  .menu-layout-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    background-color: #c1bca3; /* Fondo beige consistente */
  }

  .menu-section {
    width: 50% !important;
    border-right: none;
  }

  /* El aside de previsualización se queda pegado y ocupa el 50% */
  .desktop-preview {
    width: 50%;
    position: sticky;
    top: 130px; /* Ajustar según altura de header/tabs */
    height: calc(100vh - 130px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: #000;
    overflow: hidden;
  }

  .preview-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .preview-content img,
  .preview-content video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo el área */
    display: block;
  }

  .preview-placeholder {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    opacity: 0.2;
    text-transform: uppercase;
  }

  /* Ocultamos el acordeón móvil en escritorio */
  .brutal-img-wrap {
    display: none !important;
  }

  .brutal-item {
    transition: background-color 0.2s, padding-left 0.2s;
  }

  /* Efecto visual al pasar el cursor en la lista */
  .brutal-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
  }

  .brutal-item.is-hovered .brutal-h2 {
    color: var(--accent-color);
  }
}

/* Fallback: ocultar el panel de previsualización en móvil */
@media (max-width: 1023px) {
  .desktop-preview {
    display: none !important;
  }
}
/* ================================
   ORDER NOTIFICATIONS (BRUTALIST)
   ================================ */
.brutal-notification {
  position: fixed;
  bottom: 85px; /* ENCIMA DEL TICKER INFERIOR */
  left: 20px;
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  padding: 12px 18px;
  z-index: 9999;
  max-width: 320px;
  transform: translateX(-150%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  pointer-events: none; /* No para clicks accidentalmente */
  contain: layout; /* Evita que afecte al layout global */
}

.brutal-notification.visible {
  transform: translateX(0);
}

.notif-badge {
  background-color: #ff6600; /* Naranja Santo Padre */
  color: #fff;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  padding: 2px 8px;
  margin-bottom: 6px;
  align-self: flex-start;
  line-height: 1;
}

.notif-content {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.notif-prefix {
  opacity: 0.7;
  display: block;
}

.notif-items {
  display: block;
  text-transform: uppercase;
  color: #ff2e00; /* Rojo acento para el producto */
}

.notif-method {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  color: #000;
  opacity: 0.6;
  font-style: italic;
}

/* ================================
   COMBOS FIXED BUTTON
   ================================ */
.combos-fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%); /* EMPIEZA FUERA DE PANTALLA */
  background-color: #000;
  color: #fff;
  border: 3px solid #000; /* Borde negro simple */
  border-right: none;
  border-radius: 8px 0 0 8px; /* Look de pestaña/tab */
  padding: 15px 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2.5px;
  cursor: default;
  z-index: 9998;
  display: flex;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s;
  user-select: none;
  box-shadow: -4px 0 10px rgba(0,0,0,0.2); /* Sombra para profundidad */
}

.combos-fixed-btn span {
  pointer-events: none;
}

/* Optimización Mobile */
@media (max-width: 480px) {
  .combos-fixed-btn {
    font-size: 18px;
    padding: 12px 10px;
    letter-spacing: 1.5px;
  }
}

.combos-fixed-btn.visible {
  transform: translateY(-50%) translateX(0); /* ENTRA AL APARECER CATERING */
}

.combos-fixed-btn:hover {
  background-color: #ff6600;
  color: #000;
}

/* ================================
   COMBOS POPUP OVERLAY
   ================================ */
.combos-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75); /* Mismo que catering */
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.combos-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.combos-popup {
  background: #f5f0e8;
  border: 3px solid #000;
  max-width: 400px; /* Tamaño "Normal" como catering */
  width: 100%;
  padding: 32px 28px 28px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  overflow-y: auto;
  max-height: 90vh;
}

.combos-overlay.visible .combos-popup {
  transform: translateY(0);
}

.combos-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: default;
  line-height: 1;
  color: #000;
}

.combos-badge {
  display: inline-block;
  background: #ff6600;
  color: #ffea00;
  font-family: var(--font-display);
  font-size: 13px;
  padding: 3px 10px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.combos-popup-title {
  font-family: var(--font-display);
  font-size: 42px; /* Mismo que catering */
  line-height: 1;
  color: #000;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.combos-popup-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.5;
}

.combos-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: #333;
}

.combo-list-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

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

.combo-item-name {
  font-weight: 800;
  color: #ff6600;
  font-size: 16px;
  margin-bottom: 4px;
}

.combo-item-details {
  font-size: 13px;
  opacity: 0.8;
}

.combo-item-price {
  font-weight: 900;
  color: #000;
  font-size: 15px;
  margin-top: 4px;
  background: #ffea00;
  display: inline-block;
  padding: 1px 4px;
  align-self: flex-start;
}

.combos-cta {
  display: block;
  background: #25D366;
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  padding: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  cursor: default;
  z-index: 2;
  position: relative;
}

.combos-cta:hover {
  background: #1ebe59;
}

/* Responsive fixes */
@media (max-width: 600px) {
  .combos-popup-title { font-size: 34px; }
  .combos-popup { padding: 24px 20px 20px; }
}

/* ================================
   MENU SOCIALS
   ================================ */
.menu-socials {
  padding: 20px 20px 100px; /* Mas padding abajo para subir el icono */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: auto; 
  width: 100% !important;
  box-sizing: border-box;
}

.social-link {
  color: #555550 !important;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ================================
   TACOS CLUB CORNER STICKER
   ================================ */
.tacos-club-sticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background-color: var(--tab-green); /* Verde de la marca */
  border: none;
  cursor: default;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  transform: translate(-100%, 100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 0;
}

.tacos-club-sticker.visible {
  transform: translate(0, 0);
}

.tacos-club-sticker .sticker-text {
  position: absolute;
  bottom: 52px; /* Aún más arriba */
  left: 4px;   /* Aún más a la izquierda */
  font-family: var(--font-display);
  font-weight: normal; /* No negrita como se solicitó */
  font-size: 12px;
  line-height: 1;
  text-align: left;
  color: #fff; /* Cambio a blanco para contraste con fondo verde */
  transform: rotate(45deg);
  transform-origin: bottom left;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ================================
   TACOS CLUB POPUP
   ================================ */
.tacos-club-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000000; /* Asegurar que está por encima de todos los overlays (incluyendo el mapa 999999) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.tacos-club-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.tacos-club-popup {
  background: #c1bca3; /* Color beige del menú */
  width: 100%;
  max-width: 450px;
  border: 4px solid #555550; /* Gris topo del menú */
  padding: 40px 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.tacos-club-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 900;
  cursor: default;
  color: #000;
}

.tacos-club-badge {
  display: inline-block;
  background: var(--tab-green); /* Verde de la marca */
  color: #fff;
  padding: 4px 12px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.tacos-club-title {
  font-family: var(--font-display);
  font-size: 38px; /* Un poco más pequeño para acomodar el texto largo */
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #555550; /* Gris topo del menú */
}

.tacos-club-desc {
  font-family: var(--font-main);
  font-size: 16px;
  margin-bottom: 25px;
  color: #333; /* Gris muy oscuro para lectura */
}

/* FORM STYLES */
.tacos-club-form .form-group {
  margin-bottom: 15px;
}

.tacos-club-form input[type="text"],
.tacos-club-form input[type="email"],
.tacos-club-form input[type="tel"] {
  width: 100%;
  padding: 14px;
  border: 3px solid #000;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  box-sizing: border-box;
  color: #000;
  background: #f9f9f9;
}

.form-privacy {
  margin: 20px 0;
  font-family: var(--font-main);
  font-style: italic;
  font-size: 13px;
  color: #000;
}

.form-privacy label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.tacos-club-submit {
  width: 100%;
  background: var(--tab-green); /* Verde de la marca */
  color: #fff;
  border: none;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  cursor: default;
  text-transform: uppercase;
  transition: background 0.2s;
}

.tacos-club-submit:hover {
  background: var(--accent-color); /* Naranja coral */
}

.tacos-club-submit.submitting {
  background: #555550 !important;
  color: #fff !important;
  pointer-events: none;
  opacity: 0.8;
  cursor: wait;
}

.tacos-club-success {
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: #1ebe59;
}

/* Styling for the close button on the sticker */
.tacos-club-sticker-close {
  position: absolute;
  top: 15px;
  left: 5px; /* Más a la izquierda */
  background: transparent;
  color: #fff; /* Cambio a blanco para que se vea sobre el verde */
  width: 24px;
  height: 24px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  z-index: 10001;
  cursor: default;
  transition: transform 0.2s;
}

.tacos-club-sticker-close:hover {
  transform: scale(1.2);
  color: #fff; /* Cambio a blanco en hover para feedack visual */
}

/* Responsividad para Tacos Club (Desktop & Mobile) */
@media (max-width: 480px) {
  .tacos-club-sticker {
    width: 120px;
    height: 120px;
  }
  .tacos-club-sticker .sticker-text {
    font-size: 10px;
    bottom: 40px;   /* Más arriba */
    left: 4px;     /* Aún más a la izquierda para mobile */
  }
  .tacos-club-sticker-close {
    top: 12px;
    left: 4px; /* Más a la izquierda para mobile */
    width: 20px;
    height: 22px;
    font-size: 18px;
  }
  .tacos-club-popup {
    padding: 35px 20px 25px;
    width: 95%;
  }
  .tacos-club-title {
    font-size: 34px;
  }
}
