@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --panel: rgba(30, 41, 59, 0.84);
  --panel-strong: #1e293b;
  --panel-soft: #334155;
  --line: rgba(100, 116, 139, 0.2);
  --line-strong: rgba(148, 163, 184, 0.3);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #35d17e;
  --accent-2: #89f3bb;
  --amber: #f6b948;
  --blue: #68b7ff;
  --red: #f57777;
  --shadow: 0 4px 6px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.4);
  --radius-xl: 16px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,0.14), transparent 25%),
    radial-gradient(circle at top right, rgba(59,130,246,0.12), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  padding: 28px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.qs-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.qs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.qs-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qs-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #22c55e;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(34,197,94,0.35);
}

.qs-mark svg {
  width: 26px;
  height: 26px;
}

.qs-brand-copy h1,
.hub-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.qs-brand-copy p,
.hub-hero p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.qs-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.qs-btn,
.hub-card-link,
.hub-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 11px 16px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.qs-btn:hover,
.hub-card-link:hover,
.hub-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.qs-btn.primary,
.hub-card-link.primary {
  background: linear-gradient(135deg, var(--accent), #13995d);
  color: #04110a;
  border-color: rgba(53, 209, 126, 0.55);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(53, 209, 126, 0.22);
}

.qs-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.qs-story,
.qs-stage-card,
.hub-card,
.hub-hero,
.hub-footer {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.qs-story {
  position: sticky;
  top: 20px;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.qs-eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(53, 209, 126, 0.1);
  border: 1px solid rgba(53, 209, 126, 0.16);
  color: var(--accent-2);
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.qs-story h2 {
  margin: 18px 0 10px;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.qs-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.qs-progress {
  margin: 22px 0 18px;
}

.qs-progress-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.qs-progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: inherit;
}

.qs-step-copy {
  margin-top: 12px;
}

.qs-step-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.qs-step-copy p {
  min-height: 88px;
}

.qs-step-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.qs-step-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.qs-step-item.active {
  border-color: rgba(53, 209, 126, 0.22);
  background: rgba(53, 209, 126, 0.09);
  color: var(--text);
  transform: translateX(4px);
}

.qs-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.qs-transcript {
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(104, 183, 255, 0.08);
  border: 1px solid rgba(104, 183, 255, 0.15);
}

.qs-transcript strong {
  display: block;
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}

.qs-transcript p {
  margin: 0;
  min-height: 68px;
}

.qs-stage-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 18px;
}

.qs-stage-frame {
  position: relative;
  min-height: 860px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    #0f172a;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}

.ambient-orb.one {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -20px;
  background: rgba(53, 209, 126, 0.3);
}

.ambient-orb.two {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -120px;
  background: rgba(104, 183, 255, 0.18);
}

.app-window {
  position: absolute;
  inset: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.window-bar {
  height: 62px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(255,255,255,0.02);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff6f61; }
.window-dots span:nth-child(2) { background: #f6b948; }
.window-dots span:nth-child(3) { background: #35d17e; }

.window-title {
  color: var(--muted);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-body {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  height: calc(100% - 62px);
}

.app-sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 18px 14px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 18px;
}

.sidebar-brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #22c55e;
}

.sidebar-brand .logo svg {
  width: 20px;
  height: 20px;
}

.sidebar-brand strong {
  display: block;
  font-size: 14px;
}

.sidebar-brand span {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
}

.sidebar-nav {
  display: grid;
  gap: 6px;
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-row.active {
  color: var(--accent-2);
  background: rgba(53, 209, 126, 0.1);
  transform: translateX(4px);
}

.nav-row svg {
  width: 18px;
  height: 18px;
}

.content-area {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-header h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.page-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.header-actions,
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip,
.ghost-btn,
.action-btn,
.tiny-btn {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.chip {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--muted);
}

.ghost-btn,
.action-btn,
.tiny-btn {
  padding: 10px 14px;
  font-size: 13px;
}

.action-btn.primary {
  background: linear-gradient(135deg, var(--accent), #13995d);
  color: #06130b;
  font-weight: 700;
  border-color: rgba(53, 209, 126, 0.4);
}

.tiny-btn {
  padding: 6px 10px;
  font-size: 12px;
}

.screen-grid {
  flex: 1;
  display: grid;
  gap: 18px;
  padding: 18px 20px 24px;
  min-height: 0;
}

.card {
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.list-card {
  overflow: hidden;
}

.list-toolbar {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: grid;
  gap: 12px;
}

.search-box,
.mock-input,
.mock-select,
.mock-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
  color: var(--text);
}

.search-box,
.mock-input,
.mock-select {
  min-height: 46px;
  padding: 12px 14px;
}

.mock-textarea {
  min-height: 92px;
  padding: 12px 14px;
  resize: none;
}

.search-box::placeholder,
.mock-input::placeholder,
.mock-textarea::placeholder {
  color: var(--muted-2);
}

.filter-row {
  display: flex;
  gap: 10px;
}

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

.row-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.row-item.active {
  border-color: rgba(53, 209, 126, 0.3);
  background: rgba(53, 209, 126, 0.07);
  transform: translateX(4px);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #21354c;
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-weight: 700;
}

.row-title {
  font-size: 14px;
  font-weight: 600;
}

.row-subtitle {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
}

.status-pill.green {
  background: rgba(53, 209, 126, 0.14);
  color: var(--accent-2);
}

.status-pill.amber {
  background: rgba(246, 185, 72, 0.14);
  color: #ffd78f;
}

.status-pill.blue {
  background: rgba(104, 183, 255, 0.14);
  color: #b7dcff;
}

.modal-shell {
  position: absolute;
  width: min(560px, calc(100% - 60px));
  top: 126px;
  left: 50%;
  transform: translateX(-50%) scale(0.98);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.modal-shell.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.modal-card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 90px rgba(0,0,0,0.46);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modal-head h4 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.modal-body {
  padding: 18px 22px 20px;
  display: grid;
  gap: 14px;
}

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

.modal-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.toggle {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.toggle.on {
  background: linear-gradient(135deg, var(--accent), #1f995f);
  border-color: rgba(53, 209, 126, 0.45);
  box-shadow: 0 0 0 4px rgba(53, 209, 126, 0.12);
}

.modal-actions {
  display: flex;
  gap: 10px;
  padding-top: 4px;
}

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

.product-card {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 120px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card.selected {
  transform: translateY(-4px);
  border-color: rgba(53, 209, 126, 0.34);
  background: rgba(53, 209, 126, 0.09);
}

.product-card strong {
  display: block;
  font-size: 14px;
}

.product-card span {
  color: var(--muted-2);
  font-size: 12px;
}

.price {
  color: var(--accent-2);
  font-weight: 700;
}

.pos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  height: 100%;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 180ms ease;
}

.cart-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-item.active {
  border-color: rgba(53, 209, 126, 0.26);
}

.cart-meta {
  color: var(--muted-2);
  font-size: 12px;
}

.cart-total-box {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.total-row.grand {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.settings-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  height: 100%;
}

.settings-nav {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.settings-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.settings-tab.active {
  background: rgba(53, 209, 126, 0.1);
  color: var(--accent-2);
  transform: translateX(4px);
}

.settings-content {
  padding: 18px 20px;
  overflow: hidden;
}

.settings-pane {
  display: none;
  height: 100%;
}

.settings-pane.active {
  display: block;
}

.settings-stack {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.settings-banner {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(104, 183, 255, 0.09);
  border: 1px solid rgba(104, 183, 255, 0.15);
  color: #cce6ff;
  font-size: 13px;
}

.settings-group {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.settings-group h5 {
  margin: 0 0 8px;
  font-size: 16px;
}

.settings-group p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spotlight {
  position: absolute;
  border-radius: 10px;
  border: 1px solid rgba(137, 243, 187, 0.75);
  box-shadow:
    0 0 0 9999px rgba(1, 8, 15, 0.6),
    0 0 0 10px rgba(53, 209, 126, 0.08),
    0 0 28px rgba(53, 209, 126, 0.35);
  transition: all 340ms cubic-bezier(.2,.8,.2,1);
}

.cursor {
  display: none;
}

.callout {
  position: absolute;
  width: 280px;
  padding: 16px 16px 14px;
  border-radius: 12px;
  background: rgba(10, 24, 39, 0.96);
  border: 1px solid rgba(104, 183, 255, 0.18);
  box-shadow: 0 26px 50px rgba(0,0,0,0.35);
  transition: left 340ms cubic-bezier(.2,.8,.2,1), top 340ms cubic-bezier(.2,.8,.2,1), opacity 180ms ease;
}

.callout strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 15px;
}

.callout p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.is-focus {
  position: relative;
  z-index: 3;
}

.glow {
  animation: glowPulse 1.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53, 209, 126, 0.12); }
  50% { box-shadow: 0 0 0 12px rgba(53, 209, 126, 0.04); }
}

.typing {
  border-color: rgba(104, 183, 255, 0.3) !important;
  box-shadow: 0 0 0 5px rgba(104, 183, 255, 0.09);
}

.hub-hero {
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 420px);
  gap: 22px;
  align-items: center;
}

.hub-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hub-preview {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 209, 126, 0.24), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(104, 183, 255, 0.24), transparent 24%),
    linear-gradient(180deg, #0d1a29 0%, #08111c 100%);
}

.hub-preview .mini-window {
  position: absolute;
  inset: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 15, 25, 0.75);
}

.hub-preview .mini-columns {
  display: grid;
  grid-template-columns: 140px 1fr;
  height: calc(100% - 48px);
}

.hub-preview .mini-bar {
  height: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

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

.hub-card {
  border-radius: 16px;
  padding: 22px;
}

.hub-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.hub-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.hub-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.hub-footer {
  margin-top: 20px;
  border-radius: 16px;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .qs-layout {
    grid-template-columns: 1fr;
  }

  .qs-story {
    position: relative;
    top: auto;
  }

  .hub-hero,
  .hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    padding: 16px;
  }

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

  .window-body,
  .settings-layout,
  .pos-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar,
  .settings-nav {
    display: none;
  }

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

  .modal-shell {
    width: calc(100% - 32px);
  }

  .callout {
    width: min(250px, calc(100% - 20px));
  }

  .qs-stage-frame {
    min-height: 980px;
  }
}
