@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Press+Start+2P&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --bg-deep: #060318;
  --bg-panel: rgba(13, 8, 33, 0.9);
  --violet: #b56dff;
  --magenta: #ff3fa4;
  --yellow: #ffd447;
  --cyan: #4ee5ff;
  --text-main: #f4f7ff;
  --text-muted: #bac2ff;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #2d0f64, #0f1e6d 45%, #04111f);
  --topbar-offset: clamp(72px, 14vw, 110px);
}

.hero__cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 28px 0 12px;
  width: 100%;
}

.hero-btn {
  width: 100%;
  min-width: 0;
  padding: 14px 26px;
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0b0319;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

.hero-btn--primary {
  background: linear-gradient(135deg, #ffb347, #ff6138);
  box-shadow: 0 15px 35px rgba(255, 96, 56, 0.45);
  color: #2b0614;
}

.hero-btn--secondary {
  background: linear-gradient(135deg, #5eff8f, #12b85c);
  box-shadow: 0 15px 35px rgba(18, 184, 92, 0.45);
  color: #04110b;
}

.hero-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .hero__cta {
    grid-template-columns: 1fr;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Chakra Petch", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  margin: 0;
  background: var(--gradient);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

body.fade-enabled .page-shell {
  opacity: 0;
  transition: opacity 0.24s ease;
}

body.fade-enabled.page-visible .page-shell {
  opacity: 1;
}

body.fade-enabled.page-fade-out .page-shell {
  opacity: 0;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__image {
  width: min(260px, 70vw);
  max-width: 340px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 63, 164, 0.25), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(78, 229, 255, 0.2), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(181, 109, 255, 0.15), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: "Chakra Petch", "Space Grotesk", sans-serif;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--yellow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--yellow);
  margin-bottom: 12px;
}

.menu-card .eyebrow,
.menu-hero__status-card .eyebrow,
.menu-section__header .eyebrow {
  font-weight: 700;
  letter-spacing: 0.28em;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  backdrop-filter: blur(20px);
  background: rgba(6, 3, 24, 0.85);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: 10px clamp(10px, 4vw, 32px);
  z-index: 60;
}

.topbar__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

.logo strong {
  font-size: 1.1rem;
  display: block;
  line-height: 1.05;
  margin: 0;
  padding: 0;
}

.logo__text {
  display: block;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.logo__text small {
  display: block;
  white-space: normal;
  margin: 0;
  padding: 0 0 0 9px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}

.topbar__cta {
  margin-top: 9px;
}

.topbar__menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.topbar__menu-toggle::after,
.topbar__menu-toggle::before {
  content: '';
  width: 18px;
  height: 2px;
  background: currentColor;
  position: absolute;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar__menu-toggle::before {
  transform: translateY(-5px);
}

.topbar__menu-toggle::after {
  transform: translateY(5px);
  box-shadow: 0 -5px 0 currentColor;
}

.topbar__menu-toggle[aria-expanded='true']::before {
  transform: rotate(45deg);
}

.topbar__menu-toggle[aria-expanded='true']::after {
  transform: rotate(-45deg);
  box-shadow: none;
}

.topbar__menu-toggle:hover,
.topbar__menu-toggle:focus-visible {
  border-color: var(--magenta);
  color: var(--yellow);
}

.topbar__cta-label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: start;
    row-gap: 0;
    padding: 10px 2px;
  }

  .topbar__brand {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .topbar__cta {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }

  .topbar__menu-toggle {
    flex: 0 0 44px;
  }
}

@media (max-width: 640px) {
  .topbar__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .logo__text {
    white-space: normal;
  }
}

@media (min-width: 1025px) {
  .main-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
  }

  .topbar__brand {
    justify-content: flex-start;
  }
  .logo {
    gap: 0;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 80vw);
  background: rgba(6, 3, 18, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 100px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 30;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  box-shadow: -24px 0 50px rgba(0, 0, 0, 0.55);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 0, 10, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

.mobile-nav__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav__links a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav__close:hover,
.mobile-nav__close:focus-visible {
  border-color: var(--magenta);
  color: var(--yellow);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .topbar__menu-toggle {
    display: inline-flex;
  }

  .topbar__brand {
    min-width: 0;
  }

  .logo__text {
    font-size: 0.85rem;
    white-space: normal;
  }

  .logo__text small {
    font-size: 0.7rem;
  }

  .topbar__actions {
    gap: 8px;
  }

  .topbar__cta {
    padding: 10px 18px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 640px) {
  .topbar__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .logo__text {
    white-space: normal;
  }
}

@media (min-width: 1025px) {
  .topbar__menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-nav__backdrop {
    display: none;
  }
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

.brand-banner {
  width: 100%;
  text-align: center;
  padding: clamp(14px, 3vw, 22px) 5vw;
  background: linear-gradient(135deg, rgba(9, 2, 27, 0.9), rgba(54, 6, 64, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 25px rgba(255, 212, 71, 0.08);
}

.brand-banner__text {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(1rem, 4vw, 1.8rem);
  letter-spacing: 0.5em;
  color: #ffe7c2;
  text-transform: uppercase;
  display: inline-block;
  animation: retroGlow 5s infinite ease-in-out;
}

@keyframes retroGlow {
  0%, 90%, 100% {
    text-shadow: none;
    filter: drop-shadow(0 0 0 rgba(255, 231, 194, 0));
  }
  95% {
    text-shadow: 0 0 12px rgba(255, 231, 194, 0.8), 0 0 24px rgba(255, 87, 214, 0.7);
    filter: drop-shadow(0 0 16px rgba(255, 231, 194, 0.6));
  }
}

@media (max-width: 640px) {
  .brand-banner__text {
    letter-spacing: 0.35em;
  }
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  padding-right: 30px;
}

.logo strong {
  font-size: 1.1rem;
  display: block;
  line-height: 1.05;
  margin: 0;
  padding: 0;
}

.logo__text {
  display: block;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
  margin: 0;
  padding-left: 8px
}

.logo__text small {
  display: block;
  white-space: normal;
  margin: 0;
  padding: 0;
}

.topbar__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__greeting {
  margin: 0 0 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffd447;
}

.hero__greeting strong {
  color: #fff;
  letter-spacing: 0.05em;
}

.ai-description {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 19px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: radial-gradient(circle at top, var(--magenta), #7517b1);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 10px 35px rgba(255, 63, 164, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}

main {
  padding-bottom: 64px;
}

.hero {
  padding: clamp(32px, 5vw, 96px) 5vw 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  grid-template-areas:
    "copy media"
    "footer footer";
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.hero__content {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 992px) {
  .hero {
    grid-template-columns: minmax(360px, 1.15fr) minmax(320px, 0.85fr);
  }

  .hero__media {
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "footer";
  }

  .hero__footer {
    align-items: stretch;
  }

  .hero__footer .hero__cta {
    flex-direction: column;
  }

  .hero__stats {
    justify-content: center;
  }
}

.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-shadow: 0 0 30px rgba(255, 63, 164, 0.3);
}

.lead {
  font-size: 1.1rem;
}

.hero__stats {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero__stats span {
  display: block;
  font-size: 1.4rem;
  color: var(--yellow);
  font-weight: 700;
}

.hero__media {
  position: relative;
  grid-area: media;
}

.hero__footer {
  grid-area: footer;
  margin-top: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  /*background: rgba(9, 2, 28, 0.7);*/
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__footer .hero__cta {
  justify-content: center;
}

.hero__footer .hero__stats {
  justify-content: center;
}

.hero__media img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(4, 0, 36, 0.8);
}

.menu-page {
  padding-bottom: 64px;
}

.menu-hero {
  padding: clamp(32px, 5vw, 80px) 5vw clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  grid-template-areas:
    "copy media"
    "status media";
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

@media (max-width: 992px) {
  .menu-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "media"
      "status";
  }
}

.menu-hero__copy {
  grid-area: copy;
  display: grid;
  gap: 20px;
  align-content: start;
}

.menu-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.menu-hero__steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: minmax(240px, 380px);
  gap: 16px;
  justify-content: flex-start;
}

.menu-hero__steps li {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.menu-hero__steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--cyan);
}

.menu-hero__media {
  position: relative;
  grid-area: media;
}

.menu-hero__media img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 80px rgba(3, 0, 25, 0.8);
}

.menu-hero__status-card {
  grid-area: status;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(8, 1, 29, 0.82);
  backdrop-filter: blur(14px);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.menu-hero__status-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-hero__status-card small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.menu-hero__status-card strong {
  font-size: 1.2rem;
  color: var(--yellow);
}

.menu-filters {
  margin: 0 5vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 20px;
  display: grid;
  gap: 16px;
  background: rgba(6, 3, 24, 0.7);
  backdrop-filter: blur(10px);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.menu-filters__item {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.menu-filters__item:hover,
.menu-filters__item:focus-visible {
  border-color: var(--magenta);
  color: var(--yellow);
}

.menu-section {
  margin: 0 5vw;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#catalogo {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

@media (max-width: 768px) {
  #catalogo {
    margin: 0 5vw;
    padding-inline: 0;
  }
}

@media (max-width: 640px) {
  .menu-section {
    margin: 0 auto;
    padding: 36px 18px;
    width: min(520px, 100%);
  }

  #catalogo {
    margin: 0;
    padding-inline: 0;
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .menu-collapsible.is-open {
    margin-top: 22px;
  }

  .menu-collapsible + .menu-section__header {
    margin-top: 24px;
  }
}

.menu-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  flex-wrap: wrap;
}

.menu-section__header .eyebrow {
  margin-bottom: 1px;
  padding: 0 10px;
  display: inline-block;
}

#catalogo > .menu-section__header h2 {
  padding: 0 10px;
}

.menu-badge {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.menu-badge.menu-toggle {
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu-badge.menu-toggle:hover,
.menu-badge.menu-toggle:focus-visible {
  border-color: var(--magenta);
  color: var(--yellow);
}

.menu-badge.menu-toggle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.menu-badge.menu-toggle[aria-expanded='false']::after {
  transform: rotate(-135deg);
}

.menu-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-collapsible {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.menu-collapsible .menu-grid {
  margin-top: 0;
}

.menu-collapsible.is-open {
  opacity: 1;
  margin-top: 28px;
}

.menu-collapsible + .menu-section__header {
  margin-top: 32px;
}

.menu-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-subsection {
  margin-top: 32px;
}

.menu-subsection__label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.menu-subsection__toggle {
  width: 100%;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.menu-subsection__toggle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.menu-subsection__toggle[aria-expanded='false']::after {
  transform: rotate(-135deg);
}

.menu-subsection__toggle:hover,
.menu-subsection__toggle:focus-visible {
  border-color: var(--magenta);
  color: var(--yellow);
}

.menu-subsection__toggle + .menu-collapsible {
  margin-top: 18px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 18px 40px rgba(2, 0, 18, 0.6);
}

.menu-card--featured {
  padding: 0;
  background: linear-gradient(160deg, rgba(32, 13, 74, 0.9), rgba(15, 5, 44, 0.95));
  border: 1px solid rgba(80, 120, 255, 0.35);
}

.menu-card--featured .menu-card__media {
  position: relative;
  height: clamp(180px, 28vw, 230px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px 26px 0 0;
}

.menu-card--featured .menu-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 -30px 60px rgba(6, 1, 26, 0.35);
}

.menu-card--featured .menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.menu-card--burger .menu-card__media {
  position: relative;
  height: clamp(180px, 28vw, 230px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px 26px 0 0;
}

.menu-card--burger .menu-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 -30px 60px rgba(6, 1, 26, 0.25);
}

.menu-card--burger .menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.menu-card--featured .menu-card__body {
  padding: 10px 24px 10px;
  margin: 2px 0;
  gap: 0;
}

.menu-card--featured .menu-card__body p {
  margin: 0;
}

.menu-card--burger .menu-card__body {
  padding: 10px 24px 10px;
  margin: 2px 0;
  gap: 0;
}

.menu-card--burger .menu-card__body p {
  margin: 0;
}

.menu-card--featured .menu-card__footer .btn {
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(86, 165, 255, 0.25), rgba(138, 82, 255, 0.4));
  border: 1px solid rgba(138, 82, 255, 0.5);
}

.menu-card__media {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-card__body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.menu-card__body > p:first-of-type {
  font-style: italic;
  color: var(--text-main);
}

.menu-card__body > p:first-of-type::before,
.menu-card__body > p:first-of-type::after {
  content: '"';
  color: rgba(255, 255, 255, 0.6);
}

.menu-card__body > p:first-of-type::before {
  margin-right: 4px;
}

.menu-card__body > p:first-of-type::after {
  margin-left: 4px;
}

.menu-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}

.menu-card__footer .btn {
  width: 100%;
}

.menu-card__header .price {
  margin-left: auto;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  font-size: 1.05rem;
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.menu-card__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-card__actions span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-card--compact {
  padding: 22px;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  min-height: auto;
}

.menu-card--compact .menu-card__actions {
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.menu-tags {
  list-style: none;
  padding: 14px 16px;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  font-style: italic;
}

.menu-tags li {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 0;
}

.menu-tags li:not(:last-child)::after {
  content: "·";
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.4);
}

.menu-checkout {
  margin: 0 5vw;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  background: rgba(10, 4, 34, 0.8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  box-shadow: 0 40px 100px rgba(3, 0, 20, 0.7);
}

.menu-checkout__panel {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-checkout__decor {
  width: min(100%, 720px);
  height: auto;
  margin-top: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.95;
  box-shadow: 0 25px 60px rgba(2, 0, 20, 0.35);
  display: block;
}

.menu-checkout__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-checkout__line strong {
  font-size: 1.2rem;
  color: var(--yellow);
}

.menu-checkout__line--note {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.menu-checkout .btn {
  width: 100%;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__info small {
  color: var(--text-muted);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__total {
  font-weight: 600;
  color: var(--yellow);
}

.cart-empty {
  padding: 16px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-inline {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
}

.btn-inline:hover {
  border-color: var(--magenta);
  color: var(--yellow);
}

.btn-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.middle-nav {
  padding: 28px 5vw 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.middle-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  background: rgba(6, 3, 24, 0.75);
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.45), 0 12px 35px rgba(3, 0, 20, 0.5);
  color: var(--text-main);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.middle-pill strong {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.middle-pill span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.middle-pill::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.middle-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(8, 0, 35, 0.7);
}

.middle-pill--combos {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.95), rgba(29, 74, 39, 0.9));
}

.middle-pill--addons {
  background: linear-gradient(135deg, rgba(140, 59, 15, 0.95), rgba(110, 14, 88, 0.9));
}

.middle-pill--menu {
  background: linear-gradient(135deg, rgba(14, 58, 104, 0.95), rgba(15, 93, 87, 0.9));
}

.middle-pill--reserve {
  background: linear-gradient(135deg, rgba(99, 19, 85, 0.95), rgba(146, 28, 95, 0.9));
}

.section {
  padding: 64px 5vw;
}

.section-grid {
  background: rgba(8, 3, 34, 0.65);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.cards--products {
  gap: 16px;
}

.cards--products .card.product {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--bg-panel);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.card.product .product__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
}

.card.product .product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card.product .product__body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 6px;
}

.card.product .product__title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.card.product .product__price {
  margin: 0;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.01em;
}

.card.product .product__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card.product .btn {
  margin-top: 4px;
}

.card {
  background: var(--bg-panel);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(2, 0, 25, 0.45);
}

.product {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product img {
  width: 100%;
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-highlight .card {
  background: radial-gradient(circle at top, rgba(255, 63, 164, 0.2), rgba(3, 5, 30, 0.9));
}

.section-steps ol {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}

.steps li {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.step-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.step-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-block;
  margin-bottom: 6px;
}

.steps span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
}

.cards--testimonials .card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: italic;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  background: url("../assets/fondo barra alt.png") center/cover no-repeat, rgba(8, 3, 34, 0.8);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(2, 0, 25, 0.6);
}

.testimonial-cards {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(8, 0, 30, 0.9));
  border-radius: 22px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 30px rgba(2, 0, 20, 0.7);
}

.testimonial-card .stars {
  height: 28px;
  margin-bottom: 12px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
}

.testimonial-card strong {
  color: var(--yellow);
}

.page-cart,
.page-order {
  background: radial-gradient(circle at 50% 0%, rgba(255, 212, 71, 0.08), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 63, 164, 0.12), transparent 50%),
    #050111;
}

.cart-stage,
.order-stage {
  padding: 20px 5vw 16px;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.cart-panel,
.order-panel {
  width: min(960px, 100%);
  background: linear-gradient(180deg, rgba(19, 1, 32, 0.95), rgba(3, 0, 18, 0.96)),
    url("../assets/fondo cesta y pedido.png") center/cover no-repeat;
  border: 1px solid rgba(255, 178, 89, 0.4);
  border-radius: 32px;
  box-shadow: 0 50px 120px rgba(6, 0, 36, 0.8);
  padding: 10px clamp(12px, 3vw, 24px);
  position: relative;
  overflow: hidden;
}

.cart-panel::after,
.order-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 212, 71, 0.15), transparent 45%);
  pointer-events: none;
}

.cart-panel > *:not(:last-child),
.order-panel > *:not(:last-child) {
  position: relative;
  z-index: 1;
}

.cart-panel h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: #ffd447;
  text-align: center;
  text-shadow: 0 0 35px rgba(255, 99, 0, 0.5);
  margin-bottom: 32px;
}

.cart-panel__intro {
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.cart-ticket {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .cart-ticket {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 18px 20px;
  }

  .cart-ticket__item {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
}

.cart-ticket__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  
  background: rgba(9, 3, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  align-items: stretch;
}

.cart-ticket__media {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.cart-ticket__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.cart-ticket__info h3 {
  margin: 0;
  color: #ffd447;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  padding-left: 10px;
}

.cart-ticket__info p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding-left: 10px;
}

.cart-ticket__info,
.cart-ticket__controls,
.cart-ticket__chip,
.cart-ticket__aside {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.cart-ticket__wrapper {
  margin-top: 24px;
}

.cart-ticket__empty {
  padding: 20px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cart-ticket__empty[hidden] {
  display: none;
}

.cart-submit {
  display: inline-block;
}

.cart-submit--disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.3);
}

.cart-ticket__price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.cart-ticket__controls {
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  padding: 2px;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.cart-control {
  border: none;
  min-width: 54px;
  height: 40px;
  border-radius: 12px;
  flex: 1 1 0;
  background: linear-gradient(135deg, #5c0707, #d7263d);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  
  box-shadow: inset 0 0 8px rgba(255, 220, 150, 0.4), 0 8px 20px rgba(215, 38, 61, 0.35);
  border: 1px solid rgba(255, 215, 141, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-control--remove {
  background: linear-gradient(135deg, #43032c, #ff3fa4);
}

.cart-ticket__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  margin-top: 4px;
  border-radius: 12px;
  font-weight: 600;
  min-width: 54px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  height: 40px;
  flex: 1 1 0;
  font-size: 1rem;
}

.cart-ticket__chip--price {
  min-width: 54px;
  font-size: 1rem;
}

.cart-ticket__chip--qty {
  min-width: 54px;
  color: #ffd447;
}

@media (max-width: 640px) {
  .cart-ticket__controls {
    gap: 0px;
  }
}

.cart-summary {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 178, 89, 0.4);
  border-bottom: 1px solid rgba(255, 178, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.cart-summary strong {
  font-size: 1.8rem;
  color: #ffd447;
}

.cart-mode {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-section {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(7, 0, 20, 0.55);
  padding: 0 24px;
  box-shadow: inset 0 0 18px rgba(255, 212, 71, 0.08), 0 25px 60px rgba(2, 0, 25, 0.55);
  gap: 0;
}

.cart-section__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  padding-bottom: 6px;
}

.cart-section__head p {
  margin: 0;
  font-weight: 700;
  color: #f6e8ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-section__head small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.cart-mode__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
}

.cart-mode__card {
  cursor: pointer;
  border-radius: 18px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 1px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-mode__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffe7c2;
  text-transform: uppercase;
  background: linear-gradient(145deg, #5d0714, #b0172f 55%, #f29b3f);
  box-shadow: inset 0 0 18px rgba(255, 216, 146, 0.4), 0 14px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 212, 71, 0.45);
  min-width: 180px;
}

.cart-mode__button--pickup {
  background: linear-gradient(145deg, #43145c, #a61bb6 55%, #ffb347);
}

.cart-mode__glyph {
  font-size: 1.1rem;
}

.cart-mode__caption {
  font-size: clamp(0.72rem, 2.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-mode__options input {
  appearance: none;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}


.cart-mode__card input:checked + .cart-mode__button {
  transform: translateY(-2px);
  box-shadow: inset 0 0 25px rgba(255, 241, 194, 0.5), 0 20px 35px rgba(255, 212, 71, 0.35);
}

.cart-mode__card:has(input:checked) {
  border-color: rgba(255, 212, 71, 0.6);
  box-shadow: 0 0 25px rgba(255, 212, 71, 0.15);
}

.cart-payment {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}


.cart-payment__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
}

.cart-payment__card {
  position: relative;
  border-radius: 20px;
  padding: 1px;
  text-align: center;
  cursor: pointer;

  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-payment__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffe7c2;
  background: linear-gradient(145deg, #6a2b00, #c25700 55%, #ffd38a);
  min-width: 180px;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(255, 216, 146, 0.4), 0 14px 30px rgba(0, 0, 0, 0.45);
}

.cart-payment__card--card span {
  background: linear-gradient(145deg, #33084d, #7b1bb3 55%, #fda4ff);
}

.cart-payment__card--cash span {
  background: linear-gradient(145deg, #5d2a00, #d16c00 55%, #ffd447);
}

.cart-payment__card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.cart-payment__card:has(input:checked) {
  border-color: rgba(255, 212, 71, 0.8);
  box-shadow: inset 0 0 25px rgba(255, 212, 71, 0.4), 0 12px 30px rgba(255, 212, 71, 0.3);
  transform: translateY(-2px);
}

.cart-payment__hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.cart-comments textarea {
  width: 100%;
  min-height: 110px;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  font-family: inherit;
  resize: vertical;
}

.cart-address {
  margin-top: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-address h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #ffd447;
}

.cart-address__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.cart-address__grid label {
  display: grid;
  gap: 0;
  margin: 2px 0;
  font-weight: 600;
}

.cart-address__grid input {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  padding: 12px;
  font-family: inherit;
}

.cart-address__grid input:focus {
  outline: 2px solid var(--magenta);
}

.cart-address__hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.cart-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cart-actions button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.cart-actions img {
  width: min(240px, 100%);
}

.cart-helper {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.order-panel h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffd447;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 63, 164, 0.5);
}

.order-panel h2 {
  text-align: center;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.9);
}

.order-alert {
  text-align: center;
  font-weight: 700;
  color: #ffb347;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.order-number {
  margin: 32px auto;
  max-width: 360px;
  background: rgba(10, 0, 18, 0.8);
  border: 2px solid rgba(255, 212, 71, 0.6);
  border-radius: 24px;
  text-align: center;
  padding: 24px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: inset 0 0 25px rgba(255, 178, 89, 0.25);
}

.order-number strong {
  display: block;
  font-size: 1.6rem;
  margin-top: 8px;
  color: #fff;
}

.order-meta {
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.order-countdown {
  margin: 32px auto;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(8, 0, 30, 0.45);
}

.countdown-display {
  font-family: "Chakra Petch", "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  color: #ffd447;
  letter-spacing: 0.2em;
  margin: 12px 0 8px;
}

.order-countdown small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.order-actions a {
  display: inline-block;
  border-radius: 18px;
}

.order-actions img {
  width: min(260px, 100%);
  display: block;
}

.order-items {
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  box-shadow: inset 0 0 20px rgba(255, 212, 71, 0.08);
}

.order-items h3 {
  margin: 0 0 16px;
  color: #ffd447;
  text-align: center;
}

.order-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-items li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.order-items li:last-child {
  border-bottom: none;
}

.order-items__total {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 1.3rem;
  color: #ffd447;
}

.order-items__total strong {
  font-size: 1.5rem;
}

.order-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.order-details li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.section-cta {
  margin-top: 32px;
  background: linear-gradient(120deg, rgba(181, 109, 255, 0.25), rgba(255, 63, 164, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-main);
}

.contact-list a {
  color: var(--yellow);
}

footer {
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--border);
  background: rgba(6, 3, 24, 0.9);
  font-size: 0.9rem;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal section {
  margin-bottom: 64px;
}

.legal article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.legal ul {
  padding-left: 18px;
}
/* Carta */
.menu {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.menu h1 {
  text-align: center;
  margin-bottom: 16px;
}

.item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price {
  color: var(--yellow);
  font-weight: 600;
}

/* Formularios */
form {
  max-width: 480px;
  margin: 40px auto;
  padding: 32px;
  background: var(--bg-panel);
  border-radius: 20px;
  border: 1px solid var(--border);
}

label {
  display: block;
  font-weight: 600;
  margin-top: 18px;
}

input {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 1rem;
}

input:focus {
  outline: 2px solid var(--magenta);
}

button {
  width: 100%;
  margin-top: 4px;
  border: none;
  font-size: 1rem;
}

.local-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.local-hero {
  padding: 16px 5vw 32px;
  text-align: center;
}

.local-card__media {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(2, 0, 25, 0.7);
}

.local-card__body h2 {
  margin-bottom: 16px;
}

.local-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.local-hours li {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
}

.local-hours span {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;    
    border-right-width: 25px;
    padding-right: 15px;

  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-nav {
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .topbar__cta {
    align-self: flex-start;
  }

  .hero {
    padding: 16px 24px 48px;
    
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 2;
    padding-right: 10px;
  }

  .hero__media {
    order: 1;
  }

  .hero__media img {
    max-width: 320px;
    margin: 0 auto 16px;
  }

  .cta--images {
    flex-direction: column;
    align-items: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .section-cta {
    flex-direction: column;
    text-align: center;
  }

  .menu-filters {
    border-radius: 24px;
    padding: 16px;
  }

  .menu-card--compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-hero__status {
    position: static;
    transform: none;
    margin-top: 18px;
  }

  .menu-checkout {
    padding: 32px 24px;
  }
}

@media (max-width: 520px) {
  .hero__content h1 {
    font-size: 2.3rem;
  }

  .hero__stats li {
    flex: 1 1 120px;
    text-align: center;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .testimonial-image {
    order: 2;
  }

  .testimonial-cards {
    order: 1;
    grid-template-columns: 1fr;
  }
}