:root {
  --regio-red: #9f1d10;
  --regio-orange: #e46f1d;
  --regio-cream: #f6e8cf;
  --regio-charcoal: #1b1715;
  --regio-brown: #3a2418;
  --menu-paper: rgba(255, 250, 242, 0.88);
  --menu-surface: #fffdf9;
  --menu-surface-strong: #fff6eb;
  --menu-border: rgba(139, 77, 33, 0.14);
  --menu-shadow: 0 20px 45px rgba(65, 31, 12, 0.12);
  --menu-shadow-hover: 0 24px 60px rgba(65, 31, 12, 0.18);
  --menu-price-col-width: 4.9rem;
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  --font-bowlby: 'Bowlby One SC', sans-serif;
  --font-staatliches: 'Staatliches', sans-serif;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 247, 224, 0.95), transparent 35%),
    linear-gradient(180deg, #fff7e9 0%, #f8dfb7 100%);
  color: #000;
}
.menu-lang-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff3dc 100%);
  color: var(--regio-red);
}
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #5f150c;
  border: 2px solid #5f150c;
  border-radius: 0.75rem;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 1200;
}

.skip-link:focus {
  transform: translateY(0);
}

.container.my-5 {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.menu-wrapper {
  padding: 16px 4px 10px;
}

.navbar {
  background: linear-gradient(
    90deg,
    rgba(254, 202, 81, 1) 0%,
    rgba(252, 243, 219, 1) 100%
  );
  backdrop-filter: blur(8px);
  border-bottom: 5px solid;
  border-image: linear-gradient(
    90deg,
    rgba(250, 0, 0, 1) 0%,
    rgba(255, 189, 189, 1) 100%
  );
  border-image-slice: 1;
}

.navbar-brand {
  font-family: var(--font-bowlby), sans-serif;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-size: 2em;
  font-weight: 400;
  font-style: normal;
  color: var(--regio-red) !important;
  text-shadow: 0.1em 0.1em rgba(228, 111, 29, 0.28);
}

.nav-link {
  color: var(--regio-red) !important;
  text-transform: uppercase;
  font-family: var(--font-bebas), sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s ease,
    text-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: solid underline 3px;
  text-shadow: #ffb347 1px 1px;
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 210, 122, 0.25);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.dropdown-menu {
  text-align: center;
  background-color: rgba(255, 248, 236, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(49, 27, 16, 0.14);
  border: 1px solid rgba(159, 29, 16, 0.08);
  border-radius: 1rem;
  padding: 0.55rem;
}

.dropdown-item {
  margin-bottom: 2px;
  border-radius: 0.8rem;
  padding: 0.7rem 0.9rem;
}

.dropdown-item:hover {
  background-color: rgba(228, 111, 29, 0.18);
}

.btn-nav {
  background: linear-gradient(135deg, #a61f12 0%, #cf5a1f 100%);
  text-transform: uppercase;
  font-family: var(--font-bebas), sans-serif;
  padding: 0.72rem 1.25rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(159, 29, 16, 0.2);
  cursor: pointer;
  color: #fff6e9;
  margin-left: 15px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.btn-nav:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(159, 29, 16, 0.28);
}

.btn-nav:active,
.btn-nav:focus {
  color: #ffffff;
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(159, 29, 16, 0.2);
}
.special {
  color: var(--regio-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal !important;
  font-family: var(--font-oswald), sans-serif;
  text-shadow: 0.04em 0.04em rgba(228, 111, 29, 0.22);
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 3px;
}

.btn-nav:focus-visible,
.boton:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.menu-lang-toggle:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 0 6px #111111;
  outline: none;
}

.top-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.menu-actions .dropdown {
  margin-bottom: 1.5rem;
}

.menu-actions .dropdown-menu {
  min-width: 100%;
}

.mobile-actions-toggle {
  display: none;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  border: 1px solid rgba(159, 29, 16, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #fff3dc 100%);
  box-shadow: 0 12px 24px rgba(87, 46, 20, 0.1);
  color: var(--regio-red);
}

.mobile-actions-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 0.16rem;
  border-radius: 999px;
  background: currentColor;
}

.top-container hr {
  flex-basis: 100%;
  margin: 0.35rem 0 0.5rem;
  border-color: rgba(159, 29, 16, 0.18);
}

.menu-title {
  width: 100%;
  margin: 0;
  font-family: var(--font-bowlby), sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--regio-red);
  text-shadow: 0.08em 0.08em rgba(228, 111, 29, 0.18);
}

.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff3dc 100%);
  color: var(--regio-red);
  text-transform: uppercase;
  font-family: var(--font-bebas), sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(159, 29, 16, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(87, 46, 20, 0.1);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.boton:hover {
  background: linear-gradient(135deg, #a61f12 0%, #cf5a1f 100%);
  color: #fffaf0;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(159, 29, 16, 0.2);
}

.boton:focus {
  color: #000000;
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(159, 29, 16, 0.18);
}
.menu-lang-toggle {
  min-height: 3.1rem;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 29, 16, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--regio-red);
  font-family: var(--font-bebas), sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(87, 46, 20, 0.08);
}

.menu-lang-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--regio-red);
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-column {
  display: grid;
  gap: 0;
}

.menu-section {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(139, 77, 33, 0.16);
  border-radius: 0;
  box-shadow: none;
  padding: 1.1rem 0 1.25rem;
  transition: none;
}

.menu-section .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  transform: none;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #af2416, #e46f1d);
  font-size: 0.8rem;
  font-family: var(--font-oswald), sans-serif;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 0;
  text-shadow: none;
  box-shadow: 0 12px 22px rgba(159, 29, 16, 0.22);
}

