:root {
  /* ========== GLOBAL ========== */
  --color-white: #ffffff;
  --color-black: #0b0b0b;
  --color-cream: #fce8a8;
  --color-yellow: #ffd000;
  --color-red: #d71920;
  --color-blue: #1e5aa8;
  --color-pink: #f4a6a6;

  --font-logo-style: 'Bebas Neue', sans-serif;
  --font-heading: 'Anton', sans-serif;
  --font-subheading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* ========== BODY ========== */
  --body-bg: #fcf9f1;
  --body-text: #0b0b0b;

  /* ========== NAVBAR ========== */
  --nav-bg: #0b0b0b;
  --nav-link: #ffffff;
  --nav-link-hover: #ffd000;
  --nav-logo-text: #ffffff;
  --logo-title-hover: #ffffff;
  /* ========== HERO ========== */
  --hero-bg: #0b0b0b;
  --hero-title: #ffffff;
  --hero-text: #ffffff;
  --hero-accent: #ffd000;

  /* ========== BUTTONS ========== */
  --btn-primary-bg: #d71920;
  --btn-primary-text: #ffffff;
  --btn-primary-hover-bg: #b80000;

  --btn-secondary-bg: #1e5aa8;
  --btn-secondary-text: #ffffff;
  --btn-secondary-hover-bg: #174985;

  /* ========== ABOUT SECTION ========== */
  --about-bg: #ffffff;
  --about-title: #0b0b0b;
  --about-text: #1a1a1a;
  --about-accent: #d32f2f;

  /* ========== FEATURES SECTION ========== */
  --features-bg: #0b0b0b;
  --features-card-bg: #1a1a1a;
  --features-title: #ffffff;
  --features-text: #e5e5e5;
  --features-icon: #f4b400;

  /* ========== MENU SECTION ========== */
  --menu-bg: #ffffff;
  --menu-title: #0b0b0b;
  --menu-card-bg: #ffffff;
  --menu-card-border: #e5e5e5;
  --menu-card-title: #0b0b0b;
  --menu-card-text: #1a1a1a;

  /* ========== CTA SECTION ========== */
  --cta-bg: #0b0b0b;
  --cta-title: #ffffff;
  --cta-text: #ffffff;
  --cta-accent: #d32f2f;

  /* ========== LOCATIONS SECTION ========== */
  --locations-bg: #fce8a8;
  --locations-title: #0b0b0b;
  --locations-text: #1a1a1a;
  --locations-icon: #d32f2f;

  /* ========== FOOTER ========== */
  --footer-bg: #0b0b0b;
  --footer-title: #ffffff;
  --footer-text: #e5e5e5;
  --footer-link: #ffffff;
  --footer-link-hover: #ffd000;
}

