:root {
  color-scheme: light;
  --bg: #f7f2e8;
  --panel: #fffaf0;
  --paper: #ffffff;
  --ink: #201916;
  --muted: #776c62;
  --line: #ded2c1;
  --red: #c8292e;
  --red-dark: #9d171d;
  --gold: #ffc83d;
  --green: #21835b;
  --blue: #2364aa;
  --shadow: 0 18px 42px rgba(58, 39, 21, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 200, 61, 0.23), transparent 360px),
    repeating-linear-gradient(90deg, rgba(200, 41, 46, 0.04) 0 1px, transparent 1px 72px),
    var(--bg);
}

button {
  color: inherit;
  font: inherit;
}

.app-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 24px;
}

.topbar {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(32, 25, 22, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #c8292e 0%, #e23b36 48%, #f0b72b 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.topbar > div:first-child {
  flex: 1 1 360px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 5px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.75;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.scoreboard {
  display: grid;
  flex: 1 1 430px;
  grid-template-columns: repeat(3, minmax(76px, 1fr));
  gap: 8px;
  min-width: min(360px, 100%);
}

.topbar-controls {
  display: flex;
  align-items: stretch;
  flex: 1 1 520px;
  gap: 10px;
  justify-content: flex-end;
  max-width: 100%;
}

.scoreboard div {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.scoreboard span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.76;
}

.scoreboard strong {
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1;
}

.help-btn {
  min-width: 86px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(32, 25, 22, 0.18);
  font-weight: 900;
  cursor: pointer;
}

.help-btn:hover {
  background: rgba(32, 25, 22, 0.26);
}

.game-grid,
.lower-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.game-grid {
  grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.15fr) minmax(280px, 0.95fr);
  align-items: stretch;
}

.lower-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.35fr);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
}

.ticket-panel,
.build-panel,
.station-panel {
  min-height: 650px;
}

.ticket {
  margin: 16px;
  padding: 18px;
  border: 1px dashed #c9b79f;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 200, 61, 0.18), transparent 54%),
    var(--paper);
}

.ticket-number,
.small-pill,
.quality-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  background: #fff;
}

.quality-badge {
  color: var(--blue);
}

.quality-badge.good {
  color: var(--green);
}

.quality-badge.warn {
  color: var(--red-dark);
}

.order-name {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.order-summary {
  min-height: 48px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.order-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  color: var(--red-dark);
  font-weight: 900;
}

.patience,
.recipe-preview {
  margin: 0 16px 16px;
}

.patience-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.bar-track {
  height: 14px;
  overflow: hidden;
  border: 1px solid #bba98f;
  border-radius: 999px;
  background: #eadfcc;
}

.bar-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
  transition: width 0.18s linear;
}

.ticket-actions,
.build-actions {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.ticket-actions {
  grid-template-columns: 1fr 1fr;
}

.build-actions {
  grid-template-columns: 0.85fr 0.85fr 1.3fr;
}

.primary-btn,
.ghost-btn,
.tool-btn,
.serve-btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}

.primary-btn,
.serve-btn {
  color: #fff;
  background: var(--red);
  box-shadow: 0 9px 0 var(--red-dark);
}

.serve-btn {
  background: var(--green);
  box-shadow: 0 9px 0 #14553a;
}

.ghost-btn,
.tool-btn {
  border-color: var(--line);
  background: #fff;
}

.primary-btn:hover,
.ghost-btn:hover,
.tool-btn:hover,
.serve-btn:hover {
  transform: translateY(-1px);
}

.primary-btn:active,
.serve-btn:active {
  transform: translateY(5px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.24);
}

.recipe-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.recipe-preview:empty::before {
  content: "レシピは非表示";
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.coach-panel {
  margin: 0 16px 16px;
  padding: 12px;
  border: 1px solid rgba(33, 131, 91, 0.32);
  border-radius: var(--radius);
  background: #eef9ef;
}

.coach-panel span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.coach-panel p {
  margin: 0;
  color: #244b36;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.layer-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.tray {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 420px;
  margin: 16px;
  overflow: hidden;
  border: 1px solid #cdbda6;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(35, 100, 170, 0.08), transparent 40%),
    linear-gradient(90deg, transparent 0 44%, rgba(32, 25, 22, 0.04) 44% 56%, transparent 56%),
    #fffdf8;
}

.tray::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 15px;
  border-radius: 50%;
  background: rgba(32, 25, 22, 0.12);
  content: "";
  filter: blur(5px);
}

.tray.drag-over {
  border-color: var(--red);
  background:
    linear-gradient(180deg, rgba(255, 200, 61, 0.2), transparent 46%),
    #fffdf8;
}

.tray-hint {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
}

.burger-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-start;
  width: min(92%, 390px);
  min-height: 96px;
  padding-bottom: 36px;
}

