:root {
  --bg: #f3eadb;
  --card: rgba(255, 248, 239, 0.92);
  --card-strong: rgba(255, 252, 246, 0.98);
  --ink: #251814;
  --muted: #6e5b50;
  --line: rgba(71, 43, 29, 0.12);
  --accent: #9f3b2f;
  --accent-deep: #6f241f;
  --gold: #c39245;
  --teal: #506d67;
  --rose: #b85a43;
  --ok: #4b7c5e;
  --shadow: 0 24px 48px rgba(72, 43, 26, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(159, 59, 47, 0.18), transparent 24%),
    radial-gradient(circle at left 72%, rgba(80, 109, 103, 0.13), transparent 24%),
    linear-gradient(145deg, rgba(195, 146, 69, 0.08), transparent 26%),
    linear-gradient(180deg, #f7efe2 0%, #ecdfcb 46%, #f7f1e6 100%);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(92, 58, 39, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 58, 39, 0.032) 1px, transparent 1px),
    repeating-linear-gradient(120deg, rgba(112, 83, 61, 0.025) 0 2px, transparent 2px 14px),
    radial-gradient(circle at 20% 18%, rgba(195, 146, 69, 0.12), transparent 18%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 94%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 8%, rgba(159, 59, 47, 0.14), transparent 12%),
    radial-gradient(circle at 12% 84%, rgba(195, 146, 69, 0.12), transparent 16%);
}

.mobile-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 14px 94px;
  position: relative;
}

.mobile-shell::before,
.mobile-shell::after {
  content: "";
  position: fixed;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(2px);
}

.mobile-shell::before {
  top: 12px;
  right: calc(50% - 205px);
  background: radial-gradient(circle, rgba(159, 59, 47, 0.45), transparent 68%);
}

.mobile-shell::after {
  bottom: 88px;
  left: calc(50% - 205px);
  background: radial-gradient(circle, rgba(195, 146, 69, 0.4), transparent 72%);
}

.mobile-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(71, 43, 29, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 14px 36px rgba(72, 43, 26, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.mobile-topbar::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 146, 69, 0.55), transparent);
}

.topbar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-topbar.compact {
  align-items: center;
}

.eyebrow,
.count-badge,
.hero-chip,
.meta-line,
.detail-line,
.helper-text,
.sheet-copy,
.result-note,
.order-note,
.audit-note,
.field-label,
.profile-copy,
.ghost-btn {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "STKaiti", "Kaiti SC", "Source Han Serif SC", "Songti SC", serif;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 28px;
  line-height: 1.18;
}

h3 {
  font-size: 20px;
}

.topbar-title-group {
  flex: 1;
}

.ghost-btn,
.primary-btn,
.bottom-link,
.queue-switch,
.small-btn,
.result-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  min-height: 44px;
  padding: 0 16px;
  font: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 252, 247, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.ghost-btn::before,
.primary-btn::before,
.bottom-link::before,
.queue-switch::before,
.small-btn::before,
.result-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.ghost-btn {
  white-space: nowrap;
}

.card-panel,
.appraiser-card,
.case-card,
.order-card,
.editor-card,
.login-sheet {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.card-panel::after,
.appraiser-card::after,
.case-card::after,
.order-card::after,
.editor-card::after,
.login-sheet::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(195, 146, 69, 0.1);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

.mobile-hero,
.profile-hero,
.workbench-hero,
.editor-panel {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  margin-bottom: 16px;
}

.mobile-hero::before,
.profile-hero::before,
.workbench-hero::before,
.editor-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), rgba(195, 146, 69, 0));
}

.mobile-hero::after,
.profile-hero::after,
.workbench-hero::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -38px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 59, 47, 0.14), transparent 72%);
}

.mobile-hero h2,
.profile-hero h2,
.workbench-hero h2,
.editor-panel h3 {
  position: relative;
}

.mobile-hero h2::after,
.profile-hero h2::after,
.workbench-hero h2::after,
.editor-panel h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--accent), rgba(195, 146, 69, 0.65));
}

.hero-copy-block,
.tag-row,
.image-row,
.result-row,
.stats-row,
.case-tags,
.queue-summary-row,
.editor-actions,
.result-select {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-chip,
.case-tag,
.mini-tag,
.status-pill,
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.86);
  font-size: 12px;
}

.category-gallery {
  padding: 18px 18px 16px;
}

.category-headline {
  margin: 0 0 12px;
}

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

.category-chip,
.category-tag,
.category-pattern,
.category-inline {
  position: relative;
  overflow: hidden;
}

.category-chip {
  display: flex;
  min-height: 64px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(71, 43, 29, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-family: "STKaiti", "Kaiti SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 16px;
  line-height: 1.2;
  color: inherit;
  cursor: pointer;
}

button.category-chip {
  width: 100%;
  appearance: none;
  text-align: left;
  background: transparent;
}

.category-chip span {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.84;
}

.category-chip.active {
  color: #fff8ef;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(199, 51, 45, 0.18);
}

.category-chip.active span {
  color: rgba(255, 248, 239, 0.84);
}

.category-all {
  color: #415368;
  background: linear-gradient(135deg, rgba(246, 249, 252, 0.96), rgba(232, 238, 245, 0.92));
  border-color: rgba(24, 33, 43, 0.08);
}

.category-all.active {
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
}

.category-tag,
.category-pattern {
  padding-right: 12px;
}

.category-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(71, 43, 29, 0.08);
  background: rgba(255, 251, 246, 0.8);
  font-size: 12px;
}

