@import url("https://fonts.googleapis.com/css2?family=Sansita:wght@400;700;800&display=swap");

:root {
  --page: #15120f;
  --paper: #e8e1d8;
  --card: #fffdf8;
  --card-2: #f7efe4;
  --ink: #2e2923;
  --muted: #6f6257;
  --line: #d7cbbf;
  --brand: #9c3e28;
  --brand-dark: #76301f;
  --sage: #586b55;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--page);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#stage {
  width: 1920px;
  height: 1080px;
  flex: 0 0 auto;
  transform-origin: center center;
  background: var(--paper);
  color: var(--ink);
  font-family: "Sansita", Georgia, serif;
  position: relative;
  overflow: hidden;
}

#board {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 132px 1fr;
  row-gap: 24px;
  padding: 52px 64px 44px;
}

#board.no-title {
  grid-template-rows: 1fr;
  row-gap: 0;
  padding-top: 44px;
}

#board.no-title .header {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 3px solid rgba(156, 62, 40, 0.18);
  padding-bottom: 18px;
}

.kicker {
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 78px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.header-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.header-qr {
  width: 258px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid rgba(121, 83, 60, 0.14);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(61, 42, 25, 0.1);
}

.header-qr img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
}

.header-qr-title {
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.header-qr-sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.12;
}

.schedule-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 8px 18px 9px;
  width: fit-content;
  max-width: 740px;
  color: var(--muted);
  background: var(--card);
  border-left: 6px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.07);
  font-size: 20px;
  font-weight: 700;
}

.schedule-pill b {
  color: var(--brand);
  font-weight: 800;
}

.content {
  min-height: 0;
}

.breakfast-layout {
  height: 100%;
  min-height: 0;
}

.breakfast-main {
  grid-template-columns: minmax(0, 1fr) 431.5px;
  display: grid;
  gap: 22px;
  height: 100%;
  min-height: 0;
}

.breakfast-products {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.breakfast-note {
  flex: 0 0 auto;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--card);
  border-left: 6px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.07);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.photo-grid {
  display: grid;
  gap: 22px;
  min-height: 0;
}

.photo-grid.breakfast {
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.card {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--card);
  border: 1px solid rgba(121, 83, 60, 0.12);
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(61, 42, 25, 0.1);
}

.card.nophoto {
  justify-content: center;
}

.shot-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.2;
  overflow: hidden;
  background: var(--card-2);
}

.shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.badge-stack {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}

.badge-top {
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 5px 11px 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-novedad {
  background: #2f6f4e;
}

.badge-oferta {
  background: #9c3e28;
}

.card.oferta-card {
  border: 2px solid #d8a189;
  box-shadow: 0 10px 28px rgba(156, 62, 40, 0.14);
}

.card.oferta-card .shot {
  object-position: center 35%;
}

.card.oferta-card .oferta-kicker {
  color: #9c3e28;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card.oferta-card .price {
  color: #9c3e28;
}

.card-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px 18px 17px;
}

.row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.08;
}

.price {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.desc {
  color: var(--muted);
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.25;
}

.photo-grid.breakfast .card,
.card.breakfast-side-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 76px;
}

