/* 11×17" landscape — single page, large descriptive type */
@page {
  size: 17in 11in landscape;
  margin: 0.18in 0.22in;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fs-title: 0.36in;
  --fs-tag: 0.135in;
  --fs-info: 0.115in;
  --fs-hours: 0.12in;
  --fs-h2: 0.16in;
  --fs-h3: 0.135in;
  --fs-desc: 0.132in;
  --fs-label: 0.136in;
  --fs-price: 0.128in;
  --fs-note: 0.12in;
  --fs-addon: 0.125in;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #bbb;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.toolbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: #2c2a26; color: #fff;
  padding: 0.6rem 1.2rem;
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; z-index: 100;
}
.toolbar a, .toolbar button {
  background: #c9922e; color: #1a1a1a; border: none;
  padding: 0.45rem 0.9rem; border-radius: 6px; font-weight: 600;
  cursor: pointer; text-decoration: none; font-size: 0.85rem;
}
.toolbar p { font-size: 0.8rem; opacity: 0.9; }
body { padding-top: 3rem; }

html.embed .toolbar { display: none !important; }
html.embed body { padding-top: 0; background: #fff; }
html.embed .menu-sheet { margin: 0; box-shadow: none; }

@media print {
  body { background: white; padding-top: 0; }
  .toolbar { display: none !important; }
}

.menu-sheet {
  width: 17in;
  height: 11in;
  background: #fff;
  padding: 0.16in 0.2in 0.14in;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.07in;
}

/* ── Header ── */
.hdr {
  text-align: center;
  border-bottom: 2.5px solid #c9922e;
  padding-bottom: 0.055in;
  flex-shrink: 0;
}
.hdr-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.14in;
  flex-wrap: wrap;
}
.hdr h1 {
  font-size: var(--fs-title);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.hdr .tag {
  font-size: var(--fs-tag);
  color: #4a6b4c;
  font-weight: 700;
}
.hdr .info {
  font-size: var(--fs-info);
  color: #333;
  margin-top: 0.03in;
  font-weight: 600;
}
.hdr .hours {
  font-size: var(--fs-hours);
  font-weight: 700;
  margin-top: 0.02in;
  color: #444;
}

/* ── Main grid ── */
.main {
  display: grid;
  grid-template-columns: 1.18fr 1.05fr 0.95fr;
  grid-template-rows: 1fr auto;
  gap: 0.09in 0.12in;
  flex: 1;
  min-height: 0;
}

.col-shakes { grid-column: 1; grid-row: 1; }
.col-teas   { grid-column: 2; grid-row: 1; }
.col-right  { grid-column: 3; grid-row: 1 / span 2; display: flex; flex-direction: column; }

.col-extras {
  grid-column: 1 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.08in;
  border-top: 2px solid #c9922e;
  padding-top: 0.065in;
}

/* ── Section headers ── */
.col h2,
.extra-block h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4a6b4c;
  padding: 0.038in 0.065in;
  margin-bottom: 0.045in;
  border-radius: 3px;
  line-height: 1.15;
}

.col h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: #a67c2e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.05in 0 0.03in;
}
.col h3:first-of-type { margin-top: 0; }

.section-gap { margin-top: 0.08in !important; }

/* ── All descriptive body text — ONE large size ── */
.desc {
  font-size: var(--fs-desc);
  line-height: 1.34;
  color: #1a1a1a;
  margin-bottom: 0.028in;
}
.desc strong {
  font-weight: 800;
  color: #4a6b4c;
}
.note {
  font-size: var(--fs-note);
  color: #555;
  font-style: italic;
}
.price-line {
  font-weight: 700;
  margin-bottom: 0.02in;
}

/* ── Flavor categories (Breakfast, Candy, Fruit…) ── */
.flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.035in 0.1in;
  margin-bottom: 0.04in;
}
.flavor-grid-1 { grid-template-columns: 1fr; }

.flavor-cat { line-height: 1.32; }
.flavor-cat.wide { grid-column: 1 / -1; }

.cat-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 800;
  color: #4a6b4c;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.01in;
}
.cat-items {
  display: block;
  font-size: var(--fs-desc);
  color: #222;
}

/* Naked / Bare side by side */
.sub-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.08in;
  border-top: 1px solid #e8e0d4;
  padding-top: 0.045in;
  margin-top: 0.02in;
}

/* ── Price tables ── */
.prices {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-price);
  margin-bottom: 0.04in;
}
.prices td, .prices th {
  padding: 0.028in 0.04in;
  border-bottom: 1px solid #e5e5e5;
}
.prices th {
  text-align: left;
  font-size: var(--fs-desc);
  color: #555;
  font-weight: 700;
}
.prices td.r, .prices th.r { text-align: right; font-weight: 700; }
.price-label {
  font-weight: 700;
  font-size: var(--fs-note);
  color: #4a6b4c;
  padding-top: 0.022in;
}

/* ── Bottom product row ── */
.extra-block {
  background: #faf7f2;
  border: 1.5px solid #e8e0d4;
  border-radius: 4px;
  padding: 0.055in 0.07in;
}

/* ── QR codes — right column open space ── */
.qr-panel {
  background: #f5f0e8;
  border: 1.5px solid #e0d6c8;
  border-radius: 4px;
  padding: 0.06in 0.05in;
  margin-top: 0.08in;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 1.6in;
}
.qr-heading {
  text-align: center;
  font-size: var(--fs-note);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a6b4c;
  margin-bottom: 0.045in;
}
.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.06in 0.05in;
}
.qr-item { text-align: center; }
.qr-item img {
  width: 0.78in;
  height: 0.78in;
  display: block;
  margin: 0 auto 0.025in;
}
.qr-item span {
  display: block;
  font-size: var(--fs-note);
  font-weight: 700;
  color: #333;
}

/* ── Right column order box ── */
.order-box {
  background: #faf7f2;
  border-left: 3px solid #c9922e;
  padding: 0.055in 0.065in;
  margin-top: 0.07in;
  flex-shrink: 0;
}
.order-title {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: #4a6b4c;
  text-transform: uppercase;
  margin-bottom: 0.03in;
}

/* ── Add-ons bar ── */
.addons-bar {
  flex-shrink: 0;
  background: #4a6b4c;
  color: #fff;
  border-radius: 4px;
  padding: 0.06in 0.1in;
}
.addons-bar h2 {
  font-size: var(--fs-h3);
  color: #f5e6c8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.02in;
  background: transparent;
  padding: 0;
}
.addons-sub {
  font-size: var(--fs-note);
  color: #dce8dd;
  margin-bottom: 0.035in;
  font-style: italic;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.03in 0.08in;
  font-size: var(--fs-addon);
  font-weight: 600;
}
.addon-grid span b {
  color: #f5e6c8;
  font-weight: 800;
}

.foot {
  font-size: var(--fs-note);
  color: #444;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  flex-shrink: 0;
  margin-top: 0.02in;
}
.foot strong { color: #4a6b4c; }

@media screen and (max-width: 1200px) {
  .menu-sheet { width: 100%; height: auto; min-height: 11in; }
  .main { grid-template-columns: 1fr 1fr; }
  .col-shakes, .col-teas, .col-right, .col-extras { grid-column: auto; grid-row: auto; }
  .col-extras { grid-column: 1 / -1; }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
}
