:root {
  --ink: #151515;
  --muted: #66615a;
  --line: #ded8cf;
  --paper: #f7f3eb;
  --panel: #fffaf1;
  --champagne: #b89a62;
  --deep: #25211c;
  --soft: rgba(21, 21, 21, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(238, 232, 221, 0.92)),
    url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1800&q=80");
  background-attachment: fixed;
  background-size: cover;
  font-family: "Didot", "Bodoni 72", "Times New Roman", "PingFang SC", "Microsoft YaHei", serif;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 54px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 22px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.top-actions a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.top-actions a:hover {
  border-color: var(--ink);
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--champagne);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
}

.icon-button,
.close-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.78);
  transition: transform 160ms ease, background 160ms ease;
}

.icon-button:hover,
.close-button:hover {
  transform: translateY(-1px);
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: 1fr minmax(210px, 290px);
  min-height: 380px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 760px;
  padding: 42px 0 46px;
}

.hero h2 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 400;
  line-height: 0.94;
}

.hero p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.hero-panel {
  align-self: end;
  margin-bottom: 44px;
  padding: 28px;
  border-left: 1px solid var(--line);
  color: var(--panel);
  background: var(--deep);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: #c8b899;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.9;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.52);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.filter-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.search-field,
.filter-grid label,
.sort-row label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-field input,
select {
  width: 100%;
  min-height: 32px;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.22);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  padding: 0 20px 0 0;
  outline: none;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.search-field input:focus,
select:focus {
  border-color: var(--champagne);
  box-shadow: none;
}

.search-field {
  width: 150px;
}

.filter-grid {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-grid label {
  width: 92px;
}

.sort-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 11px;
  white-space: nowrap;
}

.sort-row label {
  width: 132px;
}

.compact-sort {
  margin-left: auto;
}

.spotlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.spotlight h3 {
  margin: 6px 0 0;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
}

.spotlight button,
.source-row a {
  border: 1px solid var(--ink);
  color: var(--panel);
  background: var(--ink);
  padding: 13px 18px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.spotlight button:hover,
.source-row a:hover {
  color: var(--ink);
  background: transparent;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 22px;
}

.product-section {
  margin-top: 54px;
  padding-top: 36px;
  border-top: 1px solid var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 400;
  line-height: 0.96;
}

.section-head > p {
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.product-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-controls label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0 4px;
}

.category-tabs button {
  min-height: 36px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 250, 241, 0.72);
  padding: 0 13px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.category-tabs button.is-active {
  border-color: var(--ink);
  color: var(--panel);
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.84);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: clamp(12px, 1.6vw, 22px);
  object-fit: contain;
  background: #ddd2bf;
  filter: saturate(0.9) contrast(1.02);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 18px;
}

.product-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.14;
}

.product-price {
  margin-top: 2px;
  color: var(--ink);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.product-link {
  justify-self: start;
  align-self: flex-start;
  margin-top: auto;
  border: 1px solid var(--ink);
  color: var(--panel);
  background: var(--ink);
  padding: 11px 14px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
  text-decoration: none;
}

.product-detail {
  border-top: 1px solid var(--ink);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-media {
  min-height: 520px;
  background: #ddd2bf;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}

.product-card img.is-fallback-image,
.product-detail-media img.is-fallback-image,
img[src$="official-image-pending.svg"],
img[src$=".svg"] {
  padding: 28px;
  object-fit: contain;
  filter: none;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.product-detail-copy h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 400;
  line-height: 0.95;
}

.detail-price {
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.detail-section h3 {
  margin: 8px 0 0;
  font-size: 34px;
  font-weight: 400;
}

.detail-specs {
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.empty-detail {
  padding: 84px 0;
}

.empty-detail h2 {
  margin: 10px 0 12px;
  font-size: 56px;
  font-weight: 400;
}

.empty-detail p {
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.84);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px var(--soft);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd2bf;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 360ms ease;
}

.card:hover img {
  transform: scale(1.035);
}

.card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 9px;
  color: var(--panel);
  background: rgba(21, 21, 21, 0.74);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 11px;
}

.status-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.88);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 11px;
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
  flex: 1;
}

.card h3 {
  margin: 0;
  min-height: 66px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
}

.card p {
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 11px;
}

.meta-line span {
  border: 1px solid var(--line);
  padding: 5px 8px;
}

.source-note {
  color: var(--champagne);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.price {
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.text-button {
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: 0 0 3px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 12px;
}

.empty {
  grid-column: 1 / -1;
  padding: 64px 0;
  color: var(--muted);
  text-align: center;
  font-family: Arial, "PingFang SC", sans-serif;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.52);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: minmax(260px, 42vh) 1fr;
  width: min(520px, 100%);
  height: 100%;
  background: var(--panel);
  transform: translateX(28px);
  transition: transform 220ms ease;
  overflow: auto;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd2bf;
}

.close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(255, 250, 241, 0.92);
  font-size: 24px;
}

.drawer-content {
  padding: 30px;
}

.drawer-content h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 400;
  line-height: 0.98;
}

