.bobo-menu-page{--ink:#0b0706;--paper:#f4ebe2;--paper-muted:#cfc0b4;--paper-faint:#96877d;--rose:#d49387;--rose-soft:#fad7ed;--line:rgba(244,235,226,.2);--line-strong:rgba(250,215,237,.42);--gutter:clamp(22px,4.3vw,72px);--ease-out:cubic-bezier(.22,1,.36,1);--header-height:88px;--toolbar-height:78px;--font-display:inherit;--font-editorial:ui-monospace,"Courier New",monospace;--font-inter:inherit;--font-geist-mono:ui-monospace,"Courier New",monospace;box-sizing:border-box;min-width:320px;overflow-x:clip;color:var(--paper)}
.bobo-menu-page *{box-sizing:border-box}.bobo-menu-page [hidden]{display:none!important}body.bobo-dialog-open{overflow:hidden}
.bobo-menu-page .allergens-block ul{margin:14px 0 0;padding-left:18px;color:var(--paper-muted);font-family:var(--font-editorial);font-size:13px;line-height:1.7}
.bobo-menu-page .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;
}

.bobo-menu-page .menu-toggle {
  display: none;
}

.bobo-menu-page {
  padding-top: var(--header-height);
  background-color: var(--limewash-base);
  background-image:
    linear-gradient(rgba(6, 4, 3, 0.985), rgba(6, 4, 3, 0.985)),
    url("../assets../assets/images/warm-dark-limewash.webp");
  background-repeat: repeat, repeat;
  background-size: auto, 720px 875px;
}

.bobo-menu-page .menu-intro {
  width: min(calc(100% - (var(--gutter) * 2)), 1380px);
  min-height: 190px;
  margin: 0 auto;
  padding: 52px 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
}

.bobo-menu-page .kicker,
.bobo-menu-page .section-eyebrow,
.bobo-menu-page .dialog-category {
  margin: 0 0 12px;
  color: var(--rose-soft);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: none;
}

.bobo-menu-page .menu-intro h1,
.bobo-menu-page .section-heading h2,
.bobo-menu-page .delivery-section h2,
.bobo-menu-page .no-results h2,
.bobo-menu-page .dialog-intro h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.bobo-menu-page .menu-intro h1 {
  font-size: clamp(60px, 7vw, 108px);
  line-height: 0.78;
}

.bobo-menu-page .menu-toolbar {
  position: sticky;
  top: var(--header-height);
  z-index: 60;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 4, 3, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.bobo-menu-page .toolbar-inner {
  width: min(calc(100% - (var(--gutter) * 2)), 1380px);
  min-height: var(--toolbar-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 32px;
}

.bobo-menu-page .category-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bobo-menu-page .category-nav::-webkit-scrollbar {
  display: none;
}

.bobo-menu-page .category-nav a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--rose-soft);
  font-family: var(--font-inter), Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease,
    transform 180ms ease;
}

.bobo-menu-page .category-nav a:hover {
  background: rgba(250, 215, 237, 0.08);
  color: var(--rose-soft);
}

.bobo-menu-page .category-nav a.is-active {
  border-color: var(--rose-soft);
  background: var(--rose-soft);
  color: var(--ink);
}

.bobo-menu-page .category-nav a.is-active::before {
  content: none;
}

.bobo-menu-page .search-field {
  height: 46px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease;
}

.bobo-menu-page .search-field:focus-within {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
}

.bobo-menu-page .search-field svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--paper-muted);
  stroke-width: 1.5;
}

.bobo-menu-page .search-field input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 13px;
}

.bobo-menu-page .search-field input::placeholder {
  color: var(--paper-faint);
  opacity: 1;
}

.bobo-menu-page .search-field input::-webkit-search-cancel-button {
  display: none;
}

