:root {
  --ink: #101418;
  --muted: #65707c;
  --line: #dde3ea;
  --panel: #ffffff;
  --soft: #fff7f0;
  --deep: #0f1720;
  --cyan: #ff8a00;
  --blue: #ff5000;
  --green: #00a676;
  --gold: #d89a00;
  --shadow: 0 22px 60px rgba(12, 21, 32, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf6;
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 0 48px;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(255, 128, 51, .22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(255, 80, 0, .22);
}

.nav-brand-title {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
}

.nav-brand-title strong {
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.05;
}

.nav-brand-title span {
  color: #6e6e73;
  font-size: 12px;
  font-weight: 750;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #354150;
  font-size: 14px;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 999px;
}

.language-switch .lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  color: #6e6e73;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.language-switch .lang-link.active {
  color: #1d1d1f;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 18px;
  min-height: 360px;
  padding: 38px 48px 44px;
  color: #1d1d1f;
  background:
    linear-gradient(180deg, #fffaf6 0%, #fff1e8 68%, #ffffff 100%);
}

.hero-carousel {
  isolation: isolate;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .78) 0%, rgba(255, 246, 238, .58) 30%, rgba(255, 145, 70, .18) 56%, rgba(255, 80, 0, .05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 241, 232, .38));
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  opacity: 0;
  transform: scale(1.035);
  animation: hero-fade 18s infinite;
}

.hero-slides img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slides img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes hero-fade {
  0%,
  8% {
    opacity: 0;
  }
  14%,
  33% {
    opacity: 1;
    transform: scale(1);
  }
  41%,
  100% {
    opacity: 0;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding-top: 4px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #ff5000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-updated {
  display: inline-flex;
  align-items: center;
  margin: 0 0 8px;
  color: #525866;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #6e6e73;
  font-size: 19px;
  line-height: 1.42;
}

.hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.phone-direct {
  font-variant-numeric: tabular-nums;
}

.hero-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 14px;
  align-items: center;
  width: min(680px, 100%);
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid #e8e8ed;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.hero-phone {
  display: grid;
  gap: 6px;
  text-align: left;
}

.hero-phone span,
.hero-qr span {
  color: #6e6e73;
  font-size: 13px;
  font-weight: 750;
}

.hero-phone a {
  color: #1d1d1f;
  font-size: 32px;
  font-weight: 850;
  line-height: 1;
}

.hero-phone small {
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.42;
}

.hero-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-qr img {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 8px;
}

.button,
.filters button,
.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  cursor: pointer;
}

.primary {
  color: white;
  background: var(--blue);
}

.ghost {
  color: #1d1d1f;
  border-color: #c7c7cc;
  background: rgba(255, 255, 255, .7);
}

.danger {
  color: #b42318;
  background: #fff1f0;
  border-color: #f3b3ad;
}

.small-button,
.tiny-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.tiny-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.hero-panel,
.stat-card {
  padding: 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  align-self: center;
  display: grid;
  justify-items: center;
  min-width: 340px;
  color: #1d1d1f;
  backdrop-filter: blur(18px);
}

.hero-panel span,
.stat-card span {
  color: #6e6e73;
  font-size: 13px;
}

.hero-panel strong,
.stat-card strong {
  display: block;
  margin: 10px 0;
  font-size: 58px;
  line-height: 1;
}

.hero-panel small,
.stat-card small {
  color: #6e6e73;
}

.featured-band {
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 48px 10px;
}

.featured-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.featured-heading h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 42px;
  line-height: 1.1;
}

.featured-carousel {
  overflow: hidden;
}

.featured-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: featured-scroll 42s linear infinite;
}

.featured-carousel:hover .featured-track {
  animation-play-state: paused;
}

.featured-slide {
  display: grid;
  align-content: start;
  width: 320px;
  min-height: 292px;
  padding: 24px;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 8px;
}

.featured-slide h3 {
  margin: 24px 0 8px;
  color: #1d1d1f;
  font-size: 26px;
  line-height: 1.15;
}

.featured-slide p {
  min-height: 48px;
  margin: 0 0 18px;
  color: #6e6e73;
  line-height: 1.45;
}

.featured-slide strong {
  color: #ff5000;
  font-size: 30px;
}

.featured-slide small {
  min-height: 42px;
  margin: 10px 0 18px;
  color: #6e6e73;
  line-height: 1.45;
  word-break: break-word;
}

.featured-slide a {
  align-self: end;
  color: #ff5000;
  font-weight: 750;
}

@keyframes featured-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.inventory,
.admin-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 48px;
}

.toolbar {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 28px;
}

.toolbar h2,
.admin-hero h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

.filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 10px;
}

.nav-filters {
  grid-template-columns: repeat(3, minmax(120px, .82fr)) minmax(180px, 1.3fr) auto;
  gap: 8px;
  min-width: 0;
}

