/* Экран «Показать официанту» — крупный, читаемый с расстояния вытянутой руки. */

.show-page {
  padding: 12px 18px calc(34px + var(--safe-bottom));
  max-width: 640px;
  margin: 0 auto;
}

.show-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  background: var(--gold-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
}

.show-banner i {
  font-size: 30px;
  color: var(--gold);
  flex: none;
}

.show-banner-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
  color: var(--ink);
}

.show-banner-sub {
  margin-top: 3px;
  font-size: 13px;
  color: var(--ink-1);
}

.show-table {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.show-table b {
  font-family: var(--num);
  font-size: 19px;
  color: var(--gold-hi);
  letter-spacing: 0;
}

.show-list {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-card);
}

.show-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 16px 18px;
}

.show-row + .show-row {
  border-top: 1px solid rgba(23,41,63,0.09);
}

.show-qty {
  min-width: 46px;
  font-family: var(--num);
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  white-space: nowrap;
}

.show-qty span {
  margin-left: 2px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mute);
}

.show-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}

.show-sum {
  font-family: var(--num);
  font-size: 17px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink-1);
  white-space: nowrap;
}

.show-foot { margin-top: 18px; text-align: center; }

.show-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--paper);
}

.show-total span {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}

.show-total b {
  font-family: var(--num);
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}

.show-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

@media (min-width: 520px) {
  .show-name { font-size: 23px; }
  .show-qty { font-size: 26px; }
  .show-total b { font-size: 32px; }
}
