:root {
  color-scheme: light;
  --ink: #0c2725;
  --muted: rgba(12, 39, 37, 0.64);
  --line: rgba(255, 255, 255, 0.56);
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --green: #16785f;
  --green-deep: #075947;
  --teal: #2aa399;
  --gold: #d8a445;
  --red: #b23b35;
  --shadow: 0 22px 58px rgba(20, 69, 61, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #eef8f5;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(239, 250, 247, 0.16), rgba(239, 250, 247, 0.76)),
    url("./assets/login-bg.png") center / cover no-repeat;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(238, 248, 245, 0.06), rgba(238, 248, 245, 0.76));
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

input {
  min-width: 0;
}

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

.app-shell {
  min-height: 100vh;
  min-height: 100svh;
  padding: max(22px, env(safe-area-inset-top)) 20px max(22px, env(safe-area-inset-bottom));
}

.login-view {
  display: flex;
  min-height: calc(100vh - 44px);
  min-height: calc(100svh - 44px);
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 26px 0 10px;
}

.brand-area {
  position: relative;
  padding-top: 22px;
}

.login-orbit {
  position: absolute;
  top: -10px;
  right: 4px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(42, 163, 153, 0.12)),
    rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(20, 69, 61, 0.12);
  transform: rotate(10deg);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 255, 251, 0.68)),
    linear-gradient(135deg, rgba(22, 120, 95, 0.22), rgba(216, 164, 69, 0.2));
  box-shadow: 0 18px 42px rgba(18, 82, 70, 0.18);
  backdrop-filter: blur(20px);
}

.brand-mark span {
  color: var(--green-deep);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.brand-kicker,
.stat-label {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  max-width: 9em;
  margin-bottom: 14px;
  font-size: clamp(34px, 10vw, 46px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
}

.brand-subtitle {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.55;
}

.login-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.login-chips span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(12, 39, 37, 0.72);
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(16px);
}

.login-panel,
.tool-panel,
.search-panel,
.product-panel,
.status-panel,
.history-card,
.settings-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(1.22);
}

.login-panel {
  width: 100%;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    var(--panel);
}

.login-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.login-panel-head h2 {
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 1.1;
}

.login-panel-head p,
.save-status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(12, 39, 37, 0.74);
  font-size: 14px;
  font-weight: 750;
}