.bobo-menu-page .search-field button {
  width: 36px;
  height: 36px;
  padding: 9px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.bobo-menu-page .search-field button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bobo-menu-page .menu-content {
  width: min(calc(100% - (var(--gutter) * 2)), 1380px);
  margin: 0 auto;
}

.bobo-menu-page .menu-section {
  padding: 112px 0 24px;
  scroll-margin-top: calc(var(--header-height) + var(--toolbar-height) + 12px);
}

.bobo-menu-page .section-heading {
  margin-bottom: 46px;
  padding: 0 0 30px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.bobo-menu-page .section-number {
  align-self: start;
  color: var(--paper-faint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.bobo-menu-page .section-eyebrow {
  margin-bottom: 10px;
}

.bobo-menu-page .section-heading h2,
.bobo-menu-page .delivery-section h2 {
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
}

.bobo-menu-page .section-description-wrap {
  max-width: 540px;
  justify-self: end;
}

.bobo-menu-page .section-description-wrap > p {
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 14px;
  line-height: 1.75;
}

.bobo-menu-page .vegan-note {
  display: inline;
  color: var(--rose-soft);
  font: inherit;
}

.bobo-menu-page .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 0;
}

.bobo-menu-page .product-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 0 clamp(20px, 2.4vw, 40px) 8px;
}

.bobo-menu-page .product-card::before {
  position: absolute;
  inset: 0 6px;
  z-index: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 2%, rgba(75, 41, 35, 0.11), transparent 43%),
    linear-gradient(145deg, rgba(19, 14, 13, 0.97), rgba(13, 10, 9, 0.98) 56%, rgba(25, 17, 15, 0.9));
  content: "";
  pointer-events: none;
}

.bobo-menu-page .product-card > * {
  position: relative;
  z-index: 1;
}

.bobo-menu-page .product-image-slot {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 420ms var(--ease-out);
}

.bobo-menu-page .product-image-slot::before,
.bobo-menu-page .product-image-slot::after {
  content: none;
}

.bobo-menu-page .product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.36));
  transform: scale(1.04);
  transition: transform 420ms var(--ease-out), filter 420ms ease;
}

.bobo-menu-page .product-card:hover .product-image {
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.46));
  transform: scale(1.065);
}

.bobo-menu-page [data-image-slot="image-haudutettu-tee"] .product-image {
  transform: scale(1.28);
}

.bobo-menu-page .product-card:hover [data-image-slot="image-haudutettu-tee"] .product-image {
  transform: scale(1.31);
}

.bobo-menu-page .product-card:hover .product-image-slot {
  transform: translateY(-5px);
}

.bobo-menu-page .image-slot-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(250, 215, 237, 0.18);
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.36em;
  transform: translate(-50%, -50%);
}

.bobo-menu-page .product-badge {
  position: absolute;
  left: 6px;
  top: 0;
  z-index: 3;
  min-width: 84px;
  min-height: 30px;
  padding: 7px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 17px 0 4px 0;
  background: var(--rose-soft);
  color: var(--ink);
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.bobo-menu-page .product-badge--seasonal {
  border-color: transparent;
}

.bobo-menu-page .product-copy {
  padding: 10px 0 0;
}

.bobo-menu-page .product-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(250, 215, 237, 0.72);
}