.category-inline::before,
.category-tag::after,
.category-pattern::after,
.category-chip::after,
.category-avatar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.category-inline::before {
  position: static;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.category-tag::after,
.category-pattern::after {
  right: 8px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  opacity: 0.14;
}

.category-chip::after {
  right: 8px;
  top: 8px;
  width: 30px;
  height: 30px;
  opacity: 0.14;
}

.category-avatar::after {
  inset: 7px;
  border-radius: 12px;
  opacity: 0.2;
}

.category-jade {
  color: #496652;
  background: linear-gradient(135deg, rgba(225, 238, 225, 0.96), rgba(200, 225, 205, 0.92));
  border-color: rgba(85, 118, 93, 0.2);
}

.category-jade::after {
  background: radial-gradient(circle at 50% 50%, rgba(73, 102, 82, 0.55) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(73, 102, 82, 0.38) 39% 46%, transparent 47%);
}

.category-ceramic {
  color: #406a7a;
  background: linear-gradient(135deg, rgba(226, 238, 244, 0.96), rgba(206, 224, 233, 0.92));
  border-color: rgba(80, 120, 137, 0.22);
}

.category-ceramic::after {
  background: repeating-linear-gradient(135deg, rgba(64, 106, 122, 0.5) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(45deg, rgba(64, 106, 122, 0.36) 0 1px, transparent 1px 8px);
}

.category-bronze {
  color: #6c5734;
  background: linear-gradient(135deg, rgba(237, 227, 203, 0.98), rgba(214, 194, 155, 0.92));
  border-color: rgba(126, 99, 47, 0.24);
}

.category-bronze::after {
  background: radial-gradient(circle at 50% 38%, rgba(108, 87, 52, 0.5) 0 16%, transparent 17%),
    linear-gradient(90deg, transparent 28%, rgba(108, 87, 52, 0.35) 28% 36%, transparent 36% 64%, rgba(108, 87, 52, 0.35) 64% 72%, transparent 72%);
}

.category-curio {
  color: #785146;
  background: linear-gradient(135deg, rgba(239, 225, 218, 0.96), rgba(224, 199, 188, 0.92));
  border-color: rgba(131, 89, 77, 0.22);
}

.category-curio::after {
  background: repeating-linear-gradient(0deg, rgba(120, 81, 70, 0.45) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(120, 81, 70, 0.3) 0 2px, transparent 2px 6px);
}

.category-painting {
  color: #5c4a77;
  background: linear-gradient(135deg, rgba(233, 226, 240, 0.96), rgba(214, 203, 228, 0.92));
  border-color: rgba(98, 79, 129, 0.2);
}

.category-painting::after {
  background: linear-gradient(90deg, rgba(92, 74, 119, 0.48) 0 2px, transparent 2px 100%),
    linear-gradient(0deg, rgba(92, 74, 119, 0.28) 0 2px, transparent 2px 100%);
  background-size: 9px 100%, 100% 9px;
}

.category-general {
  color: #5f5a51;
  background: linear-gradient(135deg, rgba(237, 232, 223, 0.96), rgba(221, 214, 205, 0.92));
  border-color: rgba(95, 90, 81, 0.18);
}

.hero-chip::before,
.mini-tag::before,
.trust-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
}

.hero-chip,
.mini-tag {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.mobile-hero h2,
.profile-hero h2,
.workbench-hero h2 {
  margin-top: 14px;
}

.profile-carousel {
  position: relative;
  margin: -4px -4px 18px;
}

.carousel-track {
  position: relative;
  min-height: 212px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(41, 22, 16, 0.18);
}

.carousel-track::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 247, 230, 0.24);
  border-radius: 20px;
  pointer-events: none;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 360ms ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-overlay {
  min-height: 212px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff8ef;
  background: linear-gradient(180deg, rgba(28, 17, 11, 0.08), rgba(28, 17, 11, 0.78));
}

.carousel-overlay p {
  margin: 8px 0 0;
  line-height: 1.7;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 25, 19, 0.22);
}

.carousel-dot.active {
  width: 24px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.mobile-hero p,
.profile-hero p,
.workbench-hero p,
.case-summary,
.editor-note,
.sheet-copy,
.helper-text {
  line-height: 1.75;
}

.section-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin: 20px 0 12px;
}

.section-headline.tight {
  margin-top: 6px;
}

.count-badge {
  white-space: nowrap;
}

.list-stack {
  display: grid;
  gap: 16px;
}

.appraiser-card,
.case-card,
.order-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(251, 245, 238, 0.86));
}

.appraiser-card {
  padding: 20px 20px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.88));
  border-color: rgba(24, 33, 43, 0.08);
  box-shadow: 0 18px 36px rgba(19, 35, 57, 0.12);
}

.featured-card {
  padding: 22px 22px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.92));
  box-shadow: 0 22px 44px rgba(19, 35, 57, 0.16);
}

.appraiser-card::before,
.case-card::before,
.order-card::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-top: 1px solid rgba(195, 146, 69, 0.34);
  border-right: 1px solid rgba(195, 146, 69, 0.34);
  border-radius: 0 10px 0 0;
}