.photo-grid.breakfast .shot-wrap,
.card.breakfast-side-card .shot-wrap {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.photo-grid.breakfast .card-body,
.card.breakfast-side-card .card-body {
  flex: 0 0 auto;
  gap: 3px;
  padding: 12px 16px 13px;
}

.photo-grid.breakfast .card h3,
.card.breakfast-side-card h3 {
  font-size: 25px;
}

.photo-grid.breakfast .price,
.card.breakfast-side-card .price {
  font-size: 27px;
}

.photo-grid.breakfast .desc,
.card.breakfast-side-card .desc {
  font-size: 15.5px;
  line-height: 1.12;
}

.breakfast-sidebar .addons-card .header-qr {
  width: 100%;
  margin-top: auto;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(156, 62, 40, 0.14);
  box-shadow: none;
}

.breakfast-sidebar .addons-card .header-qr img {
  width: 118px;
  height: 118px;
}

.breakfast-sidebar .addons-card .header-qr-title {
  font-size: 26px;
}

.breakfast-sidebar .addons-card .header-qr-sub {
  font-size: 16px;
}

.sidebar.breakfast-sidebar {
  gap: 22px;
}

.breakfast-sidebar .addon-name {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.breakfast-sidebar .addon-row {
  padding: 12px 0;
  font-size: 26px;
}

.breakfast-sidebar .addon-price {
  color: var(--brand);
  font-size: 26px;
}

.card.breakfast-side-card {
  flex: 0 0 calc((100% - 44px) / 3);
}

.card.breakfast-side-card.oferta-card {
  grid-template-rows: minmax(0, 1fr) 102px;
}

.card.breakfast-side-card.oferta-card.image-only {
  grid-template-rows: minmax(0, 1fr);
}

.card.oferta-card.image-only .shot-wrap {
  border-radius: inherit;
}

.card.breakfast-side-card.oferta-card .card-body {
  gap: 4px;
  padding-top: 10px;
}

.card.breakfast-side-card.oferta-card h3 {
  font-size: 22px;
  line-height: 1.15;
}

.sidebar {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qr-card,
.addons-card,
.menu-panel,
.note-card {
  background: var(--card);
  border: 1px solid rgba(121, 83, 60, 0.14);
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(61, 42, 25, 0.1);
}

.qr-card {
  width: 100%;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
}

.qr-card img {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
}

.qr-copy {
  min-width: 0;
}

.eyebrow {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.qr-title {
  margin-top: 3px;
  color: var(--brand);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.02;
}

.qr-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  line-height: 1.2;
}

.addons-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 23px 26px 20px;
}

.addons-card.has-image {
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(156, 62, 40, 0.22);
  background: #f7efe6;
}

.addons-card .addons-shot {
  flex: 0 0 auto;
  width: 100%;
  max-height: 34%;
  background: #eee;
  overflow: hidden;
}

.addons-card .addons-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 40%;
}

.addons-card .addons-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 14px;
  background: linear-gradient(180deg, #fbf6f0 0%, #f3e7db 100%);
}

.addons-card.has-image .section-title {
  margin-bottom: 4px;
  padding-bottom: 9px;
  font-size: 23px;
}

.section-title {
  margin: 0 0 8px;
  padding-bottom: 13px;
  color: var(--brand);
  border-bottom: 2px solid var(--line);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.list {
  min-height: 0;
}

.addon-row,
.compact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed var(--line);
}

.addon-row {
  padding: 11px 0;
  font-size: 21px;
}

.addon-row:last-child,
.compact-row:last-child {
  border-bottom: 0;
}

.addon-name {
  min-width: 0;
  color: var(--muted);
  font-style: italic;
}

.addon-price,
.compact-price {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.note-card {
  padding: 14px 18px;
  color: var(--muted);
  background: var(--card-2);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
}

.food-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 262px;
  gap: 22px;
}

.food-card-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.promo-layout {
  height: 100%;
  min-height: 0;
}

.promo-layout .food-card-grid {
  height: 100%;
}

.promo-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(111, 98, 87, 0.82);
  font-size: 28px;
}

.food-card-grid .card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 96px;
}

.food-card-grid .shot-wrap {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.food-card-grid .card-body {
  overflow: hidden;
  gap: 3px;
  padding: 11px 14px 12px;
}

.food-card-grid .row-head,
.food-card-grid .card h3 {
  min-width: 0;
}

.food-card-grid .row-head {
  align-items: flex-start;
  gap: 8px;
}

.food-card-grid .card h3 {
  font-size: 22px;
}

.food-card-grid .price {
  font-size: 24px;
}

.food-card-grid .desc {
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.food-lower {
  min-height: 0;
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr);
  gap: 14px;
}

.food-top {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.tosta-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
}

.tosta-line .card h3 {
  font-size: 22px;
}

.tosta-line .price {
  font-size: 24px;
}

.tosta-line .card-body {
  padding: 13px 15px 15px;
}

.tosta-line .desc {
  font-size: 15px;
}

.extras-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid rgba(121, 83, 60, 0.14);
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(61, 42, 25, 0.1);
}

.extras-label {
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.extras-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 13px 6px;
  color: var(--muted);
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
}