/* ========================================
   Global Base Styles
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}
body {
  background-color: var(--body-bg);
  color: var(--body-text);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.btn:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 208, 0, 0.45);
}

/* ========================================
   Shared Header and Navigation
======================================== */
.site-header {
  background-color: var(--nav-bg);
  min-height: 96px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .navbar {
  min-height: 96px;
  padding-block: 0.6rem;
}
.logo {
  width: clamp(84px, 11vw, 150px);
  height: auto;
  object-fit: contain;
}
.nav-logo-text {
  color: var(--nav-logo-text);
  font-family: var(--font-logo-style);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.nav-logo-text:hover {
  color: var(--logo-title-hover);
  text-shadow:
    #fcf9f1 0px 0px 5px,
    #f4b400 0px 0px 10px;
}
.site-header .nav-link {
  color: var(--nav-link);
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-link.active {
  color: var(--nav-link-hover);
}
.site-header .nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.55rem;
}
.language-switch {
  display: flex;
  align-items: center;
}

.site-header .language-switch-link {
  align-items: center;
  border: 2px solid rgba(255, 208, 0, 0.72);
  border-radius: 6px;
  color: var(--color-yellow);
  display: inline-flex;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 34px;
  min-width: 44px;
  padding: 0.38rem 0.72rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-header .language-switch-link:hover,
.site-header .language-switch-link:focus-visible {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ========================================
   Homepage About Section
======================================== */
.about-section {
  background-color: var(--about-bg);
  color: var(--about-text);
}
.about-section-tag {
  color: var(--about-accent);
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 700;
}
.about-section h2 {
  color: var(--about-title);
  font-family: var(--font-heading);
  line-height: 1.08;
}
.about-section p {
  color: var(--about-text);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-section-btn {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-subheading);
  font-weight: 700;
  min-height: 44px;
  text-transform: uppercase;
}
.about-section-img {
  aspect-ratio: 4 / 3;
  border: 4px solid #ffffff;
  box-shadow: 0 18px 40px rgba(11, 11, 11, 0.16);
  object-fit: cover;
  width: 100%;
}

/* ========================================
   Homepage Feature Strip
======================================== */

.features {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 42%),
    var(--color-black) !important;
  border-block: 5px solid var(--color-yellow);
}

.features .row {
  row-gap: 1.5rem;
}

.features .col-md-3 {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding-inline: clamp(1rem, 2vw, 1.5rem);
}

.features .col-md-3:last-child {
  border-right: 0;
}

.features h5 {
  color: var(--color-yellow);
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.features p {
  color: #f5f5f5;
  margin-bottom: 0;
}

/* ========================================
   Shared Footer and Contact Section
======================================== */
.site-footer {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), transparent 36%),
    var(--footer-bg);
  border-top: 5px solid var(--color-yellow);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.25rem;
}
.footer-brand {
  align-items: center;
  color: var(--footer-title);
  display: inline-flex;
  gap: 1rem;
  text-decoration: none;
}
.footer-brand:hover,
.footer-brand:focus-visible {
  color: var(--footer-link-hover);
}
.footer-logo {
  flex: 0 0 auto;
  height: 92px;
  object-fit: contain;
  width: 92px;
}
.footer-brand span {
  font-family: var(--font-logo-style);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}
.footer-copy {
  color: var(--footer-text);
  line-height: 1.7;
  margin: 1rem 0 0;
  max-width: 440px;
}
.footer-heading {
  color: var(--color-yellow);
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0;
}
.footer-links a {
  color: var(--footer-link);
  font-weight: 600;
  text-decoration: none;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--footer-link-hover);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  width: 48px;
}
.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #000000;
  transform: translateY(-2px);
}
.footer-socials svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}
.footer-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--footer-text);
  font-size: 0.95rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.25rem;
}

/* ========================================
   Homepage Hero Section
======================================== */
.hero {
  min-height: calc(100vh - 96px);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.86) 31%,
      rgba(0, 0, 0, 0.3) 66%,
      rgba(0, 0, 0, 0.84) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.05) 44%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url('/img/chicharron_carnitas_tripas.webp') right 80% / cover no-repeat;
}
.hero-inner {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 96px);
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-copy {
  max-width: 720px;
  width: min(100%, 720px);
}
.hero-tag {
  color: var(--hero-accent);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.hero-title {
  color: var(--hero-title);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.9);
}
.hero-title span,
.hero-title strong {
  display: block;
  font: inherit;
}
.hero-title strong {
  color: var(--color-red);
}
.hero-rule {
  background: var(--hero-accent);
  height: 5px;
  margin: 1rem 0 1.15rem;
  max-width: 590px;
  width: 100%;
}
.hero-p {
  color: var(--hero-text);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 1.6rem;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}