.menu-section > .menu-title {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 0.9rem;
  padding: 0 0 0.65rem;
  background: transparent;
  color: var(--regio-red);
  font-family: var(--font-bebas), sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  letter-spacing: 0.08em;
  text-shadow: none;
  box-shadow: inset 0 -1px 0 rgba(159, 29, 16, 0.14);
}

.menu-single,
.menu-row,
.menu-inline-prices,
.menu-price-grid {
  position: relative;
  z-index: 1;
}

.menu-single,
.menu-row {
  display: grid;
  align-items: center;
  gap: 0.85rem;
  padding: 0.78rem 0;
  border-bottom: 1px dashed rgba(139, 77, 33, 0.14);
}

.menu-single:last-child,
.menu-row:last-child {
  border-bottom: 0;
}

.menu-single {
  grid-template-columns: minmax(0, 1fr) auto;
}

.menu-row {
  grid-template-columns:
    minmax(0, 1fr)
    var(--menu-price-col-width)
    var(--menu-price-col-width);
}

.menu-row-header {
  margin-top: -0.1rem;
  padding-top: 0;
  border-bottom: 1px solid rgba(139, 77, 33, 0.18);
}

.menu-column-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-bebas), sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(58, 36, 24, 0.72);
  text-transform: uppercase;
  text-align: center;
}

.menu-single span:first-child,
.menu-row span:first-child,
.menu-inline-price-label,
.menu-price-grid-label {
  color: var(--regio-red);
  font-family: var(--font-oswald), sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  text-align: start;
  text-transform: uppercase;
}
.menu-single-price-only .special-price {
  text-align: right !important;
}

.menu-price,
.menu-price-grid-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--menu-price-col-width);
  min-width: var(--menu-price-col-width);
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--regio-red);
  font-family: var(--font-bebas), sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.menu-desc {
  margin: -0.15rem 0 0.85rem;
  color: rgba(58, 36, 24, 0.82);
  font-size: 0.92rem;
  text-align: start !important;
  line-height: 1.5;
  font-style: italic;
}

