:root {
  color-scheme: light;
  --bg: #f5f6f8;
  --bg-2: #eef1f5;
  --ink: #111114;
  --muted: #6e6e73;
  --hairline: rgba(17, 17, 20, 0.09);
  --glass: rgba(255, 255, 255, 0.64);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-soft: rgba(255, 255, 255, 0.45);
  --accent: #111114;
  --success: #2f7d4a;
  --danger: #b53a3a;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.035);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 84% 8%, rgba(219, 227, 239, 0.95) 0, rgba(219, 227, 239, 0) 28%),
    radial-gradient(circle at 52% 94%, rgba(225, 232, 243, 0.78) 0, rgba(225, 232, 243, 0) 32%),
    linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
  background-attachment: fixed;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.42;
  pointer-events: none;
}

body::before {
  top: 10vh;
  left: -130px;
  background: rgba(255, 255, 255, 0.9);
}

body::after {
  right: -160px;
  bottom: 6vh;
  background: rgba(198, 211, 231, 0.55);
}

button,
input { font: inherit; }
button { color: inherit; -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(860px, calc(100% - 28px));
  margin: 0 auto;
  padding-bottom: 28px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  background: linear-gradient(145deg, #242427, #09090b);
  color: #fff;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.16), 0 7px 18px rgba(0,0,0,0.16);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand strong,
.brand small { display: block; }
.brand strong { font-size: 14px; font-weight: 680; letter-spacing: -0.015em; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 10px; }

.open-note {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  color: var(--muted);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.hero {
  padding: 86px 12px 52px;
  text-align: center;
}

.eyebrow,
.section-no {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(48px, 8.3vw, 78px);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero-copy {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.008em;
}

.section {
  position: relative;
  margin-bottom: 14px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  background: var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 42%);
}

.section > * { position: relative; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-no { margin-bottom: 6px; }
.section h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.muted { margin: 0; color: var(--muted); font-size: 11px; }

.menu-list { display: grid; gap: 10px; }

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 102px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 21px;
  background: rgba(255,255,255,0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 5px 16px rgba(0,0,0,0.025);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-item:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), 0 8px 22px rgba(0,0,0,0.04);
}

.item-copy h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 670;
  letter-spacing: -0.025em;
}

.item-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.item-price { margin-top: 8px !important; color: var(--ink) !important; font-weight: 680; }

.qty-control {
  display: grid;
  grid-template-columns: 38px 30px 38px;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 999px;
  background: rgba(255,255,255,0.60);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 5px 14px rgba(0,0,0,0.04);
}

.qty-control button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 19px;
  font-weight: 450;
  transition: background 150ms ease, transform 120ms ease;
}

.qty-control button:hover { background: rgba(17,17,20,0.06); }
.qty-control button:active { transform: scale(0.93); }
.qty-control button:disabled { opacity: 0.25; cursor: not-allowed; }
.qty-control output { text-align: center; font-size: 12px; font-weight: 690; }

.field { display: grid; gap: 8px; margin-bottom: 24px; }
.field > span,
.payment-fieldset legend {
  font-size: 11px;
  font-weight: 680;
  letter-spacing: -0.005em;
}

.field input {
  width: 100%;
  height: 56px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 17px;
  outline: none;
  background: rgba(255,255,255,0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field input::placeholder { color: #9a9aa0; }
.field input:focus {
  border-color: rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.045), inset 0 1px 0 rgba(255,255,255,0.95);
}

.payment-fieldset { margin: 0; padding: 0; border: 0; }
.payment-fieldset legend { margin-bottom: 9px; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.payment-choice { position: relative; cursor: pointer; }
.payment-choice input { position: absolute; opacity: 0; pointer-events: none; }
.payment-choice > span {
  display: block;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 19px;
  background: rgba(255,255,255,0.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
  transition: 160ms ease;
}

.payment-choice strong,
.payment-choice small { display: block; }
.payment-choice strong { font-size: 17px; font-weight: 680; letter-spacing: -0.025em; }
.payment-choice small { margin-top: 6px; color: var(--muted); font-size: 11px; }
.payment-choice input:checked + span {
  border-color: rgba(17,17,20,0.18);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 0 0 3px rgba(17,17,20,0.055), inset 0 1px 0 rgba(255,255,255,0.95);
}

.transfer-panel {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px;
  align-items: center;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms ease, margin 360ms ease, padding 360ms ease, opacity 220ms ease;
}

.transfer-panel.is-open {
  max-height: 620px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  opacity: 1;
}

.qr-copy h3 { margin: 0 0 9px; font-size: 23px; font-weight: 700; letter-spacing: -0.035em; }
.qr-copy p:last-child { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.qr-card {
  padding: 11px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 24px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.98);
}
.qr-card img { display: block; width: 100%; height: auto; border-radius: 15px; }

.summary-items { display: grid; gap: 9px; }
.summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
  border-radius: 15px;
  background: rgba(255,255,255,0.42);
  font-size: 12px;
}
.summary-line span:last-child { white-space: nowrap; font-weight: 680; }
.empty-state { margin: 0; color: var(--muted); font-size: 14px; }

.total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.total-row span { color: var(--muted); font-size: 11px; }
.total-row strong { font-size: 30px; font-weight: 720; letter-spacing: -0.04em; }

.form-message { min-height: 22px; margin-top: 16px; font-size: 11px; line-height: 1.5; }
.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }

.action-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 5px; }
.primary-btn,
.secondary-btn {
  min-height: 54px;
  padding: 0 21px;
  border-radius: 17px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition: transform 120ms ease, opacity 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.85);
  background: linear-gradient(180deg, #1f1f22, #0b0b0d);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 9px 22px rgba(0,0,0,0.14);
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.76);
  background: rgba(255,255,255,0.56);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 7px 18px rgba(0,0,0,0.04);
}

.primary-btn:hover { opacity: 0.94; }
.secondary-btn:hover { background: rgba(255,255,255,0.78); }
.primary-btn:active,
.secondary-btn:active { transform: scale(0.985); }
.primary-btn:disabled { cursor: wait; opacity: 0.66; }

.spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.primary-btn.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.privacy-note { margin: 13px 0 0; color: var(--muted); font-size: 9px; }

.is-locked .menu-item button,
.is-locked input { pointer-events: none; }
.is-locked .menu-item,
.is-locked .field,
.is-locked .payment-fieldset { opacity: 0.58; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 8px 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.04em;
}

@media (max-width: 660px) {
  .shell { width: min(100% - 18px, 860px); }
  .topbar { top: 9px; margin-top: 9px; border-radius: 20px; }
  .open-note { display: none; }
  .hero { padding: 64px 5px 40px; }
  .hero h1 { font-size: clamp(44px, 14vw, 66px); }
  .section { padding: 22px 16px; border-radius: 27px; }
  .section h2 { font-size: 25px; }
  .menu-item { gap: 11px; padding: 15px; border-radius: 18px; }
  .item-copy h3 { font-size: 16px; }
  .qty-control { grid-template-columns: 34px 27px 34px; }
  .qty-control button { width: 34px; height: 34px; }
  .payment-options { grid-template-columns: 1fr; }
  .transfer-panel { grid-template-columns: 1fr; }
  .qr-card { max-width: 300px; margin: 0 auto; }
  .action-row { grid-template-columns: 1fr; }
  .secondary-btn { width: 100%; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation-duration: 0.001ms !important; }
}

/* ---------- Admin + live configuration ---------- */
[hidden] { display: none !important; }
textarea, select { font: inherit; }
.hero h1 { white-space: pre-line; }

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-toggle,
.icon-btn,
.text-btn,
.mini-btn,
.upload-btn {
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.56);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 6px 18px rgba(0,0,0,0.035);
}

