:root {
  --bg: #f4f7fa;
  --surface: #ffffff;
  --surface-soft: #eef4f9;
  --text: #1f2937;
  --muted: #4a5568;
  --line: #d9e2ec;
  --primary: #1f4e79;
  --primary-dark: #163a5a;
  --primary-soft: #e9f1f8;
  --secondary-blue: #5b8db8;
  --accent: #d8a84e;
  --accent-soft: #fff4df;
  --danger-soft: #fff4e2;
  --radius: 12px;
  --shadow: 0 16px 38px rgba(31, 78, 121, 0.08);
  --shadow-soft: 0 8px 22px rgba(31, 78, 121, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(91, 141, 184, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 44%, #eef3f8 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.5;
}

button {
  font: inherit;
}

.app-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(91, 141, 184, 0.26), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.15), transparent 25%),
    linear-gradient(135deg, #102f4b 0%, #163a5a 48%, #1f4e79 100%);
  color: #ffffff;
  padding: 18px 20px 54px;
}

.app-header::after {
  content: "";
  position: absolute;
  inset: auto -80px -150px auto;
  width: 420px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.top-nav {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.top-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  padding: 7px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 720;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  touch-action: manipulation;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.68);
  outline: none;
  transform: translateY(-1px);
}

.top-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 24px;
}

.brand-title-group {
  max-width: 720px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
}

.brand-logo img {
  display: block;
  max-width: 180px;
  max-height: 42px;
  object-fit: contain;
}

.brand-logo img + .logo-text {
  display: none;
}

.brand-logo img[hidden] + .logo-text {
  display: inline-flex;
}

.brand-logo:has(img[hidden]) .logo-text {
  display: inline-flex;
}

.logo-text {
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  padding: 6px 11px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: #d7e7f5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 820;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: #dceaf6;
  font-size: 19px;
  font-weight: 650;
}

.header-note {
  display: none;
}

.app-shell {
  max-width: 1180px;
  margin: 28px auto 32px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.admin-shell {
  max-width: 1180px;
  margin: 28px auto 32px;
  padding: 0 20px;
  display: grid;
  gap: 24px;
}

.section-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  min-height: 230px;
}

.search-block {
  border-color: rgba(31, 78, 121, 0.22);
  box-shadow: 0 18px 44px rgba(31, 78, 121, 0.12);
}

.how-to-block,
.search-block {
  grid-column: 1 / -1;
  min-height: 0;
}

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.how-to-item {
  position: relative;
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.how-to-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 18px;
  height: 18px;
  border-top: 2px solid #c4d5e4;
  border-right: 2px solid #c4d5e4;
  transform: translateY(-50%) rotate(45deg);
  background: transparent;
}

.how-to-item:last-child::after {
  display: none;
}

.how-to-item em {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary) 100%);
  color: #ffffff;
  font-style: normal;
  font-weight: 850;
}

.how-to-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 16px;
}

.how-to-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.how-to-search {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.search-panel {
  margin-bottom: 16px;
}

.search-label,
.filter-field span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.search-input,
.filter-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  padding: 11px 13px;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

#quickSearchInput {
  min-height: 58px;
  border-width: 2px;
  border-color: #b9cee0;
  font-size: 17px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-input:focus,
.filter-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.14);
}

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

.filter-field {
  padding: 12px;
  border: 1px solid #e3ebf2;
  border-radius: var(--radius);
  background: #fbfdff;
}

.search-summary {
  margin-top: 16px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 720;
}

.search-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.search-result-section {
  display: grid;
  gap: 12px;
}

.search-result-section h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 17px;
}

.search-result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.search-result-card h3,
.search-result-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--primary-dark);
}

.department-result-card h4 {
  font-size: 18px;
}

.department-scenario-list {
  display: grid;
  gap: 12px;
}

.department-scenario-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfe;
  padding: 14px;
}

.department-scenario-card h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
}

.scenario-feature,
.scenario-reason {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  white-space: pre-line;
}

.scenario-models > span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 760;
}

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