.extras-pill b {
  color: var(--ink);
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.food-bottom {
  min-height: 0;
}

.menu-panel {
  min-height: 0;
  overflow: hidden;
  padding: 22px 24px 18px;
}

.menu-panel .section-title {
  font-size: 24px;
}

.compact-row {
  padding: 7px 0;
  font-size: 18.5px;
}

.food-bottom .menu-panel {
  padding: 22px 24px 18px;
}

.food-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
}

.food-lower .menu-panel {
  padding: 14px 20px 12px;
}

.food-lower .menu-panel .section-title {
  margin-bottom: 3px;
  padding-bottom: 8px;
  font-size: 23px;
}

.food-lower .food-menu-grid .compact-row {
  padding: 7px 0;
  font-size: 19px;
}

.food-lower .food-menu-grid .compact-desc {
  font-size: 14.5px;
}

.food-menu-grid .compact-row {
  padding: 5px 0;
  font-size: 17.2px;
}

.food-menu-grid .compact-desc {
  font-size: 13.4px;
}

.compact-main {
  min-width: 0;
}

.compact-name {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
}

.compact-desc {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.14;
}

.group-label {
  margin-top: 12px;
  padding: 5px 10px 6px;
  color: #fff;
  background: var(--sage);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-label:first-child {
  margin-top: 0;
}

.drink-layout {
  height: 100%;
  display: grid;
  grid-template-rows: 456px minmax(0, 1fr);
  gap: 22px;
}

.smoothie-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 18px;
  min-height: 0;
}

.smoothie-grid .card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 126px;
}

.smoothie-grid .card h3 {
  font-size: 22px;
  line-height: 1.02;
}

.smoothie-grid .price {
  font-size: 23px;
}

.smoothie-grid .desc {
  font-size: 15.5px;
  line-height: 1.12;
}

.smoothie-grid .shot-wrap {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.smoothie-grid .shot {
  object-fit: cover;
  object-position: center center;
}

.smoothie-grid .cold-beer-card .shot {
  object-position: center 48%;
}

.smoothie-grid .card-body {
  overflow: hidden;
  flex: 0 0 auto;
  gap: 5px;
  padding: 12px 13px 13px;
}

.bottom-lists {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 22px;
}

.drink-list .compact-row {
  padding: 5px 0;
  font-size: 18.5px;
}

.drinks-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.drink-list .compact-desc {
  font-size: 14.5px;
}

.drink-list {
  padding: 16px 20px 14px;
}

.ice-card .shot {
  object-position: center 46%;
}

.ice-card .card-body {
  gap: 9px;
}

.ice-card h3 {
  color: var(--brand);
  text-transform: uppercase;
}

.ice-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.ice-option {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}

.ice-option-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
}

.ice-option-price {
  color: var(--brand);
  font-size: 21px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.beer-list {
  padding: 16px 22px 14px;
}

.beer-list .section-title,
.aperitif-list .section-title {
  margin-bottom: 6px;
  padding-bottom: 8px;
  font-size: 23px;
}

.beer-list .beer-row {
  padding: 9px 0;
}

.beer-list .beer-name {
  font-size: 17.5px;
}

.aperitif-list {
  padding: 16px 18px 14px;
}

.aperol-feature {
  overflow: hidden;
  margin-top: 10px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.aperol-feature img {
  width: 100%;
  height: 184px;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.aperol-body {
  padding: 8px 11px 9px;
}

.aperol-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.aperol-head h3 {
  min-width: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.05;
}

.aperol-head span {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.aperol-desc {
  margin-top: 3px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.08;
}

.aperitif-rows {
  margin-top: 5px;
}

.aperitif-rows .beer-row {
  padding: 3px 0;
}

.aperitif-rows .beer-name {
  font-size: 16px;
}

.aperitif-rows .beer-price {
  font-size: 18px;
}

.beer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  border-bottom: 1px dashed var(--line);
}

.beer-row:last-child {
  border-bottom: 0;
}

.beer-name {
  min-width: 0;
  color: var(--ink);
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.05;
}

.beer-price {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}


#err {
  position: absolute;
  left: 64px;
  bottom: 14px;
  color: rgba(111, 98, 87, 0.82);
  font-size: 12px;
}