.summary {
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  line-height: 1.8;
}

.spec-list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 18px;
  margin: 24px 0 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 13px;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
}

@media (max-width: 860px) {
  .hero,
  .content-grid,
  .product-grid,
  .section-head,
  .product-detail-hero,
  .detail-section {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    grid-column: 1 / -1;
    padding-bottom: 26px;
  }

  .hero-panel {
    grid-column: 1 / -1;
    margin-bottom: 0;
    border-left: 0;
  }

  .filter-grid {
    flex-wrap: wrap;
  }

  .product-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .app-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .hero,
  .content-grid,
  .product-grid,
  .section-head,
  .product-detail-hero,
  .detail-section,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 360px;
  }

  .topbar {
    align-items: flex-start;
  }

  .top-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .sort-row,
  .spotlight,
  .controls,
  .filter-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .filter-grid label,
  .search-field,
  .sort-row label {
    width: 100%;
  }

  .compact-sort {
    margin-left: 0;
    align-items: stretch;
  }

  .card h3 {
    min-height: auto;
  }
}

/* LV-inspired refinement */
:root {
  --ink: #19110b;
  --muted: #6f6963;
  --line: #e6e1dc;
  --paper: #ffffff;
  --panel: #ffffff;
  --champagne: #8a7660;
  --deep: #19110b;
  --soft: rgba(25, 17, 11, 0.06);
}

