html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--bg-color);
  cursor: default;
}

a, button, input[type="button"], input[type="submit"], a:hover, button:hover, a:active, button:active {
  cursor: default !important;
}

body {
  color: var(--text-color);
  font-family: var(--font-body);
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
}

/* Header Superior (Night Mode) */
.sticky-top-section {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-brutalist {
  width: 100%;
  height: 80px; /* Altura unificada */
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
}

.header-logo {
  max-width: 110px; /* Reducido para una estética más limpia */
  height: auto;
  object-fit: contain;
}

/* Marquesina de Ofertas/Horario */
.ticker-orange {
  width: 100%;
  background-color: #ff6600; /* Naranja intenso */
  color: #ffea00; /* Amarillo */
  padding: 3px 0 1px 0;
  border-top: 1px solid #000;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Menu body wrapper */
.menu-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #c1bca3; /* Tonos caqui/beige crudos basados en StreetXO */
}

/* ====================
   FOOTER (STREETXO STYLE)
   ==================== */
.footer-divider-zigzag {
  width: 100%;
  height: 25px;
  background-color: #2a6156; /* Green base */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='25'%3E%3Cpolygon points='0,25 15,0 30,25' fill='%23e35a31'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}

.footer-sticker-wrap {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  z-index: 100;
}

.footer-sticker {
  position: absolute;
  top: -20px;
  right: 60px;
  background-color: #fff;
  color: #000;
  font-family: var(--font-display);
  font-size: 16px;
  padding: 5px 15px;
  transform: rotate(9deg);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: normal;
  border: 1px solid #000;
}


.footer-sticker-img {
  position: absolute;
  top: -20px;
  right: -5px;
  width: 100px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 101;
  animation: spinRight 15s linear infinite;
}

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

/* ================================
   WHATSAPP FLOATING ACTION BUTTON
   ================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}


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


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

.catering-popup {
  background: #f5f0e8;
  border: 3px solid #000;
  max-width: 400px;
  width: 100%;
  padding: 32px 28px 28px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

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

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

.catering-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;
}

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

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

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

.catering-list li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.catering-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;
}

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

.catering-deco-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.92;
}

.new-footer-brutal {
  background-color: #000;
  color: #fff;
  font-family: var(--font-body); 
  font-weight: 800; /* Arial Bold/Black look */
  text-align: center;
  padding: 50px 20px 20px 20px;
}

.new-footer-brutal p {
  margin: 1px 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.footer-block {
  margin-bottom: 30px;
}

.footer-copy {
  margin-top: 50px;
  font-size: 14px;
}

.footer-logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin: -10px 0;
}

.ticker-bottom {
  background-color: #b5b19e; /* Beige dirty base */
  color: #000;
  padding: 4px 0 2px 0;
  overflow: hidden;
  position: relative;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track.track-orange {
  animation: marquee-infinite 16s linear infinite;
}

.marquee-track.track-beige {
  animation: marquee-infinite-right 12s linear infinite;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}

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

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