.admin-toggle {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.admin-toggle:hover { background: rgba(255,255,255,0.8); }

.admin-panel {
  margin-top: 0;
  border-color: rgba(255,255,255,0.9);
  background: rgba(249,250,252,0.78);
}

.admin-head { align-items: center; }
.icon-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.admin-intro {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.admin-login-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: end;
  gap: 10px;
}

.compact-field { margin: 0; }
.admin-unlock { height: 56px; }

.admin-workspace { display: grid; gap: 14px; }
.admin-status-row,
.admin-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 18px;
  background: rgba(255,255,255,0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.admin-status-row strong,
.admin-switch-row strong { display: block; font-size: 12px; }
.admin-status-row small,
.admin-switch-row small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }

.text-btn {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 680;
}

.admin-group {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 24px;
  background: rgba(255,255,255,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}

.admin-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.admin-group-head .section-no { margin-bottom: 4px; }
.admin-group h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.admin-grid {
  display: grid;
  gap: 10px;
}
.admin-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.admin-field {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}
.admin-field > span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 680;
}
.admin-field > span small {
  color: var(--muted);
  font-weight: 500;
}
.admin-field input,
.admin-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 15px;
  outline: none;
  background: rgba(255,255,255,0.62);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.admin-field input { height: 48px; padding: 0 14px; font-size: 13px; }
.admin-field textarea { min-height: 78px; padding: 12px 14px; resize: vertical; font-size: 13px; line-height: 1.45; }
.admin-field input:focus,
.admin-field textarea:focus {
  border-color: rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04), inset 0 1px 0 #fff;
}