.ingredient-layer {
  position: relative;
  width: var(--layer-width, 78%);
  height: var(--layer-height, 22px);
  min-height: 8px;
  margin-top: var(--layer-overlap, -2px);
  border: 1px solid rgba(32, 25, 22, 0.14);
  border-radius: 999px;
  box-shadow: 0 4px 7px rgba(32, 25, 22, 0.1);
  animation: dropLayer 0.22s ease-out both;
}

.ingredient-layer::before,
.ingredient-layer::after {
  pointer-events: none;
}

@keyframes dropLayer {
  from {
    transform: translateY(-30px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.layer-bottomBun,
.layer-topBun,
.layer-topBunSesame {
  --layer-width: 82%;
  --layer-height: 34px;
  background: linear-gradient(180deg, #f6c66a, #d88f35);
}

.layer-topBun,
.layer-topBunSesame {
  --layer-width: 88%;
  --layer-height: 54px;
  border-radius: 60% 60% 24% 24% / 82% 82% 28% 28%;
}

.layer-topBunSesame::after {
  position: absolute;
  inset: 13px 54px auto 54px;
  height: 6px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 50%, #fff5bf 0 2px, transparent 3px),
    radial-gradient(circle at 32% 35%, #fff5bf 0 2px, transparent 3px),
    radial-gradient(circle at 53% 58%, #fff5bf 0 2px, transparent 3px),
    radial-gradient(circle at 74% 37%, #fff5bf 0 2px, transparent 3px),
    radial-gradient(circle at 92% 50%, #fff5bf 0 2px, transparent 3px);
  content: "";
}

.layer-middleBun {
  --layer-width: 76%;
  --layer-height: 26px;
  background: linear-gradient(180deg, #f3bd63, #d8903b);
}

.layer-beef,
.layer-thickBeef,
.layer-teriyakiPork {
  --layer-width: 80%;
  --layer-height: 27px;
  background:
    radial-gradient(circle at 18% 46%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 40%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
    linear-gradient(180deg, #6a3b24, #3f2518);
}

.layer-thickBeef {
  --layer-height: 38px;
}

.layer-teriyakiPork {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(90deg, #7a3a21, #9b4a25, #71361f);
}

.layer-chicken,
.layer-mcChicken,
.layer-fish,
.layer-shrimp {
  --layer-width: 82%;
  --layer-height: 36px;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 48% 70%, rgba(255, 255, 255, 0.3) 0 2px, transparent 3px),
    linear-gradient(180deg, #dca14b, #b66e28);
}

.layer-fish {
  background:
    linear-gradient(180deg, #f6d98c, #d7a14b);
}

.layer-shrimp {
  background:
    radial-gradient(circle at 22% 42%, #f6d0b4 0 5px, transparent 6px),
    radial-gradient(circle at 55% 60%, #f3b38e 0 5px, transparent 6px),
    linear-gradient(180deg, #e28a55, #bc5d35);
}

.layer-cheese {
  --layer-width: 84%;
  --layer-height: 14px;
  border-radius: 5px;
  background: #f7c52e;
  transform: skewX(-8deg);
}

.layer-egg {
  --layer-width: 72%;
  --layer-height: 26px;
  background:
    radial-gradient(circle at 50% 52%, #ffc536 0 12px, transparent 13px),
    #fff8d8;
}

.layer-bacon {
  --layer-width: 76%;
  --layer-height: 16px;
  background:
    linear-gradient(90deg, transparent 0 9%, #ffe1be 9% 16%, transparent 16% 28%, #ffe1be 28% 35%, transparent 35%),
    linear-gradient(180deg, #b84132, #8f251f);
}

.layer-lettuce {
  --layer-width: 88%;
  --layer-height: 17px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 7% 100%, transparent 0 9px, #4eaf45 10px 16px, transparent 17px),
    radial-gradient(circle at 28% 0%, transparent 0 8px, #76c94d 9px 15px, transparent 16px),
    radial-gradient(circle at 53% 100%, transparent 0 9px, #4eaf45 10px 16px, transparent 17px),
    radial-gradient(circle at 78% 0%, transparent 0 8px, #76c94d 9px 15px, transparent 16px),
    #61b845;
}

.layer-pickle,
.layer-onion {
  --layer-width: 70%;
  --layer-height: 11px;
  border-color: transparent;
  box-shadow: none;
  background:
    radial-gradient(ellipse at 18% 50%, #5ea02c 0 12px, transparent 13px),
    radial-gradient(ellipse at 50% 50%, #78b83d 0 12px, transparent 13px),
    radial-gradient(ellipse at 82% 50%, #5ea02c 0 12px, transparent 13px);
}

.layer-onion {
  background:
    radial-gradient(ellipse at 20% 50%, #f7f2ff 0 11px, transparent 12px),
    radial-gradient(ellipse at 50% 50%, #e9d9ff 0 11px, transparent 12px),
    radial-gradient(ellipse at 80% 50%, #f7f2ff 0 11px, transparent 12px);
}

.layer-ketchup,
.layer-mustard,
.layer-bigmac,
.layer-teriyaki,
.layer-sweetLemon,
.layer-aurora,
.layer-pepperAurora,
.layer-tartar {
  --layer-width: 82%;
  --layer-height: 10px;
  border-color: transparent;
  box-shadow: none;
  background: var(--sauce-color, #d21f26);
}

.layer-mustard {
  --sauce-color: #e1b81f;
}

.layer-bigmac {
  --sauce-color: #f0a96f;
}

.layer-teriyaki {
  --sauce-color: #5f2b18;
}

.layer-sweetLemon {
  --sauce-color: #fff1a6;
}

.layer-aurora,
.layer-pepperAurora {
  --sauce-color: #f08b6c;
}

.layer-pepperAurora {
  background:
    radial-gradient(circle at 22% 45%, #4c3027 0 1px, transparent 2px),
    radial-gradient(circle at 61% 55%, #4c3027 0 1px, transparent 2px),
    #f08b6c;
}

.layer-tartar {
  background:
    radial-gradient(circle at 20% 55%, #72a854 0 2px, transparent 3px),
    radial-gradient(circle at 58% 45%, #72a854 0 2px, transparent 3px),
    #fff2c7;
}

.build-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 66px;
  margin: 0 16px 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  list-style: none;
}

.build-list:empty::before {
  content: "まだ空です";
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.build-list li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.stations {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.station-group h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.ingredient-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ingredient-btn {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: grab;
  text-align: left;
  box-shadow: 0 4px 0 rgba(32, 25, 22, 0.08);
  transition:
    transform 0.12s ease,
    border-color 0.12s ease;
}

.ingredient-btn:hover {
  transform: translateY(-1px);
  border-color: #beaa90;
}

.ingredient-btn:active {
  cursor: grabbing;
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(32, 25, 22, 0.08);
}

.ingredient-btn.coach-target {
  border-color: var(--green);
  background: #f2fff4;
  box-shadow: 0 4px 0 rgba(33, 131, 91, 0.22);
}

.ingredient-icon {
  width: 42px;
  height: 30px;
  border: 1px solid rgba(32, 25, 22, 0.12);
  border-radius: 999px;
}

.ingredient-label {
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.18;
}

.recipe-book,
.log-panel {
  min-height: 280px;
}

.recipe-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

.recipe-card {
  display: grid;
  gap: 10px;
  min-height: 166px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.recipe-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.recipe-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.mini-stack {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
  height: 74px;
}

.mini-stack .ingredient-layer {
  --layer-height: 8px;
  margin-top: -1px;
  width: calc(var(--layer-width, 78%) * 0.72);
  max-width: 128px;
  min-height: 4px;
  border-width: 0;
  box-shadow: none;
  animation: none;
}

.mini-stack .layer-topBun,
.mini-stack .layer-topBunSesame {
  --layer-height: 18px;
}

.mini-stack .layer-bottomBun {
  --layer-height: 12px;
}

.recipe-card button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8dc;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.log {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: 328px;
  overflow: auto;
  padding: 16px;
}

.log-entry {
  padding: 10px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.log-entry.good {
  border-color: var(--green);
}

.log-entry.warn {
  border-color: var(--red);
}

.source-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.source-note a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: none;
}

.source-note a:hover {
  text-decoration: underline;
}

.tutorial-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(32, 25, 22, 0.48);
}

.tutorial-overlay[hidden] {
  display: none;
}

.tutorial-card {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(32, 25, 22, 0.34);
}

.tutorial-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 200, 61, 0.26), transparent),
    #fffdf7;
}

.tutorial-head h2 {
  font-size: 1.8rem;
  font-weight: 900;
}

.icon-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
}

.tutorial-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.tutorial-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tutorial-step strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
}

.tutorial-step p,
.tutorial-tip {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.tutorial-tip {
  padding: 13px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #eef9ef;
}

.tutorial-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px 20px;
}

.shake {
  animation: shake 0.28s linear;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@media (max-width: 1180px) {
  .game-grid,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .ticket-panel,
  .build-panel,
  .station-panel {
    min-height: 0;
  }

  .recipe-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-shell {
    width: min(100% - 20px, 1480px);
    padding-top: 10px;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-controls {
    flex-direction: column;
  }

  .help-btn {
    min-height: 46px;
  }

  .scoreboard {
    min-width: 0;
  }

  .tray {
    height: 360px;
  }

  .ingredient-buttons,
  .recipe-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .scoreboard,
  .ticket-actions,
  .build-actions,
  .tutorial-actions,
  .ingredient-buttons,
  .recipe-cards {
    grid-template-columns: 1fr;
  }

  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .order-name {
    font-size: 1.55rem;
  }
}