body {
  color: var(--ink);
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.app-shell {
  width: min(1440px, 100%);
  padding: 0 48px 72px;
}

.topbar {
  min-height: 76px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.topbar h1 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar .eyebrow {
  display: none;
}

.top-actions {
  gap: 24px;
  font-size: 13px;
}

.top-actions a {
  padding-bottom: 2px;
}

.icon-button,
.close-button {
  width: 36px;
  height: 36px;
  border-color: var(--line);
  background: #fff;
}

.hero {
  grid-template-columns: minmax(0, 1fr) 260px;
  min-height: 520px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 760px;
  padding: 84px 0 70px;
}

.hero h2,
.product-library-hero h2,
.section-head h2,
.product-detail-copy h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h2 {
  margin: 18px 0 22px;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
}

.hero p:last-child,
.section-head > p,
.product-library-hero > p,
.summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 0;
  padding: 0 0 70px 40px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.hero-panel span,
.hero-panel small {
  color: var(--muted);
  font-size: 11px;
}

.hero-panel strong {
  font-size: 56px;
  font-weight: 300;
}

.signal-strip,
.product-source-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.signal-strip div,
.product-source-strip div {
  min-height: 68px;
  padding: 16px 24px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.signal-strip strong,
.product-source-strip strong {
  font-size: 26px;
  font-weight: 400;
}

.controls,
.product-page-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.search-field input,
select {
  min-height: 30px;
  border-bottom-color: #d8d2cc;
  color: var(--ink);
  background: #fff;
}

.filter-grid label {
  width: 104px;
}

.spotlight {
  padding: 28px 0;
}

.spotlight h3 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
}

.spotlight button,
.source-row a,
.product-link {
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.content-grid,
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.card,
.product-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.card:hover {
  transform: none;
  box-shadow: none;
}

.card-media,
.product-card img {
  background: #f6f5f3;
}

.card-media {
  aspect-ratio: 4 / 5.2;
}

.card-badge,
.status-badge {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.card-body,
.product-card-body {
  padding: 22px;
  gap: 12px;
}

.card h3,
.product-card h3 {
  min-height: auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.product-card .kicker {
  min-height: 18px;
}

.product-card .product-price {
  font-size: 22px;
  font-weight: 700;
}

.product-card .meta-line {
  min-height: 34px;
  align-content: start;
}

.product-card .source-note {
  min-height: 17px;
}

.product-card .product-summary {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card p,
.product-card p {
  font-size: 13px;
}

.meta-line span {
  border: 0;
  padding: 0;
  color: var(--muted);
}

.source-note {
  color: var(--muted);
}

.source-note.is-scraped {
  color: #266b44;
}

.source-note.is-protected {
  color: #8a6a35;
}

.product-library-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: end;
  min-height: 360px;
  padding: 72px 0 54px;
  border-bottom: 1px solid var(--line);
}

.product-library-hero h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.02;
}

.product-source-strip div:last-child {
  border-right: 0;
}

.product-page-grid {
  margin-top: 18px;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-page-grid .product-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-tabs {
  gap: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.category-tabs button {
  min-height: 30px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  padding: 0 18px 0 0;
}

.category-tabs button.is-active {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.product-detail {
  border-top: 0;
}

.product-detail-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  gap: 56px;
  padding: 42px 0;
}

.product-detail-media {
  min-height: 640px;
  background: #f6f5f3;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: end;
  padding: 72px 0 54px;
  border-bottom: 1px solid var(--line);
}

.admin-hero h2 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.02;
}

.admin-hero p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}

.admin-status-panel,
.admin-action-card,
.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
}

.admin-status-panel {
  padding: 24px;
}

.admin-status-panel span,
.admin-status-panel small {
  display: block;
  color: var(--muted);
}

.admin-status-panel strong {
  display: block;
  margin: 10px 0;
  font-size: 28px;
  font-weight: 400;
}

.admin-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.admin-action-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 260px;
  padding: 24px;
  border-left: 0;
  border-top: 0;
}

.admin-action-card h3,
.admin-panel h3 {
  margin: 8px 0 12px;
  font-size: 22px;
  font-weight: 400;
}

.admin-action-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-action-card button[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  margin: 24px 0 72px;
}

.admin-panel {
  min-height: 340px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-head h3 {
  margin: 0;
}

.quiet-button {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0 0 4px;
  color: var(--ink);
  cursor: pointer;
}

.admin-summary {
  padding: 10px 22px 22px;
}

.admin-run-row {
  display: grid;
  grid-template-columns: 80px 72px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.admin-run-row strong {
  font-weight: 400;
}

.admin-run-row strong.is-ok {
  color: #266b44;
}

.admin-run-row strong.is-error {
  color: #9a3a2f;
}

.admin-run-row small {
  color: var(--muted);
}

.regional-price-row {
  grid-template-columns: minmax(120px, 0.7fr) minmax(110px, 0.35fr) minmax(0, 1fr);
}

.regional-price-row span,
.regional-price-row small {
  overflow-wrap: anywhere;
}

.admin-log {
  min-height: 278px;
  margin: 0;
  padding: 22px;
  overflow: auto;
  background: #f6f5f3;
  color: var(--ink);
  font: 12px/1.7 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
}

.detail-section {
  padding: 36px 0;
}

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

  .product-library-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: 100%;
    padding: 0 18px 48px;
  }

  .topbar {
    min-height: 68px;
  }

  .hero,
  .product-library-hero,
  .product-detail-hero,
  .detail-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 56px 0 38px;
  }

  .hero-panel {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signal-strip,
  .product-source-strip,
  .content-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .controls,
  .product-page-controls,
  .filter-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-grid,
  .product-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-grid label,
  .search-field,
  .sort-row label {
    width: 100%;
  }

  .product-detail-media {
    min-height: 420px;
  }
}

/* 2026-05-26 full polish pass */
html {
  background: #fff;
}

body {
  background: #fff;
}

.brand-mark {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero h1,
.product-library-hero h1,
.admin-hero h1,
.product-detail-copy h1,
.empty-detail h1 {
  margin: 16px 0 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 88px);
}

.product-library-hero h1,
.admin-hero h1 {
  font-size: clamp(42px, 6vw, 84px);
}

.product-detail-copy h1 {
  font-size: clamp(38px, 5vw, 76px);
}

.empty-detail h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.luxe-compact-controls {
  min-height: 64px;
  padding: 12px 0;
}

.luxe-compact-controls .filter-toolbar {
  gap: 18px;
}

.luxe-compact-controls .search-field {
  width: min(260px, 26vw);
}

.luxe-compact-controls .filter-grid {
  gap: 16px;
}

.luxe-compact-controls .filter-grid label {
  width: 112px;
}

.product-filter-grid label:last-child {
  width: 176px;
}

.luxe-compact-controls select,
.luxe-compact-controls input {
  min-height: 28px;
}

.spotlight h2 {
  margin: 6px 0 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
}

.card h2,
.product-card h2,
.admin-action-card h2,
.admin-panel h2 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.admin-action-card h2 {
  margin-top: 8px;
  font-size: 22px;
}

.admin-panel h2 {
  font-size: 20px;
}

.content-grid,
.product-page-grid {
  align-items: stretch;
  background: #fff;
  border-color: var(--line);
}

.card,
.product-card {
  min-width: 0;
  background: #fff;
}

.card-body,
.product-card-body {
  min-height: 260px;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-body > p:not(.kicker),
.product-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-footer,
.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: auto;
}

.product-card-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.product-card-media img,
.product-card > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: clamp(18px, 2.4vw, 34px);
  object-fit: contain;
  object-position: center center;
  background: #fff;
  filter: saturate(0.94) contrast(1.02);
}

.product-detail-media {
  display: grid;
  place-items: center;
  background: #fff;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(22px, 3vw, 46px);
  object-fit: contain;
  object-position: center center;
  background: #fff;
}

.product-price,
.detail-price {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.quality-pill {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.quality-pill.is-scraped {
  color: #266b44;
}

.quality-pill.is-protected {
  color: #8a6a35;
}

.product-link,
.spotlight button,
.source-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  white-space: nowrap;
}

.product-card .product-link {
  align-self: auto;
  margin-top: 0;
}

.region-price-box {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Arial, "PingFang SC", sans-serif;
  min-height: 120px;
  max-height: 128px;
  overflow: hidden;
}

.region-price-box div {
  display: grid;
  grid-template-columns: minmax(86px, 0.42fr) 1fr;
  gap: 10px;
  align-items: baseline;
}

.region-price-box span {
  color: var(--muted);
  font-size: 11px;
}

.region-price-box strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.region-price-box p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.region-price-box.is-detail {
  padding: 18px 0;
}

.region-price-box.is-detail strong {
  font-size: 18px;
}

.force-region-price {
  display: grid;
  gap: 6px;
  margin: 4px 0 2px;
  min-height: 126px;
  padding: 12px 0 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-family: Arial, "PingFang SC", sans-serif;
}

.force-region-price div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  min-height: 20px;
}

.force-region-price span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.force-region-price strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.force-region-price p {
  display: -webkit-box;
  margin: 2px 0 0;
  min-height: 31px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.42;
}

.force-region-detail {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
}

.force-region-detail .force-region-price {
  margin: 0;
  padding: 18px 0;
}

.force-region-detail .force-region-price strong {
  font-size: 19px;
}

.product-page-grid {
  gap: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-page-grid::after {
  content: "";
  display: none;
}

.product-page-grid .product-card {
  border-top: 0;
  border-left: 0;
}

.drawer-panel > img {
  box-sizing: border-box;
  padding: clamp(16px, 2.2vw, 32px);
  object-fit: contain;
  object-position: center center;
  background: var(--image-bg);
}

.spec-list dd {
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .luxe-compact-controls .search-field {
    width: 100%;
  }

  .luxe-compact-controls .filter-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .luxe-compact-controls .filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .luxe-compact-controls .filter-grid label {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
  }

  .brand-mark {
    font-size: 17px;
  }

  .top-actions {
    gap: 12px;
  }

  .luxe-compact-controls .filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-body,
  .product-card-body {
    min-height: auto;
  }

  .card-footer,
  .product-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card .product-link {
    width: 100%;
  }
}

/* Final luxury simplification */
:root {
  --ink: #17110d;
  --muted: #746f69;
  --line: #dedede;
  --subtle: #faf9f7;
  --image-bg: #ffffff;
}

body {
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app-shell {
  width: min(1480px, 100%);
  padding: 0 clamp(24px, 3.8vw, 56px) 88px;
  position: relative;
}

.topbar {
  min-height: 68px;
  border-bottom-color: var(--line);
}

.brand-mark,
.topbar h1 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.top-actions {
  gap: clamp(16px, 2vw, 28px);
  font-size: 12px;
}

.top-actions a {
  color: #28211d;
}

.icon-button,
.close-button {
  width: 32px;
  height: 32px;
  border-color: transparent;
  background: transparent;
}

.eyebrow,
.kicker {
  color: #756757;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  min-height: 350px;
}

.hero-copy {
  max-width: 720px;
  padding: 48px 0 44px;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.04;
}

.hero p:last-child,
.product-library-hero > p,
.admin-hero p,
.summary {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.hero-panel {
  padding: 0 0 44px 34px;
}

.hero-panel strong {
  font-size: 46px;
}

.product-library-hero,
.admin-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  min-height: 220px;
  gap: clamp(28px, 5vw, 72px);
  padding: 42px 0 32px;
}

.product-library-hero h1,
.admin-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.03;
}

.product-source-strip,
.signal-strip {
  border-top: 1px solid var(--line);
}

.product-source-strip div,
.signal-strip div {
  min-height: 58px;
  padding: 13px clamp(16px, 2vw, 24px);
}

.product-source-strip strong,
.signal-strip strong {
  font-size: 24px;
  font-weight: 400;
}

.product-source-strip span,
.signal-strip span {
  color: var(--muted);
  font-size: 12px;
}

.luxe-compact-controls,
.controls,
.product-page-controls {
  min-height: 58px;
  padding: 10px 0;
  gap: 18px;
}

.luxe-compact-controls .filter-toolbar {
  flex: 1;
  gap: clamp(14px, 2vw, 24px);
}

.luxe-compact-controls .search-field {
  width: clamp(220px, 24vw, 320px);
}

.luxe-compact-controls .filter-grid {
  gap: clamp(12px, 1.8vw, 22px);
}

.luxe-compact-controls .filter-grid label {
  width: 104px;
}

.product-filter-grid label:last-child {
  width: 190px;
}

.search-field input,
select {
  min-height: 26px;
  border-bottom-color: #d9d4ce;
  font-size: 12px;
}

.sort-row {
  color: var(--muted);
  font-size: 12px;
}

.category-tabs {
  padding: 14px 0;
  gap: 18px;
}

.category-tabs button {
  min-height: 28px;
  padding: 0;
  color: #3a332e;
  font-size: 12px;
}

.category-tabs button.is-active {
  border-bottom-color: var(--ink);
}

.content-grid,
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.card,
.product-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-media,
.product-card-media,
.product-card-media img,
.product-card > img,
.product-detail-media,
.product-detail-media img {
  background: var(--image-bg);
}

.card-media {
  aspect-ratio: 1 / 1;
}

.card-media img {
  box-sizing: border-box;
  padding: clamp(8px, 1.2vw, 18px);
  object-fit: contain;
  object-position: center center;
}

.product-card-media img,
.product-card > img {
  aspect-ratio: 1 / 1;
  padding: clamp(8px, 1.2vw, 18px);
}

.product-sprite {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--image-bg);
  background-repeat: no-repeat;
}

.product-card-media .product-sprite {
  aspect-ratio: auto;
}

/* Keep product and news imagery on clean white, with visible separators. */
.card-media,
.card-media img,
.product-card img,
.product-card-media,
.product-card-media img,
.product-card > img,
.product-sprite,
.product-detail-media,
.product-detail-media img,
.drawer-panel > img {
  background-color: #fff;
}

.card-media,
.product-card-media,
.product-detail-media {
  border-color: var(--line);
}

.product-detail-sprite {
  width: 100%;
  height: 100%;
}

.card-body,
.product-card-body {
  min-height: 236px;
  padding: 20px clamp(18px, 2vw, 24px) 22px;
  gap: 10px;
}

.product-card-body {
  display: grid;
  grid-template-rows: 18px 48px 28px 128px 26px 54px 28px;
  align-content: start;
  min-height: 340px;
}

.card h2,
.product-card h2 {
  font-size: 17px;
  line-height: 1.36;
}

.product-card h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  max-height: 48px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .kicker {
  overflow: hidden;
  min-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-price {
  margin: 2px 0 0;
  font-size: 23px;
  min-height: 28px;
  white-space: nowrap;
}

.detail-price {
  font-size: 24px;
}

.meta-line {
  gap: 7px 10px;
  font-size: 10px;
}

.product-card .meta-line {
  min-height: 25px;
  max-height: 26px;
  overflow: hidden;
}

.card p,
.product-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

.product-card .product-summary {
  min-height: 54px;
  max-height: 54px;
  -webkit-line-clamp: 2;
}

.product-card-foot {
  min-height: 28px;
  margin-top: 0;
  align-items: end;
  justify-content: flex-start;
}

.product-card .product-link,
.card .text-button {
  min-height: 24px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: 0 0 3px;
  font-size: 12px;
}

.product-card .product-link:hover,
.card .text-button:hover {
  color: var(--muted);
  border-bottom-color: var(--muted);
}

.exchange-float {
  position: fixed;
  top: 52vh;
  right: clamp(14px, 2vw, 32px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #b79a62;
  border-radius: 50%;
  background: #201915;
  color: #d8c38a;
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(32, 25, 21, 0.22);
  backdrop-filter: blur(14px);
}

.exchange-float:hover {
  border-color: #d8c38a;
  color: #fff3c4;
}

.spotlight {
  padding: 24px 0;
}

.spotlight h2 {
  font-size: clamp(22px, 2.6vw, 34px);
}

.spotlight button,
.source-row a,
.admin-action-card .product-link {
  min-height: 38px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-detail-hero {
  gap: clamp(32px, 5vw, 64px);
  padding: 36px 0 42px;
}

.product-detail-media {
  min-height: min(620px, 58vw);
}

.product-detail-copy {
  gap: 14px;
}

.product-detail-copy h1 {
  margin: 12px 0 2px;
  font-size: clamp(34px, 4.8vw, 64px);
}

.detail-section {
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(24px, 4vw, 54px);
  padding: 30px 0;
}

.detail-section h2 {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 400;
}

.spec-list {
  grid-template-columns: 140px 1fr;
  gap: 10px 20px;
  font-size: 12px;
}

.admin-actions {
  margin-top: 24px;
}

.admin-keyword-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.1fr) auto;
  gap: 18px;
  align-items: end;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-keyword-panel h2 {
  margin: 6px 0 8px;
  font-size: 24px;
  font-weight: 400;
}

.admin-keyword-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.admin-keyword-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.admin-keyword-panel input {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.admin-start-button {
  margin-top: 14px;
  align-self: start;
}

.admin-action-card {
  min-height: 220px;
  padding: 22px;
}

.admin-grid {
  gap: 20px;
}

.admin-panel-head {
  padding: 18px 20px;
}

.admin-summary,
.admin-log {
  padding: 20px;
}

@media (max-width: 1180px) {
  .content-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .admin-keyword-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero,
  .product-library-hero,
  .admin-hero,
  .product-detail-hero,
  .detail-section,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    padding: 20px 0 28px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .app-shell {
    padding: 0 16px 56px;
  }

  .topbar {
    min-height: 62px;
  }

  .brand-mark,
  .topbar h1 {
    font-size: 15px;
  }

  .top-actions {
    gap: 10px;
    font-size: 11px;
  }

  .hero-copy,
  .product-library-hero,
  .admin-hero {
    padding-top: 42px;
  }

  .hero h1,
  .product-library-hero h1,
  .admin-hero h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .product-source-strip,
  .signal-strip,
  .content-grid,
  .product-grid,
  .admin-actions {
    grid-template-columns: 1fr;
  }

  .luxe-compact-controls .filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-filter-grid label:last-child {
    width: 100%;
  }

  .product-card .product-link {
    width: auto;
  }

  .exchange-float {
    top: 58vh;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
}