.order-card.active-order {
  border-color: rgba(180, 102, 45, 0.36);
  box-shadow: 0 14px 30px rgba(95, 58, 33, 0.12);
}

.appraiser-top,
.profile-top,
.order-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.appraiser-top.no-badge {
  justify-content: flex-start;
  margin-bottom: 2px;
}

.avatar-block {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff7ef;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 24px rgba(111, 36, 31, 0.24);
}

.avatar-mark.category-avatar.category-jade {
  background: linear-gradient(135deg, #6e9175, #42644c);
}

.avatar-mark.category-avatar.category-ceramic {
  background: linear-gradient(135deg, #6b93a6, #3e6674);
}

.avatar-mark.category-avatar.category-bronze {
  background: linear-gradient(135deg, #a6844f, #6d5228);
}

.avatar-mark.category-avatar.category-curio {
  background: linear-gradient(135deg, #9a6c5f, #69443a);
}

.avatar-mark.category-avatar.category-painting {
  background: linear-gradient(135deg, #7e6b99, #564575);
}

.avatar-mark.category-avatar.category-general {
  background: linear-gradient(135deg, #8a7a67, #615447);
}

.appraiser-card h3 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.appraiser-card .meta-line {
  margin-top: 6px;
}

.featured-card h3 {
  font-size: 25px;
}

.featured-card .meta-line {
  gap: 8px;
}

.appraiser-cover {
  margin-top: 16px;
  height: 188px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: linear-gradient(135deg, rgba(239, 243, 248, 0.96), rgba(228, 235, 243, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 12px 28px rgba(30, 48, 73, 0.1);
}

.appraiser-cover::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: 2;
}

.appraiser-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(16, 24, 36, 0), rgba(16, 24, 36, 0.18));
  pointer-events: none;
  z-index: 1;
}

.appraiser-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
}

.appraiser-cover-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(14, 23, 36, 0.42);
  backdrop-filter: blur(10px);
  color: #f8fbff;
}

.appraiser-cover-meta span,
.appraiser-cover-meta strong {
  display: block;
  color: inherit;
}

.appraiser-cover-meta span {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.84;
}

.appraiser-cover-meta strong {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.appraiser-cover.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f8ca0;
  font-size: 13px;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at top right, rgba(207, 63, 54, 0.08), transparent 28%), linear-gradient(135deg, rgba(244, 247, 252, 0.98), rgba(231, 237, 244, 0.94));
}

.trust-badge.active {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.trust-badge.disabled {
  color: #fff8ef;
  background: linear-gradient(135deg, #8b8b8b, #5a5a5a);
}

.stats-row {
  margin-top: 14px;
}

.appraiser-card .stats-row {
  gap: 10px;
  margin-top: 16px;
}

.stat-tile {
  flex: 1 1 96px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 240, 230, 0.96));
  border: 1px solid rgba(71, 43, 29, 0.08);
  position: relative;
}

.appraiser-card .stat-tile {
  min-height: 112px;
  padding: 15px 14px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94));
  border-color: rgba(24, 33, 43, 0.06);
}

.stat-tile::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 10px;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(159, 59, 47, 0.5), rgba(195, 146, 69, 0.2));
}

.stat-tile strong {
  display: block;
  margin-top: 6px;
}

.stat-tile small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.single-action .small-btn,
.single-action a.small-btn {
  width: 100%;
}

.appraiser-card .profile-copy {
  margin-top: 14px;
  color: #58687d;
  line-height: 1.75;
}

.appraiser-card .case-tags {
  margin-top: 14px;
}

.appraiser-card .single-action {
  margin-top: 16px !important;
}

.appraiser-card .single-action .small-btn,
.appraiser-card .single-action a.small-btn {
  min-height: 46px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.featured-card .appraiser-cover {
  height: 228px;
  border-radius: 26px;
}

.featured-card .appraiser-cover::before {
  inset: 9px;
  border-radius: 20px;
}

.featured-card .appraiser-cover-meta {
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 18px;
}

.featured-card .appraiser-cover-meta span {
  font-size: 13px;
}

.featured-card .appraiser-cover-meta strong {
  font-size: 14px;
}

.featured-card .stats-row {
  margin-top: 18px;
}

.featured-card .stat-tile {
  min-height: 116px;
}

.stat-rating-tile {
  position: relative;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.rating-star {
  color: rgba(200, 144, 61, 0.24);
  font-size: 16px;
  line-height: 1;
}

.rating-star.active {
  color: #d49a2a;
}

.rating-stars.large .rating-star {
  font-size: 22px;
}

.rating-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.rating-summary-row strong,
.rating-summary-row small {
  display: block;
}

.rating-summary-row small {
  margin-top: 6px;
  color: var(--muted);
}

.rating-input-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.rating-select-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(200, 144, 61, 0.34);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.rating-select-btn.active {
  border-color: rgba(212, 154, 42, 0.22);
  background: linear-gradient(135deg, rgba(255, 245, 220, 0.98), rgba(250, 234, 191, 0.95));
  color: #d49a2a;
}

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

.case-summary,
.profile-copy,
.order-note {
  margin: 12px 0 0;
}

.image-card {
  flex: 1 1 102px;
  min-height: 96px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(228, 209, 188, 0.92), rgba(203, 177, 148, 0.96));
  border: 1px solid rgba(71, 43, 29, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.image-card.reply {
  background: linear-gradient(180deg, rgba(223, 234, 230, 0.96), rgba(177, 196, 190, 0.98));
}

.image-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.image-card strong {
  margin-top: 4px;
  font-size: 16px;
}

.bottom-bar {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(100% - 20px, 404px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 248, 240, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 20px 42px rgba(83, 53, 32, 0.16);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.bottom-bar::before {
  content: "";
  position: absolute;
  inset: 0 14px auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(159, 59, 47, 0.85), rgba(195, 146, 69, 0.5), rgba(159, 59, 47, 0));
}

.bottom-link.active,
.primary-btn,
.queue-switch.active,
.small-btn.primary,
.result-pill.active {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(111, 36, 31, 0.24);
}

.primary-btn:disabled,
.small-btn:disabled,
.ghost-btn:disabled,
.queue-switch:disabled,
.result-pill:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  box-shadow: none;
}

.sheet-mask {
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 12, 0.44);
  backdrop-filter: blur(8px);
}

.login-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 430px);
  padding: 16px 14px 24px;
  border-radius: 28px 28px 0 0;
  background: rgba(255, 249, 242, 0.98);
}