.menu-info {
  margin-top: 0.65rem;
  color: var(--regio-red);
  font-family: var(--font-bebas), sans-serif;
  text-align: start !important;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-inline-prices {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

.menu-inline-price-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px dashed rgba(139, 77, 33, 0.14);
}

.menu-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 0.7rem;
  margin-bottom: 0.8rem;
}

.menu-empalmes-row {
  grid-template-columns:
    minmax(0, 1fr)
    var(--menu-price-col-width)
    var(--menu-price-col-width);
}

.menu-empalmes-row span:first-child {
  font-size: 0.98rem;
}

.menu-price-grid-label {
  text-align: center;
  font-size: 0.9rem;
}

.meats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.meats-item {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 241, 222, 0.9);
  color: #774326;
  font-size: 0.84rem;
  font-family: var(--font-oswald), sans-serif;
  letter-spacing: 0.02em;
}

footer .container {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  backdrop-filter: none;
  padding-left: 0;
  padding-right: 0;
}
.navbar-collapse {
  flex-wrap: wrap;
}
.menu-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-left: 0.85rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 29, 16, 0.16);
  background: linear-gradient(135deg, #fffaf2 0%, #fff0d6 100%);
  color: #9f1d10 !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(87, 46, 20, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.menu-lang-switch:hover,
.menu-lang-switch:focus {
  background: linear-gradient(135deg, #ffffff 0%, #fff6e6 100%);
  color: #9f1d10 !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(87, 46, 20, 0.12);
}

@media (max-width: 991.98px) {
  .menu-lang-switch {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .menu-lang-switch {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  /* LEFT (logo block) */
  .navbar .container > .d-flex {
    justify-self: start;
  }

  /* CENTER (menu) */
  .navbar-nav {
    justify-self: center;
  }

  /* RIGHT (buttons) */
  .navbar-collapse > .d-flex {
    justify-self: end;
  }

  /* IMPORTANT: remove Bootstrap push */
  .navbar-nav.mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .btn-nav {
    padding: 0.6rem 1.1rem;
  }
}

@media (min-width: 992px) {
  .menu-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .menu-layout {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .menu-row span {
    text-align: start;
  }

  .menu-single span {
    text-align: start;
  }
}
.menu-desc.special {
  text-align: start !important;
}

@media (max-width: 768px) {
  .container.my-5 {
    padding: 1rem 0.85rem;
  }

  .navbar-brand {
    font-size: 1.55rem;
  }

  .top-container {
    justify-content: stretch;
  }

  .mobile-actions-toggle {
    display: inline-flex;
    margin-inline: auto;
  }

  .menu-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      margin-top 0.2s ease;
  }

  .menu-actions[data-open='true'] {
    max-height: 18rem;
    opacity: 1;
    margin-top: 0.3rem;
  }

  .boton,
  .menu-lang-toggle,
  .menu-actions .boton,
  .menu-actions .menu-lang-toggle {
    width: 100%;
    margin-bottom: 0 !important;
  }

  .menu-section {
    padding: 1rem 0 1.1rem;
  }

  .menu-section > .menu-title {
    margin: 0 0 0.8rem;
    padding: 0 0 0.55rem;
    font-size: 1.45rem;
  }

  .menu-row,
  .menu-single {
    gap: 0.65rem;
  }

  .menu-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.55rem;
  }

  .menu-price-grid-label,
  .menu-price-grid-price {
    text-align: center;
    justify-content: center;
  }

  .menu-price-grid-label {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .menu-price-grid-price {
    min-width: 0;
    padding-inline: 0.3rem;
  }

  .menu-item {
    flex-direction: column;
  }

  .menu-item-price {
    margin-top: 4px;
  }
}

@media (max-width: 576px) {
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --menu-price-col-width: 4.1rem;
  }

  .menu-title {
    font-size: 2.1rem;
  }

  .btn-nav {
    margin-left: 0;
  }

  .menu-price {
    padding-inline: 0.62rem;
  }
}