.nav-filters input,
.nav-filters select,
.nav-filters button {
  min-height: 40px;
  font-size: 13px;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.filters button {
  color: white;
  background: var(--deep);
}

.meta-line {
  margin: 26px 0;
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.page-numbers {
  display: flex;
  gap: 8px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  color: #1d1d1f;
  background: #fff;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
}

.pagination a.active {
  color: #fff;
  background: #1d1d1f;
  border-color: #1d1d1f;
}

.pagination a.disabled {
  color: #a1a1a6;
  pointer-events: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-color: #e8e8ed;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .055);
}

.card-top,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  padding: 5px 9px;
  color: #047857;
  background: #dcfce7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.product-card h3 {
  margin: 22px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.spec {
  min-height: 46px;
  margin: 0;
  line-height: 1.45;
}

.pn {
  min-height: 72px;
  margin: 16px 0 20px;
  font-family: "Segoe UI Mono", Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-word;
}

.price-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  color: #ff5000;
  font-size: 30px;
  letter-spacing: 0;
}

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

.usd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.usd-price-row strong {
  color: #ff5000;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.usd-price-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

dl {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

dl div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
}

dt,
dd {
  margin: 0;
  font-size: 13px;
}

dd {
  word-break: break-word;
}

.quote-link {
  color: var(--deep);
  background: var(--soft);
  border-color: var(--line);
}

.empty,
.empty-page {
  grid-column: 1 / -1;
  padding: 44px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 24px auto 40px;
  padding: 54px;
  background: #f5f5f7;
  border-radius: 8px;
}

.contact-copy h2 {
  margin: 0;
  max-width: 680px;
  color: #1d1d1f;
  font-size: 44px;
  line-height: 1.12;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 26px;
  color: #6e6e73;
  font-size: 18px;
  line-height: 1.6;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  background: white;
  border: 1px solid #e8e8ed;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .06);
}

.qr-card img {
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.qr-card span {
  color: #1d1d1f;
  font-weight: 750;
}

.footer {
  display: block;
  padding: 42px 48px 54px;
  color: var(--muted);
  background: #f5f5f7;
  border-top: 1px solid #e8e8ed;
  font-size: 13px;
  text-align: center;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.footer strong {
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 850;
}

.footer p {
  max-width: 680px;
  margin: 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: #1d1d1f;
  font-weight: 750;
}

.footer-links a {
  color: #1d1d1f;
}

.footer small {
  color: #6e6e73;
  line-height: 1.6;
}

.admin-page {
  background: #eef3f7;
}

.admin-header {
  position: static;
}

.admin-hero,
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.admin-hero {
  margin-bottom: 18px;
  padding: 18px 22px;
  color: #1d1d1f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(15, 23, 32, .06);
}

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

.admin-hero .eyebrow {
  margin-bottom: 4px;
  color: #ff5000;
  font-size: 12px;
}

.admin-hero h1 {
  font-size: 30px;
}

.admin-hero .stat-card {
  align-self: center;
  padding: 14px 16px;
  background: #f6f8fb;
  box-shadow: none;
}

.admin-hero .stat-card strong {
  margin: 6px 0;
  font-size: 34px;
}

.admin-hero .stat-card small {
  display: block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-side-nav {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(15, 23, 32, .07);
}

.admin-side-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  color: #1d1d1f;
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.admin-side-nav a:hover,
.admin-side-nav a.active {
  color: #fff;
  background: #ff5000;
  border-color: #ff5000;
}

.admin-content {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.admin-module {
  scroll-margin-top: 18px;
}

.module-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.module-heading span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ff5000;
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.module-heading h2 {
  margin: 0;
  font-size: 28px;
}

.module-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.upload-config-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr);
}

.upload-config-grid .markup-panel:nth-of-type(3) {
  grid-column: 2;
}

.password-panel {
  max-width: 560px;
}

.upload-panel,
.table-panel,
.login-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(15, 23, 32, .07);
}

.upload-panel h2,
.table-panel h2 {
  margin: 0 0 10px;
}

.upload-panel p,
.upload-panel li {
  color: var(--muted);
  line-height: 1.6;
}

.upload-panel input[type="file"] {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 10px 0;
  padding: 8px 10px;
}

.upload-stack {
  display: grid;
  gap: 14px;
}

.upload-stack-head,
.upload-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.upload-stack-head h2 {
  margin-bottom: 6px;
}

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

.upload-table-module {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.upload-module-head {
  margin-bottom: 8px;
}

.upload-module-head span {
  color: #ff5000;
  font-size: 12px;
  font-weight: 900;
}

.upload-module-head strong {
  color: #1d1d1f;
  font-size: 16px;
}

.upload-module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.upload-price-section {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.upload-price-section strong {
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 900;
}

.upload-price-section small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

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

.pricing-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 8px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.pricing-choice.active {
  background: #eef6ff;
  border-color: #ff5000;
  box-shadow: 0 12px 28px rgba(255, 80, 0, .14);
}

.pricing-choice input {
  width: 16px;
  min-height: 16px;
  accent-color: #ff5000;
}

.pricing-choice span {
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 900;
}

.pricing-choice small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.upload-progress {
  display: none;
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  background: #e8eef6;
  border-radius: 999px;
}

.upload-progress span {
  display: block;
  width: 42%;
  height: 100%;
  background: #ff5000;
  border-radius: inherit;
  animation: upload-progress 1s ease-in-out infinite;
}

.upload-warning {
  margin: 0;
  padding: 12px 14px;
  color: #7a4b00;
  background: #fff7df;
  border: 1px solid #f1d48a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.upload-status {
  display: none;
  margin-top: 10px;
  font-weight: 750;
}

.is-uploading .upload-progress,
.is-uploading .upload-status {
  display: block;
}

@keyframes upload-progress {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(260%);
  }
}

.markup-field {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.markup-field[hidden],
[data-pricing-fields][hidden] {
  display: none !important;
}

.markup-panel {
  display: grid;
  gap: 14px;
}

.markup-panel.is-saving .autosave-status::after {
  content: " 正在应用...";
  color: #ff5000;
}

.markup-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.markup-card.active {
  background: #eef6ff;
  border-color: #ff5000;
  box-shadow: 0 12px 30px rgba(255, 80, 0, .14);
}

.markup-card h3 {
  margin: 0 0 0 32px;
  font-size: 18px;
}

.markup-card p,
.markup-card .markup-field {
  margin: 0;
}

.markup-card > p,
.markup-card > .markup-field {
  margin-left: 32px;
}

.markup-radio {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 18px;
  height: 18px;
  accent-color: #ff5000;
}

.autosave-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.table-panel {
  margin-top: 24px;
  overflow-x: auto;
}

.admin-module .table-panel {
  margin-top: 0;
}

.table-heading {
  position: sticky;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.table-heading p {
  margin: 0;
  color: var(--muted);
}

.admin-price-tools {
  position: sticky;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px auto;
  gap: 10px;
  margin-bottom: 16px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.table-actions form {
  margin: 0;
}

.exchange-rate-panel {
  margin-bottom: 16px;
}

.exchange-rate-actions {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, auto) auto;
  align-items: center;
  gap: 10px;
}

.compact-setting {
  display: inline-grid;
  grid-template-columns: auto 86px auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.compact-setting input {
  width: 86px;
  min-height: 34px;
  padding: 0 8px;
}

.switch-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.switch-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-ui {
  position: relative;
  width: 46px;
  height: 24px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background .18s ease;
}

.switch-ui span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .18);
  transition: transform .18s ease;
}

.switch-control input:checked + .switch-ui {
  background: #ff5000;
}

.switch-control input:checked + .switch-ui span {
  transform: translateX(22px);
}

.switch-control em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.carousel-upload-panel {
  margin-bottom: 18px;
}

.carousel-panel input {
  width: min(360px, 100%);
  min-height: 36px;
}

.carousel-thumb {
  width: 150px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
}

.manual-table input {
  min-width: 120px;
  min-height: 36px;
}

.empty-row {
  padding: 28px 12px;
  color: var(--muted);
  text-align: center;
}

.manual-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 39, .42);
}

.manual-modal.is-open {
  display: grid;
}

.manual-dialog {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(760px, 94vw);
  max-height: 90vh;
  overflow: auto;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .24);
}

.manual-dialog h2,
.manual-dialog p {
  margin: 0;
}

.manual-dialog p {
  color: var(--muted);
  line-height: 1.6;
}

.manual-dialog textarea {
  width: 100%;
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  resize: vertical;
}

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

.manual-image-field {
  grid-column: 1 / -1;
}

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

.manual-image-preview {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.manual-image-preview img {
  width: 120px;
  height: 88px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.manual-image-preview span {
  color: var(--muted);
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Segoe UI Mono", Consolas, monospace;
  font-size: 12px;
}

.price-input {
  width: 118px;
  min-height: 38px;
  font-weight: 800;
}

.admin-pagination {
  position: sticky;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.admin-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  color: #1d1d1f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.admin-pagination a.active {
  color: #fff;
  background: #ff5000;
  border-color: #ff5000;
}

.admin-pagination a.disabled {
  color: #a1a1a6;
  pointer-events: none;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.login-card {
  width: min(440px, 92vw);
}

.login-card h1 {
  margin: 34px 0 8px;
}

.login-card p {
  color: var(--muted);
  line-height: 1.7;
}

.login-card label {
  display: grid;
  gap: 8px;
  margin: 24px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.success,
.alert {
  margin: 0 0 20px;
  padding: 13px 16px;
  border-radius: 6px;
}

.success {
  color: #065f46;
  background: #d1fae5;
}

.alert {
  color: #9f1239;
  background: #ffe4e6;
}

.featured-slide {
  min-height: 420px;
  padding: 14px;
}

.featured-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card {
  min-height: 520px;
  padding: 12px;
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / .68;
  overflow: hidden;
  background: #f5f5f7;
  border-radius: 8px;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

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

.product-media span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(0, 0, 0, .64);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.inline-link {
  color: #ff5000;
  font-weight: 750;
}

.single-action {
  grid-template-columns: 1fr;
}

.product-card h3 {
  margin: 16px 8px 8px;
  font-size: 19px;
}

.product-card .spec {
  min-height: 36px;
  margin: 0 8px;
}

.product-status-note {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin: 10px 8px 0;
  padding: 8px 10px;
  color: #7a2e00;
  background: #fff3ec;
  border: 1px solid #ffd4be;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.35;
}

.product-status-note span {
  flex: 0 0 auto;
  color: #ff5000;
  font-weight: 850;
}

.product-status-note strong {
  min-width: 0;
  font-weight: 800;
}

.product-card .price-row {
  margin: 14px 8px 0;
  padding-top: 14px;
}

.product-card .price-row strong {
  color: #ff5000;
}

.spec-table {
  margin: 12px 8px;
  padding: 8px 10px;
  background: #fafafa;
  border-radius: 8px;
}

.spec-table div {
  grid-template-columns: 78px minmax(0, 1fr);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: auto 8px 8px;
}

.real-link,
.product-card .quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.real-link {
  color: #ff5000;
  background: #fff3ec;
  border: 1px solid #ffd4be;
}

.product-card .quote-link {
  color: #fff;
  background: #ff5000;
  border-color: #ff5000;
}

.copy-link {
  width: 100%;
  font: inherit;
  font-size: 13px;
}

.copy-link.is-copied {
  background: #0a7f42;
  border-color: #0a7f42;
}

.floating-service {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 20;
  display: grid;
  gap: 10px;
  width: 148px;
  transform: translateY(-50%);
}

.float-title {
  padding: 9px 12px;
  color: #1d1d1f;
  background: rgba(255, 255, 255, .96);
  border: 1px solid #e8e8ed;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}

.float-phone,
.float-qr {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 14px 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #e8e8ed;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px);
}

.float-qr {
  width: 100%;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.float-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ff5000;
  background: #fff3ec;
  border: 1px solid #ffd4be;
  border-radius: 999px;
  line-height: 1;
}

.float-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wechat-icon {
  color: #07c160;
  background: #e9fff4;
  border-color: #bdf4d7;
}

.whatsapp-icon {
  color: #25d366;
  background: #eafff2;
  border-color: #b8f3cd;
}

.contact-icon {
  color: #ff5000;
  background: #fff3ec;
  border-color: #ffd4be;
}

.float-phone span,
.float-qr span {
  color: #6e6e73;
  font-size: 12px;
  font-weight: 750;
}

.float-phone strong {
  color: #ff5000;
  font-size: 17px;
  line-height: 1.1;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 20, 24, .46);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

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

.wechat-dialog {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(620px, 92vw);
  padding: 28px 28px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
  transform: translateY(8px) scale(.98);
  transition: transform .18s ease;
}

.wechat-modal.is-open .wechat-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #6e6e73;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.wechat-dialog h2 {
  margin: 2px 0 0;
  color: #1d1d1f;
  font-size: 24px;
}

.modal-phone {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 16px;
  color: #1d1d1f;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 8px;
}

.modal-phone span {
  color: #6e6e73;
  font-size: 13px;
  font-weight: 750;
}

.modal-phone strong {
  color: #ff5000;
  font-size: 24px;
  line-height: 1.1;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.contact-qr-grid figure {
  display: grid;
  gap: 9px;
  justify-items: center;
  margin: 0;
  padding: 12px;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 8px;
}

.qr-brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid;
  border-radius: 999px;
}

.qr-brand-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-qr-grid img {
  width: min(180px, 34vw);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.contact-qr-grid figcaption,
.wechat-dialog p {
  margin: 0;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 750;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 22px;
  }

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

  .filters:not(.nav-filters),
  .toolbar,
  .admin-hero,
  .admin-workspace,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-side-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-side-nav a {
    justify-content: center;
    text-align: center;
  }

  .upload-config-grid .markup-panel:nth-of-type(3) {
    grid-column: auto;
  }

  .upload-stack-head,
  .upload-module-head,
  .admin-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .upload-module-list,
  .upload-module-grid,
  .upload-pricing-choice,
  .manual-form-grid,
  .manual-image-actions,
  .manual-image-preview,
  .exchange-rate-actions,
  .compact-setting,
  .admin-price-tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 18px 12px;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
  }

  .nav-filters {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 22px 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-panel {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .inventory,
  .admin-shell {
    padding: 30px 18px;
  }

  .featured-band {
    padding: 26px 18px 4px;
  }

  .featured-heading h2 {
    font-size: 32px;
  }

  .featured-track {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    animation: none;
  }

  .featured-slide {
    width: 82vw;
    scroll-snap-align: start;
  }

  .filters:not(.nav-filters) {
    grid-template-columns: 1fr;
  }

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

  .footer {
    display: grid;
    justify-items: center;
    padding: 24px 18px 36px;
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    margin: 16px 18px 28px;
    padding: 28px;
  }

  .contact-copy h2 {
    font-size: 32px;
  }

  .floating-service {
    right: 12px;
    bottom: 12px;
    top: auto;
    width: 118px;
    transform: none;
  }

  .float-phone {
    display: none;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

  .contact-qr-grid img {
    width: min(220px, 70vw);
  }
}

/* =====================================================================
   2026-07-27 v2 全面优化：浅色精致版（覆盖层）
   保持浅色系，全面打磨：字体层级 / 留白 / 圆角 / 阴影 / 聚焦态 / 动效
   ===================================================================== */

:root {
  --ink: #0f1a2a;
  --muted: #64748b;
  --line: #e7ebf1;
  --panel: #ffffff;
  --soft: #fff4ec;
  --deep: #101828;
  --cyan: #ff8a00;
  --blue: #f45d00;
  --green: #059669;
  --gold: #d89a00;
  --shadow: 0 2px 6px rgba(16, 24, 40, .04), 0 20px 48px rgba(16, 24, 40, .08);
  --brand-grad: linear-gradient(135deg, #ff8a00 0%, #ff5000 100%);
  --ring: 0 0 0 4px rgba(255, 106, 0, .14);
}

body {
  color: var(--ink);
  background: #f6f7f9;
  font-family: Inter, "SF Pro Text", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: #ff6a00;
}

button,
a,
input,
select {
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease;
}

:focus-visible {
  outline: 2px solid #ff6a00;
  outline-offset: 2px;
}

/* ---------- 顶部导航 ---------- */

.site-header {
  min-height: 64px;
  padding: 0 40px;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid #eceff4;
  backdrop-filter: blur(20px) saturate(1.4);
}

.nav-brand-title strong {
  color: #0f1a2a;
  font-size: 17px;
  letter-spacing: -.01em;
}

.nav-brand-title span {
  color: #94a3b8;
  font-weight: 650;
}

.brand-logo {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(255, 90, 0, .18);
}

nav {
  color: #3f4c5e;
  font-weight: 650;
}

nav > a:hover {
  color: #f45d00;
}

.language-switch {
  background: #f1f3f6;
  border-color: transparent;
}

.language-switch .lang-link {
  color: #64748b;
}

.language-switch .lang-link.active {
  color: #0f1a2a;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 24, 40, .1);
}

/* ---------- 首页大图区 ---------- */

.hero {
  min-height: 400px;
  padding: 48px 48px 56px;
  background: linear-gradient(180deg, #fdfdfd 0%, #f8f9fb 100%);
}

.hero-carousel::after {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .66) 34%, rgba(250, 250, 252, .42) 62%, rgba(244, 246, 249, .3) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(246, 247, 249, .85));
}

.hero-slides img {
  filter: saturate(1.02) contrast(1.02);
}

.eyebrow {
  color: #f45d00;
  font-size: 13px;
  letter-spacing: 2.5px;
}

.price-updated {
  padding: 6px 14px;
  color: #475569;
  background: rgba(255, 255, 255, .8);
  border: 1px solid #e7ebf1;
  border-radius: 999px;
  font-size: 12.5px;
}

.hero h1 {
  color: #0b1524;
  font-weight: 850;
  letter-spacing: -.02em;
}

.hero p {
  color: #52606f;
  font-size: 18px;
}

.hero-contact {
  padding: 16px 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #e9edf3;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(16, 24, 40, .04), 0 24px 60px rgba(16, 24, 40, .1);
  backdrop-filter: blur(14px);
}

.hero-phone span,
.hero-qr span {
  color: #8492a6;
  font-size: 12.5px;
}

.hero-phone a {
  color: #f45d00;
  font-variant-numeric: tabular-nums;
}

.hero-phone a:hover {
  color: #d94e00;
}

.hero-qr img {
  border-radius: 10px;
  border: 1px solid #eef1f5;
}

.hero-panel {
  background: rgba(255, 255, 255, .9);
  border: 1px solid #e9edf3;
  border-radius: 16px;
}

/* ---------- 按钮 ---------- */

.button,
.filters button,
.quote-link {
  border-radius: 999px;
  font-weight: 750;
}

.button:hover,
.filters button:hover,
.quote-link:hover {
  transform: translateY(-1px);
}

.button:active,
.filters button:active {
  transform: translateY(0);
}

.primary {
  background: var(--brand-grad);
  box-shadow: 0 8px 20px rgba(255, 90, 0, .28);
}

.primary:hover {
  box-shadow: 0 12px 28px rgba(255, 90, 0, .34);
}

.ghost {
  color: #1d2836;
  border-color: #d9dfe7;
  background: #fff;
}

.ghost:hover {
  border-color: #b9c2ce;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .08);
}

/* ---------- 精选滚动区 ---------- */

.featured-band {
  padding-top: 44px;
}

.featured-heading h2 {
  color: #0b1524;
  font-size: 38px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.featured-slide {
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.featured-slide:hover {
  transform: translateY(-3px);
  border-color: #ffd3b5;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .1);
}

.featured-media {
  border-radius: 12px;
  border: 1px solid #f0f2f6;
}

.featured-slide h3 {
  color: #0f1a2a;
  font-size: 22px;
  letter-spacing: -.01em;
}

.featured-slide p,
.featured-slide small {
  color: #7a8798;
}

.featured-slide strong {
  color: #f45d00;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}

.featured-slide a {
  color: #f45d00;
}

/* ---------- 筛选与列表 ---------- */

.inventory {
  padding-top: 44px;
}

.toolbar h2 {
  font-weight: 850;
  letter-spacing: -.02em;
}

input,
select {
  border-radius: 12px;
  border-color: #dbe1e9;
}

input:hover,
select:hover {
  border-color: #c3ccd8;
}

input:focus,
select:focus {
  outline: none;
  border-color: #ff8a4d;
  box-shadow: var(--ring);
}

.filters button {
  color: #fff;
  background: var(--deep);
}

.filters button:hover {
  background: #1d2939;
}

.nav-filters input,
.nav-filters select {
  border-radius: 10px;
}

.meta-line {
  color: #8492a6;
}

/* ---------- 商品卡片 ---------- */

.product-grid {
  gap: 20px;
}

.product-card {
  padding: 14px;
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #ffd3b5;
  box-shadow: 0 4px 10px rgba(16, 24, 40, .05), 0 24px 52px rgba(16, 24, 40, .11);
}

.product-media {
  background: #f4f6f9;
  border-radius: 12px;
}

.product-media span {
  background: rgba(15, 26, 42, .72);
  backdrop-filter: blur(6px);
}

.product-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.spec {
  color: #7a8798;
  font-size: 13.5px;
}

.pill {
  padding: 5px 11px;
  color: #067647;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.pn {
  color: #56657a;
}

.spec-table {
  padding: 10px 12px;
  background: #f7f9fb;
  border: 1px solid #eef1f5;
  border-radius: 12px;
}

dt {
  color: #94a3b8;
}

dd {
  color: #334155;
  font-weight: 600;
}

.price-row {
  border-top: 1px solid #eef1f5;
}

.price-row strong,
.product-card .price-row strong {
  color: #f45d00;
  font-size: 28px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.price-row span {
  color: #98a4b5;
}

.usd-price-row strong {
  color: #f45d00;
  font-variant-numeric: tabular-nums;
}

.product-status-note {
  color: #93430a;
  background: #fff8f1;
  border: 1px solid #fedf89;
  border-radius: 10px;
}

.product-status-note span {
  color: #f45d00;
}

.real-link {
  color: #d94e00;
  background: #fff4ec;
  border: 1px solid #ffd3b5;
  border-radius: 999px;
}

.real-link:hover {
  background: #ffeadb;
}

.product-card .quote-link {
  color: #fff;
  background: var(--brand-grad);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(255, 90, 0, .24);
}

.copy-link.is-copied {
  background: #079455;
  border-color: #079455;
  box-shadow: none;
}

.empty,
.empty-page {
  border-radius: 16px;
}

/* ---------- 分页 ---------- */

.pagination a {
  min-width: 40px;
  min-height: 40px;
  color: #47546a;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
}

.pagination a:hover {
  border-color: #ffb98a;
  color: #f45d00;
}

.pagination a.active {
  color: #fff;
  background: #101828;
  border-color: #101828;
}

.pagination a.disabled {
  color: #b6c0cd;
}

/* ---------- 联系区块 ---------- */

.contact-band {
  background:
    radial-gradient(600px 300px at 92% 0%, rgba(255, 138, 0, .07), transparent 60%),
    #ffffff;
  border: 1px solid #e9edf3;
  border-radius: 22px;
  box-shadow: 0 2px 6px rgba(16, 24, 40, .04), 0 24px 60px rgba(16, 24, 40, .07);
}

.contact-copy h2 {
  color: #0b1524;
  font-weight: 850;
  letter-spacing: -.02em;
}

.contact-copy p:not(.eyebrow) {
  color: #64748b;
}

.qr-card {
  border-radius: 16px;
  border-color: #eef1f5;
}

.qr-card img {
  border-radius: 10px;
}

/* ---------- 页脚 ---------- */

.footer {
  color: #8492a6;
  background: #fff;
  border-top: 1px solid #eceff4;
}

.footer strong {
  color: #0f1a2a;
}

.footer-links,
.footer-links a {
  color: #47546a;
}

.footer-links a:hover {
  color: #f45d00;
}

.footer small {
  color: #98a4b5;
}

/* ---------- 右侧悬浮客服 ---------- */

.float-title {
  color: #0f1a2a;
  background: rgba(255, 255, 255, .95);
  border: 1px solid #e9edf3;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
}

.float-phone,
.float-qr {
  background: rgba(255, 255, 255, .95);
  border: 1px solid #e9edf3;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, .1);
  transition: transform .16s ease, box-shadow .16s ease;
}

.float-qr:hover,
.float-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, .14);
}

.float-icon {
  color: #f45d00;
  background: #fff4ec;
  border-color: #ffd3b5;
}

.float-phone strong {
  color: #f45d00;
  font-variant-numeric: tabular-nums;
}

/* ---------- 弹窗 ---------- */

.wechat-modal {
  background: rgba(9, 14, 22, .5);
  backdrop-filter: blur(3px);
}

.wechat-dialog {
  border-radius: 18px;
}

.modal-phone {
  border-radius: 12px;
}

.modal-phone strong {
  color: #f45d00;
}

.contact-qr-grid figure {
  border-radius: 14px;
}

.modal-close:hover {
  color: #0f1a2a;
  background: #eceff4;
}

/* ---------- 后台管理（同步精致化，保持浅色） ---------- */

.admin-page {
  background: #f2f5f8;
}

.admin-hero,
.upload-panel,
.table-panel,
.login-card,
.admin-side-nav {
  border-color: #e9edf3;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, .04), 0 12px 32px rgba(16, 24, 40, .05);
}

.admin-side-nav a {
  border-radius: 10px;
}

.admin-side-nav a:hover,
.admin-side-nav a.active {
  color: #fff;
  background: var(--brand-grad);
  border-color: transparent;
}

.markup-card,
.upload-table-module,
.pricing-choice {
  border-radius: 12px;
}

.markup-card.active,
.pricing-choice.active {
  background: #fff4ec;
  border-color: #ff8a4d;
  box-shadow: 0 8px 22px rgba(255, 90, 0, .12);
}

.admin-pagination a {
  border-radius: 999px;
}

.admin-pagination a.active {
  background: var(--brand-grad);
  border-color: transparent;
}

.upload-progress span {
  background: var(--brand-grad);
}

.switch-control input:checked + .switch-ui {
  background: #f45d00;
}

.success {
  color: #067647;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.alert {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
}

/* ---------- 滚动条 ---------- */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #cbd3dd;
  border: 2px solid #f6f7f9;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aeb9c6;
}

/* =====================================================================
   2026-07-27 v3 macOS 风格层
   系统字体 / 毛玻璃 vibrancy / 发丝边框 / 苹果灰白底 / 柔和大圆角
   ===================================================================== */

:root {
  --line: rgba(0, 0, 0, .07);
  --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 16px 40px rgba(0, 0, 0, .07);
  --hairline: rgba(0, 0, 0, .08);
  --glass: rgba(255, 255, 255, .72);
  --fill: rgba(120, 120, 128, .1);
}

body {
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ---------- 顶部导航：菜单栏质感 ---------- */

.site-header {
  min-height: 56px;
  background: rgba(251, 251, 253, .78);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
}

.nav-brand-title strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
}

nav {
  color: #1d1d1f;
  font-size: 13.5px;
  font-weight: 500;
}

nav > a {
  padding: 6px 12px;
  border-radius: 999px;
}

nav > a:hover {
  color: #1d1d1f;
  background: var(--fill);
}

.language-switch {
  padding: 2px;
  background: rgba(120, 120, 128, .12);
  border: none;
}

.language-switch .lang-link {
  min-height: 26px;
  color: #48484a;
  font-weight: 600;
}

.language-switch .lang-link.active {
  color: #1d1d1f;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12), 0 3px 8px rgba(0, 0, 0, .06);
}

/* ---------- Hero：大标题排版 ---------- */

.hero {
  padding: 56px 48px 60px;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.hero-carousel::after {
  background:
    radial-gradient(circle at 50% 44%, rgba(251, 251, 253, .92) 0%, rgba(251, 251, 253, .7) 36%, rgba(245, 245, 247, .45) 64%, rgba(245, 245, 247, .3) 100%),
    linear-gradient(180deg, rgba(251, 251, 253, .6), rgba(245, 245, 247, .9));
}

.eyebrow {
  color: #f45d00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero h1 {
  color: #1d1d1f;
  font-weight: 800;
  letter-spacing: -.03em;
}

.hero p {
  color: #6e6e73;
  font-size: 19px;
  font-weight: 450;
  letter-spacing: -.01em;
}

.price-updated {
  color: #6e6e73;
  background: var(--fill);
  border: none;
  font-weight: 600;
}

.hero-contact {
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 24px 60px rgba(0, 0, 0, .1);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
}

/* ---------- 按钮：苹果按钮手感 ---------- */

.button,
.filters button,
.quote-link {
  font-weight: 600;
  letter-spacing: -.01em;
}

.primary {
  background: linear-gradient(180deg, #ff8a1e 0%, #f45d00 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 6px 16px rgba(244, 93, 0, .3);
}

.primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 10px 24px rgba(244, 93, 0, .34);
}

.ghost {
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
}

.ghost:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, .2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

/* ---------- 筛选：macOS 填充式输入框 ---------- */

input,
select {
  min-height: 42px;
  color: #1d1d1f;
  background: rgba(120, 120, 128, .09);
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 500;
}

input:hover,
select:hover {
  background: rgba(120, 120, 128, .13);
  border-color: transparent;
}

input:focus,
select:focus {
  background: #fff;
  border-color: #ff8a4d;
  box-shadow: var(--ring);
}

input::placeholder {
  color: #86868b;
}

.filters button {
  color: #fff;
  background: #1d1d1f;
}

.filters button:hover {
  background: #333336;
}

/* ---------- 卡片：毛玻璃层 + 发丝边 ---------- */

.featured-slide,
.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
}

.featured-slide:hover,
.product-card:hover {
  border-color: rgba(0, 0, 0, .05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04), 0 24px 48px rgba(0, 0, 0, .1);
}

.featured-heading h2,
.toolbar h2,
.contact-copy h2 {
  color: #1d1d1f;
  font-weight: 800;
  letter-spacing: -.025em;
}

.featured-media,
.product-media {
  background: #f5f5f7;
  border-radius: 14px;
  border: none;
}

.product-card h3,
.featured-slide h3 {
  color: #1d1d1f;
  font-weight: 700;
  letter-spacing: -.02em;
}

.spec,
.featured-slide p {
  color: #86868b;
}

.pill {
  color: #067647;
  background: rgba(52, 199, 89, .12);
  border: none;
  font-weight: 700;
}

.pn {
  color: #6e6e73;
}

.spec-table {
  background: rgba(120, 120, 128, .06);
  border: none;
  border-radius: 12px;
}

dt {
  color: #86868b;
  font-weight: 500;
}

dd {
  color: #1d1d1f;
  font-weight: 500;
}

.price-row {
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.price-row strong,
.product-card .price-row strong,
.usd-price-row strong,
.featured-slide strong {
  color: #f45d00;
  font-weight: 800;
  letter-spacing: -.02em;
}

.price-row span,
.usd-price-row span {
  color: #86868b;
}

.product-status-note {
  color: #8a4b00;
  background: rgba(255, 149, 0, .1);
  border: none;
  border-radius: 11px;
}

.real-link {
  color: #f45d00;
  background: rgba(244, 93, 0, .1);
  border: none;
}

.real-link:hover {
  background: rgba(244, 93, 0, .16);
}

.product-card .quote-link {
  background: linear-gradient(180deg, #ff8a1e 0%, #f45d00 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 5px 14px rgba(244, 93, 0, .26);
}

/* ---------- 分页 ---------- */

.pagination a {
  color: #1d1d1f;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 0, 0, .1);
  font-weight: 600;
}

.pagination a:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, .2);
  color: #1d1d1f;
}

.pagination a.active {
  color: #fff;
  background: #1d1d1f;
  border-color: #1d1d1f;
}

.pagination a.disabled {
  color: #c7c7cc;
}

/* ---------- 联系区块 / 页脚 ---------- */

.contact-band {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 24px 60px rgba(0, 0, 0, .06);
}

.contact-copy p:not(.eyebrow) {
  color: #6e6e73;
}

.qr-card {
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.footer {
  color: #86868b;
  background: #f5f5f7;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
}

.footer strong {
  color: #1d1d1f;
  font-weight: 700;
}

.footer-links,
.footer-links a {
  color: #424245;
  font-weight: 500;
}

.footer small {
  color: #a1a1a6;
}

/* ---------- 悬浮客服：Dock 质感 ---------- */

.float-title,
.float-phone,
.float-qr {
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 12px 32px rgba(0, 0, 0, .1);
}

.float-title {
  border-radius: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.float-phone,
.float-qr {
  border-radius: 16px;
}

.float-icon,
.contact-icon {
  color: #f45d00;
  background: rgba(244, 93, 0, .1);
  border: none;
}

.wechat-icon {
  color: #07c160;
  background: rgba(7, 193, 96, .1);
  border: none;
}

.whatsapp-icon {
  color: #25d366;
  background: rgba(37, 211, 102, .1);
  border: none;
}

.float-phone span,
.float-qr span {
  color: #86868b;
}

/* ---------- 弹窗：系统面板 ---------- */

.wechat-modal {
  background: rgba(0, 0, 0, .32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wechat-dialog {
  background: rgba(252, 252, 254, .92);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 40px 100px rgba(0, 0, 0, .25);
}

.modal-close {
  background: rgba(120, 120, 128, .12);
  border: none;
}

.modal-close:hover {
  background: rgba(120, 120, 128, .2);
}

.modal-phone,
.contact-qr-grid figure {
  background: rgba(120, 120, 128, .07);
  border: none;
  border-radius: 14px;
}

/* ---------- 后台：同步 macOS 质感 ---------- */

.admin-page {
  background: #f5f5f7;
}

.admin-hero,
.upload-panel,
.table-panel,
.login-card,
.admin-side-nav {
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 10px 28px rgba(0, 0, 0, .05);
}

body.admin-page input,
body.admin-page select,
body.admin-page textarea {
  background: rgba(120, 120, 128, .08);
  border: 1px solid transparent;
  border-radius: 10px;
}

body.admin-page input:focus,
body.admin-page select:focus,
body.admin-page textarea:focus {
  background: #fff;
  border-color: #ff8a4d;
  box-shadow: var(--ring);
}

.markup-card,
.upload-table-module,
.pricing-choice,
.manual-image-preview {
  background: rgba(120, 120, 128, .06);
  border: 1px solid transparent;
  border-radius: 13px;
}

.markup-card.active,
.pricing-choice.active {
  background: rgba(244, 93, 0, .08);
  border-color: rgba(244, 93, 0, .45);
  box-shadow: none;
}

th {
  color: #86868b;
}

th,
td {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

/* ---------- 滚动条：overlay 风格 ---------- */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .22);
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, .35);
  background-clip: content-box;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* =====================================================================
   2026-07-27 v4 点缀色：苹果蓝 (#0071e3)
   ===================================================================== */

:root {
  --cyan: #2997ff;
  --blue: #0071e3;
  --brand-grad: linear-gradient(180deg, #1a8cff 0%, #0071e3 100%);
  --ring: 0 0 0 4px rgba(0, 113, 227, .16);
}

::selection {
  color: #fff;
  background: #0071e3;
}

:focus-visible {
  outline-color: #0071e3;
}

.brand-logo {
  box-shadow: 0 6px 18px rgba(0, 113, 227, .2);
}

.eyebrow {
  color: #0071e3;
}

.hero-phone a {
  color: #0071e3;
}

.hero-phone a:hover {
  color: #0060bf;
}

.primary,
.product-card .quote-link {
  background: linear-gradient(180deg, #1a8cff 0%, #0071e3 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 6px 16px rgba(0, 113, 227, .3);
}

.primary:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 10px 24px rgba(0, 113, 227, .35);
}

input:focus,
select:focus,
body.admin-page input:focus,
body.admin-page select:focus,
body.admin-page textarea:focus {
  border-color: #62aefb;
  box-shadow: var(--ring);
}

.featured-slide strong,
.featured-slide a,
.price-row strong,
.product-card .price-row strong,
.usd-price-row strong,
.inline-link,
.modal-phone strong,
.float-phone strong {
  color: #0071e3;
}

.product-status-note span {
  color: #b25e00;
}

.real-link {
  color: #0071e3;
  background: rgba(0, 113, 227, .09);
}

.real-link:hover {
  background: rgba(0, 113, 227, .15);
}

.float-icon,
.contact-icon {
  color: #0071e3;
  background: rgba(0, 113, 227, .09);
}

.pagination a:hover {
  color: #0071e3;
  border-color: rgba(0, 113, 227, .5);
}

.footer-links a:hover {
  color: #0071e3;
}

nav > a:hover {
  color: #0071e3;
}

.contact-band {
  background:
    radial-gradient(600px 300px at 92% 0%, rgba(0, 113, 227, .06), transparent 60%),
    #ffffff;
}

/* ---------- 后台同步换蓝 ---------- */

.admin-hero .eyebrow {
  color: #0071e3;
}

.admin-side-nav a:hover,
.admin-side-nav a.active {
  background: linear-gradient(180deg, #1a8cff 0%, #0071e3 100%);
}

.module-heading span {
  color: #0071e3;
  background: rgba(0, 113, 227, .09);
}

.upload-module-head span {
  color: #0071e3;
}

.markup-card.active,
.pricing-choice.active {
  background: rgba(0, 113, 227, .06);
  border-color: rgba(0, 113, 227, .5);
}

.markup-radio,
.pricing-choice input {
  accent-color: #0071e3;
}

.markup-panel.is-saving .autosave-status::after {
  color: #0071e3;
}

.switch-control input:checked + .switch-ui {
  background: #0071e3;
}

.upload-progress span {
  background: linear-gradient(90deg, #1a8cff, #0071e3);
}

.admin-pagination a.active {
  background: linear-gradient(180deg, #1a8cff 0%, #0071e3 100%);
}

body.admin-page .price-row strong,
body.admin-page .usd-price-row strong {
  color: #0071e3;
}

/* =====================================================================
   2026-07-27 v5 高级感精修层
   克制的奢华：大留白 / 大字号 / 弱化照片噪音 / 扁平蓝 / 深色对比区块
   ===================================================================== */

/* ---------- Hero：从"图片横幅"升级为"发布会大标题" ---------- */

.hero {
  min-height: 460px;
  padding: 84px 48px 88px;
  background:
    radial-gradient(900px 480px at 20% -10%, rgba(0, 113, 227, .05), transparent 60%),
    radial-gradient(1000px 520px at 85% 0%, rgba(41, 151, 255, .06), transparent 55%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.hero-slides {
  opacity: .1;
  filter: grayscale(.3);
}

.hero-carousel::after {
  background: linear-gradient(180deg, rgba(251, 251, 253, .2) 0%, rgba(245, 245, 247, .85) 100%);
}

.eyebrow {
  color: #86868b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.0;
}

.hero p {
  margin-top: 18px;
  color: #6e6e73;
  font-size: 21px;
  font-weight: 450;
  letter-spacing: -.012em;
  line-height: 1.5;
}

.price-updated {
  color: #a1a1a6;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
}

.hero-actions {
  margin-top: 30px;
  gap: 16px;
}

.hero-contact {
  margin-top: 26px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 20px 50px rgba(0, 0, 0, .06);
}

.hero-phone a {
  font-size: 30px;
  letter-spacing: -.02em;
}

/* ---------- 按钮：Apple 扁平蓝，去掉重阴影 ---------- */

.button,
.filters button,
.quote-link {
  min-height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

.primary,
.product-card .quote-link {
  background: #0071e3;
  box-shadow: none;
}

.primary:hover,
.product-card .quote-link:hover {
  background: #0077ed;
  filter: none;
  box-shadow: none;
}

.ghost {
  color: #0071e3;
  background: transparent;
  border: 1px solid rgba(0, 113, 227, .8);
  backdrop-filter: none;
}

.ghost:hover {
  color: #fff;
  background: #0071e3;
  border-color: #0071e3;
  box-shadow: none;
}

.small-button,
.tiny-button {
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

/* ---------- 区块节奏：更大的呼吸感 ---------- */

.featured-band {
  padding: 72px 48px 8px;
}

.inventory {
  padding: 72px 48px 80px;
}

.featured-heading h2,
.toolbar h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.meta-line {
  color: #a1a1a6;
  font-size: 13px;
}

/* ---------- 筛选：一体化工具条 ---------- */

input,
select {
  min-height: 44px;
  background: rgba(120, 120, 128, .07);
  border-radius: 12px;
  font-size: 14px;
}

.filters button {
  background: #0071e3;
}

.filters button:hover {
  background: #0077ed;
}

/* ---------- 商品卡片：展柜化 ---------- */

.product-grid {
  gap: 22px;
}

.product-card {
  min-height: 500px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 22px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .02);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, .04);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .03), 0 28px 56px rgba(0, 0, 0, .1);
}

.product-media {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 16px;
}

.product-media img {
  object-fit: contain;
  padding: 12px;
}

.product-media span {
  color: #1d1d1f;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(8px);
  font-weight: 600;
}

.product-card h3 {
  margin: 18px 8px 6px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.022em;
}

.spec {
  color: #a1a1a6;
  font-size: 13px;
}

.pill {
  padding: 4px 10px;
  color: #248a3d;
  background: transparent;
  border: 1px solid rgba(36, 138, 61, .4);
  font-weight: 600;
}

.pn {
  min-height: 60px;
  color: #a1a1a6;
  font-size: 12px;
}

.spec-table {
  margin: 12px 8px;
  padding: 2px 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.spec-table div {
  padding: 7px 2px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.spec-table div:last-child {
  border-bottom: none;
}

dt {
  color: #a1a1a6;
}

dd {
  color: #424245;
  font-weight: 500;
}

.price-row {
  border-top: none;
}

.price-row strong,
.product-card .price-row strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.price-row span,
.usd-price-row span {
  color: #a1a1a6;
  font-size: 11.5px;
}

.real-link {
  color: #0071e3;
  background: transparent;
  border: 1px solid rgba(0, 113, 227, .5);
}

.real-link:hover {
  color: #fff;
  background: #0071e3;
  border-color: #0071e3;
}

/* ---------- 精选卡片 ---------- */

.featured-slide {
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 22px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .02);
}

.featured-media {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 16px;
}

.featured-media img {
  object-fit: contain;
  padding: 10px;
}

.featured-slide strong {
  font-size: 26px;
  letter-spacing: -.025em;
}

/* ---------- 分页：极简 ---------- */

.pagination {
  margin-top: 44px;
}

.pagination a {
  min-width: 42px;
  min-height: 42px;
  color: #424245;
  background: transparent;
  border: none;
  font-weight: 600;
}

.pagination a:hover {
  background: rgba(120, 120, 128, .1);
  color: #1d1d1f;
  border: none;
}

.pagination a.active {
  color: #fff;
  background: #1d1d1f;
}

.pagination a.disabled {
  color: #d2d2d7;
}

/* ---------- 联系区块：深色宣言式 Banner ---------- */

.contact-band {
  max-width: 1280px;
  padding: 72px 64px;
  background:
    radial-gradient(720px 400px at 88% -10%, rgba(0, 113, 227, .25), transparent 60%),
    radial-gradient(600px 360px at 0% 110%, rgba(41, 151, 255, .12), transparent 55%),
    #0d1117;
  border: none;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(13, 17, 23, .3);
}

.contact-band .eyebrow {
  color: #64b5ff;
}

.contact-copy h2 {
  color: #f5f5f7;
  font-size: 46px;
  letter-spacing: -.03em;
}

.contact-copy p:not(.eyebrow) {
  color: #98a6b8;
  font-size: 18px;
}

.contact-band .primary {
  color: #1d1d1f;
  background: #fff;
}

.contact-band .primary:hover {
  background: #f0f0f2;
}

.contact-band .ghost {
  color: #f5f5f7;
  border-color: rgba(255, 255, 255, .4);
}

.contact-band .ghost:hover {
  color: #1d1d1f;
  background: #fff;
  border-color: #fff;
}

.qr-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.qr-card span {
  font-weight: 650;
}

/* ---------- 页脚 ---------- */

.footer {
  padding: 56px 48px 64px;
  background: #fbfbfd;
}

.footer strong {
  font-size: 17px;
  letter-spacing: -.015em;
}

.footer p {
  color: #86868b;
}

.footer-links,
.footer-links a {
  color: #515154;
  font-weight: 500;
}

/* ---------- 悬浮客服：更轻的存在感 ---------- */

.floating-service {
  width: 136px;
  gap: 8px;
}

.float-title {
  font-size: 13px;
  font-weight: 650;
}

.float-phone strong {
  font-size: 15px;
}

/* ---------- 顶部导航：更纯净 ---------- */

.site-header {
  min-height: 60px;
  background: rgba(251, 251, 253, .82);
}

nav {
  gap: 6px;
  font-size: 14px;
}

.nav-brand-title strong {
  font-size: 16.5px;
  letter-spacing: -.02em;
}

/* ---------- 全局字重微调 ---------- */

.toolbar h2,
.featured-heading h2,
.contact-copy h2,
.hero h1 {
  font-feature-settings: "ss01";
}