.login-sheet::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), rgba(195, 146, 69, 0));
}

.login-sheet.tall {
  max-height: calc(100vh - 20px);
  overflow-y: auto;
}

.sheet-handle {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(71, 43, 29, 0.16);
  margin: 0 auto 14px;
}

.input-block {
  display: block;
  margin-top: 14px;
}

.input-block span,
.field-label {
  display: block;
  margin-bottom: 8px;
}

.input-block input,
.editor-input,
.editor-textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.editor-textarea {
  min-height: 136px;
  resize: vertical;
}

.editor-input {
  min-height: 50px;
}

.hidden {
  display: none;
}

.queue-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}

.status-pill.pending {
  color: #fff8ef;
  background: linear-gradient(135deg, #c08b38, #8c5217);
}

.status-pill.completed {
  color: #fff8ef;
  background: linear-gradient(135deg, #5c8775, #355548);
}

.editor-panel.empty {
  text-align: center;
}

.editor-card + .editor-card {
  margin-top: 12px;
}

.voice-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.voice-helper {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.voice-preview-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(249, 252, 255, 0.92);
}

.voice-preview-card.empty {
  background: rgba(255, 252, 248, 0.84);
}

.voice-preview-card span,
.voice-preview-head small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.voice-preview-card strong {
  display: block;
  margin-top: 6px;
}

.voice-preview-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.voice-preview-file {
  margin-top: 0;
}

.voice-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.voice-preview-player {
  width: 100%;
  height: 38px;
}

.helper-text {
  margin: 12px 0 0;
  padding-left: 18px;
}

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

.upload-card,
.status-box,
.payment-preview {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(71, 43, 29, 0.08);
  background: rgba(255, 253, 248, 0.8);
  position: relative;
}

.upload-card::after,
.status-box::after,
.payment-preview::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 146, 69, 0.35), transparent);
}

.upload-card.approved {
  background: rgba(241, 248, 243, 0.92);
}

.upload-card.blocked {
  background: rgba(255, 242, 238, 0.92);
  border-color: rgba(198, 90, 59, 0.22);
}

.upload-card span,
.status-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.upload-card strong,
.status-box strong {
  display: block;
  margin-top: 6px;
}

.upload-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.status-box + .status-box {
  margin-top: 10px;
}

.identity-status {
  margin-top: 16px;
}

.payment-preview {
  margin-top: 14px;
  line-height: 1.7;
  word-break: break-word;
}

.payment-preview .small-btn {
  margin-top: 12px;
}

.small-btn {
  min-height: 40px;
  padding: 0 14px;
}

.result-pill {
  min-height: 40px;
  cursor: pointer;
}

.meta-line,
.queue-summary-row,
.detail-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.lock-panel {
  padding: 18px;
  text-align: center;
}