.secret-field,
.search-field,
.quantity-row input {
  border: 1px solid rgba(12, 39, 37, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.secret-field,
.search-field {
  display: flex;
  align-items: center;
  height: 58px;
  border-radius: 18px;
}

.secret-field:focus-within,
.search-field:focus-within,
.quantity-row input:focus {
  border-color: rgba(22, 120, 95, 0.48);
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(22, 120, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.secret-field input,
.search-field input {
  width: 100%;
  height: 100%;
  padding: 0 4px 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
}

.secret-field input::placeholder,
.search-field input::placeholder,
.quantity-row input::placeholder {
  color: rgba(12, 39, 37, 0.34);
  font-weight: 520;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  margin-right: 5px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: rgba(12, 39, 37, 0.62);
}

.icon-button:active {
  background: rgba(12, 39, 37, 0.06);
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.login-message {
  min-height: 22px;
  margin: 10px 2px 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 650;
}

.login-message.success {
  color: var(--green-deep);
}

.app-view {
  width: min(100%, 430px);
  margin: 0 auto;
}

.app-content {
  padding: 62px 0 104px;
}

.tab-page {
  display: none;
}

.tab-page.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workbench-top,
.page-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.page-title {
  display: flex;
}

.workbench-top h2,
.page-title h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.workbench-top h2 span {
  display: block;
}

.page-title .slim {
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.status-dot {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(20, 69, 61, 0.14);
  backdrop-filter: blur(18px);
}

.floating-export {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 24;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  box-shadow: 0 16px 38px rgba(7, 89, 71, 0.28);
  backdrop-filter: blur(18px);
}

.floating-export:disabled {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(12, 39, 37, 0.42);
  box-shadow: 0 10px 26px rgba(20, 69, 61, 0.12);
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
}

.status-panel strong {
  display: block;
  color: var(--ink);
  font-size: 27px;
  font-weight: 850;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(12, 39, 37, 0.56);
}

.tool-panel,
.search-panel,
.product-panel,
.settings-panel {
  padding: 18px;
  border-radius: 24px;
}

.panel-heading,
.settings-panel,
.history-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-heading h3,
.product-head h3,
.history-card h3,
.settings-panel h3 {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.2;
}

.panel-heading p,
.history-card p,
.settings-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.panel-heading p {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-button {
  display: inline-grid;
  min-width: 92px;
  min-height: 50px;
  place-items: center;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 780;
  box-shadow: inset 0 0 0 1px rgba(12, 39, 37, 0.08);
}

.file-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.primary-button,
.secondary-button,
.danger-button,
.ghost-button,
.small-button,
.mini-danger {
  min-height: 50px;
  border: 0;
  cursor: pointer;
  font-weight: 760;
}

.primary-button {
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-size: 17px;
  box-shadow: 0 14px 30px rgba(7, 89, 71, 0.28);
}

.secondary-button,
.danger-button,
.ghost-button {
  border-radius: 18px;
  font-size: 16px;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(22, 120, 95, 0.16);
}

.danger-button,
.mini-danger {
  background: rgba(178, 59, 53, 0.1);
  color: var(--red);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(12, 39, 37, 0.08);
}

.small-button,
.mini-danger {
  min-height: 42px;
  min-width: 64px;
  padding: 0 12px;
  border-radius: 14px;
  white-space: nowrap;
}

.small-button {
  margin-right: 7px;
  background: rgba(22, 120, 95, 0.1);
  color: var(--green-deep);
}

.mini-danger {
  min-width: 52px;
}

.primary-button:active,
.secondary-button:active,
.danger-button:active,
.ghost-button:active,
.file-button:active,
.small-button:active,
.mini-danger:active,
.nav-button:active {
  transform: translateY(1px);
}

.secondary-button:disabled,
.danger-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.hint-text {
  min-height: 20px;
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.results-list,
.history-list,
.data-list {
  display: grid;
  gap: 10px;
}

.data-toolbar {
  display: grid;
  gap: 10px;
}

.compact-field {
  height: 52px;
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.filter-button {
  min-height: 38px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: rgba(12, 39, 37, 0.56);
  font-size: 14px;
  font-weight: 780;
}

.filter-button.active {
  background: rgba(22, 120, 95, 0.12);
  color: var(--green-deep);
}

.data-summary {
  padding: 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.data-card {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 26px rgba(20, 69, 61, 0.1);
  backdrop-filter: blur(18px);
}

.data-card strong {
  display: block;
  margin: 5px 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

.data-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.data-status {
  flex: 0 0 auto;
  max-width: 92px;
  overflow: hidden;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(178, 59, 53, 0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-card.done .data-status {
  background: rgba(42, 163, 153, 0.13);
  color: #0a6d65;
}

.result-card {
  position: relative;
  display: grid;
  width: 100%;
  gap: 5px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 30px rgba(20, 69, 61, 0.12);
  backdrop-filter: blur(18px);
}

.result-card.active {
  border-color: rgba(22, 120, 95, 0.5);
  box-shadow:
    0 0 0 4px rgba(22, 120, 95, 0.1),
    0 12px 30px rgba(20, 69, 61, 0.12);
}

.result-code {
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 820;
}

.result-name {
  padding-right: 74px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.result-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.done-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: 96px;
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(42, 163, 153, 0.13);
  color: #0a6d65;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-panel {
  background: var(--panel-strong);
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-head h3 {
  word-break: break-all;
}

.unit-pill {
  align-self: flex-start;
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216, 164, 69, 0.18);
  color: #87601a;
  font-size: 13px;
  font-weight: 820;
}

.product-name {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.45;
}

.product-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.quantity-form {
  margin: 0;
}

.quantity-row {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 10px;
}

.quantity-row input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 17px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 720;
}

.primary-button.compact {
  height: 54px;
  min-height: 54px;
}

.action-row {
  display: grid;
  gap: 10px;
}

.ghost-button.wide {
  width: 100%;
}

.history-card {
  align-items: flex-start;
  padding: 16px;
  border-radius: 22px;
}

.history-card > div:first-child,
.settings-panel > div:first-child {
  min-width: 0;
}

.history-card h3,
.settings-panel h3 {
  overflow-wrap: anywhere;
}

.history-card.current {
  border-color: rgba(42, 163, 153, 0.28);
  background: rgba(255, 255, 255, 0.88);
}

.muted-card {
  box-shadow: 0 12px 30px rgba(20, 69, 61, 0.1);
}

.history-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 8px;
}

.settings-panel {
  align-items: flex-start;
}

.settings-panel .secondary-button,
.settings-panel .danger-button {
  flex: 0 0 auto;
  min-width: 104px;
}

.bottom-nav {
  position: fixed;
  right: 16px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 32px), 430px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(20, 69, 61, 0.22);
  backdrop-filter: blur(24px) saturate(1.2);
}

.nav-button {
  display: grid;
  min-height: 58px;
  place-items: center;
  gap: 3px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: rgba(12, 39, 37, 0.54);
  font-size: 12px;
  font-weight: 760;
}

.nav-button span {
  line-height: 1;
  white-space: nowrap;
}

.nav-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-button.active {
  background: linear-gradient(135deg, rgba(22, 120, 95, 0.15), rgba(42, 163, 153, 0.1));
  color: var(--green-deep);
}

.hidden {
  display: none;
}

/* Login redesign */
.login-view {
  display: grid;
  place-items: center;
  padding: 10px 0;
}

.login-view.hidden {
  display: none;
}

.login-card {
  display: grid;
  width: 100%;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.46) 0 3px, transparent 4px) 0 0 / 22px 22px,
    linear-gradient(135deg, rgba(191, 213, 248, 0.96), rgba(220, 241, 235, 0.9));
  box-shadow: 0 28px 70px rgba(16, 50, 86, 0.22);
  overflow: hidden;
}

.login-art {
  min-height: 300px;
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(247, 249, 255, 0.92);
  overflow: hidden;
}

.art-copy h1 {
  max-width: 10em;
  margin-bottom: 10px;
  font-size: 31px;
  font-weight: 850;
  line-height: 1.08;
}

.art-copy .brand-subtitle {
  max-width: 280px;
  font-size: 14px;
}

.inventory-illustration {
  position: relative;
  height: 170px;
  margin-top: 20px;
}

.box-shape {
  position: absolute;
  right: 16px;
  bottom: 8px;
  width: 160px;
  height: 122px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(135deg, #2f64ff, #114ec8);
  transform: rotate(-6deg);
  box-shadow: 0 18px 32px rgba(47, 100, 255, 0.25);
}

.box-shape::before,
.box-shape::after {
  position: absolute;
  content: "";
}

.box-shape::before {
  top: 24px;
  left: -38px;
  width: 92px;
  height: 38px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(18deg);
}

.box-shape::after {
  right: 22px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: 10px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
}

.tag-shape {
  position: absolute;
  left: 30px;
  bottom: 10px;
  width: 90px;
  height: 132px;
  border-radius: 44px 44px 28px 28px;
  background: #101219;
  transform: rotate(14deg);
}

.sheet-shape {
  position: absolute;
  top: 18px;
  right: 58px;
  width: 130px;
  height: 78px;
  border: 2px solid rgba(16, 18, 25, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(8deg);
}

.scan-line {
  position: absolute;
  right: 2px;
  bottom: 28px;
  width: 236px;
  height: 3px;
  border-radius: 999px;
  background: #101219;
  transform: rotate(8deg);
}

.login-card .login-panel {
  box-shadow: 0 18px 42px rgba(16, 50, 86, 0.12);
}

.login-card .login-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.login-card .login-chips span {
  text-align: center;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: calc(96px + env(safe-area-inset-bottom));
  left: 20px;
  z-index: 40;
  max-width: 390px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 89, 71, 0.92);
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  text-align: center;
  box-shadow: 0 18px 42px rgba(7, 89, 71, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(18px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.management-clear {
  width: 100%;
  margin-top: 14px;
}

.save-dialog {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 24, 22, 0.32);
  backdrop-filter: blur(10px);
}

.save-dialog.hidden {
  display: none;
}

.save-dialog-card {
  width: min(100%, 320px);
  padding: 26px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(12, 39, 37, 0.24);
  text-align: center;
}

.save-dialog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-size: 30px;
  font-weight: 850;
}

.save-dialog-card h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.save-dialog-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

@media (max-width: 360px) {
  .app-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .quantity-row,
  .action-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 560px) {
  .app-shell {
    display: grid;
    place-items: start center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