.bobo-menu-page .product-heading-row h3 {
  min-width: 0;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(21px, 1.9vw, 30px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.bobo-menu-page .product-price {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 28px;
  color: var(--paper);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.055em;
  word-spacing: 0;
}

.bobo-menu-page .product-price > span {
  display: inline-block;
  white-space: nowrap;
}

.bobo-menu-page .product-price__label {
  display: inline-block;
  margin-right: 8px;
  color: var(--paper);
}

.bobo-menu-page .product-price--divided {
  gap: 6px 0;
}

.bobo-menu-page .product-price--divided > span + span::before {
  width: 1px;
  height: 13px;
  margin: 0 15px;
  display: inline-block;
  background: rgba(244, 235, 226, 0.34);
  content: "";
  vertical-align: -2px;
}

.bobo-menu-page .product-description {
  max-width: 38ch;
  margin: 11px 0 0;
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 13px;
  line-height: 1.65;
}

.bobo-menu-page .product-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.bobo-menu-page .product-card--featured .product-image-slot {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border: 0;
}

.bobo-menu-page .product-card--featured .product-image {
  object-position: center 64%;
  transform: scale(1.38);
}

.bobo-menu-page .product-card--featured:hover .product-image {
  transform: scale(1.41);
}

.bobo-menu-page .product-card--featured .product-copy {
  padding: 44px clamp(30px, 4vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bobo-menu-page .product-card--featured .product-heading-row {
  flex-direction: row;
}

.bobo-menu-page .product-card--featured .product-heading-row h3 {
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.01em;
}

.bobo-menu-page .product-card--featured .product-price {
  margin-top: 8px;
  font-size: 14px;
  text-align: left;
}

.bobo-menu-page .product-card--featured .product-description {
  margin-top: 11px;
  color: var(--paper-muted);
  font-size: 14px;
}

.bobo-menu-page .lunch-hours {
  width: 100%;
  max-width: 320px;
  min-width: 0;
  margin-top: 12px;
}

.bobo-menu-page .lunch-hours__toggle {
  min-height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: none;
}

.bobo-menu-page .lunch-hours__toggle svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.bobo-menu-page .lunch-hours.is-open .lunch-hours__toggle svg {
  transform: rotate(180deg);
}

.bobo-menu-page .lunch-hours__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 200ms ease;
}

.bobo-menu-page .lunch-hours.is-open .lunch-hours__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.bobo-menu-page .lunch-hours__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.bobo-menu-page .lunch-hours dl {
  min-width: 0;
  margin: 6px 0 0;
  padding-top: 10px;
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 11px;
}

.bobo-menu-page .lunch-hours dl > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.bobo-menu-page .lunch-hours dt,
.bobo-menu-page .lunch-hours dd {
  min-width: 0;
  margin: 0;
}

.bobo-menu-page .lunch-hours dt {
  color: var(--paper);
}

.bobo-menu-page .lunch-hours dd {
  color: var(--paper-muted);
  white-space: nowrap;
}

.bobo-menu-page .delivery-section {
  margin: 118px 0 90px;
  padding: 62px 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(420px, 1.35fr);
  align-items: center;
  gap: 42px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.bobo-menu-page .delivery-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bobo-menu-page .delivery-actions button {
  min-height: 72px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.bobo-menu-page .delivery-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.bobo-menu-page .delivery-actions button > span {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 500;
  font-size: 20px;
}

.bobo-menu-page .delivery-actions svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--paper-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.bobo-menu-page .delivery-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.76);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: backdrop-in 180ms ease both;
}

.bobo-menu-page .delivery-dialog {
  width: min(100%, 520px);
  max-height: min(680px, calc(100dvh - 56px));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, #15100f 0%, #100c0b 100%);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
  animation: dialog-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bobo-menu-page .delivery-dialog__handle {
  display: none;
}

.bobo-menu-page .delivery-dialog__header {
  min-height: 112px;
  padding: 24px 22px 22px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.bobo-menu-page .delivery-dialog__header p {
  margin: 0 0 8px;
  color: var(--paper-faint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: none;
}

.bobo-menu-page .delivery-dialog__header h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.bobo-menu-page .delivery-location-list {
  max-height: min(500px, calc(100dvh - 220px));
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.bobo-menu-page .delivery-location-row {
  min-height: 82px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--paper);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.bobo-menu-page .delivery-location-row + .delivery-location-row {
  margin-top: 4px;
}

.bobo-menu-page .delivery-location-row > span {
  display: grid;
  gap: 5px;
}

.bobo-menu-page .delivery-location-row strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.bobo-menu-page .delivery-location-row small {
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 11px;
}

.bobo-menu-page .delivery-location-row svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--paper-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.bobo-menu-page .delivery-location-row:hover,
.bobo-menu-page .delivery-location-row:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-1px);
  outline: none;
}

.bobo-menu-page .delivery-location-empty {
  margin: 0;
  padding: 30px 20px;
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.bobo-menu-page .no-results {
  min-height: 460px;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bobo-menu-page .no-results h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.bobo-menu-page .no-results > p:not(.kicker) {
  color: var(--paper-muted);
}

.bobo-menu-page .no-results button {
  min-height: 46px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.bobo-menu-page .dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.76);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: backdrop-in 180ms ease both;
}

.bobo-menu-page .product-dialog {
  width: min(100%, 980px);
  max-height: min(820px, calc(100dvh - 56px));
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: #110d0c;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
  animation: dialog-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bobo-menu-page .dialog-handle {
  display: none;
}

.bobo-menu-page .dialog-topline {
  min-height: 70px;
  padding: 12px 14px 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.bobo-menu-page .dialog-topline p {
  margin: 0;
  color: var(--paper-faint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: none;
}

.bobo-menu-page .dialog-close {
  width: 44px;
  height: 44px;
  padding: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.bobo-menu-page .dialog-close:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.bobo-menu-page .dialog-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.bobo-menu-page .dialog-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(430px, 1.05fr);
}

.bobo-menu-page .dialog-intro {
  padding: 48px 38px;
  border-right: 1px solid var(--line);
}

.bobo-menu-page .dialog-category {
  margin-bottom: 18px;
}

.bobo-menu-page .dialog-intro h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.92;
}

.bobo-menu-page .dialog-description {
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 14px;
  line-height: 1.75;
}

.bobo-menu-page .dialog-price {
  margin: 24px 0 0;
  color: var(--rose-soft);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 12px;
  line-height: 1.7;
}

.bobo-menu-page .dialog-details {
  min-width: 0;
  padding: 34px;
}

.bobo-menu-page .flavor-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.bobo-menu-page .flavor-selector button {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bobo-menu-page .flavor-selector button:hover,
.bobo-menu-page .flavor-selector button:focus-visible {
  border-color: var(--rose-soft);
  color: var(--paper);
}

.bobo-menu-page .flavor-selector button.is-selected {
  border-color: var(--rose-soft);
  background: var(--rose-soft);
  color: var(--ink);
}

.bobo-menu-page .size-selector {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
}

.bobo-menu-page .size-selector button {
  min-height: 64px;
  padding: 10px 8px;
  border: 0;
  border-right: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.bobo-menu-page .size-selector button:last-child {
  border-right: 0;
}

.bobo-menu-page .size-selector button.is-selected {
  background: var(--rose-soft);
  color: var(--ink);
}

.bobo-menu-page .size-selector button span,
.bobo-menu-page .size-selector button small {
  display: block;
}

.bobo-menu-page .size-selector button span {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 500;
  font-size: 20px;
}

.bobo-menu-page .size-selector button small {
  margin-top: 3px;
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.bobo-menu-page .size-selector button.is-price-only small {
  margin-top: 0;
  font-size: 11px;
}

.bobo-menu-page .detail-block {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.bobo-menu-page .dialog-details > .detail-block:first-of-type {
  border-top: 0;
}

.bobo-menu-page .detail-block h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.bobo-menu-page .detail-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.bobo-menu-page .detail-heading span {
  color: var(--paper-faint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: none;
}

.bobo-menu-page .empty-detail,
.bobo-menu-page .allergens-block p,
.bobo-menu-page .compact-detail p {
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 13px;
  line-height: 1.7;
}

.bobo-menu-page .nutrition-list {
  margin: 18px 0 0;
}

.bobo-menu-page .nutrition-list > div {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dotted var(--line);
}

.bobo-menu-page .nutrition-list dt,
.bobo-menu-page .nutrition-list dd {
  margin: 0;
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 11px;
}

.bobo-menu-page .nutrition-list dt {
  color: var(--paper-muted);
}

.bobo-menu-page .tea-options {
  margin-top: 32px;
}

.bobo-menu-page .tea-options ul {
  margin: 15px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.bobo-menu-page .tea-options li {
  color: var(--paper-muted);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: 11px;
  line-height: 1.45;
}

@keyframes backdrop-in {
}

@keyframes dialog-in {
}

@media (max-width: 1080px) {

  .bobo-menu-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bobo-menu-page .delivery-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .bobo-menu-page .delivery-section > p {
    display: none;
  }
}

@media (max-width: 820px) {

  .bobo-menu-page .menu-intro,
.bobo-menu-page .toolbar-inner,
.bobo-menu-page .menu-content {
    width: min(100% - 32px, 1380px);
  }

  .bobo-menu-page .menu-intro {
    min-height: 150px;
    padding: 40px 0 28px;
  }

  .bobo-menu-page .menu-intro h1 {
    font-size: 68px;
  }

  .bobo-menu-page .toolbar-inner {
    padding: 9px 0;
    grid-template-columns: 1fr;
    grid-template-rows: 44px 46px;
    gap: 9px;
  }

  .bobo-menu-page .category-nav {
    margin-right: -16px;
    padding-right: 16px;
  }

  .bobo-menu-page .category-nav a {
    padding: 0 14px;
  }

  .bobo-menu-page .menu-section {
    padding-top: 84px;
    scroll-margin-top: calc(var(--toolbar-height) + 8px);
  }

  .bobo-menu-page .section-heading {
    grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1.15fr);
    gap: 22px;
  }

  .bobo-menu-page .section-description-wrap {
    justify-self: start;
  }

  .bobo-menu-page .product-grid {
    gap: 38px 16px;
  }

  .bobo-menu-page .product-heading-row {
    flex-direction: row;
    gap: 14px;
  }

  .bobo-menu-page .product-price {
    margin-top: 0;
    text-align: left;
  }

  .bobo-menu-page .product-card--featured {
    grid-template-columns: 1fr;
  }

  .bobo-menu-page .product-card--featured .product-image-slot {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .bobo-menu-page .product-card--featured .product-copy {
    padding: 30px;
  }

  .bobo-menu-page .delivery-section {
    margin: 90px 0 70px;
    grid-template-columns: 1fr;
  }

  .bobo-menu-page .delivery-actions {
    margin-top: 8px;
  }

  .bobo-menu-page .dialog-backdrop {
    padding: 0;
    align-items: end;
  }

  .bobo-menu-page .product-dialog {
    width: 100%;
    max-height: min(88dvh, 860px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 26px 26px 0 0;
  }

  .bobo-menu-page .dialog-handle {
    width: 42px;
    height: 4px;
    margin: 10px auto -2px;
    display: block;
    border-radius: 99px;
    background: rgba(243, 238, 229, 0.28);
  }

  .bobo-menu-page .dialog-layout {
    grid-template-columns: 1fr;
  }

  .bobo-menu-page .dialog-intro {
    padding: 34px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bobo-menu-page .dialog-details {
    padding: 26px;
  }

  .bobo-menu-page .tea-options {
    max-height: none;
  }
}

@media (max-width: 540px) {
  .bobo-menu-page .menu-intro,
.bobo-menu-page .toolbar-inner,
.bobo-menu-page .menu-content {
    width: min(100% - 24px, 1380px);
  }

  .bobo-menu-page .menu-intro {
    min-height: 132px;
  }

  .bobo-menu-page .menu-intro h1 {
    font-size: 58px;
  }

  .bobo-menu-page .product-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    border-left: 0;
  }

  .bobo-menu-page .product-card {
    padding: 0 18px 30px;
  }

  .bobo-menu-page .product-card::before {
    inset: 0;
  }

  .bobo-menu-page .product-badge {
    left: 0;
    top: 0;
  }

  .bobo-menu-page .product-copy,
.bobo-menu-page .product-heading-row,
.bobo-menu-page .product-heading-row h3,
.bobo-menu-page .product-price {
    min-width: 0;
    max-width: 100%;
  }

  .bobo-menu-page .product-heading-row h3 {
    overflow-wrap: anywhere;
  }

  .bobo-menu-page .section-heading {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
  }

  .bobo-menu-page .section-number {
    display: none;
  }

  .bobo-menu-page .section-description-wrap {
    grid-column: 1;
  }

  .bobo-menu-page .product-heading-row {
    flex-direction: row;
    gap: 12px;
  }

  .bobo-menu-page .product-price {
    width: 100%;
    gap: 6px 12px;
    font-size: 12px;
    text-align: left;
  }

  .bobo-menu-page .menu-section--kuplatee .product-price,
.bobo-menu-page .menu-section--kahvi .product-price,
.bobo-menu-page .menu-section--tee .product-price {
    margin-top: 14px;
    margin-bottom: 2px;
  }

  .bobo-menu-page .menu-section--kuplatee .product-price {
    display: flex;
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .bobo-menu-page .product-price__label {
    margin-right: 6px;
  }

  .bobo-menu-page .product-card--featured .product-image-slot {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .bobo-menu-page .product-card--featured .product-copy {
    padding: 26px 22px;
  }

  .bobo-menu-page .lunch-hours {
    max-width: 100%;
  }

  .bobo-menu-page .delivery-actions {
    grid-template-columns: 1fr;
  }

  .bobo-menu-page .delivery-dialog-backdrop {
    padding: 0;
    align-items: end;
  }

  .bobo-menu-page .delivery-dialog {
    width: 100%;
    max-height: 82dvh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 26px 26px 0 0;
  }

  .bobo-menu-page .delivery-dialog__handle {
    width: 42px;
    height: 4px;
    margin: 10px auto -2px;
    display: block;
    border-radius: 99px;
    background: rgba(243, 238, 229, 0.28);
  }

  .bobo-menu-page .delivery-dialog__header {
    min-height: 102px;
    padding: 18px 18px 18px 22px;
  }

  .bobo-menu-page .delivery-location-list {
    max-height: calc(82dvh - 114px);
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }

  .bobo-menu-page .dialog-topline {
    padding-left: 24px;
  }

  .bobo-menu-page .dialog-intro h2 {
    font-size: 46px;
  }
}

/* WordPress-teeman header-, mobiilivalikko- ja footer-mitat. */
@media (max-width: 820px) {

  .bobo-menu-page .menu-toggle {
    position: absolute;
    top: max(10px, env(safe-area-inset-top));
    right: max(20px, env(safe-area-inset-right));
    z-index: 110;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 14px 10px;
    display: grid !important;
    border: 0;
    background: transparent;
    color: #fad7ed;
    cursor: pointer;
  }

  .bobo-menu-page .menu-toggle span {
    width: 24px;
    height: 2px;
    margin: auto;
    display: block;
    background: currentColor;
    transform-origin: center;
    transition: transform 320ms var(--ease-out), opacity 220ms ease;
  }

  .bobo-menu-page .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .bobo-menu-page .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .bobo-menu-page .menu-intro,
.bobo-menu-page .toolbar-inner,
.bobo-menu-page .menu-content {
    width: min(calc(100% - (var(--gutter) * 2)), 1380px);
  }

  .bobo-menu-page .menu-section {
    scroll-margin-top: calc(var(--header-height) + var(--toolbar-height) + 8px);
  }
}

@media (min-width: 460px) and (max-width: 540px) {
  .bobo-menu-page .product-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

/* --------------------------------------------------------------------------
   1.0.2 parity fixes: Sites typography, info icon and product detail layout
   -------------------------------------------------------------------------- */

/* Do not inherit the theme's title font: keep the Sites menu typography. */
.bobo-menu-page {
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-editorial: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-geist-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Sites-style circled info control. Fully reset theme button styles so the
   WordPress theme cannot turn it into a white rectangular button. */
.bobo-menu-page .info-button,
.bobo-menu-page .info-button:hover,
.bobo-menu-page .info-button:active,
.bobo-menu-page .info-button:focus {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  margin: 0;
  padding: 0;
  display: inline-grid;
  flex: 0 0 30px;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(250, 215, 237, 0.78);
  border-radius: 999px;
  outline: 0;
  background: rgba(250, 215, 237, 0.025);
  box-shadow: none;
  color: var(--rose-soft);
  font: inherit;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bobo-menu-page .info-button span {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0 0 1px;
  display: block;
  color: inherit;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.bobo-menu-page .info-button:hover {
  border-color: var(--rose-soft);
  background: rgba(250, 215, 237, 0.09);
  color: var(--paper);
  transform: translateY(-1px);
}

.bobo-menu-page .info-button:focus-visible {
  outline: 2px solid var(--rose-soft);
  outline-offset: 3px;
}

/* Isolate the detail card from global theme typography/layout rules. */
.bobo-menu-page .product-dialog,
.bobo-menu-page .product-dialog * {
  box-sizing: border-box;
}

.bobo-menu-page .product-dialog h2,
.bobo-menu-page .product-dialog h3,
.bobo-menu-page .product-dialog p,
.bobo-menu-page .product-dialog dl,
.bobo-menu-page .product-dialog dt,
.bobo-menu-page .product-dialog dd,
.bobo-menu-page .product-dialog ul,
.bobo-menu-page .product-dialog li {
  float: none;
  position: static;
  max-width: 100%;
  text-indent: 0;
}

.bobo-menu-page .dialog-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-width: 0;
}

.bobo-menu-page .dialog-intro,
.bobo-menu-page .dialog-details,
.bobo-menu-page .variant-control,
.bobo-menu-page .detail-block,
.bobo-menu-page [data-nutrition],
.bobo-menu-page [data-allergens] {
  min-width: 0;
  width: 100%;
}

.bobo-menu-page .dialog-intro h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  line-height: 0.98;
}

.bobo-menu-page .variant-control {
  clear: both;
  display: block;
}

.bobo-menu-page .variant-control + .variant-control {
  margin-top: 24px;
}

.bobo-menu-page .variant-control__label {
  margin: 0 0 10px;
  display: block;
  color: var(--paper-faint);
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: none;
}

.bobo-menu-page .flavor-selector,
.bobo-menu-page .size-selector {
  width: 100%;
  min-width: 0;
}

/* Two-size products should occupy the full width instead of leaving a blank
   third column. Three-size products keep the original S/M/L layout. */
.bobo-menu-page .size-selector:has(> button:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bobo-menu-page .size-selector:has(> button:nth-child(1):last-child) {
  grid-template-columns: 1fr;
}

.bobo-menu-page .size-selector button,
.bobo-menu-page .flavor-selector button {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.25;
}

.bobo-menu-page .detail-block {
  clear: both;
  overflow: visible;
}

.bobo-menu-page .detail-block h3 {
  max-width: 100%;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.bobo-menu-page .nutrition-list {
  width: 100%;
  min-width: 0;
  display: block;
}

.bobo-menu-page .nutrition-list > div {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 16px;
}

.bobo-menu-page .nutrition-list dt,
.bobo-menu-page .nutrition-list dd {
  min-width: 0;
  max-width: 100%;
  line-height: 1.55;
}

.bobo-menu-page .nutrition-list dt {
  overflow-wrap: anywhere;
}

.bobo-menu-page .nutrition-list dd {
  color: var(--paper);
  text-align: right;
  white-space: nowrap;
}

.bobo-menu-page .allergens-block ul {
  width: 100%;
  min-width: 0;
}

.bobo-menu-page .allergens-block li {
  overflow-wrap: anywhere;
  line-height: 1.65;
}

/* At widths where the old two-column minimums could collide, switch the
   product information card to one column before text can overlap. */
@media (max-width: 940px) {
  .bobo-menu-page .dialog-layout {
    grid-template-columns: 1fr;
  }

  .bobo-menu-page .dialog-intro {
    padding: 38px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bobo-menu-page .dialog-details {
    padding: 32px 34px 38px;
  }
}

@media (max-width: 540px) {
  .bobo-menu-page .info-button,
  .bobo-menu-page .info-button:hover,
  .bobo-menu-page .info-button:active,
  .bobo-menu-page .info-button:focus {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    flex-basis: 28px;
  }

  .bobo-menu-page .dialog-intro {
    padding: 30px 22px 28px;
  }

  .bobo-menu-page .dialog-details {
    padding: 24px 22px max(30px, env(safe-area-inset-bottom));
  }

  .bobo-menu-page .dialog-intro h2 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 0.98;
  }

  .bobo-menu-page .nutrition-list > div {
    gap: 10px;
  }
}


/* --------------------------------------------------------------------------
   1.0.3 layout fixes: nav links, desktop lunch card and mobile sticky behavior
   -------------------------------------------------------------------------- */

/* WordPress themes often add link underlines via text-decoration or pseudo
   elements. Category pills should never show those underlines. */
.bobo-menu-page .category-nav a,
.bobo-menu-page .category-nav a:link,
.bobo-menu-page .category-nav a:visited,
.bobo-menu-page .category-nav a:hover,
.bobo-menu-page .category-nav a:focus,
.bobo-menu-page .category-nav a:active {
  text-decoration: none !important;
  text-decoration-line: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.bobo-menu-page .category-nav a::after {
  display: none !important;
  content: none !important;
}

/* Lunch Combo is a full-width featured module on desktop. The previous grid
   let the single featured card occupy only the first of three columns, which
   made it look compressed against the left edge. */
.bobo-menu-page .featured-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.bobo-menu-page .featured-grid .product-card--featured {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

@media (min-width: 821px) {
  .bobo-menu-page .product-card--featured {
    min-height: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
  }

  .bobo-menu-page .product-card--featured .product-image-slot {
    height: 100%;
    min-height: 360px;
    aspect-ratio: auto;
  }

  .bobo-menu-page .product-card--featured .product-copy {
    min-width: 0;
    min-height: 360px;
    justify-content: center;
  }
}

/* On Menu mobile pages the site logo / hamburger header should scroll away.
   Only the category + search toolbar remains attached to the viewport. */
@media (max-width: 820px) {
  .bobo-menu-page {
    --toolbar-height: 117px;
  }

  .bobo-menu-page .menu-toolbar {
    top: 0 !important;
  }

  .bobo-menu-page .menu-section {
    scroll-margin-top: calc(var(--toolbar-height) + 8px) !important;
  }

  body.bobo-menu-route .bobo-menu-static-site-header,
  body.bobo-menu-route .bobo-menu-static-site-header.is-sticky,
  body.bobo-menu-route .bobo-menu-static-site-header.sticky,
  body.bobo-menu-route .bobo-menu-static-site-header.fixed {
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    transform: none !important;
    translate: none !important;
  }
}


/* --------------------------------------------------------------------------
   1.0.4 parity fixes: exact desktop lunch proportion + site header scroll-away
   -------------------------------------------------------------------------- */

/* The BOBO site header/logo/hamburger is part of the page intro on Menu.
   It must scroll away on every viewport. Only the Menu category + search
   toolbar is allowed to remain attached to the viewport. */
body.bobo-menu-route .bobo-menu-static-site-header,
body.bobo-menu-route .bobo-menu-static-site-header.is-sticky,
body.bobo-menu-route .bobo-menu-static-site-header.sticky,
body.bobo-menu-route .bobo-menu-static-site-header.fixed,
body.bobo-menu-route .bobo-menu-static-site-header[data-sticky],
body.bobo-menu-route .bobo-menu-static-site-header[style] {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  width: 100% !important;
  transform: none !important;
  translate: none !important;
}

/* Once the normal site header scrolls away, toolbar pins directly to viewport. */
.bobo-menu-page .menu-toolbar {
  top: 0 !important;
}

.bobo-menu-page .menu-section {
  scroll-margin-top: calc(var(--toolbar-height) + 12px) !important;
}

/* Desktop Lounas combo mirrors the Sites featured-card composition:
   one full-width, low horizontal module with the image and copy balanced
   side-by-side. Do not touch the already-correct mobile composition. */
@media (min-width: 821px) {
  .bobo-menu-page .featured-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    height: clamp(320px, 28vw, 390px) !important;
    min-height: 320px !important;
    max-height: 390px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    align-items: stretch !important;
    justify-self: stretch !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 24px !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured::before {
    inset: 0 !important;
    border-radius: 24px !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-image-slot {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    align-self: stretch !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center 60% !important;
    transform: scale(1.34) !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured:hover .product-image {
    transform: scale(1.37) !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-copy {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 34px clamp(36px, 4vw, 60px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-heading-row {
    min-height: 0 !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-heading-row h3 {
    font-size: clamp(34px, 3.2vw, 50px) !important;
  }
}

/* --------------------------------------------------------------------------
   1.0.5: Lounas combo desktop — Sites reference parity
   Reference: wide ~2.93:1 featured card, image left / copy right.
   Mobile remains unchanged.
   -------------------------------------------------------------------------- */
@media (min-width: 821px) {
  .bobo-menu-page .featured-grid .product-card--featured {
    /* Keep the module as one full-width horizontal card. Its proportions now
       track the Sites reference instead of a short fixed-height banner. */
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 360px !important;
    max-height: none !important;
    aspect-ratio: 2.93 / 1 !important;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    align-items: stretch !important;
    overflow: hidden !important;
    border-radius: 24px !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured::before {
    inset: 0 !important;
    border-radius: 24px !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-image-slot {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    align-self: stretch !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center 58% !important;
    transform: scale(1.31) !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured:hover .product-image {
    transform: scale(1.335) !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-copy {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: clamp(38px, 4vw, 64px) clamp(38px, 4.4vw, 68px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: stretch !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-heading-row {
    width: 100% !important;
    min-height: 0 !important;
    align-items: center !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-heading-row h3 {
    max-width: 8.5ch !important;
    font-size: clamp(44px, 3.75vw, 62px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.018em !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-description {
    margin-top: 14px !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .product-price {
    margin-top: 12px !important;
  }

  .bobo-menu-page .featured-grid .product-card--featured .lunch-hours {
    margin-top: 14px !important;
  }
}


/* 1.0.6 — sentence/title casing for all non-product display headings.
   WordPress theme styles must not force BOBO Menu headings to uppercase.
   Product names (.product-heading-row h3) and badges remain intentionally uppercase. */
.bobo-menu-page .menu-intro h1,
.bobo-menu-page .section-heading h2,
.bobo-menu-page .delivery-section h2,
.bobo-menu-page .no-results h2,
.bobo-menu-page .delivery-dialog__header h2,
.bobo-menu-page .detail-block h3,
.bobo-menu-page .kicker,
.bobo-menu-page .section-eyebrow,
.bobo-menu-page .dialog-category,
.bobo-menu-page .dialog-topline p,
.bobo-menu-page .delivery-dialog__header p,
.bobo-menu-page .variant-control__label,
.bobo-menu-page .detail-heading span,
.bobo-menu-page .lunch-hours__toggle,
.bobo-menu-page .category-nav a {
  text-transform: none !important;
}


/* --------------------------------------------------------------------------
   1.0.7 — typography parity corrections
   Keep serif/display headings in normal title/sentence case, but restore the
   compact UI-label system from Sites to uppercase. Also make the empty
   nutrition-state typography match the allergens text exactly.
   -------------------------------------------------------------------------- */

/* These are UI labels, not display headings. In the Sites version they are
   intentionally uppercase. This also overrides the 1.0.6 sentence-case rule. */
.bobo-menu-page .category-nav a,
.bobo-menu-page .kicker,
.bobo-menu-page .section-eyebrow,
.bobo-menu-page .dialog-category,
.bobo-menu-page .dialog-topline p,
.bobo-menu-page .delivery-dialog__header p,
.bobo-menu-page .variant-control__label,
.bobo-menu-page .detail-heading span,
.bobo-menu-page .lunch-hours__toggle {
  text-transform: uppercase !important;
}

/* Display/serif headings remain in the literal casing written in the markup:
   Menu, Kuplatee, Kahvi, Lounas combo, Tilaa kotiin, Ravintotiedot,
   Allergeenit, Valitse toimipiste, etc. */
.bobo-menu-page .menu-intro h1,
.bobo-menu-page .section-heading h2,
.bobo-menu-page .delivery-section h2,
.bobo-menu-page .no-results h2,
.bobo-menu-page .delivery-dialog__header h2,
.bobo-menu-page .detail-block h3 {
  text-transform: none !important;
}

/* The fallback under Ravintotiedot must use exactly the same editorial mono
   typography as the fallback under Allergeenit. Theme paragraph rules must not
   be able to turn it into a sans-serif line. */
.bobo-menu-page .nutrition-block [data-nutrition] > p,
.bobo-menu-page .nutrition-block [data-nutrition] p,
.bobo-menu-page .allergens-block [data-allergens] > p,
.bobo-menu-page .allergens-block [data-allergens] p {
  margin: 14px 0 0 !important;
  color: var(--paper-muted) !important;
  font-family: var(--font-editorial), Courier, monospace !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.7 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