@media (max-width: 420px) {
  .topbar-actions {
    justify-content: flex-start;
  }

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

  .voice-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 当代化改版：移动端转为更清爽的现代中国风 */
:root {
  --bg: #f4f7fb;
  --card: rgba(255, 255, 255, 0.78);
  --card-strong: rgba(255, 255, 255, 0.9);
  --ink: #18212b;
  --muted: #637287;
  --line: rgba(24, 33, 43, 0.08);
  --accent: #cf3f36;
  --accent-deep: #92231d;
  --gold: #c8903d;
  --teal: #2f6f7f;
  --rose: #d35b54;
  --ok: #3c8b67;
  --shadow: 0 18px 40px rgba(19, 35, 57, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(207, 63, 54, 0.12), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(47, 111, 127, 0.1), transparent 20%),
    radial-gradient(circle at 80% 84%, rgba(200, 144, 61, 0.08), transparent 18%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3f8 52%, #f8fafc 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(24, 33, 43, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 43, 0.018) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 94%);
}

body::after,
.mobile-shell::before,
.mobile-shell::after,
.mobile-topbar::before,
.card-panel::after,
.appraiser-card::after,
.case-card::after,
.order-card::after,
.editor-card::after,
.login-sheet::after,
.mobile-hero::after,
.profile-hero::after,
.workbench-hero::after,
.appraiser-card::before,
.case-card::before,
.order-card::before,
.stat-tile::after,
.bottom-bar::before,
.upload-card::after,
.status-box::after,
.payment-preview::after,
.login-sheet::before,
.carousel-track::after {
  display: none;
}

h1,
h2,
h3,
h4,
.category-chip {
  font-family: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.eyebrow {
  letter-spacing: 0.12em;
  color: #8795a8;
}

.mobile-topbar {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(24, 33, 43, 0.07);
  box-shadow: 0 10px 28px rgba(20, 34, 54, 0.08);
}

.ghost-btn,
.primary-btn,
.bottom-link,
.queue-switch,
.small-btn,
.result-pill {
  min-height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(24, 33, 43, 0.08);
  box-shadow: none;
}

.ghost-btn::before,
.primary-btn::before,
.bottom-link::before,
.queue-switch::before,
.small-btn::before,
.result-pill::before {
  display: none;
}

.card-panel,
.appraiser-card,
.case-card,
.order-card,
.editor-card,
.login-sheet,
.status-box,
.upload-card,
.payment-preview,
.stat-tile {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(24, 33, 43, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-hero,
.profile-hero,
.workbench-hero,
.editor-panel {
  padding: 22px 18px;
}

.home-entry-panel {
  padding-bottom: 18px;
}

.identity-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.identity-panel-copy {
  margin: 0;
  max-width: 150px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.identity-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92));
}

.identity-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ea5b4d 0%, #c8903d 100%);
  color: #fff8ef;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(199, 51, 45, 0.18);
}

.identity-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.identity-copy {
  min-width: 0;
  flex: 1;
}

.identity-copy strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.3;
  word-break: break-word;
}

.identity-copy small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.entry-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.entry-action-btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.entry-action-alt {
  background: rgba(243, 247, 251, 0.96);
  color: var(--ink);
}

.mobile-hero::before,
.profile-hero::before,
.workbench-hero::before,
.editor-panel::before {
  height: 3px;
  background: linear-gradient(90deg, #ea5848 0%, #cf3f36 38%, #2f6f7f 100%);
}

.mobile-hero h2::after,
.profile-hero h2::after,
.workbench-hero h2::after,
.editor-panel h3::after {
  width: 44px;
  height: 3px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, #ea5848, #2f6f7f);
}

.bottom-bar {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(24, 33, 43, 0.07);
  box-shadow: 0 16px 34px rgba(19, 35, 57, 0.12);
}

.bottom-link.active,
.primary-btn,
.queue-switch.active,
.small-btn.primary,
.result-pill.active {
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
  box-shadow: 0 10px 20px rgba(199, 51, 45, 0.2);
}

.trust-badge.active,
.status-pill.pending,
.status-pill.completed {
  box-shadow: none;
}

.category-gallery {
  padding: 16px;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.category-chip {
  min-height: 56px;
  padding: 10px 10px 10px 12px;
  align-items: flex-start;
  border-radius: 16px;
  border-width: 1px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.category-chip span {
  font-size: 10px;
  letter-spacing: 0.06em;
}

.category-chip::after,
.category-tag::after,
.category-pattern::after,
.category-avatar::after {
  opacity: 0.1;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.category-inline {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(24, 33, 43, 0.06);
}

.category-tag,
.category-pattern {
  background: rgba(255, 255, 255, 0.8);
  border-color: transparent;
}

.category-jade {
  color: #2f7a5d;
  background: linear-gradient(135deg, rgba(223, 245, 234, 0.94), rgba(201, 234, 217, 0.92));
  border-color: rgba(47, 122, 93, 0.16);
}

.category-jade::after {
  background: radial-gradient(circle at 50% 50%, rgba(47, 122, 93, 0.6) 0 22%, transparent 24%), radial-gradient(circle at 50% 50%, transparent 42%, rgba(47, 122, 93, 0.4) 43% 50%, transparent 52%);
}

.category-ceramic {
  color: #2f6f8f;
  background: linear-gradient(135deg, rgba(228, 241, 252, 0.94), rgba(208, 227, 244, 0.92));
  border-color: rgba(47, 111, 143, 0.16);
}

.category-ceramic::after {
  background: repeating-linear-gradient(135deg, rgba(47, 111, 143, 0.48) 0 1px, transparent 1px 5px), repeating-linear-gradient(45deg, rgba(47, 111, 143, 0.26) 0 1px, transparent 1px 7px);
}

.category-bronze {
  color: #8b6424;
  background: linear-gradient(135deg, rgba(247, 235, 207, 0.95), rgba(236, 214, 170, 0.92));
  border-color: rgba(139, 100, 36, 0.16);
}

.category-bronze::after {
  background: linear-gradient(90deg, transparent 28%, rgba(139, 100, 36, 0.36) 28% 36%, transparent 36% 64%, rgba(139, 100, 36, 0.36) 64% 72%, transparent 72%);
}

.category-curio {
  color: #8d5445;
  background: linear-gradient(135deg, rgba(249, 230, 224, 0.95), rgba(237, 207, 197, 0.92));
  border-color: rgba(141, 84, 69, 0.16);
}

.category-curio::after {
  background: repeating-linear-gradient(0deg, rgba(141, 84, 69, 0.38) 0 2px, transparent 2px 5px), repeating-linear-gradient(90deg, rgba(141, 84, 69, 0.24) 0 2px, transparent 2px 5px);
}

.category-painting {
  color: #6656a4;
  background: linear-gradient(135deg, rgba(237, 233, 255, 0.95), rgba(222, 215, 248, 0.92));
  border-color: rgba(102, 86, 164, 0.16);
}

.category-painting::after {
  background: linear-gradient(90deg, rgba(102, 86, 164, 0.42) 0 2px, transparent 2px 100%), linear-gradient(0deg, rgba(102, 86, 164, 0.22) 0 2px, transparent 2px 100%);
  background-size: 7px 100%, 100% 7px;
}

.category-chip.active,
.category-chip.active.category-jade,
.category-chip.active.category-ceramic,
.category-chip.active.category-bronze,
.category-chip.active.category-curio,
.category-chip.active.category-painting {
  color: #fff8ef;
  border-color: transparent;
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
  box-shadow: 0 12px 24px rgba(199, 51, 45, 0.2);
}

.category-chip.active::after,
.category-chip.active span {
  opacity: 0.88;
  color: rgba(255, 248, 239, 0.84);
}

.avatar-mark.category-avatar {
  border-radius: 16px;
  box-shadow: none;
}

@media (max-width: 420px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appraiser-card {
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .featured-card {
    padding: 20px 20px 18px;
    border-radius: 26px;
  }

  .appraiser-cover {
    height: 172px;
    border-radius: 22px;
  }

  .featured-card .appraiser-cover {
    height: 208px;
    border-radius: 24px;
  }

  .appraiser-cover-meta,
  .featured-card .appraiser-cover-meta {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .identity-panel-head {
    flex-direction: column;
  }

  .identity-panel-copy {
    max-width: none;
    text-align: left;
  }
}

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

.category-filter-btn {
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.category-filter-btn span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.category-filter-btn.active {
  color: #fff8ef;
  border-color: transparent;
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
}

.category-filter-btn.active span {
  color: rgba(255, 248, 239, 0.84);
}

.process-panel {
  padding: 18px;
  margin-bottom: 16px;
}

.inline-process-box {
  margin-top: 18px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.process-track.three-step {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.process-step {
  min-height: 102px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 43, 0.07);
  background: rgba(248, 250, 253, 0.88);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-step strong {
  font-size: 15px;
}

.process-step small {
  color: var(--muted);
  line-height: 1.6;
}

.process-step.active {
  border-color: rgba(207, 63, 54, 0.18);
  background: linear-gradient(180deg, rgba(255, 240, 238, 0.96), rgba(255, 251, 250, 0.92));
  box-shadow: 0 10px 24px rgba(207, 63, 54, 0.12);
}

.process-step.completed {
  border-color: rgba(60, 139, 103, 0.18);
  background: linear-gradient(180deg, rgba(236, 248, 242, 0.96), rgba(249, 252, 250, 0.92));
}

.process-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  border-radius: 999px;
  background: rgba(24, 33, 43, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.process-step.active .process-step-no,
.process-step.completed .process-step-no {
  color: #fff8ef;
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
}

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

.soft-note-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 43, 0.07);
  background: rgba(248, 250, 253, 0.9);
}

.soft-note-card span,
.soft-note-card small {
  display: block;
  color: var(--muted);
}

.soft-note-card strong {
  display: block;
  margin: 6px 0;
}

.soft-note-card.success {
  background: linear-gradient(180deg, rgba(235, 248, 241, 0.96), rgba(248, 252, 250, 0.94));
  border-color: rgba(60, 139, 103, 0.18);
}

.success-state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.success-state-badge.pending {
  color: #7a5e2a;
  background: rgba(255, 240, 214, 0.92);
}

.success-state-badge.success {
  color: #fff8ef;
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
}

.success-state-badge.done {
  color: #fff8ef;
  background: linear-gradient(135deg, #42a172 0%, #2a7a56 100%);
}

.success-actions {
  flex-wrap: wrap;
}

.result-detail-block {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 43, 0.07);
  background: rgba(248, 250, 253, 0.88);
}

.result-copy {
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.8;
}

.result-copy.muted {
  color: var(--muted);
}

.result-voice-panel {
  margin-top: 10px;
  padding: 12px 12px 10px;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(188, 147, 110, 0.1);
}

.result-voice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.result-voice-meta span {
  color: #8b715c;
  font-size: 12px;
}

.result-voice-meta strong {
  font-size: 13px;
  color: #43352b;
}

.result-voice-player {
  width: 100%;
  height: 38px;
}

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

.result-highlight-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(24, 33, 43, 0.07);
  background: rgba(248, 250, 253, 0.92);
}

.result-highlight-card.emphasis {
  background: linear-gradient(180deg, rgba(255, 244, 242, 0.96), rgba(255, 250, 249, 0.94));
  border-color: rgba(207, 63, 54, 0.14);
}

.result-highlight-card.emphasis.done {
  background: linear-gradient(180deg, rgba(235, 248, 241, 0.96), rgba(248, 252, 250, 0.94));
  border-color: rgba(60, 139, 103, 0.18);
}

.result-highlight-card span {
  display: block;
  color: var(--muted);
}

.result-highlight-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}

.result-highlight-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.result-tip-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.report-block {
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 249, 254, 0.92));
}

.report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.report-head h4 {
  margin: 8px 0 0;
  font-size: 18px;
}

.report-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.report-status-chip.done {
  color: #fff8ef;
  background: linear-gradient(135deg, #42a172 0%, #2a7a56 100%);
}

.report-status-chip.pending {
  color: #7a5e2a;
  background: rgba(255, 240, 214, 0.92);
}

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

.evidence-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 43, 0.07);
  background: rgba(255, 255, 255, 0.84);
}

.evidence-card span {
  display: block;
  color: var(--muted);
}

.evidence-card strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
}

.evidence-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.evidence-card.material {
  background: linear-gradient(180deg, rgba(234, 245, 239, 0.92), rgba(248, 252, 250, 0.9));
}

.evidence-card.craft {
  background: linear-gradient(180deg, rgba(236, 242, 252, 0.92), rgba(249, 251, 255, 0.9));
}

.evidence-card.patina {
  background: linear-gradient(180deg, rgba(247, 240, 229, 0.94), rgba(252, 249, 244, 0.9));
}

.evidence-card.risk {
  background: linear-gradient(180deg, rgba(252, 238, 236, 0.94), rgba(255, 250, 249, 0.9));
}

@media (max-width: 420px) {
  .category-filter-bar,
  .post-comfort-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track.three-step {
    grid-template-columns: 1fr;
  }

  .result-highlight-grid {
    grid-template-columns: 1fr;
  }

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

.entry-flow-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.flow-step-card {
  padding: 18px;
}

.flow-step-card h3 {
  margin-top: 10px;
}

.flow-step-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff8ef;
  background: linear-gradient(135deg, #ea5b4d 0%, #c7332d 58%, #8f201b 100%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body[data-page="appraiser-home"] {
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 121, 87, 0.15), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(194, 154, 100, 0.12), transparent 22%),
    radial-gradient(circle at 80% 86%, rgba(156, 96, 72, 0.08), transparent 20%),
    linear-gradient(180deg, #fcf7f1 0%, #f7ede1 48%, #f8f2ea 100%);
}

body[data-page="appraiser-home"]::before {
  background-image:
    linear-gradient(rgba(110, 84, 62, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 84, 62, 0.016) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 92%);
}

body[data-page="appraiser-home"] .mobile-shell {
  width: min(100%, 446px);
  padding-top: 20px;
  padding-bottom: 106px;
}

body[data-page="appraiser-home"] .mobile-topbar {
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.9);
  border-color: rgba(113, 83, 61, 0.08);
  box-shadow: 0 16px 34px rgba(128, 93, 68, 0.08);
}

body[data-page="appraiser-home"] .mobile-topbar::before {
  display: none;
}

body[data-page="appraiser-home"] .topbar-title-group {
  min-width: 0;
}

body[data-page="appraiser-home"] .topbar-title-group h1 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

body[data-page="appraiser-home"] .ghost-btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 248, 241, 0.96);
  border-color: rgba(120, 90, 65, 0.08);
  color: #806451;
}