.hero-btn {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: var(--font-subheading);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 700;
  gap: 0.8rem;
  justify-content: center;
  min-height: 58px;
  min-width: 200px;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-btn-primary {
  background: var(--btn-primary-bg);
  border: 2px solid var(--btn-primary-bg);
  color: #ffffff;
}
.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background: var(--btn-primary-hover-bg);
  border-color: var(--btn-primary-hover-bg);
  color: #ffffff;
}
.hero-btn-outline {
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid var(--hero-accent);
  color: #ffffff;
}
.hero-btn-outline:hover,
.hero-btn-outline:focus-visible {
  background: var(--hero-accent);
  color: #000000;
}
.hero-btn-icon {
  fill: none;
  flex: 0 0 auto;
  height: 1.45em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 1.45em;
}
.hero-features {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  max-width: 760px;
}
.hero-feature {
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  min-height: 138px;
  padding: 0 1.25rem;
  text-align: center;
}
.hero-feature:first-child {
  padding-left: 0;
}
.hero-feature:last-child {
  border-right: 0;
  padding-right: 0;
}
.hero-feature-icon {
  color: var(--hero-accent);
  fill: none;
  height: 58px;
  margin-bottom: 0.8rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  width: 58px;
}
.hero-feature-icon-red {
  border-color: var(--color-red);
  color: var(--color-red);
}
.hero-feature h2 {
  color: #ffffff;
  font-family: var(--font-subheading);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.hero-feature p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.panel-hero {
  aspect-ratio: 16 / 7;
  background: #151515;
  display: block;
  object-fit: fill;
  width: 100%;
  margin-bottom: 15px;
}
/* ========================================
   Homepage Daily Menu Section
======================================== */

.daily-menu-section {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 42%),
    var(--color-black);
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.daily-menu-header {
  margin-inline: auto;
  max-width: 720px;
}

.daily-menu-header .section-label {
  color: var(--color-yellow);
  font-family: var(--font-subheading);
  font-weight: 700;
}

.daily-menu-header .section-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.daily-card-content {
  display: flex;
  flex: 1 1 auto;
  height: 100%;
}

.daily-menu-card {
  background: #ffffff;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
}

.daily-menu-card:not(.daily-menu-card-cta) {
  border-top: 6px solid var(--color-yellow) !important;
}

.daily-card-title {
  color: var(--color-black);
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  padding: 1rem 1rem 0;
  text-transform: uppercase;
}

.daily-card-text {
  color: var(--about-text);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.daily-menu-btn {
  align-items: center;
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  border-radius: 6px;
  display: inline-flex;
  font-family: var(--font-subheading);
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding-inline: 1.2rem;
  text-transform: uppercase;
  width: 100%;
}

.daily-menu-btn:hover,
.daily-menu-btn:focus-visible,
.daily-home-card-btn:hover,
.daily-home-card-btn:focus-visible {
  background: var(--btn-primary-hover-bg);
  border-color: var(--btn-primary-hover-bg);
}

.daily-home-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.daily-home-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.daily-home-card-title {
  color: #1f1f1f;
  font-family: var(--font-subheading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.daily-home-card-text {
  color: var(--about-text);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.daily-home-card-img {
  aspect-ratio: 16 / 11;
  background: #151515;
  display: block;
  object-fit: cover;
  width: 100%;
}

.contacto-btn {
  align-items: center;
  border-color: var(--btn-primary-bg);
  border-radius: 6px;
  display: inline-flex;
  font-family: var(--font-subheading);
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding-inline: 1.2rem;
  text-transform: uppercase;
}

.contacto-btn:hover,
.contacto-btn:focus-visible {
  border-color: var(--btn-primary-hover-bg);
  color: #ffffff;
}

/* ========================================
   Homepage Featured Carousel
======================================== */

.featured-carousel {
  background: var(--color-black);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.featured-carousel .carousel-item {
  min-height: clamp(360px, 44vw, 520px);
  position: relative;
}

.featured-carousel-img {
  background: var(--color-black);
  display: block;
  height: clamp(360px, 44vw, 520px);
  object-fit: contain;
  object-position: right center;
  width: 100%;
}

.featured-carousel .carousel-item::after {
  background: linear-gradient(
    90deg,
    rgba(11, 11, 11, 0.9),
    rgba(11, 11, 11, 0.58) 48%,
    rgba(11, 11, 11, 0.18)
  );
  content: '';
  inset: 0;
  position: absolute;
}

.featured-carousel-copy {
  color: #ffffff;
  left: clamp(1.25rem, 7vw, 5rem);
  max-width: 560px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(78%, 560px);
  z-index: 2;
}

.featured-carousel-label {
  color: var(--color-yellow);
  font-family: var(--font-subheading);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.featured-carousel-copy h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 0.92;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.featured-carousel-copy p:not(.featured-carousel-label) {
  font-size: 1.25rem;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.featured-carousel-copy .btn {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  border-radius: 6px;
  font-family: var(--font-subheading);
  font-weight: 800;
  min-height: 44px;
  padding: 0.75rem 1.4rem;
  text-transform: uppercase;
}

.featured-carousel-copy .btn:hover,
.featured-carousel-copy .btn:focus-visible {
  background: var(--btn-primary-hover-bg);
  border-color: var(--btn-primary-hover-bg);
}

.featured-carousel .carousel-control-prev,
.featured-carousel .carousel-control-next {
  width: 4.5rem;
}

/* ========================================
   Homepage CTA
======================================== */

.cta {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.74)),
    url('/img/tacos.jpg') center/cover no-repeat;
  border-block: 5px solid var(--color-red);
}

.cta h2 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.cta p {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0;
}

.daily-home-card-btn {
  align-items: center;
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  border-radius: 6px;
  display: inline-flex;
  font-family: var(--font-subheading);
  font-weight: 800;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding-inline: 1.2rem;
  text-transform: uppercase;
  width: 100%;
}

.daily-menu-card-cta {
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0), rgba(11, 11, 11, 0.04)),
    #ffffff;
}

.daily-menu-cta-media {
  aspect-ratio: 16 / 11;
  background: var(--color-black);
  overflow: hidden;
  position: relative;
}

.daily-menu-cta-media::after {
  background: linear-gradient(180deg, transparent 46%, rgba(11, 11, 11, 0.58));
  content: '';
  inset: 0;
  position: absolute;
}

.daily-menu-cta-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.daily-menu-cta-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.daily-menu-cta-body .daily-card-title {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  padding: 0;
}

.daily-menu-cta-body .daily-card-text {
  margin: 0.65rem 0 1rem;
}

.daily-menu-cta-label {
  color: var(--color-red);
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

/* ========================================
   Menu Pages: Hero
======================================== */

.menu-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.7)),
    url('/img/chicharron_carnitas_tripas.webp') right center/cover no-repeat;
  border-bottom: 5px solid var(--color-yellow);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.menu-page-hero h1 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.menu-page-hero p {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  max-width: 660px;
}

/* ========================================
   Menu Pages: Intro and Category Controls
======================================== */

.menu-page-section {
  color: var(--body-text);
  max-width: 1180px;
}

.menu-page-header .section-label {
  color: var(--color-red);
  font-family: var(--font-subheading);
  margin-bottom: 0.45rem;
}

.menu-page-header .section-title {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-category-tabs {
  flex-wrap: wrap;
  margin-inline: auto;
  max-width: 980px;
  row-gap: 0.75rem;
}

.menu-category-btn,
.menu-category-toggle {
  align-items: center;
  background: #fffdfa;
  border: 2px solid rgba(11, 11, 11, 0.88);
  border-radius: 6px;
  color: var(--color-black);
  display: inline-flex;
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  position: relative;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.menu-category-toggle {
  justify-content: space-between;
}

.menu-category-btn:hover,
.menu-category-btn:focus-visible,
.menu-category-btn.is-active,
.menu-category-toggle:hover,
.menu-category-toggle:focus-visible {
  border-color: var(--color-black);
  box-shadow: 0 10px 20px rgba(11, 11, 11, 0.16);
}

.menu-category-btn:hover {
  transform: translateY(-2px);
}

.menu-category-btn.is-active {
  background: var(--color-black);
  border-color: var(--color-red);
  box-shadow:
    0 10px 20px rgba(11, 11, 11, 0.18),
    inset 0 -5px 0 var(--color-yellow);
  color: #ffffff;
}

.menu-category-btn:not(.is-active):hover,
.menu-category-btn:not(.is-active):focus-visible,
.menu-category-toggle:hover,
.menu-category-toggle:focus-visible {
  background: var(--color-yellow);
  color: var(--color-black);
}

.menu-category-list-mobile {
  background: #ffffff;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(11, 11, 11, 0.14);
  display: grid;
  gap: 0.6rem;
  padding: 0.75rem;
}

.menu-category-list-mobile .menu-category-btn {
  justify-content: flex-start;
  width: 100%;
}

/* ========================================
   Menu Pages: Panels and Menu Cards
======================================== */

.menu-panel-wrap {
  position: relative;
}

.menu-panel {
  background:
    linear-gradient(135deg, rgba(255, 208, 0, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff6d6 100%), #ffffff;
  border-top: 5px solid var(--color-yellow);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(11, 11, 11, 0.12);
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.menu-panel[hidden] {
  display: none !important;
}

.menu-panel h3 {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.menu-panel h3::after {
  background: var(--color-red);
  content: '';
  display: block;
  height: 5px;
  margin-top: 0.7rem;
  width: min(100%, 140px);
}

.menu-panel > img {
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.menu-item-card {
  background: #ffffff;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(11, 11, 11, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.menu-item-card:hover {
  border-color: rgba(215, 25, 32, 0.36);
  box-shadow: 0 20px 38px rgba(11, 11, 11, 0.14);
  transform: translateY(-3px);
}

.menu-item-card img {
  aspect-ratio: 4 / 3;
  background: #151515;
  display: block;
  object-fit: cover;
  width: 100%;
}

.menu-item-card:not(:has(> img)) {
  border-top: 6px solid var(--color-red);
}

.menu-item-card > div {
  padding: 1rem;
}

.menu-item-card > div:first-child,
.menu-item-card > img + div {
  flex: 1 1 auto;
}

.menu-item-card h4 {
  color: var(--color-black);
  font-family: var(--font-subheading);
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.menu-item-card p {
  color: var(--about-text);
  line-height: 1.55;
  margin-bottom: 0;
}

.menu-item-note {
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-panel > .menu-item-note {
  border-left: 5px solid var(--color-red);
  margin-bottom: 1.5rem;
  max-width: 760px;
  padding: 0.2rem 0 0.2rem 0.9rem;
}

.menu-item-card .price,
.menu-item-card .meat-price {
  color: var(--color-red);
  font-family: var(--font-subheading);
  font-weight: 900;
  white-space: nowrap;
}

.menu-item-card > .price {
  background: var(--color-black);
  color: var(--color-yellow);
  font-size: 1.35rem;
  margin-top: auto;
  padding: 0.75rem 1rem;
}

.menu-item-card > ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0 1rem 1rem;
}

.menu-item-card > ul li,
.meat-by-pound {
  align-items: baseline;
  border-bottom: 1px solid rgba(11, 11, 11, 0.1);
  color: var(--about-text);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  line-height: 1.45;
  padding-bottom: 0.5rem;
}

.menu-item-card > ul li:last-child,
.meat-by-pound:last-child {
  border-bottom: 0;
}

#pound-panel > img {
  border: 4px solid #ffffff;
  box-shadow: 0 16px 32px rgba(11, 11, 11, 0.16);
}

#pound-panel .menu-item-card {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 44%), #ffffff;
  border: 2px solid rgba(11, 11, 11, 0.12);
}

#pound-panel .menu-item-card > img + div {
  flex: 0 0 auto;
}

#pound-panel .menu-item-card > ul li {
  background: #fff9e6;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-left: 5px solid var(--color-red);
  border-radius: 6px;
  font-family: var(--font-subheading);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 0.65rem 0.75rem;
  text-transform: uppercase;
}

#pound-panel .menu-item-card > .row {
  padding: clamp(1rem, 3vw, 1.6rem);
  row-gap: 0.85rem;
}

#pound-panel .menu-item-card > .row > [class*='col-'] {
  display: grid;
  gap: 0.85rem;
}

#pound-panel .meat-by-pound {
  align-items: center;
  background: #fff9e6;
  border: 2px solid rgba(11, 11, 11, 0.1);
  border-left: 6px solid var(--color-red);
  border-radius: 8px;
  color: var(--color-black);
  font-family: var(--font-subheading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  padding: 0.9rem 1rem;
  text-transform: uppercase;
}

#pound-panel .meat-price {
  color: var(--color-red);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1;
}

.breakfast-taco-list h6 {
  color: var(--color-black);
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.meat-list li {
  border-bottom: 0;
  display: block;
  padding-bottom: 0.25rem;
}

.badgee {
  background: var(--color-yellow);
  border: 2px solid var(--color-black);
  border-radius: 999px;
  color: var(--color-black);
  display: inline-flex;
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 0.25rem;
  padding: 0.28rem 0.45rem;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .daily-menu-section {
    border-radius: 0;
    margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  }

  .menu-panel {
    border-radius: 0;
    margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  }

  .menu-category-btn,
  .menu-category-toggle {
    min-height: 54px;
    width: 100%;
  }

  .menu-item-card li,
  .meat-by-pound {
    align-items: flex-start;
  }

  #pound-panel .meat-by-pound {
    align-items: center;
    flex-direction: row;
  }

  .featured-carousel-section {
    padding-inline: 0;
  }

  .featured-carousel {
    border-radius: 0;
  }

  .featured-carousel .carousel-item,
  .featured-carousel-img {
    height: 430px;
    min-height: 430px;
  }

  .featured-carousel-img {
    object-position: center;
  }

  .featured-carousel .carousel-item::after {
    background: linear-gradient(
      90deg,
      rgba(11, 11, 11, 0.92),
      rgba(11, 11, 11, 0.72)
    );
  }

  .featured-carousel-copy {
    left: 1.5rem;
    width: calc(100% - 3rem);
  }

  .featured-carousel-copy h3 {
    font-size: 2.45rem;
  }

  .featured-carousel-copy p:not(.featured-carousel-label) {
    font-size: 1rem;
  }

  .featured-carousel .carousel-control-prev,
  .featured-carousel .carousel-control-next {
    width: 2.75rem;
  }
}
/* ========================================
   Homepage Locations Section
======================================== */

.locations-section {
  background:
    linear-gradient(135deg, rgba(255, 208, 0, 0.2), transparent 34%), #ffffff;
  border-top: 5px solid var(--color-yellow);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(11, 11, 11, 0.1);
  font-family: var(--font-body);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.section-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-weight: 800;
}

/* ========================================
   Homepage Location Cards
======================================== */

.location-card {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.06), transparent 42%), #fff;
  border-color: rgba(11, 11, 11, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 30px rgba(11, 11, 11, 0.08);
}

.location-title {
  color: var(--color-black);
  font-family: var(--font-subheading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

.location-address {
  font-style: normal;
  line-height: 1.65;
}

.location-hours-title {
  color: var(--color-red);
  font-family: var(--font-subheading);
  font-weight: 900;
  text-transform: uppercase;
}

.location-phone-link {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.location-phone-link:hover,
.location-phone-link:focus-visible {
  color: var(--color-black);
}

/* ========================================
   Homepage Hours Table
======================================== */

.location-hours-table th,
.location-hours-table td {
  border-color: rgba(11, 11, 11, 0.1);
  padding: 0.75rem 0;
  vertical-align: middle;
}

.location-hours-table th {
  font-weight: 700;
}

/* ========================================
   Homepage Map Section
======================================== */

.location-map-wrapper {
  border-color: rgba(11, 11, 11, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 30px rgba(11, 11, 11, 0.08);
  min-height: 300px;
}

.location-map-iframe {
  display: block;
  min-height: 300px;
}

/* ========================================
   Accessibility Helpers
======================================== */

.location-phone-link:focus-visible,
.location-map-iframe:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

/* ========================================
   Responsive Layout: Tablet
======================================== */

@media (max-width: 991px) {
  .site-header,
  .site-header .navbar {
    min-height: 82px;
  }
  .nav-logo-text {
    max-width: min(54vw, 300px);
    white-space: normal;
  }
  .hero,
  .hero-inner {
    min-height: calc(100vh - 82px);
  }
  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.75) 56%,
        rgba(0, 0, 0, 0.42) 100%
      ),
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.08) 52%,
        rgba(0, 0, 0, 0.22) 100%
      ),
      url('/img/chicharron_carnitas_tripas.webp') 80% center/cover no-repeat;
  }
  .hero-features {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    row-gap: 1.5rem;
  }
  .hero-feature:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }
  .hero-feature:nth-child(3) {
    padding-left: 0;
  }
  .featured-carousel-copy h3 {
    font-size: 3.25rem;
  }
  .featured-carousel-copy p:not(.featured-carousel-label) {
    font-size: 1.1rem;
  }
}

/* ========================================
   Responsive Layout: Mobile
======================================== */

@media (max-width: 768px) {
  .site-header {
    position: relative;
  }
  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.86) 64%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.14) 52%,
        rgba(0, 0, 0, 0.22) 100%
      ),
      url('/img/chicharron_carnitas_tripas.webp') 80% center/cover no-repeat;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .hero-feature,
  .hero-feature:nth-child(2),
  .hero-feature:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    padding: 0 0 1rem;
  }
  .hero-feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .featured-carousel-copy h3 {
    font-size: 2.45rem;
  }
  .featured-carousel-copy p:not(.featured-carousel-label) {
    font-size: 1rem;
  }
}