.admin-qr-editor {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.admin-qr-preview {
  padding: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07), inset 0 1px 0 #fff;
}
.admin-qr-preview img { display: block; width: 100%; height: auto; border-radius: 13px; }
.admin-qr-controls { min-width: 0; }
.admin-qr-controls small { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.upload-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 13px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 680;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.admin-menu-list { display: grid; gap: 10px; }
.admin-menu-item {
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 19px;
  background: rgba(255,255,255,0.47);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.admin-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.admin-menu-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.12em;
}
.admin-menu-tools { display: flex; gap: 6px; }
.mini-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  border-radius: 11px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 680;
}
.mini-btn:disabled { opacity: 0.3; cursor: default; }
.mini-btn.danger { color: var(--danger); }

.compact-switch { margin-top: 2px; padding: 10px 12px; border-radius: 14px; }
.admin-switch-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(120,120,128,0.24);
  cursor: pointer;
  transition: background 180ms ease;
}
.admin-switch-row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 180ms ease;
}
.admin-switch-row input[type="checkbox"]:checked { background: #34c759; }
.admin-switch-row input[type="checkbox"]:checked::after { transform: translateX(18px); }

.small-btn { min-height: 40px; padding: 0 13px; border-radius: 13px; font-size: 10px; }
.admin-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }

.closed-banner {
  margin: 0 0 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 21px;
  background: rgba(255,245,224,0.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.9);
  color: #6e4c13;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.ordering-closed .menu-item { opacity: 0.55; }
.ordering-closed .qty-control button { pointer-events: none; }

@media (max-width: 660px) {
  .top-actions { gap: 5px; }
  .admin-toggle { min-height: 32px; padding-inline: 11px; }
  .admin-login-row { grid-template-columns: 1fr; }
  .admin-unlock { width: 100%; }
  .admin-group { padding: 16px 13px; border-radius: 20px; }
  .admin-grid.two { grid-template-columns: 1fr; }
  .admin-qr-editor { grid-template-columns: 1fr; }
  .admin-qr-preview { width: min(180px, 70%); }
  .admin-actions { grid-template-columns: 1fr; }
  .admin-actions .secondary-btn { width: 100%; }
  .menu-editor-head { align-items: flex-end; }
  .admin-menu-top { align-items: flex-start; }
}


/* Dual-currency menu prices */
.item-price { font-variant-numeric: tabular-nums; }
.summary-line > span:last-child, #totalPrice { font-variant-numeric: tabular-nums; text-align: right; }
.admin-readonly {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.48);
}
.admin-readonly strong { margin-top: 6px; font-size: 16px; }
.admin-readonly small { margin-top: 4px; color: var(--muted); }
@media (max-width: 620px) {
  .summary-line { align-items: flex-start; gap: 12px; }
  .summary-line > span:last-child { max-width: 48%; }
}