body[data-page="appraiser-home"] .profile-hero {
  padding: 18px 18px 20px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(252, 244, 235, 0.94));
  box-shadow: 0 20px 42px rgba(143, 104, 74, 0.1);
}

body[data-page="appraiser-home"] .profile-hero::before {
  height: 3px;
  background: linear-gradient(90deg, rgba(193, 109, 74, 0.96), rgba(218, 166, 98, 0.7), rgba(193, 109, 74, 0));
}

body[data-page="appraiser-home"] .profile-hero::after {
  width: 120px;
  height: 120px;
  right: -32px;
  top: -24px;
  background: radial-gradient(circle, rgba(220, 174, 118, 0.2), transparent 72%);
}

body[data-page="appraiser-home"] .profile-carousel {
  margin: -2px -2px 22px;
}

body[data-page="appraiser-home"] .carousel-track {
  min-height: 234px;
  border-radius: 30px;
  box-shadow: 0 18px 34px rgba(122, 84, 57, 0.16);
}

body[data-page="appraiser-home"] .carousel-overlay {
  min-height: 234px;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, rgba(64, 38, 24, 0.05), rgba(64, 38, 24, 0.72));
}

body[data-page="appraiser-home"] .carousel-overlay h2 {
  font-size: 30px;
  line-height: 1.08;
}