.product-result-card {
  width: 100%;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-result-card:hover,
.product-result-card:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(31, 78, 121, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.product-result-name {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.result-meta strong {
  color: var(--text);
}

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

.detail-button {
  min-height: 38px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  background: linear-gradient(180deg, #2a5f8d 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 9px 15px;
  cursor: pointer;
  font-weight: 720;
  box-shadow: 0 8px 18px rgba(31, 78, 121, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.choice-button,
.recommendation-card,
.detail-button {
  touch-action: manipulation;
}

.detail-button:hover,
.detail-button:focus-visible {
  background: linear-gradient(180deg, #336f9f 0%, #102f4b 100%);
  box-shadow: 0 10px 22px rgba(31, 78, 121, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.no-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fafbfb;
  color: var(--muted);
  padding: 18px;
}

.share-block {
  grid-column: 1 / -1;
  min-height: 0;
}

.share-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.copy-row .detail-button {
  min-width: 108px;
}

.share-feedback {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 720;
}

.qrcode-box {
  min-height: 160px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fafbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
}

.qrcode-box img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.qrcode-box img + .qr-placeholder {
  display: none;
}

.qrcode-box img[hidden] + .qr-placeholder {
  display: block;
}

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

.detail-block {
  min-height: 330px;
}

.section-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef6fc 0%, #dcebf6 100%);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 800;
  border: 1px solid #c8d9e8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

h2 {
  margin-bottom: 3px;
  font-size: 19px;
  line-height: 1.3;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.choice-button {
  width: 100%;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--text);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.choice-button:hover,
.choice-button:focus-visible {
  border-color: var(--primary);
  background: #f3f8fc;
  box-shadow: 0 12px 26px rgba(31, 78, 121, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.choice-button.is-active {
  border-color: var(--primary);
  background: linear-gradient(180deg, #edf5fb 0%, #dcebf6 100%);
  box-shadow: inset 0 0 0 2px rgba(31, 78, 121, 0.24), 0 12px 28px rgba(31, 78, 121, 0.14);
}

.choice-title {
  display: block;
  font-weight: 740;
  font-size: 16px;
}

.choice-meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.muted-grid:empty::before,
.recommendation-list:empty::before {
  content: "等待上一步选择";
  display: block;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fafbfb;
}

.recommendation-list {
  display: grid;
  gap: 14px;
}

.recommendation-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 18px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.recommendation-card:hover {
  border-color: var(--primary);
  background: #fbfdff;
  box-shadow: 0 12px 28px rgba(31, 78, 121, 0.12);
  transform: translateY(-1px);
}

.recommendation-card.is-active {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f1f7fc 0%, #e6f0f8 100%);
  box-shadow: inset 0 0 0 2px rgba(31, 78, 121, 0.24), 0 12px 28px rgba(31, 78, 121, 0.14);
}

.recommendation-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.recommendation-name {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 760;
}

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

.series-model-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--primary-dark);
  padding: 9px 12px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.series-model-button:hover,
.series-model-button:focus-visible {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 8px 18px rgba(31, 78, 121, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.series-model-button.is-active {
  border-color: var(--primary);
  background: linear-gradient(180deg, #edf5fb 0%, #dcebf6 100%);
  box-shadow: inset 0 0 0 2px rgba(31, 78, 121, 0.2);
}

.recommendation-reason-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfe;
  padding: 16px 18px;
}

.recommendation-reason-block h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 15px;
}

.recommendation-reason-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  white-space: pre-line;
}

.recommendation-reason-block p + p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.rank-badge {
  border-radius: 999px;
  padding: 5px 11px;
  color: #5f3600;
  background: linear-gradient(180deg, #f5d99c 0%, var(--accent) 100%);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.rank-secondary {
  color: #ffffff;
  background: linear-gradient(180deg, #6f879b 0%, #4f6578 100%);
}

.recommendation-spec {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-weight: 720;
}

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

.product-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  border-style: dashed;
  background: #fafbfb;
}

.detail-title {
  padding: 18px 20px;
  background: linear-gradient(180deg, #eef6fc 0%, #e5eff8 100%);
  border-bottom: 1px solid var(--line);
}

.detail-title h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 14px;
}

.detail-table th {
  width: 116px;
  color: var(--muted);
  font-weight: 720;
  background: #f8fbfe;
}

.detail-table tr:last-child th,
.detail-table tr:last-child td {
  border-bottom: 0;
}

.notice-cell {
  background: var(--accent-soft);
  color: #62440f;
}

.compliance-footer {
  max-width: 1180px;
  margin: 0 auto 30px;
  padding: 18px 20px;
  color: #586866;
  font-size: 13px;
  line-height: 1.7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf9;
  box-shadow: var(--shadow-soft);
}

.error-box {
  border: 1px solid #e3b9b3;
  background: #fff4f2;
  color: #7d3128;
  border-radius: var(--radius);
  padding: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links a {
  color: var(--primary-dark);
  font-weight: 720;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 78, 121, 0.28);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
  border-bottom-color: var(--primary);
  outline: none;
}

.footer-nav {
  display: inline-flex;
  gap: 14px;
}

.admin-check-block,
.admin-table-block {
  min-height: 0;
}

.check-results {
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
}

.check-results p {
  margin-bottom: 8px;
}

.check-results ul {
  margin: 0;
  padding-left: 20px;
}

.check-pass {
  border: 1px solid #9ccbb8;
  background: #edf8f2;
  color: #145c3d;
  font-weight: 720;
}

.check-error {
  border: 1px solid #e3b9b3;
  background: #fff4f2;
  color: #7d3128;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.missing-products {
  font-size: 14px;
}

.copy-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.json-preview {
  width: 100%;
  min-height: 280px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
  color: var(--text);
  padding: 12px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.5;
  resize: vertical;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.admin-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.admin-table th {
  background: linear-gradient(180deg, #eef6fc 0%, #e5eff8 100%);
  color: var(--primary-dark);
  font-weight: 800;
  white-space: nowrap;
}

.admin-table td {
  color: var(--text);
  background: #ffffff;
}

.admin-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.admin-table tbody tr:hover td {
  background: #f2f7fc;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table th:last-child,
.admin-table td:last-child {
  border-right: 0;
}

@media (max-width: 820px) {
  .header-inner,
  .app-shell {
    display: block;
  }

  .top-nav {
    justify-content: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .header-note {
    margin-top: 12px;
  }

  .section-block {
    margin-bottom: 16px;
  }

  .filter-grid,
  .search-results,
  .product-result-grid,
  .how-to-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-to-item::after {
    display: none;
  }

  .share-content {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .copy-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    display: block;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .app-header {
    padding: 16px 14px 28px;
  }

  .top-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-nav a {
    min-height: 44px;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .brand-logo {
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .app-shell,
  .admin-shell {
    margin-top: 16px;
    padding: 0 14px;
  }

  h1 {
    font-size: 28px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .filter-grid,
  .search-results,
  .product-result-grid,
  .result-meta-grid,
  .how-to-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 18px;
    border-radius: 11px;
  }

  .recommendation-top {
    display: block;
  }

  .series-model-list {
    display: block;
  }

  .series-model-button {
    width: 100%;
  }

  .series-model-button + .series-model-button {
    margin-top: 8px;
  }

  .search-input,
  .filter-field select {
    min-height: 46px;
    font-size: 16px;
  }

  .choice-button,
  .recommendation-card {
    min-height: 76px;
    padding: 15px;
  }

  .detail-button {
    min-height: 44px;
    width: 100%;
  }

  .copy-row {
    grid-template-columns: 1fr;
  }

  .qrcode-box {
    min-height: 142px;
  }

  .stats-grid,
  .copy-actions {
    grid-template-columns: 1fr;
  }

  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
    padding: 10px 14px;
  }

  .detail-table th {
    border-bottom: 0;
    padding-bottom: 2px;
  }

  .detail-table td {
    padding-top: 4px;
  }

  .compliance-footer {
    margin: 0 14px 22px;
    padding: 14px;
  }
}
.recommendation-reason-block,
.scenario-reason {
  display: none !important;
}