body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #f3f8ff;
  color: #1f2a37;
}

a[href] {
  cursor: pointer;
}

.app-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(0.85rem, 4vw, 1.5rem);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  color: #00356b;
  font-size: clamp(1.25rem, 7vw, 2rem);
  font-weight: 950;
}

.app-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.app-nav {
  justify-content: flex-end;
  margin-left: auto;
}

nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

nav a {
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  background: #ffffff;
  color: #004b93;
  text-decoration: none;
  font-weight: 850;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(0, 53, 107, 0.08);
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 211, 42, 0.3);
}

nav a.active {
  background: #ffd32a;
  color: #00356b;
  transform: translateY(-1px);
}

nav a:active {
  background: #ffd32a;
  color: #00356b;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  nav a:hover {
    background: #ffd32a;
    color: #00356b;
    transform: translateY(-1px);
  }
}
.language-select {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #00356b;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-select select {
  min-height: 2.25rem;
  padding: 0.35rem 1.8rem 0.35rem 0.55rem;
  border: 1px solid #c7d3e1;
  border-radius: 999px;
  background: #fff;
  color: #00356b;
  font: inherit;
}

.page {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}

.realtime-notifications {
  position: sticky;
  top: 0.5rem;
  z-index: 20;
  width: 100%;
  max-height: min(50vh, 28rem);
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.realtime-notifications.is-hidden {
  display: none;
}

.realtime-notification {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 2px solid #004b93;
  border-radius: 8px;
  background: #e8f3ff;
  color: #00356b;
  box-shadow: 0 12px 28px rgba(0, 53, 107, 0.2);
}

.realtime-notification.warning {
  border-color: #c18100;
  background: #fff3c4;
  color: #694600;
}

.realtime-notification.critical {
  border-color: #a71919;
  background: #ffe1e1;
  color: #821414;
}

.realtime-notification.promotion {
  border-color: #ffd32a;
  background: linear-gradient(135deg, #fff8d8, #fff);
}

.realtime-notification.promotion.linked {
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.realtime-notification > div,
.promotion-notification-link {
  display: grid;
  gap: 0.25rem;
}

.promotion-notification-link {
  flex: 1;
  padding: 0.9rem 1rem;
  color: inherit;
  text-decoration: none;
}

.promotion-notification-link:focus-visible {
  outline: 3px solid #004b93;
  outline-offset: -3px;
}

.realtime-notification small {
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.realtime-notification p {
  margin: 0;
  line-height: 1.4;
}

.realtime-notification button {
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: currentColor;
  font-size: 1.4rem;
  cursor: pointer;
}

.realtime-notification.promotion.linked button {
  align-self: flex-start;
  margin: 0.9rem 1rem 0.9rem 0;
}

.pwa-install-prompt {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  max-width: 680px;
  margin: 0 auto;
  padding: 0.85rem;
  border: 2px solid #ffd32a;
  border-radius: 14px;
  background: #00356b;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 20, 45, 0.35);
}

.pwa-install-prompt.is-hidden {
  display: none;
}

.pwa-install-prompt img {
  border-radius: 12px;
}

.pwa-install-copy {
  display: grid;
  gap: 0.2rem;
}

.pwa-install-copy p {
  margin: 0;
  line-height: 1.35;
}

.pwa-install-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pwa-install-actions button {
  min-height: 2.5rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.pwa-install-action {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #ffd32a;
  color: #00356b;
}

.pwa-install-action:disabled {
  cursor: wait;
  opacity: 0.7;
}

.pwa-install-dismiss {
  width: 2.5rem;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 1.5rem !important;
}

@media (max-width: 540px) {
  .app-shell > header {
    justify-content: center;
    text-align: center;
  }
  .app-brand {
    width: 100%;
    justify-content: center;
    gap: clamp(0.35rem, 2vw, 0.65rem);
    flex-wrap: nowrap;
  }
  .app-brand h1 {
    font-size: clamp(0.95rem, 5.6vw, 1.45rem);
    white-space: nowrap;
  }
  .app-brand .language-select {
    min-width: 0;
    flex: 0 1 auto;
  }
  .app-brand .language-select select {
    min-width: 0;
    max-width: clamp(4.6rem, 26vw, 6rem);
    min-height: 2rem;
    padding: 0.3rem 1.35rem 0.3rem 0.45rem;
    font-size: clamp(0.68rem, 3vw, 0.78rem);
  }
  .app-nav {
    width: 100%;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
    margin-left: 0;
  }
  .app-nav a {
    min-width: 0;
    padding: 0.48rem clamp(0.36rem, 2vw, 0.58rem);
    font-size: clamp(0.72rem, 3.7vw, 0.88rem);
    white-space: nowrap;
  }
  .pwa-install-prompt {
    grid-template-columns: auto 1fr;
  }
  .pwa-install-actions {
    grid-column: 1/-1;
    justify-content: flex-end;
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.card {
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  padding: 0.9rem;
  background: #fafcff;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #c2d2e6;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.buttons button {
  padding: 0.45rem 0.7rem;
  border: 1px solid #c7d3e1;
  border-radius: 7px;
  background: #fff;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.buttons button:hover {
  transform: translateY(-1px);
  background: #f5f9ff;
  box-shadow: 0 6px 12px rgba(17, 24, 39, 0.1);
}

.buttons button:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
.muted {
  color: #556274;
  font-size: 0.92rem;
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding: 1rem;
  border-top: 4px solid #ffd32a;
  border-radius: 8px;
  background: #00356b;
  color: #ffffff;
}

.app-footer div {
  display: grid;
  gap: 0.2rem;
}

.app-footer strong {
  font-weight: 950;
}

.app-footer span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.app-footer nav a {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}

.app-footer nav a:active {
  background: #ffd32a;
  color: #00356b;
}

@media (hover: hover) and (pointer: fine) {
  .app-footer nav a:hover {
    background: #ffd32a;
    color: #00356b;
  }
}
.footer-data {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0.45rem auto 0;
  padding: 0.22rem 0.38rem;
  border-radius: 4px;
  background: transparent;
  color: rgba(0, 53, 107, 0.35);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.62rem;
  line-height: 1;
  cursor: help;
}

.footer-data::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #004b93;
  opacity: 0.35;
}

.footer-data.error::before {
  background: #b9c2cc;
}

.page:has(.info-page) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.info-page {
  display: grid;
  gap: 0.85rem;
}

.info-page > header {
  position: relative;
  overflow: hidden;
  display: block;
  padding: clamp(1rem, 4vw, 1.35rem);
  border-radius: 8px;
  background: radial-gradient(circle at 92% 15%, rgba(255, 211, 42, 0.94) 0 17%, transparent 18%), linear-gradient(150deg, #004b93, #00356b 72%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 53, 107, 0.2);
}

.info-page > header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  font-weight: 950;
}

.info-page > header p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.45;
}

.info-body {
  padding: clamp(1rem, 4vw, 1.35rem);
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}

.info-body > * {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
}

.info-body section {
  margin-top: 1.35rem;
}

.info-page h3 {
  margin: 0 0 0.45rem;
  color: #00356b;
  font-size: 1.08rem;
  font-weight: 950;
}

.info-page p,
.info-page li {
  line-height: 1.6;
}

.info-page ul {
  padding-left: 1.2rem;
}

.info-notice {
  padding: 0.85rem 1rem;
  border-left: 5px solid #ffd32a;
  border-radius: 0 8px 8px 0;
  background: #fff8d8;
  color: #27384b;
}

.info-page a {
  color: #004b93;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #f8fbff;
}

.contact-form > label:not(.contact-consent) {
  display: grid;
  gap: 0.3rem;
  color: #00356b;
  font-size: 0.85rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid #b9c9dc;
  border-radius: 7px;
  background: #ffffff;
  color: #1f2a37;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #004b93;
  outline: 3px solid rgba(0, 75, 147, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.contact-form button {
  min-height: 2.75rem;
  border: 0;
  border-radius: 7px;
  background: #004b93;
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.contact-website {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-success,
.contact-error {
  margin: 0;
  padding: 0.75rem;
  border-radius: 7px;
  font-weight: 800;
}

.contact-success {
  background: #e7f7ec;
  color: #155d2a;
}

.contact-error {
  background: #fff0f0;
  color: #8a1f1f;
}

html.sanmateo-offline .promotion-sponsor-link,
html.sanmateo-offline .agenda-sponsor-link {
  display: none !important;
}

@media (max-width: 540px) {
  .app-footer {
    justify-content: center;
    text-align: center;
  }
  .app-footer nav {
    justify-content: center;
  }
}
.page:has(.sanmateo-home) {
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sanmateo-home {
  --oviedo-blue: #004b93;
  --oviedo-deep: #00356b;
  --oviedo-yellow: #ffd32a;
  --oviedo-accent: #1b6fb6;
  --ink: #102033;
  --paper: #fffdf4;
  display: grid;
  gap: 0.85rem;
  width: 100%;
  color: var(--ink);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: min(68vh, 620px);
  display: grid;
  align-content: center;
  gap: 0.95rem;
  padding: clamp(1.15rem, 5vw, 2rem);
  border-radius: 8px;
  background: radial-gradient(circle at 90% 10%, rgba(255, 211, 42, 0.92) 0 16%, transparent 17%), linear-gradient(130deg, transparent 0 56%, rgba(255, 211, 42, 0.92) 56.4% 68%, transparent 68.4%), linear-gradient(160deg, var(--oviedo-blue), var(--oviedo-deep) 72%);
  box-shadow: 0 18px 38px rgba(0, 53, 107, 0.24);
  color: white;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 53, 107, 0.98) 0 58%, rgba(0, 53, 107, 0.72) 74%, rgba(0, 53, 107, 0.08) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto -22% -18% 22%;
  height: 44%;
  background: var(--oviedo-blue);
  transform: rotate(-7deg);
  opacity: 0.92;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.65rem, 14vw, 4.65rem);
  line-height: 0.94;
  font-weight: 950;
}

.hero-copy {
  max-width: 29rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 650;
}

.home-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.action-card {
  min-height: 4.8rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--oviedo-deep);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.2);
}

.action-primary {
  background: var(--oviedo-yellow);
  border-color: var(--oviedo-yellow);
}

.action-card strong,
.action-card small {
  display: block;
}

.action-card strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.action-card small {
  margin-top: 0.12rem;
  color: rgba(0, 53, 107, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.action-icon {
  width: 3rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--oviedo-deep);
  color: var(--oviedo-yellow);
  font-size: 1.35rem;
  font-weight: 900;
}

.now-activities {
  border-radius: 8px;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid rgba(0, 75, 147, 0.18);
}

.activity-list {
  display: grid;
  gap: 0.55rem;
}

.activity-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.18rem;
  padding: 0.7rem 0.75rem;
  border-left: 0.32rem solid var(--oviedo-yellow);
  border-radius: 8px;
  background: #e9f3ff;
}

.activity-list article > div {
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}

.activity-list strong {
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 900;
}

.activity-list span {
  flex: 0 0 auto;
  color: #546579;
  font-size: 0.82rem;
  font-weight: 750;
}

.activity-list small {
  color: #546579;
  font-size: 0.82rem;
}

.now-activities {
  display: grid;
  gap: 0.75rem;
}

.now-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.now-head p {
  margin: 0;
  color: var(--oviedo-deep);
  font-weight: 950;
}

.now-head span {
  display: block;
  margin-top: 0.15rem;
  color: #546579;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: capitalize;
}

.now-head a {
  flex: 0 0 auto;
  padding: 0.45rem 0.6rem;
  border-radius: 7px;
  background: var(--oviedo-deep);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.activity-state {
  margin: 0;
  padding: 0.7rem 0.75rem;
  border-radius: 7px;
  background: #e9f3ff;
  color: #546579;
  font-size: 0.86rem;
  font-weight: 800;
}

.activity-error {
  color: var(--oviedo-deep);
}

@media (min-width: 760px) {
  .sanmateo-home {
    align-items: start;
  }
  .home-hero {
    min-height: 590px;
  }
  .home-actions {
    max-width: 24rem;
  }
  .now-activities {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .activity-list article {
    align-items: start;
    flex-direction: column;
  }
  .now-head {
    align-items: start;
  }
}
@charset "UTF-8";
.page:has(.chiringuitos-page) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.chiringuitos-page {
  --oviedo-blue: #004b93;
  --oviedo-deep: #00356b;
  --oviedo-yellow: #ffd32a;
  --oviedo-accent: #1b6fb6;
  --ink: #102033;
  --paper: #fffdf4;
  --menu-control-height: 2.75rem;
  display: grid;
  gap: 0.85rem;
  color: var(--ink);
}

.chiringuitos-head {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 4vw, 1.35rem);
  border-radius: 8px;
  background: radial-gradient(circle at 92% 12%, rgba(255, 211, 42, 0.92) 0 18%, transparent 19%), linear-gradient(130deg, transparent 0 58%, rgba(255, 211, 42, 0.9) 58.5% 70%, transparent 70.5%), linear-gradient(160deg, var(--oviedo-blue), var(--oviedo-deep) 72%);
  color: white;
  box-shadow: 0 14px 30px rgba(0, 53, 107, 0.2);
}

.chiringuitos-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 53, 107, 0.98) 0 58%, rgba(0, 53, 107, 0.72) 76%, rgba(0, 53, 107, 0.1) 100%);
}

.chiringuitos-head > * {
  position: relative;
  z-index: 1;
}

.chiringuitos-head h2 {
  margin: 0;
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 0.98;
  font-weight: 950;
}

.chiringuitos-head p {
  max-width: 38rem;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.4;
}

.detail-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.detail-actions a,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--oviedo-yellow);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.detail-actions a {
  color: rgba(255, 255, 255, 0.9);
}

.back-link span {
  font-size: 1.2rem;
  line-height: 1;
}

.chiringuitos-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.chiringuitos-tabs a {
  min-height: 3rem;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--oviedo-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.16);
  transform: none;
}

.chiringuitos-tabs a.active {
  border-color: var(--oviedo-deep);
  background: var(--oviedo-yellow);
  box-shadow: 0 10px 20px rgba(16, 32, 51, 0.22);
}

.chiringuitos-state,
.chiringuitos-error {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(0, 75, 147, 0.18);
  font-weight: 800;
}

.chiringuitos-error {
  border-color: rgba(0, 75, 147, 0.32);
  color: var(--oviedo-deep);
}

.menu-list,
.stall-list {
  display: grid;
  gap: 0.7rem;
}

.chiringuitos-content {
  display: grid;
  gap: 0.85rem;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.section-title h3 {
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 1.15rem;
  font-weight: 950;
}

.section-title span {
  color: #546579;
  font-size: 0.86rem;
  font-weight: 850;
}

.menu-search {
  display: grid;
  gap: 0.35rem;
}

.menu-search label,
.menu-sort > span,
.menu-choice legend {
  color: var(--oviedo-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-toolbar {
  display: grid;
  gap: 0.65rem;
}

.filter-toggle {
  min-height: var(--menu-control-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--oviedo-deep);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 950;
  cursor: pointer;
}

.filter-toggle b {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
  font-size: 1.1rem;
  line-height: 1;
}

.filter-toggle:hover,
.filter-toggle.active {
  border-color: var(--oviedo-blue);
  background: var(--oviedo-deep);
  color: #ffffff;
}

.filter-toggle:hover b,
.filter-toggle.active b {
  background: var(--oviedo-yellow);
  color: var(--oviedo-deep);
}

.menu-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  height: var(--menu-control-height);
  box-sizing: border-box;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.menu-search input,
.menu-search button {
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

.menu-search input {
  padding: 0 0.85rem;
  color: var(--ink);
  font-weight: 800;
  outline: none;
}

.menu-search input::placeholder {
  color: #708195;
}

.menu-search button {
  display: grid;
  place-items: center;
  color: var(--oviedo-deep);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-search div:focus-within {
  border-color: var(--oviedo-blue);
  box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.12);
}

.menu-choice {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.menu-choice div {
  height: var(--menu-control-height);
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 0.2rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
}

.menu-choice button,
.location-state button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--oviedo-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-choice button.active,
.menu-choice button[aria-pressed=true] {
  background: var(--oviedo-deep);
  color: #ffffff;
  box-shadow: inset 0 0 0 2px var(--oviedo-yellow), 0 4px 10px rgba(0, 53, 107, 0.24);
}

.menu-choice button.active::before,
.menu-choice button[aria-pressed=true]::before {
  content: "✓";
  margin-right: 0.3rem;
  color: var(--oviedo-yellow);
  font-weight: 950;
}

.menu-sort {
  display: grid;
  gap: 0.35rem;
}

.menu-sort select {
  min-width: 0;
  height: var(--menu-control-height);
  box-sizing: border-box;
  padding: 0 2.1rem 0 0.75rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.advanced-filters {
  display: grid;
  gap: 0.7rem;
}

.filter-panel {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(0, 75, 147, 0.2);
  border-radius: 8px;
  background: #f4f8fd;
  box-shadow: inset 0 3px 0 var(--oviedo-yellow);
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.filter-panel-head h4 {
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
}

.filter-combination-hint {
  margin: 0;
  color: #536579;
  font-size: 0.82rem;
  line-height: 1.4;
}

.filter-panel-head button {
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 6px;
  background: var(--oviedo-blue);
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-panel-head button:disabled {
  background: #c3ccd6;
  cursor: default;
}

.location-state {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: #e9f3ff;
  color: var(--oviedo-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.location-state button {
  margin-left: auto;
  padding: 0.35rem 0.55rem;
  background: var(--oviedo-blue);
  color: #ffffff;
}

.compact-list {
  display: grid;
  gap: 0.45rem;
}

.menu-item,
.stall-item {
  min-width: 0;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.stall-item:hover {
  border-color: rgba(0, 75, 147, 0.34);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.09);
  transform: translateY(-1px);
}

.compact-row {
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: minmax(4.5rem, 7rem) minmax(0, 1.6fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.7rem;
}

.menu-list .compact-row {
  grid-template-columns: minmax(4.5rem, 7rem) minmax(0, 1.6fr) minmax(0, 1fr) auto auto;
}

.stall-row {
  display: grid;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem;
}

.stall-row h4 {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.25;
}

.stall-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem 0.8rem;
  flex-wrap: wrap;
}

.stall-meta span {
  color: #546579;
  font-size: 0.84rem;
  font-weight: 800;
}

.stall-meta strong {
  margin-left: auto;
  color: var(--oviedo-deep);
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
}

.item-distance {
  color: var(--oviedo-blue) !important;
  white-space: nowrap;
}

.menu-item h4,
.stall-item h4 {
  min-width: 0;
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row span,
.row-context {
  min-width: 0;
  color: #546579;
  font-size: 0.84rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.row-context {
  color: var(--oviedo-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

a.row-context:hover {
  color: var(--oviedo-deep);
}

.item-category {
  min-width: 0;
  color: var(--oviedo-accent);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row strong {
  flex: 0 0 auto;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.detail-content {
  align-items: start;
}

.stall-detail {
  display: grid;
  gap: 0.85rem;
}

.promotion-sponsor-link {
  display: block;
  padding: 0.45rem 0.7rem;
  border: 2px dashed #004b93;
  border-radius: 8px;
  background: #fff8d8;
  color: #00356b;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.promotion-sponsor-link:hover {
  border-style: solid;
  background: #ffd32a;
}

.detail-panel {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
}

.detail-info {
  display: grid;
  gap: 0.65rem;
}

.detail-info div {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.detail-info span,
.detail-map span {
  color: var(--oviedo-accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-info strong,
.detail-map strong {
  min-width: 0;
  color: var(--oviedo-deep);
  font-size: 0.92rem;
  font-weight: 950;
}

.detail-map {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  display: grid;
  align-content: end;
  gap: 0.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 211, 42, 0.82) 0 22%, transparent 22.5%), linear-gradient(160deg, #e9f3ff, #ffffff);
  border: 1px solid rgba(0, 75, 147, 0.18);
}

.detail-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail-map-block {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.detail-map-block.map-expanded {
  grid-column: 1/-1;
}

.detail-map-block.map-expanded .detail-map {
  min-height: clamp(22rem, 65vh, 44rem);
}

.detail-map-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.detail-map-action {
  border: 0;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: var(--oviedo-blue);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.2);
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.detail-map-action:hover {
  background: var(--oviedo-deep);
}

.detail-map div {
  position: relative;
  display: grid;
  gap: 0.15rem;
  margin: 0.85rem;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.92);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.detail-menu-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem 0.8rem;
  align-items: start;
  padding: 0.75rem 0.8rem;
}

.detail-filter-toggle {
  min-width: 12rem;
  justify-self: start;
}

.detail-menu-heading {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.detail-menu-card h4 {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.detail-menu-card > strong {
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.detail-menu-description,
.detail-menu-allergens {
  grid-column: 1/-1;
  margin: 0;
  color: #546579;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.detail-menu-tags {
  grid-column: 1/-1;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.detail-menu-tags span {
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: #edf5fd;
  color: var(--oviedo-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-menu-allergens {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 75, 147, 0.12);
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .chiringuitos-head {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: end;
  }
  .chiringuitos-head:not(:has(.chiringuitos-tabs)) {
    grid-template-columns: minmax(0, 1fr);
  }
  .detail-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  }
  .detail-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }
  .menu-toolbar {
    grid-template-columns: minmax(16rem, 1fr) minmax(15rem, auto) minmax(8rem, auto);
    align-items: end;
  }
  .advanced-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .advanced-filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .compact-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .menu-list .compact-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .menu-list .compact-row h4 {
    grid-column: 1;
    grid-row: 1;
  }
  .menu-list .compact-row .row-context {
    display: block;
    grid-column: 1/3;
    grid-row: 2;
  }
  .menu-list .compact-row .item-distance {
    grid-column: 2;
    grid-row: 1;
  }
  .menu-list .compact-row > strong {
    grid-column: 3;
    grid-row: 1;
  }
  .compact-row .item-category,
  .compact-row > span:not(.item-category):not(.row-context):not(.item-distance) {
    display: none;
  }
}
@charset "UTF-8";
.page:has(.chiringuitos-page) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.chiringuitos-page {
  --oviedo-blue: #004b93;
  --oviedo-deep: #00356b;
  --oviedo-yellow: #ffd32a;
  --oviedo-accent: #1b6fb6;
  --ink: #102033;
  --paper: #fffdf4;
  --menu-control-height: 2.75rem;
  display: grid;
  gap: 0.85rem;
  color: var(--ink);
}

.chiringuitos-head {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 4vw, 1.35rem);
  border-radius: 8px;
  background: radial-gradient(circle at 92% 12%, rgba(255, 211, 42, 0.92) 0 18%, transparent 19%), linear-gradient(130deg, transparent 0 58%, rgba(255, 211, 42, 0.9) 58.5% 70%, transparent 70.5%), linear-gradient(160deg, var(--oviedo-blue), var(--oviedo-deep) 72%);
  color: white;
  box-shadow: 0 14px 30px rgba(0, 53, 107, 0.2);
}

.chiringuitos-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 53, 107, 0.98) 0 58%, rgba(0, 53, 107, 0.72) 76%, rgba(0, 53, 107, 0.1) 100%);
}

.chiringuitos-head > * {
  position: relative;
  z-index: 1;
}

.chiringuitos-head h2 {
  margin: 0;
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 0.98;
  font-weight: 950;
}

.chiringuitos-head p {
  max-width: 38rem;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.4;
}

.detail-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.detail-actions a,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--oviedo-yellow);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.detail-actions a {
  color: rgba(255, 255, 255, 0.9);
}

.back-link span {
  font-size: 1.2rem;
  line-height: 1;
}

.chiringuitos-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.chiringuitos-tabs a {
  min-height: 3rem;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--oviedo-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.16);
  transform: none;
}

.chiringuitos-tabs a.active {
  border-color: var(--oviedo-deep);
  background: var(--oviedo-yellow);
  box-shadow: 0 10px 20px rgba(16, 32, 51, 0.22);
}

.chiringuitos-state,
.chiringuitos-error {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(0, 75, 147, 0.18);
  font-weight: 800;
}

.chiringuitos-error {
  border-color: rgba(0, 75, 147, 0.32);
  color: var(--oviedo-deep);
}

.menu-list,
.stall-list {
  display: grid;
  gap: 0.7rem;
}

.chiringuitos-content {
  display: grid;
  gap: 0.85rem;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.section-title h3 {
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 1.15rem;
  font-weight: 950;
}

.section-title span {
  color: #546579;
  font-size: 0.86rem;
  font-weight: 850;
}

.menu-search {
  display: grid;
  gap: 0.35rem;
}

.menu-search label,
.menu-sort > span,
.menu-choice legend {
  color: var(--oviedo-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-toolbar {
  display: grid;
  gap: 0.65rem;
}

.filter-toggle {
  min-height: var(--menu-control-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--oviedo-deep);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 950;
  cursor: pointer;
}

.filter-toggle b {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
  font-size: 1.1rem;
  line-height: 1;
}

.filter-toggle:hover,
.filter-toggle.active {
  border-color: var(--oviedo-blue);
  background: var(--oviedo-deep);
  color: #ffffff;
}

.filter-toggle:hover b,
.filter-toggle.active b {
  background: var(--oviedo-yellow);
  color: var(--oviedo-deep);
}

.menu-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  height: var(--menu-control-height);
  box-sizing: border-box;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.menu-search input,
.menu-search button {
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

.menu-search input {
  padding: 0 0.85rem;
  color: var(--ink);
  font-weight: 800;
  outline: none;
}

.menu-search input::placeholder {
  color: #708195;
}

.menu-search button {
  display: grid;
  place-items: center;
  color: var(--oviedo-deep);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-search div:focus-within {
  border-color: var(--oviedo-blue);
  box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.12);
}

.menu-choice {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.menu-choice div {
  height: var(--menu-control-height);
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 0.2rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
}

.menu-choice button,
.location-state button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--oviedo-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-choice button.active,
.menu-choice button[aria-pressed=true] {
  background: var(--oviedo-deep);
  color: #ffffff;
  box-shadow: inset 0 0 0 2px var(--oviedo-yellow), 0 4px 10px rgba(0, 53, 107, 0.24);
}

.menu-choice button.active::before,
.menu-choice button[aria-pressed=true]::before {
  content: "✓";
  margin-right: 0.3rem;
  color: var(--oviedo-yellow);
  font-weight: 950;
}

.menu-sort {
  display: grid;
  gap: 0.35rem;
}

.menu-sort select {
  min-width: 0;
  height: var(--menu-control-height);
  box-sizing: border-box;
  padding: 0 2.1rem 0 0.75rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.advanced-filters {
  display: grid;
  gap: 0.7rem;
}

.filter-panel {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(0, 75, 147, 0.2);
  border-radius: 8px;
  background: #f4f8fd;
  box-shadow: inset 0 3px 0 var(--oviedo-yellow);
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.filter-panel-head h4 {
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
}

.filter-combination-hint {
  margin: 0;
  color: #536579;
  font-size: 0.82rem;
  line-height: 1.4;
}

.filter-panel-head button {
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 6px;
  background: var(--oviedo-blue);
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-panel-head button:disabled {
  background: #c3ccd6;
  cursor: default;
}

.location-state {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: #e9f3ff;
  color: var(--oviedo-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.location-state button {
  margin-left: auto;
  padding: 0.35rem 0.55rem;
  background: var(--oviedo-blue);
  color: #ffffff;
}

.compact-list {
  display: grid;
  gap: 0.45rem;
}

.menu-item,
.stall-item {
  min-width: 0;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.stall-item:hover {
  border-color: rgba(0, 75, 147, 0.34);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.09);
  transform: translateY(-1px);
}

.compact-row {
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: minmax(4.5rem, 7rem) minmax(0, 1.6fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.7rem;
}

.menu-list .compact-row {
  grid-template-columns: minmax(4.5rem, 7rem) minmax(0, 1.6fr) minmax(0, 1fr) auto auto;
}

.stall-row {
  display: grid;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem;
}

.stall-row h4 {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.25;
}

.stall-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem 0.8rem;
  flex-wrap: wrap;
}

.stall-meta span {
  color: #546579;
  font-size: 0.84rem;
  font-weight: 800;
}

.stall-meta strong {
  margin-left: auto;
  color: var(--oviedo-deep);
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
}

.item-distance {
  color: var(--oviedo-blue) !important;
  white-space: nowrap;
}

.menu-item h4,
.stall-item h4 {
  min-width: 0;
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row span,
.row-context {
  min-width: 0;
  color: #546579;
  font-size: 0.84rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.row-context {
  color: var(--oviedo-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

a.row-context:hover {
  color: var(--oviedo-deep);
}

.item-category {
  min-width: 0;
  color: var(--oviedo-accent);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row strong {
  flex: 0 0 auto;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.detail-content {
  align-items: start;
}

.stall-detail {
  display: grid;
  gap: 0.85rem;
}

.promotion-sponsor-link {
  display: block;
  padding: 0.45rem 0.7rem;
  border: 2px dashed #004b93;
  border-radius: 8px;
  background: #fff8d8;
  color: #00356b;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.promotion-sponsor-link:hover {
  border-style: solid;
  background: #ffd32a;
}

.detail-panel {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
}

.detail-info {
  display: grid;
  gap: 0.65rem;
}

.detail-info div {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.detail-info span,
.detail-map span {
  color: var(--oviedo-accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-info strong,
.detail-map strong {
  min-width: 0;
  color: var(--oviedo-deep);
  font-size: 0.92rem;
  font-weight: 950;
}

.detail-map {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  display: grid;
  align-content: end;
  gap: 0.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 211, 42, 0.82) 0 22%, transparent 22.5%), linear-gradient(160deg, #e9f3ff, #ffffff);
  border: 1px solid rgba(0, 75, 147, 0.18);
}

.detail-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail-map-block {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.detail-map-block.map-expanded {
  grid-column: 1/-1;
}

.detail-map-block.map-expanded .detail-map {
  min-height: clamp(22rem, 65vh, 44rem);
}

.detail-map-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.detail-map-action {
  border: 0;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: var(--oviedo-blue);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.2);
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.detail-map-action:hover {
  background: var(--oviedo-deep);
}

.detail-map div {
  position: relative;
  display: grid;
  gap: 0.15rem;
  margin: 0.85rem;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.92);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.detail-menu-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem 0.8rem;
  align-items: start;
  padding: 0.75rem 0.8rem;
}

.detail-filter-toggle {
  min-width: 12rem;
  justify-self: start;
}

.detail-menu-heading {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.detail-menu-card h4 {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.detail-menu-card > strong {
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.detail-menu-description,
.detail-menu-allergens {
  grid-column: 1/-1;
  margin: 0;
  color: #546579;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.detail-menu-tags {
  grid-column: 1/-1;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.detail-menu-tags span {
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: #edf5fd;
  color: var(--oviedo-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-menu-allergens {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 75, 147, 0.12);
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .chiringuitos-head {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: end;
  }
  .chiringuitos-head:not(:has(.chiringuitos-tabs)) {
    grid-template-columns: minmax(0, 1fr);
  }
  .detail-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  }
  .detail-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }
  .menu-toolbar {
    grid-template-columns: minmax(16rem, 1fr) minmax(15rem, auto) minmax(8rem, auto);
    align-items: end;
  }
  .advanced-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .advanced-filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .compact-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .menu-list .compact-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .menu-list .compact-row h4 {
    grid-column: 1;
    grid-row: 1;
  }
  .menu-list .compact-row .row-context {
    display: block;
    grid-column: 1/3;
    grid-row: 2;
  }
  .menu-list .compact-row .item-distance {
    grid-column: 2;
    grid-row: 1;
  }
  .menu-list .compact-row > strong {
    grid-column: 3;
    grid-row: 1;
  }
  .compact-row .item-category,
  .compact-row > span:not(.item-category):not(.row-context):not(.item-distance) {
    display: none;
  }
}
@charset "UTF-8";
.page:has(.chiringuitos-page) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.chiringuitos-page {
  --oviedo-blue: #004b93;
  --oviedo-deep: #00356b;
  --oviedo-yellow: #ffd32a;
  --oviedo-accent: #1b6fb6;
  --ink: #102033;
  --paper: #fffdf4;
  --menu-control-height: 2.75rem;
  display: grid;
  gap: 0.85rem;
  color: var(--ink);
}

.chiringuitos-head {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 4vw, 1.35rem);
  border-radius: 8px;
  background: radial-gradient(circle at 92% 12%, rgba(255, 211, 42, 0.92) 0 18%, transparent 19%), linear-gradient(130deg, transparent 0 58%, rgba(255, 211, 42, 0.9) 58.5% 70%, transparent 70.5%), linear-gradient(160deg, var(--oviedo-blue), var(--oviedo-deep) 72%);
  color: white;
  box-shadow: 0 14px 30px rgba(0, 53, 107, 0.2);
}

.chiringuitos-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 53, 107, 0.98) 0 58%, rgba(0, 53, 107, 0.72) 76%, rgba(0, 53, 107, 0.1) 100%);
}

.chiringuitos-head > * {
  position: relative;
  z-index: 1;
}

.chiringuitos-head h2 {
  margin: 0;
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 0.98;
  font-weight: 950;
}

.chiringuitos-head p {
  max-width: 38rem;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.4;
}

.detail-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.detail-actions a,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--oviedo-yellow);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.detail-actions a {
  color: rgba(255, 255, 255, 0.9);
}

.back-link span {
  font-size: 1.2rem;
  line-height: 1;
}

.chiringuitos-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.chiringuitos-tabs a {
  min-height: 3rem;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--oviedo-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.16);
  transform: none;
}

.chiringuitos-tabs a.active {
  border-color: var(--oviedo-deep);
  background: var(--oviedo-yellow);
  box-shadow: 0 10px 20px rgba(16, 32, 51, 0.22);
}

.chiringuitos-state,
.chiringuitos-error {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(0, 75, 147, 0.18);
  font-weight: 800;
}

.chiringuitos-error {
  border-color: rgba(0, 75, 147, 0.32);
  color: var(--oviedo-deep);
}

.menu-list,
.stall-list {
  display: grid;
  gap: 0.7rem;
}

.chiringuitos-content {
  display: grid;
  gap: 0.85rem;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.section-title h3 {
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 1.15rem;
  font-weight: 950;
}

.section-title span {
  color: #546579;
  font-size: 0.86rem;
  font-weight: 850;
}

.menu-search {
  display: grid;
  gap: 0.35rem;
}

.menu-search label,
.menu-sort > span,
.menu-choice legend {
  color: var(--oviedo-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-toolbar {
  display: grid;
  gap: 0.65rem;
}

.filter-toggle {
  min-height: var(--menu-control-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--oviedo-deep);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 950;
  cursor: pointer;
}

.filter-toggle b {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
  font-size: 1.1rem;
  line-height: 1;
}

.filter-toggle:hover,
.filter-toggle.active {
  border-color: var(--oviedo-blue);
  background: var(--oviedo-deep);
  color: #ffffff;
}

.filter-toggle:hover b,
.filter-toggle.active b {
  background: var(--oviedo-yellow);
  color: var(--oviedo-deep);
}

.menu-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  height: var(--menu-control-height);
  box-sizing: border-box;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.menu-search input,
.menu-search button {
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

.menu-search input {
  padding: 0 0.85rem;
  color: var(--ink);
  font-weight: 800;
  outline: none;
}

.menu-search input::placeholder {
  color: #708195;
}

.menu-search button {
  display: grid;
  place-items: center;
  color: var(--oviedo-deep);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-search div:focus-within {
  border-color: var(--oviedo-blue);
  box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.12);
}

.menu-choice {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.menu-choice div {
  height: var(--menu-control-height);
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 0.2rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
}

.menu-choice button,
.location-state button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--oviedo-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-choice button.active,
.menu-choice button[aria-pressed=true] {
  background: var(--oviedo-deep);
  color: #ffffff;
  box-shadow: inset 0 0 0 2px var(--oviedo-yellow), 0 4px 10px rgba(0, 53, 107, 0.24);
}

.menu-choice button.active::before,
.menu-choice button[aria-pressed=true]::before {
  content: "✓";
  margin-right: 0.3rem;
  color: var(--oviedo-yellow);
  font-weight: 950;
}

.menu-sort {
  display: grid;
  gap: 0.35rem;
}

.menu-sort select {
  min-width: 0;
  height: var(--menu-control-height);
  box-sizing: border-box;
  padding: 0 2.1rem 0 0.75rem;
  border: 1px solid rgba(0, 75, 147, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.advanced-filters {
  display: grid;
  gap: 0.7rem;
}

.filter-panel {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(0, 75, 147, 0.2);
  border-radius: 8px;
  background: #f4f8fd;
  box-shadow: inset 0 3px 0 var(--oviedo-yellow);
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.filter-panel-head h4 {
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
}

.filter-combination-hint {
  margin: 0;
  color: #536579;
  font-size: 0.82rem;
  line-height: 1.4;
}

.filter-panel-head button {
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 6px;
  background: var(--oviedo-blue);
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-panel-head button:disabled {
  background: #c3ccd6;
  cursor: default;
}

.location-state {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: #e9f3ff;
  color: var(--oviedo-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.location-state button {
  margin-left: auto;
  padding: 0.35rem 0.55rem;
  background: var(--oviedo-blue);
  color: #ffffff;
}

.compact-list {
  display: grid;
  gap: 0.45rem;
}

.menu-item,
.stall-item {
  min-width: 0;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.stall-item:hover {
  border-color: rgba(0, 75, 147, 0.34);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.09);
  transform: translateY(-1px);
}

.compact-row {
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: minmax(4.5rem, 7rem) minmax(0, 1.6fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.7rem;
}

.menu-list .compact-row {
  grid-template-columns: minmax(4.5rem, 7rem) minmax(0, 1.6fr) minmax(0, 1fr) auto auto;
}

.stall-row {
  display: grid;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem;
}

.stall-row h4 {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.25;
}

.stall-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem 0.8rem;
  flex-wrap: wrap;
}

.stall-meta span {
  color: #546579;
  font-size: 0.84rem;
  font-weight: 800;
}

.stall-meta strong {
  margin-left: auto;
  color: var(--oviedo-deep);
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
}

.item-distance {
  color: var(--oviedo-blue) !important;
  white-space: nowrap;
}

.menu-item h4,
.stall-item h4 {
  min-width: 0;
  margin: 0;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row span,
.row-context {
  min-width: 0;
  color: #546579;
  font-size: 0.84rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.row-context {
  color: var(--oviedo-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

a.row-context:hover {
  color: var(--oviedo-deep);
}

.item-category {
  min-width: 0;
  color: var(--oviedo-accent);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row strong {
  flex: 0 0 auto;
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.detail-content {
  align-items: start;
}

.stall-detail {
  display: grid;
  gap: 0.85rem;
}

.promotion-sponsor-link {
  display: block;
  padding: 0.45rem 0.7rem;
  border: 2px dashed #004b93;
  border-radius: 8px;
  background: #fff8d8;
  color: #00356b;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.promotion-sponsor-link:hover {
  border-style: solid;
  background: #ffd32a;
}

.detail-panel {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
}

.detail-info {
  display: grid;
  gap: 0.65rem;
}

.detail-info div {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.detail-info span,
.detail-map span {
  color: var(--oviedo-accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-info strong,
.detail-map strong {
  min-width: 0;
  color: var(--oviedo-deep);
  font-size: 0.92rem;
  font-weight: 950;
}

.detail-map {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  display: grid;
  align-content: end;
  gap: 0.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 211, 42, 0.82) 0 22%, transparent 22.5%), linear-gradient(160deg, #e9f3ff, #ffffff);
  border: 1px solid rgba(0, 75, 147, 0.18);
}

.detail-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail-map-block {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.detail-map-block.map-expanded {
  grid-column: 1/-1;
}

.detail-map-block.map-expanded .detail-map {
  min-height: clamp(22rem, 65vh, 44rem);
}

.detail-map-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.detail-map-action {
  border: 0;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: var(--oviedo-blue);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.2);
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.detail-map-action:hover {
  background: var(--oviedo-deep);
}

.detail-map div {
  position: relative;
  display: grid;
  gap: 0.15rem;
  margin: 0.85rem;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.92);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.detail-menu-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem 0.8rem;
  align-items: start;
  padding: 0.75rem 0.8rem;
}

.detail-filter-toggle {
  min-width: 12rem;
  justify-self: start;
}

.detail-menu-heading {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.detail-menu-card h4 {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.detail-menu-card > strong {
  color: var(--oviedo-deep);
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.detail-menu-description,
.detail-menu-allergens {
  grid-column: 1/-1;
  margin: 0;
  color: #546579;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.detail-menu-tags {
  grid-column: 1/-1;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.detail-menu-tags span {
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: #edf5fd;
  color: var(--oviedo-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-menu-allergens {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 75, 147, 0.12);
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .chiringuitos-head {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: end;
  }
  .chiringuitos-head:not(:has(.chiringuitos-tabs)) {
    grid-template-columns: minmax(0, 1fr);
  }
  .detail-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  }
  .detail-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }
  .menu-toolbar {
    grid-template-columns: minmax(16rem, 1fr) minmax(15rem, auto) minmax(8rem, auto);
    align-items: end;
  }
  .advanced-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .advanced-filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .compact-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .menu-list .compact-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .menu-list .compact-row h4 {
    grid-column: 1;
    grid-row: 1;
  }
  .menu-list .compact-row .row-context {
    display: block;
    grid-column: 1/3;
    grid-row: 2;
  }
  .menu-list .compact-row .item-distance {
    grid-column: 2;
    grid-row: 1;
  }
  .menu-list .compact-row > strong {
    grid-column: 3;
    grid-row: 1;
  }
  .compact-row .item-category,
  .compact-row > span:not(.item-category):not(.row-context):not(.item-distance) {
    display: none;
  }
}
@charset "UTF-8";
.page:has(.agenda-page) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.agenda-page {
  --agenda-blue: #004b93;
  --agenda-deep: #00356b;
  --agenda-yellow: #ffd32a;
  display: grid;
  gap: 0.85rem;
  color: #102033;
}

.agenda-head {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 1.35rem);
  border-radius: 8px;
  background: radial-gradient(circle at 92% 15%, rgba(255, 211, 42, 0.94) 0 17%, transparent 18%), linear-gradient(150deg, var(--agenda-blue), var(--agenda-deep) 72%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 53, 107, 0.2);
}

.agenda-head > * {
  position: relative;
}

.agenda-kicker {
  color: var(--agenda-yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-head h2 {
  margin: 0.15rem 0 0;
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 0.98;
  font-weight: 950;
}

.agenda-head p {
  max-width: 38rem;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.agenda-head > strong {
  flex: 0 0 auto;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--agenda-yellow);
  color: var(--agenda-deep);
  font-size: 0.86rem;
  font-weight: 950;
}

.agenda-state,
.agenda-error {
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #fffdf4;
  font-weight: 800;
}

.agenda-filters {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(0, 75, 147, 0.2);
  border-radius: 8px;
  background: #ffffff;
}

.agenda-filters > header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.agenda-filters h3,
.agenda-filters p {
  margin: 0;
}

.agenda-filters h3 {
  color: var(--agenda-deep);
  font-size: 1rem;
}

.agenda-filters p {
  margin-top: 0.15rem;
  color: #536477;
  font-size: 0.82rem;
}

.agenda-filters > header button {
  padding: 0.4rem 0.65rem;
  border: 0;
  border-radius: 6px;
  background: var(--agenda-deep);
  color: #ffffff;
  font-weight: 850;
}

.agenda-filters > header button:disabled {
  opacity: 0.4;
}

.agenda-day-filter {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0.65rem;
  border: 1px solid rgba(0, 75, 147, 0.16);
  border-radius: 7px;
}

.agenda-day-filter::before,
.agenda-day-filter::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(0, 53, 107, 0.72);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.agenda-day-filter::before {
  left: 0.8rem;
  content: "<";
}

.agenda-day-filter::after {
  right: 0.8rem;
  content: ">";
}

.agenda-day-filter.can-scroll-left::before,
.agenda-day-filter.can-scroll-right::after {
  opacity: 0.55;
}

.agenda-day-filter legend {
  padding: 0 0.3rem;
  color: var(--agenda-deep);
  font-size: 0.78rem;
  font-weight: 950;
}

.agenda-day-scroll {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.35rem;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.agenda-day-filter button {
  flex: 0 0 5.2rem;
  display: grid;
  place-items: center;
  gap: 0.05rem;
  min-height: 3.8rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(0, 75, 147, 0.22);
  border-radius: 7px;
  background: #f0f6fc;
  color: #24384d;
  cursor: pointer;
  scroll-snap-align: start;
}

.agenda-day-filter button strong {
  color: var(--agenda-deep);
  font-size: 1.35rem;
  line-height: 1;
}

.agenda-day-filter button span {
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: capitalize;
}

.agenda-day-filter button.active {
  border-color: var(--agenda-blue);
  background: var(--agenda-blue);
  color: #ffffff;
  box-shadow: inset 0 -4px var(--agenda-yellow);
}

.agenda-day-filter button.active strong {
  color: #ffffff;
}

.agenda-day-filter button.agenda-day-all {
  font-size: 0.78rem;
  font-weight: 900;
}

.agenda-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.agenda-filter-grid fieldset {
  min-width: 0;
  display: flex;
  align-content: start;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0.65rem;
  border: 1px solid rgba(0, 75, 147, 0.16);
  border-radius: 7px;
}

.agenda-filter-grid legend {
  padding: 0 0.3rem;
  color: var(--agenda-deep);
  font-size: 0.78rem;
  font-weight: 950;
}

.agenda-filter-grid fieldset > button {
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 5px;
  background: #f0f6fc;
  color: #24384d;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.agenda-filter-grid fieldset > button.active {
  border-color: var(--agenda-blue);
  background: var(--agenda-blue);
  color: #ffffff;
}

.agenda-place-filter {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 0.65rem;
  border: 1px solid rgba(0, 75, 147, 0.16);
  border-radius: 7px;
  color: var(--agenda-deep);
  font-size: 0.78rem;
  font-weight: 950;
}

.agenda-place-filter select {
  min-width: 0;
  width: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(0, 75, 147, 0.3);
  border-radius: 5px;
  background: #ffffff;
  color: #24384d;
  font: inherit;
  font-weight: 750;
}

.agenda-error {
  color: var(--agenda-deep);
  border-color: rgba(0, 75, 147, 0.32);
}

.agenda-list {
  display: grid;
  gap: 0.65rem;
}

.agenda-entry {
  display: grid;
  gap: 0.45rem;
}

.agenda-banner {
  display: grid;
  grid-template-columns: minmax(12rem, 2fr) minmax(10rem, 1fr);
  overflow: hidden;
  border: 2px solid var(--agenda-yellow);
  border-radius: 10px;
  background: var(--agenda-deep);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 53, 107, 0.16);
}

.agenda-banner picture,
.agenda-banner img {
  width: 100%;
  height: 100%;
  display: block;
}

.agenda-banner img {
  max-height: 15rem;
  object-fit: cover;
}

.agenda-banner > span {
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 0.8rem 1rem;
}

.agenda-banner small {
  color: var(--agenda-yellow);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-banner strong {
  font-size: 1.05rem;
}

.agenda-banner em {
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.35;
  opacity: 0.9;
}

.agenda-banner:hover {
  transform: translateY(-1px);
}

.agenda-banner-text {
  display: block;
  width: 100%;
  background: linear-gradient(115deg, var(--agenda-deep), var(--agenda-blue));
}

.agenda-banner-text > span {
  min-height: 6.5rem;
  padding: 1.15rem clamp(1rem, 4vw, 3rem);
  text-align: center;
}

.agenda-banner-text strong {
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  line-height: 1.08;
}

.agenda-banner-text em {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.agenda-sponsor-link {
  display: block;
  min-width: 0;
  padding: 0.35rem 0.6rem;
  border: 2px dashed var(--agenda-blue);
  border-radius: 8px;
  background: #fff8cf;
  color: var(--agenda-deep);
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.agenda-sponsor-link:hover {
  border-style: solid;
  background: var(--agenda-yellow);
}

.agenda-day {
  margin: 0.45rem 0 0;
  padding: 0.55rem 0.75rem;
  border-left: 5px solid var(--agenda-yellow);
  border-radius: 0 8px 8px 0;
  background: var(--agenda-deep);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  text-transform: capitalize;
}

.agenda-day.past {
  border-left-color: #aeb6bf;
  background: #687583;
  color: #f4f5f6;
}

.agenda-item {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.agenda-item.past {
  border-color: #d1d6dc;
  background: #f1f3f5;
  box-shadow: none;
}

.agenda-item.past .agenda-when {
  background: #dfe3e7;
  color: #4f5b67;
  box-shadow: none;
}

.agenda-item.past .agenda-info h3,
.agenda-item.past .agenda-meta strong {
  color: #596572;
}

.agenda-item.past .agenda-labels span {
  background: #687583;
}

.agenda-when {
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 0.8rem;
  background: linear-gradient(135deg, var(--agenda-blue), var(--agenda-deep));
  color: #ffffff;
  box-shadow: inset 5px 0 var(--agenda-yellow);
}

.agenda-when span {
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.agenda-info {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
}

.agenda-labels,
.agenda-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.agenda-labels span {
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  background: var(--agenda-deep);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-info h3,
.agenda-info p {
  margin: 0;
}

.agenda-info h3 {
  color: var(--agenda-deep);
  font-size: 1.05rem;
  font-weight: 950;
}

.agenda-info p {
  color: #536477;
  font-size: 0.9rem;
}

.agenda-meta {
  color: #536477;
  font-size: 0.8rem;
  font-weight: 750;
}

.agenda-meta > * + span::before {
  content: "·";
  margin-right: 0.45rem;
}

.agenda-map-link {
  color: var(--agenda-blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.agenda-map-link:hover,
.agenda-map-link:focus-visible {
  color: var(--agenda-deep);
  text-decoration-thickness: 0.14em;
}

.agenda-meta strong {
  margin-left: auto;
  color: var(--agenda-blue);
}

@media (max-width: 620px) {
  .agenda-head {
    align-items: start;
    flex-direction: column;
  }
  .agenda-item {
    grid-template-columns: 1fr;
  }
  .agenda-banner {
    grid-template-columns: 1fr;
  }
  .agenda-filter-grid {
    grid-template-columns: 1fr;
  }
  .agenda-day-filter {
    margin-right: -0.9rem;
    border-right: 0;
    border-radius: 7px 0 0 7px;
  }
  .agenda-when {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .agenda-meta strong {
    width: 100%;
    margin-left: 0;
  }
}