body[data-page="appraiser-home"] .carousel-overlay p:last-child {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
}

body[data-page="appraiser-home"] .profile-top {
  align-items: flex-start;
  gap: 14px;
  margin-top: 4px;
}

body[data-page="appraiser-home"] .profile-side-visual {
  width: 122px;
  height: 148px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(180, 139, 101, 0.22);
  background: linear-gradient(135deg, rgba(246, 240, 231, 0.98), rgba(236, 226, 211, 0.94));
  box-shadow: 0 18px 34px rgba(88, 62, 36, 0.16);
}

body[data-page="appraiser-home"] .profile-side-visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

body[data-page="appraiser-home"] .profile-side-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(180deg, rgba(24, 20, 17, 0), rgba(24, 20, 17, 0.82));
  pointer-events: none;
  z-index: 1;
}

body[data-page="appraiser-home"] .profile-side-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
}

body[data-page="appraiser-home"] .profile-side-caption {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  color: #fff7ef;
}

body[data-page="appraiser-home"] .profile-side-caption span,
body[data-page="appraiser-home"] .profile-side-caption strong,
body[data-page="appraiser-home"] .profile-side-caption small {
  display: block;
  color: inherit;
}

body[data-page="appraiser-home"] .profile-side-caption span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.86;
}

body[data-page="appraiser-home"] .profile-side-caption strong {
  margin-top: 5px;
  font-size: 18px;
  line-height: 1.16;
  font-weight: 700;
}

body[data-page="appraiser-home"] .profile-side-caption small {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 247, 239, 0.82);
}

body[data-page="appraiser-home"] .profile-side-visual.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8a725f;
}

body[data-page="appraiser-home"] .profile-side-visual.empty span,
body[data-page="appraiser-home"] .profile-side-visual.empty strong,
body[data-page="appraiser-home"] .profile-side-visual.empty small {
  display: block;
  color: inherit;
}

body[data-page="appraiser-home"] .profile-side-visual.empty span {
  font-size: 11px;
  letter-spacing: 0.08em;
}

body[data-page="appraiser-home"] .profile-side-visual.empty strong {
  font-size: 14px;
}

body[data-page="appraiser-home"] .profile-side-visual.empty small {
  font-size: 11px;
}

body[data-page="appraiser-home"] .avatar-block {
  gap: 14px;
}

body[data-page="appraiser-home"] .avatar-mark {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

body[data-page="appraiser-home"] .profile-copy {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #6e5748;
}

body[data-page="appraiser-home"] .appraiser-home-note {
  margin-top: 16px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(251, 241, 229, 0.92), rgba(255, 249, 243, 0.9));
  border: 1px solid rgba(191, 144, 103, 0.16);
}

body[data-page="appraiser-home"] .appraiser-home-note span,
body[data-page="appraiser-home"] .appraiser-home-note small {
  display: block;
  color: #8a725f;
}

body[data-page="appraiser-home"] .appraiser-home-note strong {
  display: block;
  margin: 7px 0 6px;
  font-size: 17px;
  line-height: 1.6;
  color: #2e241d;
}

body[data-page="appraiser-home"] .stats-row {
  gap: 12px;
  margin-top: 18px;
}

body[data-page="appraiser-home"] .stat-tile {
  min-height: 104px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(251, 242, 233, 0.95));
  border-color: rgba(180, 139, 101, 0.14);
}

body[data-page="appraiser-home"] .section-headline {
  margin: 24px 4px 14px;
  align-items: flex-end;
}

@media (max-width: 420px) {
  body[data-page="appraiser-home"] .profile-top {
    align-items: stretch;
  }

  body[data-page="appraiser-home"] .profile-side-visual {
    width: 98px;
    height: 122px;
    border-radius: 24px;
  }

  body[data-page="appraiser-home"] .profile-side-caption {
    inset: auto 11px 12px;
  }

  body[data-page="appraiser-home"] .profile-side-caption strong {
    font-size: 15px;
  }

  body[data-page="appraiser-home"] .profile-side-caption small {
    font-size: 10px;
  }
}

body[data-page="appraiser-home"] .section-headline h3 {
  font-size: 24px;
}

body[data-page="appraiser-home"] .count-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.92);
  border: 1px solid rgba(177, 134, 96, 0.12);
}

body[data-page="appraiser-home"] .list-stack {
  gap: 10px;
  margin-top: 8px;
}

body[data-page="appraiser-home"] .case-card {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.97), rgba(251, 243, 235, 0.95));
  border-color: rgba(182, 141, 105, 0.1);
  box-shadow: 0 12px 26px rgba(141, 104, 76, 0.07);
}

body[data-page="appraiser-home"] .case-feed-item.empty {
  padding: 20px 18px;
}

body[data-page="appraiser-home"] .case-feed-item.empty strong {
  display: block;
  font-size: 18px;
}

body[data-page="appraiser-home"] .case-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body[data-page="appraiser-home"] .case-voice-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(247, 237, 224, 0.92);
  color: #8c705a;
  font-size: 12px;
  border: 1px solid rgba(188, 147, 110, 0.12);
}

body[data-page="appraiser-home"] .case-image-strip {
  gap: 10px;
  margin-top: 14px;
}

body[data-page="appraiser-home"] .image-card {
  min-height: 102px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(240, 224, 204, 0.96), rgba(226, 203, 174, 0.94));
}

body[data-page="appraiser-home"] .case-voice-panel {
  margin-top: 14px;
  padding: 12px 12px 10px;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(188, 147, 110, 0.1);
}

body[data-page="appraiser-home"] .case-voice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body[data-page="appraiser-home"] .case-voice-meta span {
  color: #8b715c;
  font-size: 12px;
}

body[data-page="appraiser-home"] .case-voice-meta strong {
  font-size: 13px;
  color: #43352b;
}

body[data-page="appraiser-home"] .case-voice-player {
  width: 100%;
  height: 38px;
}

body[data-page="appraiser-home"] .case-summary.condensed {
  margin: 14px 0 0;
  color: #6e594b;
  line-height: 1.8;
  font-size: 14px;
}

body[data-page="appraiser-home"] .bottom-bar {
  bottom: 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 249, 242, 0.96);
  border-color: rgba(180, 140, 106, 0.1);
  box-shadow: 0 18px 36px rgba(132, 97, 72, 0.14);
}

body[data-page="appraiser-home"] .bottom-link {
  min-height: 46px;
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.88);
}

body[data-page="appraiser-home"] .bottom-link.active {
  background: linear-gradient(135deg, #d88557 0%, #c3643d 56%, #9b4728 100%);
  box-shadow: 0 10px 24px rgba(195, 100, 61, 0.24);
}
