:root {
  --brand: #0068b7;
  --brand-dark: #063f69;
  --brand-soft: #e9f3fc;
  --green: #078867;
  --green-soft: #e8f7f1;
  --ink: #142a38;
  --muted: #627584;
  --line: #dce5eb;
  --bg: #f5f8fb;
  --paper: #fff;
  --danger: #c1483c;
  --shadow: 0 9px 28px rgba(10, 47, 71, .08);
  --content-width: 1760px;
  font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
body { margin: 0; color: var(--ink); background: var(--bg); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.header {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 40px);
  min-height: 76px; padding: 12px clamp(20px, 4vw, 56px); background: var(--paper); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.member-quickbar { min-height: 38px; background: #f1f5f7; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.member-quick-inner { max-width: var(--content-width); margin: 0 auto; padding: 10px clamp(20px, 3vw, 46px); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.member-quick-inner div { display: flex; flex-wrap: wrap; gap: 18px; }
.member-quick-inner a:hover { color: var(--brand); }
.member-quick-inner b { font-weight: normal; }
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo span {
  display: flex; width: 44px; height: 44px; border-radius: 9px; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; font-size: 19px; font-weight: bold;
}
.logo strong { display: block; font-size: 20px; color: var(--brand-dark); }
.logo small { color: var(--muted); font-size: 12px; }
.head-search { display: flex; min-width: 260px; flex: 1; max-width: 480px; }
.head-search input { border-radius: 6px 0 0 6px; margin: 0; border-right: 0; }
.head-search button { border-radius: 0 6px 6px 0; padding-inline: 20px; }
nav { display: flex; gap: clamp(14px, 2vw, 28px); margin-left: auto; white-space: nowrap; font-size: 14px; }
nav a:hover, nav a.active { color: var(--brand); }
.language-picker { width: auto; min-width: 94px; margin: 0; padding: 8px; flex-shrink: 0; }
.service-bar {
  display: flex; justify-content: center; gap: clamp(20px, 7vw, 80px);
  padding: 12px 20px; background: var(--brand-dark); color: #d9edf9; font-size: 13px;
}
.service-bar span::before { content: "✓ "; color: #5bd6ae; }
.home-search-panel {
  max-width: var(--content-width); margin: 0 auto; padding: 24px clamp(20px, 3vw, 46px);
  display: grid; grid-template-columns: 250px minmax(380px, 1fr) 122px; align-items: center; gap: 25px;
  background: #fff; border-bottom: 1px solid var(--line);
}
.home-search-copy strong { display: block; font-size: 23px; color: var(--brand-dark); margin-bottom: 5px; }
.home-search-copy span { color: var(--muted); font-size: 13px; }
.home-search-form {
  display: flex; height: 62px; padding: 4px; border: 2px solid var(--brand); border-radius: 7px;
  background: #fff; box-shadow: 0 8px 22px rgba(0, 104, 183, .12);
}
.home-search-form input { margin: 0; height: 50px; border: 0; font-size: 17px; padding-left: 18px; }
.home-search-form input:focus { outline: none; }
.home-search-form button { border-radius: 5px; min-width: 142px; font-size: 16px; }
.hot-searches { grid-column: 2 / 3; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-size: 12px; color: var(--muted); margin-top: -12px; }
.hot-searches a {
  display: inline-flex; align-items: center; min-height: 26px; padding: 4px 9px;
  border: 1px solid #d4e3ed; border-radius: 4px; background: #f8fbfd; color: var(--brand-dark);
}
.hot-searches a:hover { border-color: #9cc7ea; color: var(--brand); background: #fff; }
.home-search-more { color: var(--brand); font-size: 14px; text-align: right; }
.search-suggest-host { position: relative; }
.search-suggest-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 42;
  background: #fff; border: 1px solid #bcd6e8; border-radius: 8px; box-shadow: 0 18px 46px rgba(5, 39, 65, .18);
  overflow: hidden; color: var(--ink); text-align: left;
}
.search-suggest-panel[hidden] { display: none; }
.search-suggest-head {
  display: flex; justify-content: space-between; gap: 14px; padding: 10px 13px;
  background: #f1f7fb; border-bottom: 1px solid #dce9f1; font-size: 12px;
}
.search-suggest-head strong { color: var(--brand-dark); }
.search-suggest-head span { color: var(--muted); white-space: nowrap; }
.search-suggest-list { max-height: 376px; overflow-y: auto; }
.search-suggest-row {
  display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 10px; align-items: center;
  min-height: 58px; padding: 9px 13px; border-bottom: 1px solid #edf3f7; background: #fff;
}
.search-suggest-row:hover { background: #f6fbff; }
.search-suggest-row.reference { background: #fbfdff; }
.search-suggest-row img { width: 38px; height: 38px; object-fit: contain; border: 1px solid #edf2f5; border-radius: 4px; background: #fff; }
.search-suggest-row strong { display: block; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-suggest-row small { display: block; color: var(--muted); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-suggest-row em { color: var(--green); font-style: normal; font-weight: 700; white-space: nowrap; font-size: 12px; }
.search-suggest-empty { padding: 16px 14px; color: var(--muted); font-size: 13px; }
.search-suggest-empty strong { display: block; color: var(--brand-dark); margin-bottom: 5px; }
.search-suggest-actions {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 10px 12px; background: #f8fbfd;
}
.search-suggest-actions a, .search-suggest-actions button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 34px;
  border: 1px solid #c9deeb; border-radius: 5px; color: var(--brand); font-size: 13px; background: #fff;
  padding: 7px 8px; line-height: 1.2; text-align: center; cursor: pointer;
}
.search-suggest-actions button:disabled { color: #97a7b3; background: #eef3f6; cursor: not-allowed; }
.search-suggest-actions .primary-action { background: var(--brand); border-color: var(--brand); color: #fff; }
.market-workbench {
  max-width: var(--content-width); margin: 18px auto 0; padding: 30px clamp(20px, 3vw, 46px) 34px;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 9% 8%, rgba(69, 204, 160, .19), transparent 24%),
    radial-gradient(circle at 88% 5%, rgba(255, 191, 77, .16), transparent 22%),
    linear-gradient(180deg, #f5fbff 0%, #fafdff 100%);
  border: 1px solid rgba(201, 222, 235, .82); border-radius: 12px;
  box-shadow: 0 18px 42px rgba(5, 39, 65, .05);
}
.workbench-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 18px;
}
.workbench-head h2 { margin: 0; color: var(--brand-dark); font-size: 28px; }
.workbench-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.workbench-actions .primary, .workbench-actions .secondary { padding: 10px 16px; border-radius: 5px; font-size: 14px; }
.workbench-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(255px, 330px);
  grid-template-areas:
    "flow topics"
    "categories topics";
  gap: 15px;
  align-items: stretch;
}
.category-rail, .sourcing-flow, .stock-topics {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; box-shadow: 0 8px 24px rgba(10, 47, 71, .05);
}
.category-rail { grid-area: categories; }
.sourcing-flow { grid-area: flow; }
.stock-topics { grid-area: topics; }
.rail-title { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.rail-title strong { color: var(--brand-dark); font-size: 16px; }
.rail-title a { color: var(--brand); font-size: 12px; white-space: nowrap; }
.rail-links { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.rail-links a {
  min-width: 0; display: flex; justify-content: space-between; gap: 8px; padding: 8px 9px;
  background: #f6fafc; border: 1px solid #e3edf3; border-radius: 5px; font-size: 12px;
}
.rail-links a:hover, .topic-links a:hover, .flow-step:hover { border-color: #9cc7ea; background: var(--brand-soft); }
.rail-links span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--brand-dark); }
.rail-links small { color: var(--muted); flex-shrink: 0; }
.sourcing-flow {
  display: grid; grid-template-columns: minmax(0, .94fr) minmax(350px, 1.06fr); gap: 16px; overflow: hidden; min-height: 342px; padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246, 251, 255, .98)),
    radial-gradient(circle at 74% 8%, rgba(255, 191, 77, .18), transparent 28%);
}
.flow-copy {
  min-width: 0; display: flex; flex-direction: column; gap: 12px;
}
.flow-copy-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.flow-copy-head strong { color: var(--brand-dark); font-size: 16px; }
.flow-copy-head span { color: var(--muted); font-size: 12px; white-space: nowrap; }
.flow-steps {
  flex: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.flow-step {
  min-width: 0; min-height: 0; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 7px 10px;
  padding: 11px 10px; border: 1px solid #e1ebf1; border-radius: 7px;
  background:
    radial-gradient(circle at 95% 18%, rgba(0, 143, 211, .1), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbfd);
  transition: border-color .15s, background .15s, transform .15s;
}
.flow-step:hover { transform: translateY(-2px); }
.flow-step strong { display: block; color: var(--green); font-size: 19px; }
.flow-step span { display: block; color: var(--brand-dark); font-weight: 700; }
.flow-step small { grid-column: 2 / 3; display: block; color: var(--muted); line-height: 1.45; font-size: 12px; }
.step-visual {
  grid-column: 1 / -1; position: relative; min-height: 48px; height: 100%; border-radius: 7px;
  background:
    linear-gradient(rgba(0, 104, 183, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 183, .08) 1px, transparent 1px),
    linear-gradient(135deg, #ecf8ff 0%, #f8fff6 54%, #fff5dc 100%);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.66), 0 10px 22px rgba(0, 104, 183, .08);
  overflow: hidden;
}
.step-visual::before {
  content: ""; position: absolute; left: 14%; right: 14%; top: 50%; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, #008fd3, #45cca0, #ffbf4d);
  box-shadow: 0 0 0 3px rgba(255,255,255,.74);
}
.step-visual i, .step-visual b, .step-visual em { position: absolute; display: block; z-index: 1; }
.visual-search i {
  left: 11px; top: 13px; width: 26px; height: 26px; border: 5px solid #008fd3; border-radius: 50%;
  background: rgba(255,255,255,.8);
}
.visual-search b { left: 34px; top: 39px; width: 22px; height: 5px; border-radius: 999px; background: #008fd3; transform: rotate(42deg); }
.visual-search em {
  right: 10px; top: 16px; width: 33px; height: 33px; border-radius: 8px;
  background: linear-gradient(135deg, #043b61, #0068b7); border: 4px solid #d9f0fb;
}
.visual-bom i {
  left: 11px; width: 52%; height: 7px; border-radius: 999px; background: #cfe3f0;
}
.visual-bom i:nth-child(1) { top: 16px; background: #45cca0; }
.visual-bom i:nth-child(2) { top: 31px; width: 64%; background: #8bc8f0; }
.visual-bom i:nth-child(3) { top: 46px; width: 45%; background: #ffce62; }
.visual-bom b {
  right: 10px; top: 17px; width: 31px; height: 31px; border-radius: 50%;
  background: #fff; border: 5px solid #45cca0; box-shadow: inset 0 0 0 6px #eafbf5;
}
.visual-quote i {
  left: 10px; top: 22px; width: 42px; height: 30px; border-radius: 7px; background: #fff;
  border: 1px solid rgba(0, 104, 183, .22); box-shadow: 0 9px 18px rgba(0, 104, 183, .09);
}
.visual-quote b {
  left: 31px; top: 12px; width: 27px; height: 27px; display: grid; place-items: center;
  border-radius: 50%; background: #fff1c7; color: #d46b00; font-size: 16px;
}
.visual-quote b::before { content: "¥"; }
.visual-quote em {
  right: 9px; bottom: 18px; width: 36px; height: 13px; border-radius: 999px;
  background: linear-gradient(90deg, #45cca0 0 38%, #ffbf4d 38% 66%, #008fd3 66%);
}
.visual-qc i {
  left: 11px; top: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #00a47d, #59d99c); box-shadow: inset 0 0 0 9px rgba(255,255,255,.28);
}
.visual-qc i::before {
  content: ""; position: absolute; left: 10px; top: 10px; width: 13px; height: 8px;
  border-left: 4px solid #fff; border-bottom: 4px solid #fff; transform: rotate(-45deg);
}
.visual-qc b {
  right: 9px; bottom: 17px; width: 41px; height: 22px; border-radius: 6px 9px 6px 6px;
  background: linear-gradient(135deg, #ff9f43, #ffbf4d);
}
.visual-qc em {
  right: 16px; bottom: 11px; width: 10px; height: 10px; border-radius: 50%; background: #17435c;
  box-shadow: -22px 0 0 #17435c;
}
.workbench-illustration {
  position: relative; min-height: 100%; margin-top: 0;
  border: 1px solid #d5e8ef; border-radius: 9px;
  background:
    radial-gradient(circle at 10% 24%, rgba(69, 204, 160, .31), transparent 25%),
    radial-gradient(circle at 52% 18%, rgba(0, 143, 211, .2), transparent 23%),
    radial-gradient(circle at 86% 25%, rgba(255, 186, 73, .29), transparent 25%),
    linear-gradient(135deg, #eff9ff 0%, #f8fff8 48%, #fff8ec 100%);
  overflow: hidden;
}
.workbench-illustration::before {
  content: ""; position: absolute; inset: 18px; border-radius: 8px;
  background-image:
    linear-gradient(rgba(0, 104, 183, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 183, .07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.illustration-card, .illustration-node, .illustration-chip, .illustration-truck, .illustration-line, .illustration-rack, .illustration-pack, .illustration-reel, .illustration-tag, .illustration-wave {
  position: absolute; z-index: 1;
}
.illustration-caption {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; justify-content: center;
  min-height: 24px; padding: 4px 9px; border-radius: 999px;
  background: rgba(255,255,255,.88); border: 1px solid rgba(0, 104, 183, .14);
  color: #17435c; font-size: 11px; font-weight: 800; box-shadow: 0 9px 18px rgba(18, 72, 105, .08);
}
.caption-bom { left: 5%; top: 18px; }
.caption-match { left: 25%; top: 153px; background: #eef9ff; color: #0068b7; }
.caption-quote { right: 27%; top: 153px; background: #fff8e7; color: #a95c00; }
.caption-qc { right: 6%; bottom: 96px; background: #effbf6; color: #078867; }
.illustration-card {
  width: 96px; min-height: 88px; padding: 13px; border-radius: 8px;
  background: #fff; border: 1px solid rgba(0, 104, 183, .2); box-shadow: 0 12px 25px rgba(18, 72, 105, .11);
}
.illustration-card span { display: block; color: var(--brand-dark); font-weight: 800; margin-bottom: 9px; }
.illustration-card i { display: block; height: 7px; margin-top: 8px; border-radius: 10px; background: #cfe3f0; }
.illustration-card i:nth-child(3) { width: 74%; background: #9bd8c4; }
.illustration-card i:nth-child(4) { width: 55%; background: #ffd27a; }
.bom-sheet { left: 5%; top: 36px; transform: rotate(-3deg); }
.illustration-rack {
  left: 13%; bottom: 28px; width: 116px; height: 74px; padding: 10px;
  border-radius: 9px; background: rgba(255,255,255,.9); border: 1px solid rgba(0, 104, 183, .18);
  box-shadow: 0 12px 23px rgba(18, 72, 105, .11);
}
.illustration-rack i {
  display: inline-block; width: 27px; height: 18px; margin: 3px;
  border-radius: 4px; background: linear-gradient(135deg, #e8f4fb, #c8e5f5);
  border-bottom: 4px solid #008fd3;
}
.illustration-rack i:nth-child(2), .illustration-rack i:nth-child(5) { border-bottom-color: #45cca0; }
.illustration-rack i:nth-child(3), .illustration-rack i:nth-child(6) { border-bottom-color: #ffbf4d; }
.illustration-reel {
  left: 20%; bottom: 104px; width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #fff, #eaf7ff);
  border: 9px solid #8bc8f0; box-shadow: 0 13px 25px rgba(18, 72, 105, .13);
}
.illustration-reel i, .illustration-reel b, .illustration-reel em {
  position: absolute; display: block; border-radius: 50%; background: #fff; border: 5px solid rgba(0, 104, 183, .18);
}
.illustration-reel i { width: 16px; height: 16px; left: 18px; top: 18px; }
.illustration-reel b { width: 12px; height: 12px; right: 12px; top: 15px; }
.illustration-reel em { width: 12px; height: 12px; left: 20px; bottom: 10px; }
.illustration-tag {
  min-width: 58px; min-height: 26px; display: grid; place-items: center; padding: 4px 9px;
  border-radius: 999px; color: #063f69; background: #fff8e7; border: 1px solid #ffd27a;
  box-shadow: 0 9px 18px rgba(175, 95, 0, .08); font-size: 11px; font-weight: 800;
}
.tag-brand { left: 28%; top: 37px; }
.tag-lot { right: 24%; bottom: 36px; background: #effbf6; border-color: #9bd8c4; color: #078867; }
.illustration-node {
  width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%;
  color: #fff; font-weight: 800; box-shadow: 0 11px 24px rgba(4, 77, 119, .16);
}
.search-node { left: 24%; top: 88px; background: linear-gradient(135deg, #008fd3, #3cc4e8); }
.qc-node { right: 18%; top: 55px; background: linear-gradient(135deg, #00a47d, #59d99c); }
.illustration-line {
  height: 4px; border-radius: 999px; background: linear-gradient(90deg, #34b6e3, #45cca0, #ffbf4d);
  box-shadow: 0 0 0 5px rgba(255,255,255,.65);
}
.line-one { left: 18%; top: 121px; width: 8%; transform: rotate(6deg); }
.line-two { left: 49%; top: 82px; width: 10%; transform: rotate(4deg); }
.line-three { right: 29%; top: 84px; width: 8%; transform: rotate(-3deg); }
.illustration-chip {
  left: 38%; top: 53px; width: 104px; height: 104px; display: grid; place-items: center;
  border-radius: 14px; background: linear-gradient(135deg, #043b61, #0068b7); color: #fff;
  border: 7px solid #d9f0fb; box-shadow: 0 15px 30px rgba(1, 49, 83, .22);
}
.illustration-chip strong { font-size: 24px; letter-spacing: 0; }
.illustration-chip i, .illustration-chip em {
  position: absolute; display: block; width: 5px; height: 15px; border-radius: 4px; background: #ffce62;
}
.illustration-chip i:nth-child(1) { left: -13px; top: 18px; }
.illustration-chip i:nth-child(2) { left: -13px; top: 42px; }
.illustration-chip i:nth-child(3) { left: -13px; top: 66px; }
.illustration-chip i:nth-child(4) { right: -13px; top: 18px; }
.illustration-chip em:nth-of-type(1) { right: -13px; top: 42px; }
.illustration-chip em:nth-of-type(2) { right: -13px; top: 66px; }
.illustration-chip em:nth-of-type(3) { left: 28px; top: -16px; transform: rotate(90deg); }
.illustration-chip em:nth-of-type(4) { left: 56px; bottom: -16px; transform: rotate(90deg); }
.illustration-wave {
  left: 35%; bottom: 40px; width: 178px; height: 50px; padding: 8px 13px;
  border-radius: 999px; background: rgba(255,255,255,.86); border: 1px solid rgba(0, 104, 183, .16);
  box-shadow: 0 12px 22px rgba(18, 72, 105, .1);
}
.illustration-wave i {
  display: inline-block; width: 18px; margin: 0 5px; border-radius: 999px; vertical-align: bottom;
  background: linear-gradient(180deg, #008fd3, #45cca0);
}
.illustration-wave i:nth-child(1) { height: 14px; }
.illustration-wave i:nth-child(2) { height: 27px; background: linear-gradient(180deg, #ffbf4d, #ff9f43); }
.illustration-wave i:nth-child(3) { height: 20px; }
.illustration-wave i:nth-child(4) { height: 32px; background: linear-gradient(180deg, #45cca0, #078867); }
.illustration-wave i:nth-child(5) { height: 17px; }
.quote-card { right: 28%; top: 43px; width: 108px; min-height: 96px; }
.quote-card b { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #fff1c7; color: #d46b00; }
.quote-card small { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.illustration-pack {
  right: 12%; bottom: 35px; width: 76px; height: 60px; border-radius: 8px;
  background: linear-gradient(135deg, #fff9eb, #ffe0a1);
  border: 1px solid rgba(196, 122, 7, .19); box-shadow: 0 11px 23px rgba(175, 95, 0, .14);
}
.illustration-pack i {
  position: absolute; inset: 0 34px 0 33px; display: block; background: rgba(255,255,255,.45);
}
.illustration-pack b {
  position: absolute; left: 14px; right: 14px; top: 16px; height: 7px; border-radius: 999px; background: #ff9f43;
}
.illustration-pack em {
  position: absolute; left: 18px; right: 18px; top: 31px; height: 7px; border-radius: 999px; background: #45cca0;
}
.illustration-truck {
  right: 5%; bottom: 34px; width: 112px; height: 54px; border-radius: 9px 13px 9px 9px;
  background: linear-gradient(135deg, #ff9f43, #ffbf4d); box-shadow: 0 13px 25px rgba(175, 95, 0, .17);
}
.illustration-truck span {
  position: absolute; right: 9px; top: 10px; width: 34px; height: 20px; border-radius: 4px;
  background: rgba(255,255,255,.7);
}
.illustration-truck b {
  position: absolute; bottom: -8px; width: 18px; height: 18px; border-radius: 50%; background: #17435c; border: 4px solid #fff;
}
.illustration-truck b:nth-of-type(1) { left: 17px; }
.illustration-truck b:nth-of-type(2) { right: 17px; }
.topic-links { display: grid; gap: 8px; }
.topic-links a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 12px;
  border: 1px solid #e1ebf1; border-radius: 6px; background: #fff;
}
.topic-links strong { color: var(--brand-dark); white-space: nowrap; }
.topic-links span { color: var(--muted); font-size: 12px; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-continue-panel {
  margin-top: 15px; padding: 16px; border: 1px solid #d6e8f2; border-radius: 8px; background: #fff;
  box-shadow: 0 10px 26px rgba(5, 39, 65, .06);
}
.home-page .market-workbench .home-continue-panel { padding-right: 130px; }
.home-continue-panel:empty { display: none; }
.home-continue-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 13px;
}
.home-continue-head h3, .home-continue-empty h3 { margin: 3px 0 0; color: var(--brand-dark); font-size: 20px; }
.home-continue-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.home-continue-actions .primary, .home-continue-actions .secondary, .home-continue-empty .secondary {
  padding: 8px 12px; font-size: 12px; border-radius: 5px;
}
.home-continue-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.home-continue-grid section {
  min-width: 0; padding: 13px; border: 1px solid #e2edf4; border-radius: 7px; background: #fbfdff;
}
.home-continue-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.home-continue-title strong { color: var(--brand-dark); }
.home-continue-title a { color: var(--brand); font-size: 12px; white-space: nowrap; }
.home-continue-item {
  display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 10px;
  padding: 8px 9px; border: 1px solid #dce9f1; border-radius: 6px; background: #fff;
}
.home-continue-item + .home-continue-item { margin-top: 8px; }
.home-continue-item.image-missing { grid-template-columns: minmax(0, 1fr); }
.home-continue-item.priority { border-color: #b8dccd; background: #f8fffb; }
.home-continue-item img { width: 42px; height: 42px; object-fit: contain; border: 1px solid #eef3f6; border-radius: 4px; background: #fff; }
.home-continue-item strong { display: block; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-continue-item small { display: block; margin-top: 3px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-continue-searches { display: flex; flex-wrap: wrap; gap: 8px; }
.home-continue-searches a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 7px 9px;
  border: 1px solid #d7e6ef; border-radius: 5px; background: #fff; line-height: 1.2;
}
.home-continue-searches strong { max-width: 150px; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-continue-searches span { color: var(--muted); font-size: 12px; }
.home-continue-filters { display: grid; gap: 8px; }
.home-continue-filter {
  display: grid; gap: 4px; padding: 9px 10px; border: 1px solid #d7e6ef; border-radius: 6px; background: #fff;
}
.home-continue-filter strong { color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-continue-filter span { color: var(--green); font-size: 12px; font-weight: 700; }
.home-continue-filter.demand span { color: var(--brand); }
.home-continue-filter small { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-continue-filter.task { gap: 6px; }
.home-continue-filter em { color: var(--brand); font-size: 12px; font-style: normal; font-weight: 700; }
.home-continue-empty {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 1.4fr) auto; gap: 14px; align-items: center;
}
.home-continue-empty p { margin: 0; color: var(--muted); line-height: 1.65; }
.home-starter-tasks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.home-starter-tasks a {
  min-width: 0; min-height: 58px; display: grid; align-content: center; gap: 4px; padding: 9px 10px;
  border: 1px solid #d9e8f1; border-radius: 6px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 191, 77, .24), transparent 32%),
    linear-gradient(135deg, #fff, #f7fcff);
}
.home-starter-tasks a:hover { border-color: #9cc7ea; background: var(--brand-soft); }
.home-starter-tasks strong { color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-starter-tasks span { color: var(--muted); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero {
  display: grid; grid-template-columns: 1fr minmax(345px, 420px); gap: clamp(30px, 5vw, 72px);
  padding: 58px max(calc((100vw - 1640px) / 2), 28px) 62px;
  background: linear-gradient(90deg, rgba(2, 25, 48, .94) 0%, rgba(2, 35, 66, .86) 43%, rgba(2, 38, 70, .55) 100%), url("/assets/hero-electronics-original.png") right center / cover no-repeat;
  color: #fff;
}
.eyebrow { color: #7ce3dd; letter-spacing: .18em; font-size: 12px; font-weight: bold; margin: 0 0 10px; }
.eyebrow.dark { color: var(--brand); }
.hero h1 { font-size: clamp(38px, 4.5vw, 54px); line-height: 1.2; margin: 0 0 17px; }
.hero-copy > p:not(.eyebrow) { max-width: 560px; line-height: 1.8; color: #dbeaf4; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 13px; }
.hero-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 37px; }
.hero-stats span { display: flex; flex-direction: column; color: #c6d9e7; font-size: 12px; }
.hero-stats strong { color: white; font-size: 23px; margin-bottom: 5px; }
.primary, button {
  display: inline-flex; justify-content: center; align-items: center; border: 0; border-radius: 6px;
  padding: 12px 23px; background: var(--brand); color: #fff; cursor: pointer; transition: background .15s;
}
.primary:hover, button:hover { background: #005899; }
.outline { border: 1px solid rgba(255,255,255,.68); padding: 12px 23px; border-radius: 6px; color: #fff; }
.outline:hover { background: rgba(255,255,255,.08); }
.secondary { background: var(--brand-soft); color: var(--brand); }
.secondary:hover { background: #d7eaf9; }
.wide { width: 100%; }
.lead-card, .form-card {
  background: var(--paper); color: var(--ink); padding: 25px; border-radius: 12px; box-shadow: var(--shadow);
}
.hero .lead-card { background: rgba(255,255,255,.97); box-shadow: 0 18px 42px rgba(0, 18, 40, .28); }
.lead-card h2, .form-card h2 { margin: 0 0 17px; font-size: 21px; }
input, textarea, select {
  width: 100%; border: 1px solid #cad7df; border-radius: 6px; background: #fff;
  padding: 11px 12px; margin: 0 0 11px; color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 2px solid #9acbf1; border-color: var(--brand); }
.fields { display: grid; gap: 10px; }
.fields.two { grid-template-columns: 1fr 1fr; }
.result { margin: 11px 0 0; color: var(--green); font-size: 13px; min-height: 18px; }
.bom-source-note {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: -4px 0 16px; padding: 12px 13px; border: 1px solid #cfe4f2; border-radius: 7px;
  background: #f3f9fe; color: var(--brand-dark); font-size: 13px; line-height: 1.55;
}
.bom-source-note strong { font-weight: normal; }
.bom-source-note button { flex-shrink: 0; padding: 8px 12px; font-size: 12px; }
.bom-source-context {
  margin: -4px 0 16px; padding: 14px; border: 1px solid #cfe5dc; border-radius: 8px;
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 191, 77, .2), transparent 28%),
    linear-gradient(135deg, #f7fffb, #fbfdff);
  box-shadow: 0 8px 20px rgba(3, 54, 92, .05);
}
.bom-source-context-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, 300px); gap: 14px; align-items: center; }
.bom-source-context-head strong { display: block; margin: 3px 0 6px; color: var(--brand-dark); font-size: 17px; }
.bom-source-context-head span { display: block; color: var(--muted); font-size: 12px; line-height: 1.55; }
.bom-source-context-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.bom-source-context-metrics span {
  min-width: 0; padding: 9px 8px; border: 1px solid #dbe9ef; border-radius: 7px; background: rgba(255,255,255,.84);
  color: var(--muted); font-size: 11px; text-align: center;
}
.bom-source-context-metrics b { display: block; color: var(--green); font-size: 18px; line-height: 1.1; }
.bom-source-context-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.bom-source-context-actions button { padding: 8px 10px; font-size: 12px; }
.bom-template-panel {
  margin: -4px 0 16px; padding: 14px; border: 1px solid #d7e6ef; border-radius: 8px;
  background: #fbfdff; box-shadow: 0 8px 18px rgba(3, 54, 92, .04);
}
.bom-template-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.bom-template-head strong { color: var(--brand-dark); }
.bom-template-head span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.bom-template-head button,
.bom-template-head a.secondary { flex-shrink: 0; padding: 8px 11px; font-size: 12px; white-space: nowrap; }
.bom-template-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.bom-template-grid button {
  min-width: 0; padding: 10px; border: 1px solid #dbe7ef; border-radius: 7px; background: #fff; color: var(--brand-dark);
  text-align: left; box-shadow: none;
}
.bom-template-grid button:hover { border-color: #9cc7ea; background: #f4faff; }
.bom-template-grid strong { display: block; font-size: 13px; margin-bottom: 5px; }
.bom-template-grid span { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }
.bom-draft-note {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: -4px 0 16px; padding: 14px; border: 1px solid #bfe0d8; border-radius: 8px;
  background: linear-gradient(135deg, #f2fffb 0%, #f7fbff 100%); color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(3, 54, 92, .05);
}
.bom-draft-note strong { display: block; margin-bottom: 4px; }
.bom-draft-note span, .bom-draft-note small { display: block; color: var(--muted); font-size: 12px; line-height: 1.55; }
.bom-draft-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.bom-draft-actions button { padding: 8px 12px; font-size: 12px; }
.bom-preview-panel {
  margin: -4px 0 16px; padding: 15px; border: 1px solid #d8e5ee; border-radius: 8px;
  background: #fbfdff; box-shadow: 0 8px 18px rgba(3, 54, 92, .05);
}
.bom-preview-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 12px;
}
.bom-preview-head strong { display: block; color: var(--brand-dark); font-size: 17px; }
.bom-preview-head span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.bom-preview-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.bom-preview-actions button { padding: 8px 11px; font-size: 12px; }
.bom-preview-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 11px;
}
.bom-preview-metrics span {
  min-width: 0; padding: 9px 10px; background: white; border: 1px solid var(--line); border-radius: 6px;
  color: var(--muted); font-size: 12px;
}
.bom-preview-metrics b { color: var(--brand); font-size: 18px; margin-right: 5px; }
.bom-qty-assist {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto auto; gap: 8px; align-items: center;
  margin: 0 0 11px; padding: 10px; border: 1px solid #cfe4f2; border-radius: 7px; background: #f5fbff;
}
.bom-qty-assist strong { color: var(--brand-dark); font-size: 13px; }
.bom-qty-assist span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.bom-qty-assist button { padding: 7px 10px; font-size: 12px; white-space: nowrap; }
.bom-preview-warnings {
  display: grid; gap: 7px; margin-bottom: 11px;
}
.bom-preview-warnings p {
  margin: 0; padding: 9px 10px; border: 1px solid #ffd99c; border-radius: 6px;
  background: #fff8e9; color: #805800; font-size: 13px; line-height: 1.5;
}
.bom-preview-table-wrap { overflow-x: auto; }
.bom-preview-table {
  width: 100%; border-collapse: collapse; table-layout: fixed; background: white; border: 1px solid var(--line);
}
.bom-preview-table th, .bom-preview-table td {
  padding: 10px 11px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top;
  font-size: 13px; line-height: 1.45; word-break: break-word;
}
.bom-preview-table th { background: #eef4f8; color: #486276; font-weight: 600; }
.bom-preview-table th:first-child, .bom-preview-table td:first-child { width: 58px; color: var(--muted); }
.bom-preview-table th:nth-child(3), .bom-preview-table td:nth-child(3) { width: 110px; }
.bom-preview-table tr.is-duplicate td { background: #fffaf0; }
.bom-preview-more { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.bom-submit-receipt {
  margin-top: 18px; padding: 20px; background: #fff; border: 1px solid #bfe0d8; border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 89, 69, .08);
}
.bom-receipt-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 14px;
}
.bom-receipt-head h2 { margin: 3px 0 8px; color: var(--brand-dark); font-size: 22px; }
.bom-receipt-head p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.65; }
.bom-receipt-head .secondary { white-space: nowrap; padding: 8px 12px; font-size: 12px; }
.bom-receipt-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px;
}
.bom-receipt-metrics span {
  padding: 10px 12px; background: #f4fbf8; border: 1px solid #d4ebe3; border-radius: 7px; color: var(--muted); font-size: 13px;
}
.bom-receipt-metrics b { color: var(--green); font-size: 20px; margin-right: 5px; }
.bom-receipt-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bom-receipt-checks article { background: #fbfdff; border: 1px solid var(--line); border-radius: 8px; padding: 13px; }
.bom-receipt-checks strong { color: var(--brand-dark); }
.bom-receipt-checks p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.bom-receipt-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bom-receipt-actions a, .bom-receipt-actions button { padding: 9px 12px; font-size: 12px; }
.bom-seo-panel {
  grid-column: 1 / -1; padding: 22px; border: 1px solid #d7e6ef; border-radius: 10px; background:
    radial-gradient(circle at 6% 10%, rgba(0, 166, 118, .12), transparent 24%),
    linear-gradient(135deg, #fff, #f8fcff);
  box-shadow: 0 10px 24px rgba(3, 54, 92, .05);
}
.bom-seo-copy {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 440px); gap: 18px; align-items: end;
  margin-bottom: 16px;
}
.bom-seo-copy h2 { margin: 3px 0 0; color: var(--brand-dark); font-size: 24px; line-height: 1.3; }
.bom-seo-copy p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.72; }
.bom-service-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.bom-service-steps article {
  min-width: 0; padding: 15px; border: 1px solid #e0edf3; border-radius: 8px; background: rgba(255,255,255,.86);
}
.bom-service-steps strong { color: var(--green); font-size: 18px; }
.bom-service-steps h3 { margin: 8px 0 7px; color: var(--brand-dark); font-size: 16px; }
.bom-service-steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.bom-seo-faq { margin-top: 15px; border-top: 1px solid #e3edf3; }
.bom-seo-faq details { padding: 13px 0; border-bottom: 1px solid #e8f0f5; }
.bom-seo-faq summary { cursor: pointer; color: var(--brand-dark); font-weight: 700; }
.bom-seo-faq p { margin: 9px 0 0; color: var(--muted); line-height: 1.7; }
.recovery-eval-panel {
  margin-top: 26px; padding: 15px; border: 1px solid #d8e9e4; border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,250,247,.92));
}
.recovery-eval-panel strong { display: block; margin-bottom: 11px; color: var(--brand-dark); }
.recovery-eval-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.recovery-eval-grid span {
  min-width: 0; padding: 9px 10px; border: 1px solid #dcece7; border-radius: 6px; background: #fff;
  color: #315263; font-size: 12px; text-align: center;
}
.recovery-note-assist {
  margin: -2px 0 14px; padding: 12px; border: 1px solid #d8e8f2; border-radius: 8px; background: #fff;
}
.recovery-note-assist strong { display: block; margin-bottom: 9px; color: var(--brand-dark); font-size: 14px; }
.recovery-note-assist div { display: flex; flex-wrap: wrap; gap: 7px; }
.recovery-note-assist button {
  padding: 7px 9px; border: 1px solid #cfe0eb; border-radius: 5px; background: #f8fbfd;
  color: var(--brand-dark); font-size: 12px; line-height: 1.2;
}
.recovery-note-assist button:hover { border-color: var(--green); background: var(--green-soft); color: var(--green); }
.recovery-seo-panel {
  grid-column: 1 / -1; padding: 22px; border: 1px solid #d7e6ef; border-radius: 10px; background:
    radial-gradient(circle at 8% 10%, rgba(0, 166, 118, .11), transparent 24%),
    radial-gradient(circle at 96% 22%, rgba(2, 113, 188, .09), transparent 24%),
    linear-gradient(135deg, #fff, #f8fcff);
  box-shadow: 0 10px 24px rgba(3, 54, 92, .05);
}
.recovery-seo-copy {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 460px); gap: 18px; align-items: end;
  margin-bottom: 16px;
}
.recovery-seo-copy h2 { margin: 3px 0 0; color: var(--brand-dark); font-size: 24px; line-height: 1.3; }
.recovery-seo-copy p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.72; }
.recovery-service-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.recovery-service-steps article {
  min-width: 0; padding: 15px; border: 1px solid #e0edf3; border-radius: 8px; background: rgba(255,255,255,.86);
}
.recovery-service-steps strong { color: var(--green); font-size: 18px; }
.recovery-service-steps h3 { margin: 8px 0 7px; color: var(--brand-dark); font-size: 16px; }
.recovery-service-steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.recovery-seo-faq { margin-top: 15px; border-top: 1px solid #e3edf3; }
.recovery-seo-faq details { padding: 13px 0; border-bottom: 1px solid #e8f0f5; }
.recovery-seo-faq summary { cursor: pointer; color: var(--brand-dark); font-weight: 700; }
.recovery-seo-faq p { margin: 9px 0 0; color: var(--muted); line-height: 1.7; }
main { max-width: var(--content-width); margin: 0 auto; }
.home-tools {
  display: grid; grid-template-columns: repeat(6, 1fr); margin: 22px clamp(22px, 4vw, 55px) 0;
  background: white; border: 1px solid var(--line); border-radius: 9px; overflow: hidden;
}
.home-tools a { padding: 21px 22px; border-right: 1px solid var(--line); transition: background .15s; }
.home-tools a:last-child { border-right: 0; }
.home-tools a:hover { background: var(--brand-soft); }
.home-tools strong { display: block; color: var(--brand-dark); font-size: 17px; margin-bottom: 8px; }
.home-tools span { color: var(--muted); font-size: 13px; }
.block { margin: 54px clamp(22px, 4vw, 55px); }
.block-head {
  display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px;
}
.block-head h2, .quality h2 { font-size: 30px; margin: 0; color: var(--brand-dark); }
.block-head > a { color: var(--brand); font-size: 14px; }
.categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.category {
  border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 21px 16px;
  transition: border-color .15s, box-shadow .15s;
}
.category:hover { border-color: #8ebde2; box-shadow: var(--shadow); }
.category strong { display: block; margin-bottom: 9px; font-size: 16px; color: var(--brand-dark); }
.category p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(210px, 1fr)); gap: 14px; }
.product {
  display: flex; flex-direction: column; min-height: 211px; background: white; border: 1px solid var(--line);
  border-radius: 8px; padding: 18px; transition: box-shadow .15s, border-color .15s;
}
.product-visual {
  display: block; width: calc(100% + 36px); height: 126px; object-fit: contain; padding: 10px;
  margin: -18px -18px 14px; border-radius: 8px 8px 0 0; background: #fff;
}
.product:hover { border-color: #9cc7ea; box-shadow: var(--shadow); }
.badge {
  align-self: start; background: var(--green-soft); color: var(--green);
  border-radius: 18px; font-size: 12px; padding: 4px 9px; margin-bottom: 13px;
}
.product h3 { margin: 0 0 5px; font-size: 17px; color: var(--brand-dark); }
.package-chip {
  align-self: start; display: inline-flex; color: var(--brand); background: #edf5fb;
  border: 1px solid #d2e5f4; border-radius: 3px; padding: 3px 8px; font-size: 12px; margin-bottom: 10px;
}
.product .desc { margin: 0 0 12px; color: var(--muted); font-size: 13px; min-height: 34px; line-height: 1.5; }
.product .stock { color: var(--muted); font-size: 12px; margin-top: auto; }
.product .price { margin: 10px 0 0; font-size: 20px; font-weight: bold; color: var(--brand); }
.home-brands {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.home-brands a {
  padding: 17px 15px; background: white; border: 1px solid var(--line); border-radius: 7px;
  transition: border-color .15s, background .15s;
}
.home-brands a:hover { border-color: #9cc7ea; background: #f6fbff; }
.home-brands strong { display: block; color: var(--brand-dark); margin-bottom: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-brands span { color: var(--muted); font-size: 12px; }
.brand-index-page { padding: 35px clamp(20px, 3vw, 46px) 20px; }
.brand-index-hero {
  display: grid; grid-template-columns: minmax(260px, 430px) minmax(320px, 1fr); gap: 34px; align-items: center;
  padding: 36px; background: linear-gradient(105deg, #073f68, #0670b5); color: #fff; border-radius: 10px;
}
.brand-index-hero h1 { margin: 0 0 13px; font-size: 38px; line-height: 1.25; }
.brand-index-hero p { margin: 0; color: #dbeaf5; line-height: 1.8; }
.brand-search { display: flex; height: 58px; background: #fff; padding: 4px; border-radius: 6px; box-shadow: 0 8px 23px rgba(1, 31, 55, .2); }
.brand-search input { border: 0; margin: 0; height: 50px; font-size: 16px; padding-left: 18px; }
.brand-search input:focus { outline: none; }
.brand-search button { min-width: 122px; border-radius: 5px; }
.brand-highlights { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.brand-highlight, .brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 15px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.brand-highlight:hover, .brand-card:hover { border-color: #9cc7ea; box-shadow: var(--shadow); transform: translateY(-1px); }
.brand-highlight strong, .brand-card strong { display: block; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand-count { color: var(--muted); font-size: 12px; }
.brand-logo {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 42px;
  margin-bottom: 11px; border: 1px solid #edf2f6; border-radius: 6px; background: #fbfdff;
}
.brand-logo img { max-width: 94%; max-height: 28px; object-fit: contain; }
.brand-logo-text { color: var(--brand); font-weight: 800; font-size: 18px; background: var(--brand-soft); border-color: #d7e8f6; }
.category-tree-block { margin: 28px 0 34px; }
.category-tree-head a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 0 0 13px; border-bottom: 1px solid var(--line);
}
.category-tree-head h2 { margin: 0; color: var(--brand-dark); font-size: 22px; }
.category-tree-head span { color: var(--muted); font-size: 13px; white-space: nowrap; }
.category-card strong { white-space: normal; line-height: 1.45; min-height: 40px; }
.brand-letter-nav { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.brand-letter-nav a {
  display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px;
  border: 1px solid #cfe0eb; border-radius: 4px; background: #fff; color: var(--brand-dark); font-weight: 700;
}
.brand-letter-nav a:hover { color: var(--brand); background: var(--brand-soft); }
.brand-letter-block { margin: 26px 0; }
.brand-letter-block h2 { margin: 0 0 13px; color: var(--brand-dark); font-size: 22px; }
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; }
.site-map-page { padding: 35px clamp(20px, 3vw, 46px) 28px; }
.site-map-hero {
  display: grid; grid-template-columns: minmax(280px, 520px) minmax(320px, 1fr); gap: 32px; align-items: center;
  padding: 34px; border: 1px solid #cfe2ef; border-radius: 10px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 191, 77, .2), transparent 26%),
    linear-gradient(135deg, #f7fbff 0%, #f5fff9 100%);
}
.site-map-hero h1 { margin: 0 0 12px; color: var(--brand-dark); font-size: 38px; line-height: 1.22; }
.site-map-hero p:not(.eyebrow) { margin: 0; color: #405766; line-height: 1.78; }
.site-map-section { margin-top: 26px; background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 22px; }
.site-map-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.site-map-grid.compact { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.site-map-grid a {
  min-width: 0; display: block; padding: 14px; border: 1px solid #dce9f1; border-radius: 7px; background: #fbfdff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.site-map-grid a:hover { border-color: #9cc7ea; box-shadow: var(--shadow); transform: translateY(-1px); }
.site-map-grid strong { display: block; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-map-grid span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.empty {
  grid-column: 1 / -1; padding: 42px; text-align: center; background: white;
  border: 1px dashed #cfdce4; border-radius: 8px; color: var(--muted);
}
.business {
  margin: 58px clamp(22px, 4vw, 55px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
}
.business-card { min-height: 171px; padding: 28px; border-radius: 9px; color: white; }
.business-card p { font-size: 12px; letter-spacing: .15em; opacity: .75; margin: 0 0 13px; }
.business-card h2 { margin: 0 0 17px; font-size: 27px; }
.business-card span { color: rgba(255,255,255,.82); font-size: 14px; }
.business-card.blue { background: linear-gradient(115deg, #1266b1, #178bb7); }
.business-card.green { background: linear-gradient(115deg, #077c62, #11a27b); }
.business-card.navy { background: linear-gradient(115deg, #253d64, #244d78); }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ecosystem-card {
  min-height: 190px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 9px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.ecosystem-card:hover { border-color: #99c8e9; box-shadow: var(--shadow); transform: translateY(-2px); }
.ecosystem-card p { margin: 0 0 14px; font-size: 11px; letter-spacing: .14em; color: var(--brand); font-weight: bold; }
.ecosystem-card h3 { margin: 0 0 14px; color: var(--brand-dark); font-size: 22px; }
.ecosystem-card span { color: var(--muted); line-height: 1.75; font-size: 13px; }
.ecosystem-card.domestic { background: #eef8f5; border-color: #d3eee5; }
.ecosystem-card.domestic p { color: var(--green); }
.ecosystem-card.factory { background: #063f69; border-color: #063f69; }
.ecosystem-card.factory p { color: #71ddd2; }
.ecosystem-card.factory h3 { color: #fff; }
.ecosystem-card.factory span { color: #d5e5ef; }
.quality {
  background: white; border: 1px solid var(--line); padding: 38px; border-radius: 10px;
  display: grid; grid-template-columns: .9fr 1.4fr; gap: 45px; align-items: center;
}
.muted { color: var(--muted); line-height: 1.75; }
.quality-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.quality-items article { border-left: 2px solid #d9eaf7; padding-left: 18px; }
.quality-items strong { font-size: 28px; color: #b8d8ee; }
.quality-items h3 { margin: 8px 0; color: var(--brand-dark); }
.quality-items p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer {
  margin-top: 65px; background: #062f4c; color: #d5e3ed; padding: 40px max(calc((100vw - 1640px) / 2), 28px) 25px;
  display: grid; grid-template-columns: 255px 1fr; align-items: start; gap: 36px;
}
.footer strong { font-size: 21px; color: #fff; }
.footer p { color: #adbfcc; margin: 8px 0 0; font-size: 13px; }
.footer-groups { display: grid; grid-template-columns: repeat(6, minmax(94px, 1fr)); gap: 18px; font-size: 13px; }
.footer-groups h3 { margin: 0 0 14px; color: #fff; font-size: 15px; font-weight: normal; }
.footer-groups a { display: block; color: #adbfcc; line-height: 1.8; }
.footer-groups a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; width: 100%; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.catalog-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 22px; padding: 35px clamp(20px, 3vw, 46px); }
.seo-listing.catalog-layout {
  display: block; max-width: var(--content-width); margin: 0 auto; padding: 35px clamp(20px, 3vw, 46px);
}
.catalog-search-banner {
  max-width: var(--content-width); margin: 0 auto; padding: 35px clamp(20px, 3vw, 46px) 32px;
  display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 35px;
  background: linear-gradient(105deg, #073f68, #0670b5); color: white;
}
.catalog-search-banner h1 { font-size: 36px; margin: 0 0 7px; }
.catalog-search-banner p { margin: 0; color: #dbeaf5; font-size: 13px; }
.catalog-search {
  display: flex; height: 56px; max-width: 850px; background: #fff; padding: 4px; border-radius: 6px;
  box-shadow: 0 8px 23px rgba(1, 31, 55, .2);
}
.catalog-search input { border: 0; margin: 0; height: 48px; font-size: 16px; padding-left: 18px; }
.catalog-search input:focus { outline: none; }
.catalog-search button { min-width: 132px; font-size: 16px; border-radius: 5px; }
.spot-layout { align-items: start; grid-template-columns: 1fr; max-width: 1400px; }
.spot-layout > .catalog-filters { display: none; }
.catalog-content { min-width: 0; }
.filters {
  background: white; border: 1px solid var(--line); padding: 21px; border-radius: 8px; align-self: start;
  position: sticky; top: 98px;
}
.filters h2 { font-size: 19px; margin: 0 0 21px; color: var(--brand-dark); }
.filters label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 17px; }
.filters select { margin: 7px 0 0; }
.catalog-filters { padding: 0; overflow: hidden; }
.catalog-filters h2 { margin: 0; padding: 18px 18px 13px; border-bottom: 1px solid var(--line); }
.category-filter { max-height: 430px; overflow-y: auto; padding: 8px 0; }
.category-filter button {
  width: 100%; background: transparent; color: var(--ink); border-radius: 0; justify-content: space-between;
  font-size: 13px; padding: 9px 18px; text-align: left;
}
.category-filter button:hover, .category-filter button.active { color: var(--brand); background: var(--brand-soft); }
.category-filter small { color: var(--muted); font-size: 11px; }
.category-tree { border-bottom: 1px solid var(--line); padding: 4px 0; }
.category-tree:last-child { border-bottom: 0; }
.category-root { font-weight: 700; color: var(--brand-dark); }
.category-child { padding-left: 30px !important; font-size: 12px !important; color: var(--muted); }
.category-children { max-height: 260px; overflow: auto; }
.filter-title { margin-top: 6px !important; border-top: 1px solid var(--line); }
.catalog-filters select { width: calc(100% - 36px); margin: 12px 18px 9px; }
.popular-brands { padding: 0 18px 15px; display: flex; flex-wrap: wrap; gap: 7px; }
.popular-brands button {
  background: #f4f7fa; color: var(--muted); font-size: 12px; padding: 6px 9px; border-radius: 4px;
}
.popular-brands button:hover, .popular-brands button.active { background: var(--brand-soft); color: var(--brand); }
.catalog-filters > .secondary { width: calc(100% - 36px); margin: 0 18px 18px; }
.catalog-filters .support-box { margin: 0; border-radius: 0; }
.support-box { background: #f0f7fd; margin-top: 27px; padding: 17px; border-radius: 7px; }
.support-box p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.catalog-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 23px; }
.catalog-title h1, .catalog-title h2 { margin: 0; color: var(--brand-dark); }
.catalog-intent-panel {
  margin: -9px 0 14px; padding: 15px 16px; border: 1px solid #cfe2ef; border-radius: 8px;
  background: linear-gradient(135deg, #f8fcff, #fff); box-shadow: 0 8px 22px rgba(6, 49, 78, .05);
}
.catalog-intent-main {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.catalog-intent-main h3 { margin: 3px 0 5px; color: var(--brand-dark); font-size: 20px; }
.catalog-intent-main p { margin: 0; color: var(--muted); line-height: 1.6; }
.catalog-intent-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.catalog-intent-actions .primary, .catalog-intent-actions .secondary {
  padding: 8px 12px; font-size: 12px; border-radius: 5px; white-space: nowrap;
}
.catalog-intent-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.catalog-intent-chips span {
  display: inline-flex; align-items: center; min-height: 28px; padding: 5px 9px;
  border: 1px solid #d6e6f0; border-radius: 999px; background: #fff; color: var(--brand-dark); font-size: 12px;
}
.catalog-intent-note {
  margin-top: 11px; padding: 9px 11px; border-radius: 6px; background: #f3f9fe; color: #3d6077; font-size: 13px; line-height: 1.6;
}
.catalog-intent-note.warn { background: #fff8e9; color: #805800; }
.saved-filter-hub { margin: -4px 0 16px; }
.saved-filter-hub:empty { display: none; }
.saved-filter-hub {
  padding: 15px; border: 1px solid #d3e8ef; border-radius: 8px;
  background:
    radial-gradient(circle at 4% 12%, rgba(0, 102, 179, .12), transparent 28%),
    radial-gradient(circle at 96% 0%, rgba(0, 166, 118, .14), transparent 24%),
    linear-gradient(135deg, #fbfdff, #f7fcfa);
  box-shadow: 0 10px 26px rgba(5, 39, 65, .05);
}
.saved-filter-hub-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 12px; }
.saved-filter-hub-head h3 { margin: 3px 0 6px; color: var(--brand-dark); font-size: 18px; }
.saved-filter-hub-head p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.62; font-size: 13px; }
.saved-filter-hub-stats { display: flex; gap: 8px; flex-shrink: 0; }
.saved-filter-hub-stats span {
  min-width: 72px; padding: 8px 10px; border: 1px solid #dcebf1; border-radius: 7px; background: rgba(255,255,255,.84);
  color: var(--muted); font-size: 11px; text-align: center;
}
.saved-filter-hub-stats strong { display: block; color: var(--green); font-size: 20px; line-height: 1.1; }
.saved-filter-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.saved-filter-card {
  min-width: 0; padding: 12px; border: 1px solid #dce9f1; border-radius: 7px; background: rgba(255,255,255,.9);
}
.saved-filter-card-top { display: flex; justify-content: space-between; gap: 10px; align-items: start; margin-bottom: 9px; }
.saved-filter-card-top strong {
  display: block; color: var(--brand-dark); font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.saved-filter-card-top span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.saved-filter-card-top button {
  flex: 0 0 auto; width: 24px; height: 24px; border: 1px solid #d8e7ef; border-radius: 50%; background: #fff;
  color: var(--muted); cursor: pointer;
}
.saved-filter-labels { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 9px; }
.saved-filter-labels span {
  min-width: 0; max-width: 100%; padding: 5px 8px; border: 1px solid #d6e7ef; border-radius: 999px; background: #f8fbfd;
  color: #3d6075; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.saved-filter-card .saved-filter-progress { margin: 8px 0 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.saved-filter-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.saved-filter-card-actions .primary, .saved-filter-card-actions .secondary {
  min-height: 34px; padding: 8px 9px; font-size: 12px; text-align: center; justify-content: center;
}
.search-refinement-coach { margin: -8px 0 16px; }
.search-refinement-coach:empty { display: none; }
.search-refinement-coach {
  padding: 15px; border: 1px solid #d6e8f2; border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 191, 77, .22), transparent 28%),
    linear-gradient(135deg, #fbfeff, #f5fbff);
  box-shadow: 0 10px 26px rgba(5, 39, 65, .05);
}
.search-refinement-head { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.search-refinement-head h3 { margin: 3px 0 6px; color: var(--brand-dark); font-size: 18px; }
.search-refinement-head p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 13px; }
.search-refinement-head .secondary { padding: 8px 12px; white-space: nowrap; font-size: 12px; }
.search-refinement-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.search-refinement-grid section { min-width: 0; padding: 12px; border: 1px solid #e0edf4; border-radius: 7px; background: #fff; }
.search-refinement-grid strong { display: block; margin-bottom: 9px; color: var(--brand-dark); }
.search-refinement-grid div { display: grid; gap: 7px; }
.search-refinement-grid a {
  min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 9px; border: 1px solid #e2edf4; border-radius: 5px; background: #f9fcfe;
}
.search-refinement-grid a:hover { border-color: #9cc7ea; background: var(--brand-soft); }
.search-refinement-grid span { min-width: 0; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-refinement-grid small { flex-shrink: 0; color: var(--muted); font-size: 12px; }
.exact-match-panel { margin: 0 0 14px; }
.exact-match-panel:empty { display: none; }
.exact-match-card {
  display: grid; grid-template-columns: minmax(320px, 1fr) minmax(260px, 420px) auto; gap: 14px; align-items: center;
  padding: 15px; border: 1px solid #b9d9ec; border-radius: 8px;
  background:
    radial-gradient(circle at 94% 8%, rgba(245, 158, 11, .16), transparent 24%),
    linear-gradient(135deg, #f7fbff 0%, #fff 58%, #f8fffb 100%);
  box-shadow: 0 10px 28px rgba(6, 49, 78, .07);
}
.exact-match-main { min-width: 0; display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 13px; align-items: center; }
.exact-match-main img { width: 72px; height: 72px; object-fit: contain; border: 1px solid #ddeaf2; border-radius: 5px; background: #fff; }
.exact-match-main h3 { margin: 3px 0 5px; color: var(--brand-dark); font-size: 22px; overflow-wrap: anywhere; }
.exact-match-main p:not(.eyebrow) { margin: 0; color: #405766; line-height: 1.55; font-size: 13px; }
.exact-match-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.exact-match-tags span {
  display: inline-flex; min-height: 26px; align-items: center; padding: 4px 8px;
  border: 1px solid #d8e8f1; border-radius: 999px; background: #fff; color: #446174; font-size: 12px;
}
.exact-match-tags span:nth-child(2) { color: var(--green); background: #f4fbf7; border-color: #cceadb; font-weight: 700; }
.exact-match-checks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.exact-match-checks article { min-width: 0; padding: 10px; border: 1px solid #dce9f1; border-radius: 7px; background: rgba(255,255,255,.82); }
.exact-match-checks strong { display: block; margin-bottom: 5px; color: var(--brand-dark); font-size: 13px; }
.exact-match-checks span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.exact-match-actions { display: grid; grid-template-columns: repeat(2, minmax(82px, 1fr)); gap: 7px; min-width: 190px; }
.exact-match-actions .primary, .exact-match-actions .secondary {
  min-height: 34px; padding: 8px 9px; border-radius: 5px; font-size: 12px; text-align: center; justify-content: center;
}
.saved-filter-snapshot {
  display: grid; grid-template-columns: minmax(180px, 1fr) minmax(260px, 520px) auto; gap: 12px; align-items: center;
  margin-top: 12px; padding: 12px; border: 1px solid #cfe4df; border-radius: 7px; background: #f8fffb;
}
.saved-filter-snapshot strong { display: block; color: var(--brand-dark); font-size: 14px; }
.saved-filter-snapshot span { color: var(--muted); font-size: 12px; }
.saved-filter-snapshot a { padding: 8px 10px; font-size: 12px; white-space: nowrap; }
.saved-filter-progress {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; min-width: 0;
}
.saved-filter-progress span {
  min-width: 0; display: flex; align-items: center; gap: 5px; padding: 6px 7px;
  border: 1px solid #dbe8f0; border-radius: 999px; background: #fff; color: var(--muted); font-size: 11px; white-space: nowrap;
}
.saved-filter-progress i {
  display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; flex: 0 0 auto;
  border-radius: 50%; background: #edf4fa; color: #627989; font-style: normal; font-size: 10px; font-weight: 700;
}
.saved-filter-progress .done { color: var(--green); border-color: #ccebdd; background: #f6fcf8; }
.saved-filter-progress .done i { color: #fff; background: var(--green); }
.saved-filter-progress.mini { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; margin-top: 1px; }
.saved-filter-progress.mini span { padding: 4px 6px; font-size: 10px; }
.saved-filter-progress.mini i { width: 14px; height: 14px; font-size: 9px; }
.catalog-batch-panel {
  margin: 0 0 14px; border: 1px solid #d4e5ee; border-radius: 8px; background: #fbfdff;
  box-shadow: 0 8px 20px rgba(6, 49, 78, .04);
}
.catalog-batch-panel:empty { display: none; }
.catalog-batch-main {
  display: grid; grid-template-columns: minmax(230px, 1fr) minmax(280px, 420px) auto; gap: 13px; align-items: center;
  padding: 14px;
}
.catalog-batch-main h3 { margin: 3px 0 5px; color: var(--brand-dark); font-size: 18px; }
.catalog-batch-main p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.58; font-size: 13px; }
.catalog-batch-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.catalog-batch-metrics span {
  min-width: 0; padding: 9px 8px; border: 1px solid #dceaf2; border-radius: 7px; background: #fff; color: var(--muted); font-size: 11px;
}
.catalog-batch-metrics strong { display: block; color: var(--green); font-size: 19px; margin-bottom: 2px; }
.catalog-batch-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.catalog-batch-actions .primary, .catalog-batch-actions .secondary { padding: 8px 11px; white-space: nowrap; font-size: 12px; }
.catalog-batch-strip {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 14px; border-top: 1px solid #e3edf3; background: #f7fbfe;
}
.catalog-batch-strip span {
  min-width: 0; max-width: 100%; padding: 6px 9px; border-radius: 999px; background: #fff; color: #3f6075; font-size: 12px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.buyer-trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px;
  margin: -4px 0 16px; padding: 12px; border: 1px solid #d5e6ef; border-radius: 8px;
  background:
    radial-gradient(circle at 5% 12%, rgba(0, 166, 118, .12), transparent 24%),
    radial-gradient(circle at 96% 6%, rgba(245, 158, 11, .14), transparent 20%),
    linear-gradient(135deg, #fff, #f8fcff);
  box-shadow: 0 9px 22px rgba(6, 49, 78, .05);
}
.buyer-trust-strip article {
  position: relative; min-height: 88px; padding: 14px 14px 14px 40px;
  border: 1px solid #e2edf4; border-radius: 7px; background: rgba(255, 255, 255, .86);
}
.buyer-trust-strip article::before {
  content: ""; position: absolute; left: 14px; top: 18px; width: 12px; height: 12px; border-radius: 3px;
  background: var(--green); box-shadow: 0 0 0 5px rgba(0, 166, 118, .12);
}
.buyer-trust-strip article:nth-child(2)::before { background: var(--brand); box-shadow: 0 0 0 5px rgba(0, 102, 179, .12); }
.buyer-trust-strip article:nth-child(3)::before { background: #f59e0b; box-shadow: 0 0 0 5px rgba(245, 158, 11, .16); }
.buyer-trust-strip article:nth-child(4)::before { background: #31a3a5; box-shadow: 0 0 0 5px rgba(49, 163, 165, .14); }
.buyer-trust-strip strong { display: block; margin-bottom: 7px; color: var(--brand-dark); font-size: 14px; }
.buyer-trust-strip span { color: var(--muted); font-size: 12px; line-height: 1.58; }
.detail-trust-strip { margin: 16px 0 2px; }
.detail-action-card {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin: 16px 0 4px; padding: 15px;
  border: 1px solid #cfe4df; border-radius: 8px;
  background:
    radial-gradient(circle at 95% 8%, rgba(245, 158, 11, .14), transparent 28%),
    linear-gradient(135deg, #f8fffb 0%, #f7fbff 100%);
}
.detail-action-card h2 { margin: 3px 0 7px; color: var(--brand-dark); font-size: 18px; }
.detail-action-card p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.detail-action-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.detail-action-metrics span {
  min-width: 0; padding: 10px; border: 1px solid #dce9ef; border-radius: 7px; background: rgba(255,255,255,.82);
  color: var(--muted); font-size: 11px;
}
.detail-action-metrics strong {
  display: block; margin-bottom: 3px; color: var(--brand-dark); font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.detail-action-buttons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.detail-action-buttons .primary, .detail-action-buttons .secondary {
  min-height: 38px; padding: 9px 10px; font-size: 12px; text-align: center; justify-content: center;
}
.detail-action-buttons .is-saved { background: var(--green); border-color: var(--green); color: #fff; }
.procurement-momentum-panel {
  margin: 15px 0 4px; padding: 15px; border: 1px solid #cfe5dc; border-radius: 8px;
  background:
    radial-gradient(circle at 8% 12%, rgba(69, 204, 160, .17), transparent 25%),
    radial-gradient(circle at 93% 10%, rgba(255, 191, 77, .18), transparent 24%),
    linear-gradient(135deg, #f7fffb 0%, #f7fbff 100%);
}
.procurement-momentum-head {
  display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 12px;
}
.procurement-momentum-head h2 { margin: 3px 0 0; color: var(--brand-dark); font-size: 18px; }
.procurement-momentum-head > span { color: var(--muted); font-size: 12px; text-align: right; line-height: 1.45; }
.procurement-momentum-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.procurement-momentum-steps article {
  position: relative; min-width: 0; padding: 12px 10px 12px 13px; border: 1px solid #dbe9ef; border-radius: 7px;
  background: rgba(255,255,255,.86); overflow: hidden;
}
.procurement-momentum-steps article::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #c9d9e3;
}
.procurement-momentum-steps article.done::before { background: var(--green); }
.procurement-momentum-steps strong { display: block; color: var(--green); font-size: 17px; line-height: 1; }
.procurement-momentum-steps span { display: block; margin-top: 7px; color: var(--brand-dark); font-weight: 700; font-size: 13px; }
.procurement-momentum-steps small {
  display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.45;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.procurement-momentum-actions {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 12px;
}
.procurement-momentum-actions .primary, .procurement-momentum-actions .secondary {
  min-height: 38px; padding: 8px 10px; border-radius: 5px; font-size: 12px; text-align: center;
}
.catalog-seo-panel {
  margin-top: 24px; padding: 22px; border: 1px solid #d5e5ee; border-radius: 8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(69, 204, 160, .14), transparent 24%),
    linear-gradient(135deg, #fff, #f8fcff);
  box-shadow: 0 10px 26px rgba(6, 49, 78, .05);
}
.catalog-seo-panel:empty { display: none; }
.catalog-seo-copy {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 360px); gap: 18px; align-items: center;
}
.catalog-seo-copy h2 { margin: 3px 0 9px; color: var(--brand-dark); font-size: 23px; }
.catalog-seo-copy p { margin: 0; color: var(--muted); line-height: 1.75; }
.catalog-seo-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.catalog-seo-facts span {
  min-width: 0; padding: 12px; border: 1px solid #dbe8f0; border-radius: 7px; background: #fff; color: var(--muted); font-size: 12px;
}
.catalog-seo-facts strong { display: block; margin-bottom: 4px; color: var(--green); font-size: 22px; }
.catalog-seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.catalog-seo-tags a {
  display: inline-flex; min-height: 30px; align-items: center; padding: 6px 10px;
  border: 1px solid #d6e6f0; border-radius: 999px; background: #fff; color: var(--brand-dark); font-size: 12px;
}
.catalog-seo-tags a:hover { border-color: #9cc7ea; color: var(--brand); }
.catalog-seo-faq { margin-top: 16px; border-top: 1px solid #e3edf3; }
.catalog-seo-faq details { padding: 13px 0; border-bottom: 1px solid #e8f0f5; }
.catalog-seo-faq summary { cursor: pointer; color: var(--brand-dark); font-weight: 700; }
.catalog-seo-faq p { margin: 9px 0 0; color: var(--muted); line-height: 1.7; }
.seo-title-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.taxonomy-guide {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 18px 0 20px;
}
.taxonomy-guide article {
  background: #fff; border: 1px solid #d9e6ef; border-radius: 8px; padding: 16px; min-height: 126px;
}
.taxonomy-guide strong { color: var(--brand); font-size: 13px; letter-spacing: .02em; }
.taxonomy-guide h2 { margin: 7px 0 8px; color: var(--brand-dark); font-size: 18px; }
.taxonomy-guide p { margin: 0; color: var(--muted); line-height: 1.68; font-size: 13px; }
.taxonomy-faq.block { margin: 28px 0 0; }
.stock-topic-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: stretch;
  margin-bottom: 18px; padding: 24px; border: 1px solid #cfe0ea; border-radius: 8px;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 58%, #f2fbf6 100%);
}
.stock-topic-copy h1 { margin: 5px 0 10px; color: var(--brand-dark); font-size: 30px; line-height: 1.22; }
.stock-topic-copy p:not(.eyebrow) { max-width: 820px; margin: 0; color: #3d5261; line-height: 1.72; }
.stock-topic-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 17px; }
.stock-topic-actions .primary, .stock-topic-actions .secondary { padding: 10px 13px; border-radius: 5px; white-space: nowrap; }
.stock-topic-stats {
  display: grid; gap: 10px; align-content: center;
}
.stock-topic-stats span {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 15px 16px; border: 1px solid #d7e6ef; border-radius: 8px; background: rgba(255, 255, 255, .82);
}
.stock-topic-stats strong { color: var(--green); font-size: 24px; }
.stock-topic-stats small { color: var(--muted); }
.stock-topic-guide {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px;
}
.stock-topic-guide > div {
  border: 1px solid #d7e6ef; border-radius: 8px; background: #fff; padding: 17px;
}
.stock-topic-guide h2 { margin: 5px 0 13px; color: var(--brand-dark); font-size: 19px; }
.topic-mini-grid { display: grid; gap: 9px; }
.topic-mini-grid article {
  display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 10px; align-items: center;
  padding: 9px 10px; border: 1px solid #e2edf3; border-radius: 7px; background: #f9fcfe;
}
.topic-mini-grid strong { color: var(--green); font-size: 13px; }
.topic-mini-grid span { color: #314957; line-height: 1.55; font-size: 13px; }
.stock-topic-filter-strip {
  display: grid; gap: 10px; margin-bottom: 14px; padding: 14px;
  border: 1px solid #d7e6ef; border-radius: 8px; background: #fbfdff;
}
.stock-topic-filter-strip > div {
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 10px; align-items: start;
}
.stock-topic-filter-strip strong { color: var(--brand-dark); padding-top: 7px; font-size: 13px; }
.stock-topic-filter-strip > div > div { display: flex; flex-wrap: wrap; gap: 8px; }
.stock-topic-filter-strip a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 32px;
  padding: 6px 10px; border: 1px solid #d6e7f0; border-radius: 5px; background: #fff; color: var(--brand-dark);
  font-size: 13px;
}
.stock-topic-filter-strip a:hover { border-color: #97bfd8; color: var(--brand); }
.stock-topic-filter-strip small { color: var(--muted); }
.topic-related-links a { background: #f4f9fd; }
.stock-topic-nudge {
  display: flex; gap: 10px; align-items: start; margin-bottom: 14px; padding: 11px 13px;
  border-left: 3px solid var(--green); background: #f6fbf8; color: #315546; line-height: 1.65; font-size: 13px;
}
.stock-topic-nudge strong { color: var(--green); white-space: nowrap; }
.facet-panel {
  background: white; border: 1px solid var(--line); border-radius: 7px; margin-bottom: 14px; overflow: hidden;
}
.facet-row {
  min-height: 53px; display: grid; grid-template-columns: 116px minmax(350px, 1fr) 192px; align-items: center;
  border-bottom: 1px solid #edf2f5; gap: 13px; padding: 9px 16px 9px 0;
}
.facet-row:last-child { border-bottom: 0; }
.facet-row > strong { color: var(--muted); font-size: 13px; padding-left: 18px; }
.enhanced-facet-row { grid-template-columns: 116px minmax(350px, 1fr) 192px 112px; align-items: start; }
.category-facet-row { grid-template-columns: 116px minmax(350px, 1fr) 192px; }
.facet-body { min-width: 0; }
.category-facet-row { align-items: start; min-height: 144px; padding-top: 15px; }
.category-facet-body { min-width: 0; }
.category-letters { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; margin-bottom: 10px; }
.category-letters button {
  background: transparent; color: var(--ink); border: 0; border-radius: 4px; padding: 4px 8px; font-size: 13px;
}
.category-letters button:hover, .category-letters button.active { color: var(--brand); background: var(--brand-soft); }
.category-current { min-height: 30px; display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.category-current span { color: var(--muted); font-size: 13px; }
.category-current button {
  border: 1px solid transparent; background: #fff; color: var(--brand); padding: 6px 10px; border-radius: 4px;
}
.category-current button:hover, .category-current button.active { background: var(--brand-soft); border-color: #cbe1f3; }
.category-option-grid {
  background: #f7f8fa; border-radius: 4px; padding: 10px 14px;
  display: grid; grid-template-columns: repeat(6, minmax(126px, 1fr)); gap: 10px 24px;
  max-height: 132px; overflow: hidden;
}
.category-facet-main.expanded .category-option-grid { max-height: 312px; overflow: auto; }
.category-option-grid { transition: max-height .2s ease; }
.category-option-grid button {
  text-align: left; justify-content: start; min-width: 0; background: transparent; border: 0; color: var(--ink);
  padding: 2px 0; font-size: 13px; line-height: 1.35; gap: 5px;
}
.category-option-grid button span {
  display: inline-block; max-width: 138px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: bottom;
}
.category-option-grid button small { color: var(--muted); margin-left: 4px; font-size: 11px; }
.category-option-grid button:hover, .category-option-grid button.active { color: var(--brand); }
.facet-empty { color: var(--muted); font-size: 13px; grid-column: 1 / -1; }
.facet-side-actions { display: flex; align-items: center; justify-content: end; gap: 8px; padding-top: 1px; }
.link-button {
  border: 0; background: transparent; color: var(--brand); padding: 6px 4px; font-size: 13px;
}
.mini-outline {
  background: #fff; color: var(--brand); border: 1px solid #cbe1f3; border-radius: 4px; padding: 6px 10px; font-size: 12px;
}
.facet-options { display: flex; flex-wrap: wrap; gap: 7px; }
.facet-options.expanded {
  display: grid; grid-template-columns: repeat(6, minmax(120px, 1fr)); gap: 10px 24px;
  background: #f7f8fa; border-radius: 4px; padding: 10px 14px; max-height: 142px; overflow: auto;
}
.facet-options button {
  padding: 7px 10px; background: white; border-radius: 4px; border: 1px solid transparent;
  color: var(--ink); font-size: 13px; min-width: 0; gap: 5px;
}
.facet-options.expanded button {
  justify-content: start; text-align: left; background: transparent; border-color: transparent; padding: 2px 0;
}
.facet-options button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.facet-options button small { color: var(--muted); margin-left: 4px; }
.facet-options button:hover, .facet-options button.active {
  background: var(--brand-soft); border-color: #cbe1f3; color: var(--brand);
}
.facet-options button.active small { color: var(--brand); }
.facet-select { margin: 0; height: 38px; font-size: 13px; padding: 7px 9px; }
.facet-search-line { display: none; grid-column: 1 / -1; margin-bottom: 2px; }
.facet-body.expanded .facet-search-line, .facet-options.expanded .facet-search-line, .facet-expanded-tools { display: block; }
.facet-search-line input, .facet-expanded-tools input {
  width: 170px; height: 32px; margin: 0; border-radius: 5px; font-size: 12px; background: #fff;
}
.facet-expanded-tools { margin-bottom: 8px; }
.facet-batch-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 8px; padding-top: 8px; border-top: 1px dashed #dde7ee; }
.facet-batch-actions button { min-width: 66px; padding: 7px 14px !important; justify-content: center !important; border-radius: 4px !important; }
.multi-mode input[type="checkbox"] { width: 14px; height: 14px; margin: 0 3px 0 0; accent-color: var(--brand); }
.parameter-search { display: flex; max-width: 530px; gap: 8px; }
.parameter-search input { margin: 0; height: 40px; }
.parameter-search button { padding: 8px 18px; white-space: nowrap; }
.contact-profile-note {
  margin: 0 0 10px; padding: 9px 11px; border: 1px solid #cfe4f3; border-radius: 6px;
  background: #f6fbff; color: #45687e; font-size: 12px; line-height: 1.45;
}
.facet-hint { padding: 14px 18px 17px 116px; color: var(--muted); font-size: 13px; border-top: 1px dashed #e4ecf1; }
.specification-row { background: #fcfdfe; }
.catalog-toolbar {
  height: 52px; margin-bottom: 13px; display: flex; align-items: center; justify-content: space-between;
  background: #f0f5f9; border: 1px solid var(--line); padding: 0 16px; font-size: 13px;
}
.catalog-toolbar label { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.catalog-toolbar select { margin: 0; width: 128px; height: 36px; padding: 6px 8px; font-size: 13px; }
.guided-empty strong { display: block; color: var(--brand-dark); font-size: 18px; margin-bottom: 8px; }
.guided-empty p { margin: 0 0 16px; color: var(--muted); }
.guided-empty div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.guided-empty a { min-width: 128px; text-align: center; }
.no-result-guide {
  background: #fff; border: 1px solid #d7e7ef; border-radius: 8px; padding: 20px;
  box-shadow: 0 8px 20px rgba(3, 54, 92, .05);
}
.no-result-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; }
.no-result-head h3 { margin: 3px 0 8px; color: var(--brand-dark); font-size: 22px; }
.no-result-head p { margin: 0; color: var(--muted); line-height: 1.7; }
.no-result-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; max-width: 380px; }
.no-result-actions a, .no-result-actions button { padding: 9px 12px; font-size: 12px; white-space: nowrap; }
.no-result-relax {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 16px; padding: 12px; background: #f7fbff; border: 1px solid #deebf3; border-radius: 7px;
}
.no-result-relax strong { color: var(--brand-dark); white-space: nowrap; }
.no-result-relax div { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.no-result-relax a { color: var(--brand); background: #fff; border: 1px solid #d7e7ef; border-radius: 5px; padding: 7px 10px; font-size: 12px; }
.no-result-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.no-result-process article { display: flex; gap: 9px; align-items: center; background: #fbfdff; border: 1px solid var(--line); border-radius: 7px; padding: 12px; }
.no-result-process strong { color: var(--green); font-size: 17px; }
.no-result-process span { color: #3e5261; font-size: 13px; line-height: 1.45; }
.compare-tray {
  display: grid; grid-template-columns: minmax(170px, 220px) 1fr auto; align-items: center; gap: 14px;
  margin: -2px 0 12px; padding: 12px 14px; background: #fff; border: 1px solid #cfe1ee; border-radius: 7px;
  box-shadow: 0 8px 24px rgba(6, 49, 78, .08);
}
.compare-tray-head strong { display: block; color: var(--brand-dark); font-size: 15px; }
.compare-tray-head span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
.compare-items { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.compare-item {
  display: grid; grid-template-columns: 28px minmax(86px, auto) auto 22px; align-items: center; gap: 7px;
  max-width: 260px; padding: 5px 6px; border: 1px solid #dce8f0; border-radius: 5px; background: #f8fbfd;
}
.compare-item img { width: 28px; height: 28px; object-fit: contain; background: white; border-radius: 3px; }
.compare-item a { color: var(--brand-dark); font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compare-item small { color: var(--muted); max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compare-item button {
  width: 22px; height: 22px; padding: 0; border-radius: 50%; border: 0; background: #e7eef4; color: var(--muted);
}
.compare-actions { display: flex; align-items: center; gap: 8px; }
.compare-actions a, .compare-actions button { white-space: nowrap; padding: 8px 11px; font-size: 12px; }
.compare-page { padding: 34px clamp(20px, 4vw, 56px) 56px; }
.compare-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); gap: 24px; align-items: end;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px;
}
.compare-hero h1 { margin: 5px 0 10px; color: var(--brand-dark); font-size: 34px; }
.compare-hero p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.75; }
.compare-add-form { display: flex; height: 48px; }
.compare-add-form input { margin: 0; border-radius: 6px 0 0 6px; border-right: 0; }
.compare-add-form button { border-radius: 0 6px 6px 0; min-width: 92px; }
.compare-workbench { margin-top: 18px; }
.compare-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #f7fbff; border: 1px solid #d7e7ef; border-radius: 8px; padding: 15px 16px; margin-bottom: 14px;
}
.compare-toolbar strong { display: block; color: var(--brand-dark); }
.compare-toolbar span { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.compare-toolbar-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.compare-toolbar-actions a, .compare-toolbar-actions button { padding: 8px 11px; font-size: 12px; }
.compare-decision-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); gap: 16px; align-items: center;
  margin-bottom: 14px; padding: 17px; border: 1px solid #d7e6ef; border-radius: 8px; background:
    radial-gradient(circle at 6% 10%, rgba(0, 166, 118, .1), transparent 26%),
    linear-gradient(135deg, #fff, #f8fcff);
}
.compare-decision-panel h2 { margin: 3px 0 7px; color: var(--brand-dark); font-size: 20px; }
.compare-decision-panel p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.62; font-size: 13px; }
.compare-decision-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.compare-decision-metrics span {
  min-width: 0; padding: 9px 8px; border: 1px solid #dbe9ef; border-radius: 7px; background: rgba(255,255,255,.84);
  color: var(--muted); font-size: 11px; text-align: center;
}
.compare-decision-metrics b { display: block; color: var(--green); font-size: 16px; line-height: 1.15; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compare-decision-warning {
  grid-column: 1 / -1; margin-top: -2px !important; padding: 9px 11px; border: 1px solid #ffe0a3; border-radius: 6px;
  background: #fff9ed; color: #805800 !important;
}
.compare-product-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 12px; margin-bottom: 14px; }
.compare-product-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px;
  min-width: 0; box-shadow: 0 6px 16px rgba(3, 54, 92, .04);
}
.compare-product-card.is-missing { border-color: #ffd99c; background: #fffaf0; }
.compare-product-card button {
  position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; padding: 0; border-radius: 50%;
  background: #f3f7fb; color: var(--muted); line-height: 1;
}
.compare-product-card img { width: 58px; height: 58px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 5px; }
.compare-product-card h2 { margin: 10px 0 5px; color: var(--brand-dark); font-size: 17px; overflow-wrap: anywhere; }
.compare-product-card p { margin: 0 0 12px; color: var(--muted); font-size: 13px; min-height: 18px; }
.compare-product-card a { color: var(--brand); font-size: 13px; font-weight: 700; }
.compare-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.compare-table { width: 100%; min-width: 780px; border-collapse: collapse; table-layout: fixed; }
.compare-table th, .compare-table td {
  padding: 13px 14px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: left; vertical-align: top; line-height: 1.55; word-break: break-word;
}
.compare-table th:first-child { width: 130px; color: #486276; background: #f3f7fa; }
.compare-table thead th { color: var(--brand-dark); background: #eef4f8; }
.compare-table td { color: var(--ink); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.compare-guidance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.compare-guidance article { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 15px; }
.compare-guidance strong { color: var(--brand-dark); }
.compare-guidance p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.compare-empty { background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.stock-list-head, .stock-row {
  display: grid; grid-template-columns: minmax(380px, 1fr) 175px 148px 124px 116px 110px;
  align-items: center; gap: 16px;
}
.stock-list-head {
  background: #f0f5f9; border: 1px solid var(--line); border-radius: 7px 7px 0 0;
  color: var(--muted); font-size: 13px; padding: 14px 20px;
}
.stock-list { display: flex; flex-direction: column; }
.stock-row {
  background: #fff; border: 1px solid var(--line); border-top: 0; min-height: 116px; padding: 17px 20px;
  transition: box-shadow .15s, border-color .15s;
}
.stock-row:last-child { border-radius: 0 0 7px 7px; }
.stock-row:hover { border-color: #9cc7ea; box-shadow: var(--shadow); position: relative; z-index: 1; }
.reference-suggestions { margin-top: 24px; }
.reference-suggestions .block-head { margin-bottom: 8px; }
.reference-row { background: #fbfdff; border-left: 3px solid #8ec6df; }
.reference-row .stock-action { color: var(--brand); }
.recent-search-panel {
  max-width: 1240px; margin: -8px auto 22px; padding: 14px 18px; background: #fff;
  border: 1px solid #d8e5ee; border-radius: 8px; box-shadow: 0 6px 18px rgba(5, 39, 65, .05);
}
.home-page .recent-search-panel { margin-top: 16px; }
.recent-search-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.recent-search-head h2 { margin: 3px 0 0; color: var(--brand-dark); font-size: 18px; }
.recent-current {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 11px; padding: 10px 12px;
  border: 1px solid #cfe4f3; border-radius: 6px; background: #f7fbff;
}
.recent-current span { color: var(--muted); font-size: 13px; }
.recent-current strong { color: var(--brand-dark); font-size: 15px; }
.recent-current .secondary { margin-left: auto; padding: 7px 10px; font-size: 12px; }
.recent-search-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.recent-search-chips a {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid #cfe0eb;
  border-radius: 5px; background: #fbfdff; color: var(--brand-dark); line-height: 1.2;
}
.recent-search-chips strong { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-search-chips span { color: var(--muted); font-size: 12px; }
.stock-name { min-width: 0; display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: center; }
.stock-image { width: 70px; height: 70px; object-fit: contain; background: white; border: 1px solid #eef2f5; border-radius: 4px; }
.stock-main { min-width: 0; }
.stock-name .badge { display: inline-block; margin: 0 9px 7px 0; background: #edf4fa; color: var(--brand); }
.stock-name .badge.ready { background: var(--green-soft); color: var(--green); }
.stock-model-link { display: inline-block; max-width: 100%; }
.stock-name h3 { display: inline; font-size: 18px; color: var(--brand-dark); margin: 0; }
.stock-name p { margin: 4px 0; font-size: 14px; color: var(--ink); }
.stock-name small { color: var(--muted); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stock-meta-strip { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.stock-meta-strip span {
  max-width: 100%; padding: 3px 7px; border: 1px solid #d9e8f1; border-radius: 999px;
  background: #f7fbfe; color: #45687e; font-size: 11px; line-height: 1.3;
}
.stock-meta-strip span:first-child { color: var(--green); background: #f2fbf7; border-color: #cbeadd; }
.stock-field label { color: var(--muted); font-size: 12px; display: none; }
.stock-field strong { display: block; font-size: 14px; font-weight: normal; word-break: break-word; }
.stock-field.qty strong { color: var(--green); font-weight: bold; font-size: 16px; }
.stock-field.quote strong { color: var(--brand); font-weight: bold; }
.stock-action-group { display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
.stock-action {
  display: inline-flex; align-items: center; color: var(--brand); border: 1px solid #bddbf1; background: var(--brand-soft);
  padding: 8px 9px; border-radius: 4px; font-size: 13px; justify-content: center; line-height: 1.2; cursor: pointer;
}
.stock-action.primary-action { color: white; background: var(--brand); border-color: var(--brand); }
.stock-action.mini-action { font-size: 12px; background: #fff; }
.stock-action.pdf-action, .exact-match-actions .pdf-action {
  color: #8a5a00; background: #fff8e7; border-color: #ffd27a; font-weight: 700;
}
.stock-action.mini-action.is-compared { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); }
.stock-action.basket-action {
  color: var(--green); background: var(--green-soft); border-color: #a8d9c6; font-size: 12px; font-weight: 700;
}
.stock-action.basket-action.is-saved { color: #fff; background: var(--green); border-color: var(--green); }
.stock-action:hover { border-color: var(--brand); }
.site-toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 70; max-width: min(360px, calc(100vw - 40px));
  background: var(--brand-dark); color: white; padding: 12px 15px; border-radius: 6px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .16s, transform .16s;
}
.site-toast.bad { background: var(--danger); }
.site-toast.show { opacity: 1; transform: translateY(0); }
.has-sourcing-dock { padding-bottom: 132px; }
.member-body.has-sourcing-dock { padding-bottom: 0; }
.member-body .sourcing-dock { display: none; }
.bom-body.has-sourcing-dock { padding-bottom: 0; }
.bom-body .sourcing-dock { display: none; }
.sourcing-dock {
  position: fixed; left: 50%; bottom: 18px; z-index: 64; transform: translateX(-50%);
  width: min(1180px, calc(100vw - 34px)); display: grid; grid-template-columns: 180px minmax(0, 1fr) auto; gap: 13px; align-items: center;
  padding: 12px 14px; border: 1px solid #bdd8ea; border-radius: 9px; background: rgba(255,255,255,.97);
  box-shadow: 0 18px 46px rgba(5, 39, 65, .18); backdrop-filter: blur(8px);
}
.sourcing-dock-head .eyebrow { margin-bottom: 3px; font-size: 10px; }
.sourcing-dock-head strong { display: block; color: var(--brand-dark); font-size: 15px; }
.sourcing-dock-head span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
.sourcing-dock-body { min-width: 0; }
.sourcing-dock-metrics { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 7px; }
.sourcing-dock-metrics span {
  display: inline-flex; align-items: baseline; gap: 4px; min-height: 24px; padding: 4px 8px;
  border: 1px solid #d9e8f1; border-radius: 999px; background: #f7fbfe; color: var(--muted); font-size: 11px;
}
.sourcing-dock-metrics strong { color: var(--brand-dark); font-size: 15px; }
.sourcing-dock-items { display: flex; gap: 8px; min-width: 0; overflow-x: auto; padding-bottom: 1px; }
.sourcing-dock-item {
  min-width: 150px; max-width: 210px; display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 7px; align-items: center;
  padding: 6px 8px; border: 1px solid #dbe8f0; border-radius: 6px; background: #f8fbfd;
}
.sourcing-dock-item img { width: 28px; height: 28px; object-fit: contain; background: #fff; border-radius: 3px; }
.sourcing-dock-item span { color: var(--brand-dark); font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sourcing-dock-item small { color: var(--green); font-size: 11px; }
.sourcing-dock-more {
  display: inline-flex; align-items: center; min-height: 42px; padding: 6px 10px; border: 1px dashed #b9d4e7;
  border-radius: 6px; background: #fff; color: #45687e; font-size: 12px; white-space: nowrap;
}
.sourcing-dock-hint { margin: 7px 0 0; color: #45687e; font-size: 12px; line-height: 1.45; }
.sourcing-dock-actions { display: flex; gap: 8px; align-items: center; }
.sourcing-dock-actions a, .sourcing-dock-actions button { white-space: nowrap; padding: 8px 12px; font-size: 12px; }
.pagination { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.pagination button.active { background: var(--brand-dark); }
.detail-page { padding: 35px clamp(20px, 3vw, 46px); }
.detail-page.detail-with-sticky { padding-bottom: 116px; }
.detail-breadcrumb { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.detail-breadcrumb a { color: var(--brand); }
.detail-search { display: flex; min-width: 300px; flex: 1; max-width: 540px; height: 46px; }
.detail-search input { margin: 0; border-radius: 5px 0 0 5px; border-right: 0; }
.detail-search button { border-radius: 0 5px 5px 0; }
.detail {
  display: grid; grid-template-columns: minmax(300px, 405px) minmax(380px, 1fr) 370px; gap: 32px; background: white;
  border: 1px solid var(--line); border-radius: 8px; padding: 26px;
}
.detail h1 { margin: 10px 0 8px; color: var(--brand-dark); font-size: 33px; }
.product-gallery img {
  display: block; width: 100%; aspect-ratio: 1; object-fit: contain; padding: 15px; background: white; border: 1px solid var(--line); border-radius: 6px;
}
.product-gallery p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 12px 0; }
.gallery-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.gallery-actions button, .gallery-actions a { padding: 9px 12px; font-size: 13px; }
.detail-summary .badge.ready { background: var(--green-soft); color: var(--green); }
.detail-description { color: #3e5261; line-height: 1.72; border-bottom: 1px solid #edf1f4; padding-bottom: 16px; }
.reference-note {
  margin: 16px 0; padding: 14px 16px; border: 1px solid #cfe6f4; border-radius: 7px; background: #f6fbff;
}
.reference-note strong { display: block; color: var(--brand-dark); margin-bottom: 5px; }
.reference-note span { display: block; color: var(--brand); font-size: 13px; margin-bottom: 7px; }
.reference-note p { margin: 0; color: var(--muted); line-height: 1.65; }
.product-share-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: 14px 0; padding: 14px; border: 1px solid #cfe3f0; border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 191, 77, .18), transparent 26%),
    linear-gradient(135deg, #f6fbff 0%, #fbfffb 100%);
}
.product-share-panel h2 { margin: 3px 0 6px; color: var(--brand-dark); font-size: 18px; }
.product-share-panel p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.product-share-panel button { flex-shrink: 0; padding: 9px 12px; font-size: 12px; }
.procurement-panel {
  margin-top: 18px; border: 1px solid #d7e5ef; border-radius: 8px; background: #fbfdff; padding: 16px;
}
.procurement-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.procurement-panel-head h2 { margin: 3px 0 0; color: var(--brand-dark); font-size: 18px; }
.procurement-panel-head .secondary { padding: 8px 12px; white-space: nowrap; }
.procurement-steps { display: grid; gap: 9px; }
.procurement-steps article {
  display: grid; grid-template-columns: 52px 1fr; gap: 10px; align-items: start; padding: 10px 0; border-top: 1px solid #edf3f7;
}
.procurement-steps article:first-child { border-top: 0; padding-top: 0; }
.procurement-steps strong { color: var(--brand); font-size: 13px; }
.procurement-steps p { margin: 0; color: #3e5261; font-size: 13px; line-height: 1.65; }
.procurement-next { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.procurement-next a { color: var(--brand-dark); border: 1px solid #cfe0eb; border-radius: 5px; padding: 7px 10px; font-size: 12px; background: #fff; }
.alternative-path-panel {
  margin-top: 14px; border: 1px solid #cfe4df; border-radius: 8px; background: linear-gradient(135deg, #f5fffb 0%, #f7fbff 100%); padding: 15px;
}
.alternative-path-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.alternative-path-head h2 { margin: 3px 0 0; color: var(--brand-dark); font-size: 18px; }
.alternative-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-bottom: 12px; }
.alternative-actions a {
  display: block; min-width: 0; background: #fff; border: 1px solid #d7e7ef; border-radius: 6px; padding: 10px; color: var(--brand-dark);
}
.alternative-actions strong { display: block; font-size: 13px; }
.alternative-actions span { display: block; color: var(--muted); font-size: 12px; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.alternative-list { display: grid; gap: 8px; }
.alternative-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 9px; align-items: center; background: rgba(255,255,255,.78);
  border: 1px solid #dce9ef; border-radius: 7px; padding: 8px;
}
.alternative-main { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 9px; align-items: center; min-width: 0; color: var(--brand-dark); }
.alternative-main img { width: 38px; height: 38px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.alternative-main strong, .alternative-main small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.alternative-main small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.alternative-stock { color: var(--green); font-size: 12px; white-space: nowrap; }
.alternative-row button, .alternative-mini-action { padding: 7px 10px; font-size: 12px; background: #fff; color: var(--brand); border: 1px solid #cfe0eb; border-radius: 4px; text-align: center; }
.alternative-memory { margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.detail-link-actions {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 16px;
}
.detail-link-actions .primary, .detail-link-actions .secondary {
  min-height: 39px; padding: 9px 10px; border-radius: 5px; font-size: 12px; text-align: center;
}
.detail-sticky-bar {
  position: fixed; left: 50%; bottom: 16px; z-index: 63; transform: translateX(-50%);
  width: min(960px, calc(100vw - 34px)); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center;
  padding: 12px 14px; border: 1px solid #bdd8ea; border-radius: 9px; background: rgba(255,255,255,.97);
  box-shadow: 0 16px 40px rgba(5, 39, 65, .16); backdrop-filter: blur(8px);
}
.has-sourcing-basket .detail-sticky-bar { display: none; }
.detail-sticky-main { min-width: 0; }
.detail-sticky-main strong { display: block; color: var(--brand-dark); font-size: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.detail-sticky-main span { display: block; margin-top: 3px; color: #45687e; font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.detail-sticky-actions { display: flex; gap: 8px; align-items: center; }
.detail-sticky-actions a, .detail-sticky-actions button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 8px 12px;
  border: 1px solid #cfe0eb; border-radius: 5px; background: #fff; color: var(--brand); font-size: 12px; white-space: nowrap; cursor: pointer;
}
.detail-sticky-actions .primary { color: #fff; border-color: var(--brand); background: var(--brand); }
.product-faq.block { background: #fff; }
.product-faq details { border-top: 1px solid var(--line); padding: 15px 0; }
.product-faq details:first-of-type { border-top: 0; }
.product-faq summary { cursor: pointer; color: var(--brand-dark); font-weight: 700; }
.product-faq p { color: var(--muted); line-height: 1.72; margin: 10px 0 0; }
.commerce-facts { margin: 0; }
.commerce-facts div { display: grid; grid-template-columns: 92px 1fr; gap: 15px; padding: 10px 0; font-size: 13px; }
.commerce-facts dt { color: var(--muted); }
.commerce-facts dd { margin: 0; color: var(--ink); word-break: break-word; }
.detail-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 28px; }
.detail-meta div { padding: 13px 0; border-bottom: 1px solid #edf1f4; color: var(--muted); font-size: 13px; }
.detail-meta strong { display: block; color: var(--ink); margin-top: 5px; }
.quote-panel { background: #f5faff; border: 1px solid #d5e8f7; border-radius: 8px; padding: 22px; }
.quote-panel h2 { margin: 0 0 8px; font-size: 20px; color: var(--brand-dark); }
.quote-note { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0 0 10px; }
.quote-panel .price { color: var(--brand); font-size: 28px; font-weight: bold; margin: 10px 0 20px; }
.rfq-expectation-panel {
  margin: -6px 0 16px; padding: 12px; border: 1px solid #cfe4df; border-radius: 8px;
  background: linear-gradient(135deg, #f8fffb, #fff);
}
.rfq-expectation-head { margin-bottom: 9px; }
.rfq-expectation-head .eyebrow { margin-bottom: 3px; font-size: 10px; }
.rfq-expectation-head strong { color: var(--brand-dark); font-size: 14px; }
.rfq-expectation-grid { display: grid; grid-template-columns: 1fr; gap: 7px; }
.rfq-expectation-grid article {
  display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 8px; align-items: start;
  padding: 8px; border: 1px solid #e1edf3; border-radius: 6px; background: rgba(255,255,255,.82);
}
.rfq-expectation-grid span {
  display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px;
  border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 700;
}
.rfq-expectation-grid p { margin: 0; color: #3f5968; font-size: 12px; line-height: 1.55; }
.rfq-smart-panel {
  margin: -4px 0 13px; padding: 12px; border: 1px solid #d8e8f2; border-radius: 8px; background: #fff;
}
.rfq-smart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.rfq-smart-head strong { color: var(--brand-dark); font-size: 14px; }
.rfq-smart-head span { color: var(--muted); font-size: 12px; line-height: 1.45; text-align: right; }
.rfq-smart-row { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 9px; align-items: start; margin-top: 9px; }
.rfq-smart-row small { color: #536b7c; font-size: 12px; padding-top: 8px; }
.rfq-smart-actions { display: flex; flex-wrap: wrap; gap: 7px; min-width: 0; }
.rfq-smart-actions button {
  padding: 7px 9px; border: 1px solid #cfe0eb; border-radius: 5px; background: #f8fbfd;
  color: var(--brand-dark); font-size: 12px; line-height: 1.2; cursor: pointer;
}
.rfq-smart-actions button:hover, .rfq-smart-actions button.active {
  border-color: var(--brand); background: var(--brand-soft); color: var(--brand);
}
.purchase-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 10px; }
.bom-handoff-link { margin-bottom: 9px; }
.rfq-submit-receipt {
  margin-top: 14px; padding: 15px; border: 1px solid #b9dfcf; border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 191, 77, .22), transparent 28%),
    linear-gradient(135deg, #f3fff9 0%, #f8fcff 100%);
}
.rfq-receipt-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.rfq-receipt-head h3 { margin: 3px 0 7px; color: var(--brand-dark); font-size: 19px; }
.rfq-receipt-head p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.rfq-receipt-head > strong {
  flex-shrink: 0; padding: 6px 8px; border-radius: 5px; background: #fff; color: var(--green);
  border: 1px solid #cce9dd; font-size: 11px; line-height: 1.2;
}
.rfq-receipt-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 12px; }
.rfq-receipt-summary span { min-width: 0; padding: 9px; border-radius: 7px; background: rgba(255,255,255,.76); border: 1px solid #dbece5; }
.rfq-receipt-summary b { display: block; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rfq-receipt-summary small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
.rfq-receipt-steps { display: grid; gap: 7px; margin-top: 10px; }
.rfq-receipt-steps article { display: grid; grid-template-columns: 34px 1fr; gap: 8px; align-items: center; padding: 9px; background: #fff; border: 1px solid #ddebf2; border-radius: 7px; }
.rfq-receipt-steps strong { color: var(--green); font-size: 16px; }
.rfq-receipt-steps p { margin: 0; color: #425766; font-size: 12px; line-height: 1.45; }
.rfq-receipt-actions { display: grid; grid-template-columns: 1fr; gap: 7px; margin-top: 10px; }
.rfq-receipt-actions .primary, .rfq-receipt-actions .secondary { min-height: 36px; padding: 8px 10px; font-size: 12px; }
.detail-sections { background: #fff; border: 1px solid var(--line); margin-top: 18px; border-radius: 8px; overflow: hidden; }
.detail-tabs { margin: 0; display: flex; width: auto; background: #f4f7fa; border-bottom: 1px solid var(--line); justify-content: start; gap: 0; }
.detail-tabs a { padding: 16px 30px; color: var(--muted); border-right: 1px solid var(--line); }
.detail-tabs a.active { background: white; color: var(--brand); border-top: 2px solid var(--brand); margin-top: -1px; }
.specification-panel { padding: 27px 30px 34px; max-width: 850px; }
.specification-panel h2 { margin: 0 0 20px; color: var(--brand-dark); font-size: 22px; }
.spec-table { border: 1px solid var(--line); }
.spec-table th { background: #f6f8fa; color: var(--muted); width: 185px; padding: 13px 18px; }
.spec-table td { padding: 13px 18px; color: var(--ink); }
.datasheet-panel { border-top: 1px solid var(--line); padding: 28px 30px 34px; }
.datasheet-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.datasheet-head h2 { margin: 0 0 7px; color: var(--brand-dark); font-size: 22px; }
.datasheet-head p { margin: 0; color: var(--muted); font-size: 13px; }
.datasheet-actions { display: flex; gap: 8px; }
.datasheet-actions button, .datasheet-actions a { white-space: nowrap; padding: 9px 18px; }
.datasheet-preview {
  background: #fff; border: 1px solid #d6dfe5; border-radius: 5px; padding: 30px;
  max-width: 820px; min-height: 360px; box-shadow: 0 3px 13px rgba(17, 45, 67, .06);
}
.datasheet-preview header { display: flex; justify-content: space-between; border-bottom: 2px solid var(--brand); padding-bottom: 16px; }
.datasheet-preview header strong { color: var(--brand-dark); font-size: 24px; }
.datasheet-preview header span { color: var(--muted); }
.datasheet-preview h3 { margin: 21px 0; color: #334957; font-weight: normal; }
.datasheet-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 18px; }
.datasheet-facts span { background: #f5f8fb; color: var(--muted); font-size: 12px; padding: 10px 12px; }
.datasheet-facts strong { display: block; color: var(--ink); margin-top: 5px; font-size: 14px; }
.datasheet-frame { width: 100%; height: 520px; border: 1px solid var(--line); border-radius: 12px; margin: 12px 0 18px; background: #fff; }
.datasheet-link-panel { border: 1px dashed #bdd0df; background: #f8fbfd; border-radius: 14px; padding: 18px; margin: 12px 0 18px; }
.datasheet-link-panel strong { color: var(--brand-dark); }
.datasheet-link-panel p { color: var(--muted); margin: 8px 0 14px; line-height: 1.7; }
.datasheet-link-list { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-table.compact th, .spec-table.compact td { padding: 10px 13px; }
.related-products.block { margin: 40px 0 0; }
.cart-link b { background: var(--brand); color: white; border-radius: 11px; padding: 2px 7px; font-size: 11px; }
.member-page { padding: 48px clamp(20px, 7vw, 92px); max-width: 1240px; }
.member-access { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; max-width: 930px; margin: 20px auto; }
.member-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 27px; }
.member-head h1 { margin: 8px 0; color: var(--brand-dark); }
.member-shell { display: grid; grid-template-columns: 205px 1fr; gap: 20px; }
.member-side { background: white; border: 1px solid var(--line); border-radius: 9px; padding: 17px; align-self: start; }
.member-side strong { display: block; color: var(--brand-dark); margin-bottom: 12px; }
.member-side a { display: block; padding: 11px 9px; color: var(--muted); border-radius: 6px; }
.member-side a.active, .member-side a:hover { color: var(--brand); background: var(--brand-soft); }
.member-side span { float: right; background: var(--brand-soft); color: var(--brand); padding: 1px 7px; border-radius: 10px; }
.member-local-memory { max-width: 930px; margin: -4px auto 0; }
.member-activity { border: 1px solid #d3e6f1; border-radius: 9px; background: #fff; padding: 17px; box-shadow: var(--shadow); }
.member-activity-head { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.member-activity-head h3 { margin: 4px 0 7px; color: var(--brand-dark); font-size: 22px; }
.member-activity-head p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.7; }
.member-activity-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.member-activity-actions .primary, .member-activity-actions .secondary { padding: 9px 12px; font-size: 12px; white-space: nowrap; }
.member-followup-queue { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 13px; }
.member-followup-task {
  min-width: 0; display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 11px; align-items: center;
  padding: 13px; border: 1px solid #d7e8f2; border-radius: 8px;
  background:
    radial-gradient(circle at 95% 8%, rgba(255, 191, 77, .18), transparent 32%),
    linear-gradient(135deg, #fbfdff, #f5fbff);
}
.member-followup-task:hover { border-color: #9cc7ea; background: #f5fbff; }
.member-followup-task > span {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  color: #fff; background: var(--brand); font-weight: 800; font-size: 13px;
}
.member-followup-task small { display: block; color: var(--green); font-size: 12px; font-weight: 800; margin-bottom: 4px; }
.member-followup-task strong { display: block; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-followup-task p { margin: 5px 0 0; color: #405766; font-size: 12px; line-height: 1.45; }
.member-followup-task em {
  justify-self: end; color: var(--brand); background: rgba(255,255,255,.86); border: 1px solid #cfe0eb;
  border-radius: 5px; padding: 7px 9px; font-size: 12px; font-style: normal; font-weight: 700; white-space: nowrap;
}
.member-followup-task.rfq > span { background: #008fd3; }
.member-followup-task.bom > span { background: #ff9f43; }
.member-followup-task.filter > span { background: #45cca0; }
.member-followup-task.recent > span { background: #17435c; }
.member-activity-metrics { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 13px; }
.member-activity-metrics span { padding: 12px; border: 1px solid #dce9f1; border-radius: 8px; background: linear-gradient(135deg, #f6fbff, #fbfffb); }
.member-activity-metrics b { color: var(--green); font-size: 24px; margin-right: 5px; }
.member-activity-metrics small { color: var(--muted); }
.member-activity-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.activity-card { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 11px; padding: 13px; border: 1px solid #dce9f1; border-radius: 8px; background: #fbfdff; }
.activity-card span { display: inline-flex; color: var(--brand); font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.activity-card h4 { margin: 0 0 6px; color: var(--brand-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.activity-card p { margin: 0; color: #405766; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.activity-card small { display: block; margin-top: 7px; color: var(--muted); line-height: 1.5; }
.activity-card a { justify-self: start; color: var(--brand); background: var(--brand-soft); border-radius: 5px; padding: 7px 10px; font-size: 12px; }
.member-activity-empty { padding: 18px; border: 1px dashed #bdd7e7; border-radius: 8px; background: #f8fbfd; }
.member-activity-empty strong { color: var(--brand-dark); }
.member-activity-empty p { margin: 7px 0 0; color: var(--muted); line-height: 1.7; }
.points-balance strong { font-size: 27px; color: var(--brand); }
.reward-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.reward-grid button { display: flex; flex-direction: column; gap: 7px; }
.reward-grid small { color: rgba(255,255,255,.84); }
.invoice-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-bottom: 18px; }
.invoice-form textarea, .invoice-form button { grid-column: 1 / -1; }
.checkout-page { max-width: 1120px; padding: 44px clamp(20px, 7vw, 92px); }
.checkout-grid { max-width: 1240px; padding: 46px clamp(20px, 5vw, 64px); display: grid; grid-template-columns: 1fr 340px; gap: 22px; }
.checkout-grid h1 { color: var(--brand-dark); margin: 8px 0 23px; }
.order-summary { background: white; border: 1px solid var(--line); padding: 23px; border-radius: 9px; margin-top: 17px; }
.checkout-grid .order-summary { margin-top: 55px; }
.order-summary.sticky { align-self: start; position: sticky; top: 95px; }
.cart-total { display: block; font-size: 27px; color: var(--brand); margin: 12px 0 22px; }
.cart-qty { max-width: 100px; margin: 0; }
.cart-check-panel {
  display: grid; gap: 7px; margin: 14px 0; padding: 12px; border: 1px solid #d6e8f1; border-radius: 8px;
  background: linear-gradient(135deg, #fbfdff, #f5fbff);
}
.cart-check-panel strong { color: var(--brand-dark); font-size: 14px; }
.cart-check-panel span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.checkout-decision-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 280px); gap: 14px; margin: 0 0 16px; padding: 16px;
  border: 1px solid #cfe4df; border-radius: 9px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 191, 77, .18), transparent 28%),
    linear-gradient(135deg, #f8fffb, #f7fbff);
  box-shadow: 0 8px 20px rgba(3, 54, 92, .05);
}
.checkout-decision-panel h2 { margin: 3px 0 7px; color: var(--brand-dark); font-size: 19px; }
.checkout-decision-panel p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.62; font-size: 13px; }
.checkout-decision-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.checkout-decision-metrics span {
  min-width: 0; padding: 9px 8px; border: 1px solid #dbe9ef; border-radius: 7px; background: rgba(255,255,255,.84);
  color: var(--muted); font-size: 11px; text-align: center;
}
.checkout-decision-metrics b { display: block; color: var(--green); font-size: 18px; line-height: 1.1; }
.checkout-decision-list { grid-column: 1 / -1; display: grid; gap: 7px; }
.checkout-decision-list span {
  padding: 8px 10px; border: 1px solid #dfeaf1; border-radius: 6px; background: rgba(255,255,255,.76);
  color: #425d6f; font-size: 12px; line-height: 1.45;
}
.checkout-form h2:not(:first-child) { margin-top: 28px; }
.checkout-note-assist {
  margin: -2px 0 14px; padding: 12px; border: 1px solid #d8e8f2; border-radius: 8px; background: #fff;
}
.checkout-note-assist strong { display: block; margin-bottom: 9px; color: var(--brand-dark); font-size: 14px; }
.checkout-note-assist div { display: flex; flex-wrap: wrap; gap: 7px; }
.checkout-note-assist button {
  padding: 7px 9px; border: 1px solid #cfe0eb; border-radius: 5px; background: #f8fbfd;
  color: var(--brand-dark); font-size: 12px; line-height: 1.2;
}
.checkout-note-assist button:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.choice { display: block; border: 1px solid var(--line); padding: 14px; margin: 8px 0; border-radius: 7px; }
.choice input, .payment input { display: inline; width: auto; margin: 0 8px 0 0; }
.choice small, .payment small { display: block; color: var(--muted); margin: 6px 0 0 25px; }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 16px; }
.payment { border: 1px solid var(--line); border-radius: 7px; padding: 12px; }
.amount { float: right; color: var(--brand); }
.service-page {
  padding: 56px clamp(22px, 7vw, 92px); display: grid; grid-template-columns: .85fr minmax(400px, 560px); gap: 62px;
}
.service-copy h1, .assistant-intro h1 { font-size: clamp(34px, 4vw, 46px); line-height: 1.3; color: var(--brand-dark); margin: 12px 0 20px; }
.service-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.85; }
.service-copy ul { margin-top: 30px; padding: 0; list-style: none; color: var(--muted); }
.service-copy li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.service-copy li::before { content: "✓"; color: var(--green); margin-right: 13px; }
.onboarding-types { display: grid; gap: 9px; margin-top: 26px; }
.onboarding-types a { background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 13px 15px; }
.onboarding-types a:hover { border-color: #8ebde2; box-shadow: var(--shadow); }
.onboarding-types strong { display: block; margin-bottom: 5px; color: var(--brand-dark); }
.onboarding-types span { color: var(--muted); font-size: 13px; }
.form-card { border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card label { color: var(--muted); font-size: 13px; }
.help-page { max-width: 1240px; padding: 45px clamp(20px, 5vw, 56px); display: grid; grid-template-columns: 210px 1fr; gap: 28px; }
.help-side { background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 17px; align-self: start; }
.help-side section + section { margin-top: 20px; }
.help-side h2 { margin: 0 0 8px; font-size: 15px; color: var(--brand-dark); }
.help-side a { display: block; color: var(--muted); padding: 7px 9px; border-radius: 5px; font-size: 13px; }
.help-side a.active, .help-side a:hover { color: var(--brand); background: var(--brand-soft); }
.help-content { background: #fff; border: 1px solid var(--line); border-radius: 9px; min-height: 540px; padding: 40px clamp(25px, 6vw, 60px); }
.help-content h1 { color: var(--brand-dark); font-size: 34px; margin: 8px 0 13px; }
.help-lead { color: var(--muted); font-size: 16px; border-bottom: 1px solid var(--line); padding-bottom: 25px; margin-bottom: 25px; }
.help-body { max-width: 760px; color: #405361; line-height: 1.95; }
.help-body p { margin: 0 0 18px; }
.help-body ol { padding-left: 22px; margin: 0 0 28px; }
.help-body li { padding: 5px 0; }
.action-link { display: inline-flex; padding: 12px 23px; border-radius: 6px; margin-left: 8px; }
.process { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.process span { background: var(--green-soft); color: var(--green); padding: 10px 13px; border-radius: 6px; font-size: 13px; }
.assistant-page { padding: 58px clamp(22px, 7vw, 92px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; }
.assistant-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.85; }
.chat-panel { background: white; border: 1px solid var(--line); border-radius: 11px; padding: 28px; }
.assistant-message { background: #f0f7fd; color: var(--ink); border-radius: 9px 9px 9px 2px; padding: 17px; margin-bottom: 22px; line-height: 1.65; }
.match-results { margin-top: 22px; }
.match { border: 1px solid var(--line); padding: 14px; border-radius: 7px; margin-top: 9px; }
.match strong { color: var(--brand-dark); }
.match span { float: right; color: var(--brand); }
.admin-page { background: #f3f6f9; }
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }
.admin-side { background: #092d48; color: #cfdeea; padding: 26px 19px; }
.admin-side .logo strong { color: white; }
.admin-side nav { flex-direction: column; margin: 38px 0 0; gap: 5px; }
.admin-side nav button { background: transparent; justify-content: start; padding: 12px; color: #cfdeea; }
.admin-side nav button.active, .admin-side nav button:hover { background: rgba(255,255,255,.1); }
.admin-content { min-width: 0; padding: 29px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-top h1 { margin: 0; color: var(--brand-dark); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin-bottom: 22px; }
.metric, .card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 19px; }
.metric small { color: var(--muted); display: block; }
.metric strong { display: block; margin-top: 9px; font-size: 29px; color: var(--brand); }
.card { margin-bottom: 17px; }
.card h2 { margin: 0 0 18px; font-size: 19px; color: var(--brand-dark); }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.admin-table { overflow-x: auto; }
.admin-data-card { padding: 22px; }
.admin-data-head { display: flex; align-items: start; justify-content: space-between; gap: 22px; margin-bottom: 16px; }
.admin-data-head h2 { margin-bottom: 7px; }
.admin-data-head p { margin: 0; line-height: 1.65; }
.record-count { white-space: nowrap; background: #f0f7fc; color: var(--brand-dark); font-weight: bold; border-radius: 18px; padding: 8px 14px; }
.admin-toolbar { display: grid; grid-template-columns: minmax(220px, 2fr) minmax(135px, 1fr) minmax(170px, 1.3fr) auto auto; gap: 10px; padding: 14px; background: #f7fafc; border: 1px solid var(--line); border-radius: 7px; }
.admin-toolbar input, .admin-toolbar select, .admin-toolbar button { margin: 0; }
.admin-batchbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding: 16px 4px 12px; }
.admin-batchbar label { display: inline-flex; align-items: center; gap: 7px; margin-right: 6px; color: var(--muted); }
.admin-batchbar input { margin: 0; width: auto; }
.admin-batchbar span { color: var(--muted); margin-right: auto; }
.managed-table { min-height: 218px; }
.managed-table table { table-layout: auto; }
.managed-table th:first-child, .managed-table td:first-child { width: 34px; padding-left: 5px; }
.managed-table input[type="checkbox"] { width: auto; margin: 2px 0 0; }
.managed-table small { display: inline-block; max-width: 245px; line-height: 1.5; color: var(--muted); }
.status-pill { display: inline-block; white-space: nowrap; border-radius: 13px; padding: 4px 10px; background: #edf2f5; color: #536a7b; }
.status-published { background: #e7f7ee; color: #14874d; }
.status-inquiry { background: #e9f2ff; color: #1269ad; }
.status-draft { background: #fff3df; color: #a26600; }
.status-archived { background: #eef1f3; color: #667782; }
.admin-pagination { display: flex; align-items: center; justify-content: flex-end; gap: 9px; border-top: 1px solid var(--line); padding-top: 15px; color: var(--muted); }
.admin-pagination span { margin-right: 7px; }
.admin-pagination button { padding: 8px 15px; }
.admin-maintenance { margin-top: 20px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.admin-maintenance summary { cursor: pointer; color: var(--brand-dark); font-weight: bold; font-size: 16px; padding: 19px 22px; }
.maintenance-grid { padding: 0 18px 2px; }
.maintenance-grid .card { box-shadow: none; }
button.danger { color: #b63232; border: 1px solid #eac8c8; background: #fff5f5; }
button.danger:hover:not(:disabled) { background: #ffe8e8; }
table { border-collapse: collapse; width: 100%; font-size: 13px; }
th, td { padding: 11px 9px; text-align: left; border-bottom: 1px solid #edf2f5; vertical-align: top; }
th { color: var(--muted); font-weight: normal; white-space: nowrap; }
td button { font-size: 12px; padding: 7px 10px; margin-right: 4px; }
.login-box { width: min(430px, calc(100% - 40px)); margin: 85px auto; background: white; border-radius: 11px; border: 1px solid var(--line); padding: 34px; }
.login-box h1 { color: var(--brand-dark); margin-top: 0; }
.login-box p { color: var(--muted); }
.product-editor { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.product-editor textarea, .product-editor .wide { grid-column: span 2; }
.product-editor button { grid-column: 1 / -1; }
.service-widget { position: fixed; z-index: 50; right: 24px; bottom: 22px; }
.service-toggle { border-radius: 24px; box-shadow: var(--shadow); padding: 13px 23px; }
.service-window {
  position: absolute; right: 0; bottom: 58px; width: min(370px, calc(100vw - 35px));
  background: white; border: 1px solid var(--line); border-radius: 11px; box-shadow: 0 14px 45px rgba(0,0,0,.18);
  overflow: hidden;
}
.service-window header { display: flex; justify-content: space-between; align-items: center; padding: 15px 17px; background: var(--brand-dark); color: white; }
.service-window header button { background: transparent; font-size: 22px; padding: 0; }
.service-messages { max-height: 290px; overflow-y: auto; padding: 15px; background: #f7fafd; }
.service-messages p { max-width: 90%; margin: 0 0 10px; padding: 10px 12px; border-radius: 8px; font-size: 13px; line-height: 1.55; }
.service-messages .bot { background: white; border: 1px solid #e0e9ee; }
.service-messages .user { margin-left: auto; color: white; background: var(--brand); }
.service-form { display: flex; border-top: 1px solid var(--line); padding: 11px; gap: 7px; }
.service-form input { margin: 0; }
.service-form button { padding: 10px 13px; }
.handoff-form { padding: 0 11px 12px; }
.handoff-form input { margin-bottom: 7px; }
@media (max-width: 1120px) {
  .header { flex-wrap: wrap; }
  nav { order: 3; width: 100%; justify-content: center; }
  .header nav { flex-wrap: wrap; white-space: normal; }
  .cart-link b { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .home-tools { grid-template-columns: repeat(3, 1fr); }
  .home-tools a:nth-child(3), .home-tools a:nth-child(6) { border-right: 0; }
  .home-brands { grid-template-columns: repeat(4, 1fr); }
  .brand-highlights, .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr; }
  .footer-groups { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .stock-list-head, .stock-row { grid-template-columns: minmax(260px, 1fr) 120px 102px 100px 94px; }
  .stock-list-head span:nth-child(2), .stock-row .stock-field:nth-child(2) { display: none; }
  .stock-action-group { gap: 5px; }
  .home-search-panel { grid-template-columns: 1fr; gap: 16px; }
  .hot-searches { grid-column: 1; margin-top: 0; }
  .home-search-more { text-align: left; }
  .workbench-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "flow"
      "topics"
      "categories";
  }
  .sourcing-flow { grid-template-columns: minmax(220px, .78fr) minmax(360px, 1.22fr); }
  .sourcing-dock { grid-template-columns: 1fr; align-items: stretch; }
  .sourcing-dock-metrics { order: 2; }
  .sourcing-dock-actions { justify-content: flex-start; flex-wrap: wrap; }
  .stock-topic-hero { grid-template-columns: 1fr; }
  .stock-topic-stats { grid-template-columns: repeat(3, 1fr); }
  .facet-row { grid-template-columns: 105px 1fr; }
  .facet-select { grid-column: 2; }
  .admin-toolbar { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
  .admin-toolbar input { grid-column: 1 / -1; }
}
@media (min-width: 1500px) {
  .catalog-search { max-width: 1080px; }
  .stock-list-head, .stock-row { gap: 22px; padding-left: 24px; padding-right: 24px; }
  .stock-name { grid-template-columns: 78px 1fr; gap: 17px; }
  .stock-image { width: 78px; height: 78px; }
}
@media (max-width: 1499px) {
  .header { flex-wrap: wrap; }
  .header nav { flex-wrap: wrap; white-space: normal; row-gap: 8px; }
  .language-picker { margin-left: auto; }
}
@media (max-width: 840px) {
  .hero, .quality, .catalog-layout, .detail, .service-page, .assistant-page, .admin-shell, .checkout-grid, .member-access, .member-shell, .help-page, .brand-index-hero, .compare-hero { grid-template-columns: 1fr; }
  .service-page { padding: 32px 18px; gap: 24px; }
  .service-copy, .form-card { min-width: 0; width: 100%; }
  .bom-seo-copy { grid-template-columns: 1fr; align-items: start; }
  .bom-service-steps { grid-template-columns: 1fr 1fr; }
  .recovery-seo-copy { grid-template-columns: 1fr; align-items: start; }
  .recovery-service-steps { grid-template-columns: 1fr 1fr; }
  .filters { position: static; }
  .business, .quality-items, .admin-grid { grid-template-columns: 1fr; }
  .admin-side { min-height: auto; }
  .admin-side nav { flex-direction: row; flex-wrap: wrap; margin-top: 20px; }
  .admin-content { padding: 18px; }
  .admin-data-head { flex-direction: column; gap: 10px; }
  .admin-toolbar { grid-template-columns: 1fr; }
  .member-quick-inner { flex-direction: column; align-items: start; }
  .member-activity-head { align-items: stretch; flex-direction: column; }
  .member-activity-actions { justify-content: flex-start; }
  .member-followup-queue { grid-template-columns: 1fr; }
  .member-activity-list { grid-template-columns: 1fr 1fr; }
  .catalog-title { align-items: start; flex-direction: column; }
  .catalog-intent-main { align-items: stretch; flex-direction: column; }
  .catalog-intent-actions { display: grid; grid-template-columns: 1fr; justify-content: stretch; }
  .catalog-intent-actions .primary, .catalog-intent-actions .secondary { white-space: normal; }
  .search-refinement-head { align-items: stretch; flex-direction: column; }
  .search-refinement-head .secondary { text-align: center; }
  .search-refinement-grid { grid-template-columns: 1fr; }
  .exact-match-card { grid-template-columns: 1fr; align-items: stretch; }
  .exact-match-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); min-width: 0; }
  .saved-filter-snapshot { grid-template-columns: 1fr; align-items: stretch; }
  .saved-filter-snapshot a { text-align: center; }
  .catalog-batch-main { grid-template-columns: 1fr; align-items: stretch; }
  .catalog-batch-actions { justify-content: flex-start; }
  .buyer-trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-seo-copy { grid-template-columns: 1fr; }
  .catalog-seo-facts { grid-template-columns: 1fr 1fr 1fr; }
  .seo-title-actions { justify-content: flex-start; }
  .taxonomy-guide { grid-template-columns: 1fr; }
  .stock-topic-hero { padding: 18px; }
  .stock-topic-copy h1 { font-size: 24px; }
  .stock-topic-stats, .stock-topic-guide { grid-template-columns: 1fr; }
  .stock-topic-filter-strip > div { grid-template-columns: 1fr; }
  .stock-topic-filter-strip strong { padding-top: 0; }
  .help-side { display: flex; overflow-x: auto; gap: 24px; }
  .help-side section { flex: 0 0 145px; margin-top: 0 !important; }
  .catalog-search-banner { grid-template-columns: 1fr; gap: 18px; }
  .facet-row { grid-template-columns: 1fr; padding: 13px; }
  .facet-row > strong { padding-left: 0; }
  .facet-select { grid-column: auto; }
  .facet-hint { padding-left: 13px; }
  .facet-options.expanded, .category-option-grid { grid-template-columns: 1fr; }
  .facet-options.expanded { max-height: 260px; }
  .facet-side-actions, .facet-batch-actions { justify-content: flex-start; flex-wrap: wrap; }
  .product-gallery { max-width: 440px; margin: 0 auto; }
  .workbench-head { align-items: start; flex-direction: column; }
  .workbench-actions { justify-content: flex-start; }
  .sourcing-flow { grid-template-columns: minmax(200px, .8fr) minmax(320px, 1.2fr); }
  .home-continue-grid { grid-template-columns: 1fr; }
  .home-continue-empty { grid-template-columns: 1fr; align-items: start; }
  .workbench-illustration { min-height: 190px; }
  .bom-sheet { left: 4%; top: 30px; }
  .illustration-rack { left: 10%; bottom: 22px; }
  .illustration-reel { left: 20%; bottom: 92px; width: 58px; height: 58px; border-width: 7px; }
  .tag-brand { left: 26%; top: 25px; }
  .tag-lot { right: 22%; bottom: 23px; }
  .search-node { left: 26%; top: 28px; }
  .illustration-chip { left: 44%; top: 28px; }
  .illustration-wave { left: 36%; bottom: 22px; width: 136px; height: 42px; padding: 7px 10px; }
  .illustration-wave i { width: 12px; margin-inline: 4px; }
  .quote-card { right: 4%; top: 26px; }
  .qc-node { right: 30%; bottom: 24px; top: auto; }
  .illustration-pack { right: 18%; bottom: 86px; }
  .illustration-truck { right: 6%; bottom: 26px; }
  .caption-bom { left: 4%; top: 12px; }
  .caption-match { left: 28%; top: 95px; }
  .caption-quote { right: 20%; top: 92px; }
  .caption-qc { right: 5%; bottom: 80px; }
  .compare-tray { grid-template-columns: 1fr; align-items: stretch; }
  .compare-actions { flex-wrap: wrap; }
  .compare-page { padding: 22px 18px 42px; }
  .compare-toolbar { align-items: stretch; flex-direction: column; }
  .compare-toolbar-actions { justify-content: flex-start; }
  .compare-decision-panel { grid-template-columns: 1fr; }
  .compare-guidance { grid-template-columns: 1fr; }
  .checkout-decision-panel { grid-template-columns: 1fr; }
  .no-result-head { grid-template-columns: 1fr; }
  .no-result-actions { justify-content: flex-start; max-width: none; }
  .no-result-relax { align-items: stretch; flex-direction: column; }
  .no-result-relax div { justify-content: flex-start; }
  .no-result-process { grid-template-columns: 1fr; }
  .stock-list-head { display: none; }
  .stock-row { grid-template-columns: 1fr 1fr; gap: 13px; border-top: 1px solid var(--line); margin-bottom: 10px; border-radius: 7px; }
  .stock-name, .stock-action-group { grid-column: 1 / -1; }
  .stock-action-group { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stock-field label { display: block; margin-bottom: 5px; }
  .pagination { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .service-bar { display: none; }
  .head-search { min-width: 100%; order: 2; }
  .fields.two, .categories, .product-grid, .ecosystem-grid, .metrics, .product-editor, .payment-methods, .reward-grid, .invoice-form, .home-tools, .home-brands, .brand-highlights, .brand-grid { grid-template-columns: 1fr; }
  .checkout-decision-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .checkout-note-assist div { display: grid; grid-template-columns: 1fr 1fr; }
  .checkout-note-assist button { width: 100%; }
  .bom-source-note { align-items: stretch; flex-direction: column; }
  .bom-source-context-head { grid-template-columns: 1fr; align-items: stretch; }
  .bom-source-context-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bom-source-context-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .bom-source-context-actions button { width: 100%; }
  .bom-service-steps { grid-template-columns: 1fr; }
  .recovery-eval-grid { grid-template-columns: 1fr 1fr; }
  .recovery-note-assist div { display: grid; grid-template-columns: 1fr 1fr; }
  .recovery-note-assist button { width: 100%; }
  .recovery-service-steps { grid-template-columns: 1fr; }
  .bom-template-head { align-items: start; flex-direction: column; }
  .bom-template-head button,
  .bom-template-head a.secondary { width: 100%; }
  .bom-template-grid { grid-template-columns: 1fr; }
  .bom-draft-note { align-items: stretch; flex-direction: column; }
  .bom-draft-actions { justify-content: stretch; width: 100%; }
  .bom-draft-actions button { flex: 1; }
  .bom-preview-head { flex-direction: column; }
  .bom-preview-actions { justify-content: stretch; width: 100%; }
  .bom-preview-actions button { flex: 1; min-width: 120px; }
  .bom-preview-metrics { grid-template-columns: 1fr; }
  .bom-qty-assist { grid-template-columns: 1fr; align-items: stretch; }
  .bom-qty-assist button { width: 100%; }
  .bom-preview-table { min-width: 560px; }
  .bom-receipt-head { align-items: stretch; flex-direction: column; }
  .bom-receipt-metrics, .bom-receipt-checks { grid-template-columns: 1fr; }
  .bom-receipt-actions { display: grid; grid-template-columns: 1fr; }
  .rfq-receipt-head { align-items: stretch; flex-direction: column; }
  .rfq-receipt-summary { grid-template-columns: 1fr; }
  .home-tools a { border-right: 0; border-bottom: 1px solid var(--line); }
  .member-activity-metrics, .member-activity-list { grid-template-columns: 1fr; }
  .member-followup-task { grid-template-columns: 34px minmax(0, 1fr); align-items: start; }
  .member-followup-task em { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
  .member-activity-actions { display: grid; grid-template-columns: 1fr; }
  .brand-index-page { padding-inline: 18px; }
  .brand-index-hero { padding: 25px 20px; }
  .brand-index-hero h1, .site-map-hero h1 { font-size: 30px; }
  .site-map-page { padding-inline: 18px; }
  .site-map-hero { grid-template-columns: 1fr; padding: 22px; }
  .site-map-grid, .site-map-grid.compact { grid-template-columns: 1fr; }
  .compare-item { grid-template-columns: 26px minmax(86px, 1fr) 22px; width: 100%; max-width: none; }
  .compare-item small { display: none; }
  .compare-decision-metrics { grid-template-columns: 1fr 1fr; }
  .stock-action-group { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .exact-match-main { grid-template-columns: 58px minmax(0, 1fr); }
  .exact-match-main img { width: 58px; height: 58px; }
  .exact-match-checks, .exact-match-actions { grid-template-columns: 1fr; }
  .recent-search-panel { margin: 12px 18px 18px; padding: 13px; }
  .recent-search-head, .recent-current { align-items: stretch; flex-direction: column; }
  .recent-current .secondary { margin-left: 0; text-align: center; }
  .recent-search-chips { display: grid; grid-template-columns: 1fr; }
  .recent-search-chips strong { max-width: none; }
  .saved-filter-hub-head { align-items: start; flex-direction: column; }
  .saved-filter-hub-stats { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .saved-filter-cards { grid-template-columns: 1fr; }
  .saved-filter-card-actions { grid-template-columns: 1fr; }
  .catalog-batch-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-batch-actions { display: grid; grid-template-columns: 1fr; }
  .catalog-batch-actions .primary, .catalog-batch-actions .secondary { white-space: normal; text-align: center; }
  .buyer-trust-strip { grid-template-columns: 1fr; padding: 10px; }
  .buyer-trust-strip article { min-height: auto; }
  .gallery-actions { grid-template-columns: 1fr; }
  .product-share-panel { align-items: stretch; flex-direction: column; }
  .detail-action-metrics { grid-template-columns: 1fr; }
  .detail-action-buttons { grid-template-columns: 1fr; }
  .procurement-momentum-head { align-items: start; flex-direction: column; }
  .procurement-momentum-head > span { text-align: left; }
  .procurement-momentum-steps, .procurement-momentum-actions { grid-template-columns: 1fr 1fr; }
  .detail-link-actions { grid-template-columns: 1fr; }
  .procurement-panel-head { align-items: start; flex-direction: column; }
  .procurement-steps article { grid-template-columns: 1fr; gap: 5px; }
  .procurement-next { display: grid; grid-template-columns: 1fr; }
  .rfq-smart-head { align-items: start; flex-direction: column; }
  .rfq-smart-head span { text-align: left; }
  .rfq-smart-row { grid-template-columns: 1fr; }
  .rfq-smart-row small { padding-top: 0; }
  .detail-sticky-bar { grid-template-columns: 1fr; align-items: stretch; bottom: 10px; width: calc(100vw - 20px); padding: 10px; }
  .detail-sticky-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .detail-sticky-actions a, .detail-sticky-actions button { min-height: 34px; padding-inline: 6px; }
  .detail-page.detail-with-sticky { padding-bottom: 138px; }
  .alternative-path-head { align-items: start; flex-direction: column; }
  .alternative-actions { grid-template-columns: 1fr 1fr; }
  .alternative-row { grid-template-columns: 1fr; align-items: stretch; }
  .alternative-stock { white-space: normal; }
  .hero { padding-inline: 18px; }
  .home-search-panel { padding-inline: 18px; }
  .home-search-form { height: 54px; }
  .home-search-form input { height: 42px; font-size: 14px; padding-left: 10px; }
  .home-search-form button { min-width: 94px; padding-inline: 9px; font-size: 14px; }
  .service-widget { right: 12px; bottom: 12px; }
  .service-toggle { min-width: 58px; min-height: 42px; padding: 8px 12px; border-radius: 21px; font-size: 12px; }
  .search-suggest-panel { top: calc(100% + 6px); }
  .search-suggest-head { align-items: start; flex-direction: column; gap: 3px; }
  .search-suggest-list { max-height: 280px; }
  .search-suggest-row { grid-template-columns: minmax(0, 1fr) auto; min-height: 52px; padding: 9px 10px; }
  .search-suggest-row img { display: none; }
  .search-suggest-actions { grid-template-columns: 1fr; }
  .market-workbench { padding-inline: 18px; }
  .catalog-seo-panel { padding: 17px; }
  .catalog-seo-facts { grid-template-columns: 1fr; }
  .catalog-seo-tags { display: grid; grid-template-columns: 1fr; }
  .catalog-seo-tags a { justify-content: center; border-radius: 5px; }
  .rail-links, .sourcing-flow, .flow-steps { grid-template-columns: 1fr; }
  .flow-copy-head { align-items: start; flex-direction: column; gap: 3px; }
  .flow-copy-head span { white-space: normal; }
  .flow-step { grid-template-columns: auto minmax(0, 1fr); min-height: auto; }
  .workbench-illustration { grid-column: auto; grid-row: auto; min-height: 252px; }
  .illustration-line { display: none; }
  .illustration-rack, .illustration-pack, .illustration-reel, .illustration-wave, .illustration-tag { display: none; }
  .bom-sheet { left: 7%; top: 20px; width: 86px; min-height: 80px; }
  .search-node { left: 46%; top: 22px; width: 54px; height: 54px; }
  .illustration-chip { left: auto; right: 9%; top: 88px; width: 76px; height: 76px; border-width: 6px; }
  .quote-card { left: 8%; right: auto; top: 126px; width: 100px; min-height: 84px; }
  .qc-node { right: 34%; bottom: 34px; width: 54px; height: 54px; }
  .illustration-truck { right: 7%; bottom: 28px; width: 94px; height: 46px; }
  .caption-bom { left: 7%; top: 6px; }
  .caption-match { left: 43%; top: 78px; }
  .caption-quote { left: 9%; right: auto; top: 214px; }
  .caption-qc { right: 24%; bottom: 6px; }
  .topic-links a { align-items: start; flex-direction: column; }
  .topic-links span { text-align: left; white-space: normal; }
  .home-continue-head { align-items: stretch; flex-direction: column; }
  .home-page .market-workbench .home-continue-panel { padding-right: 16px; }
  .home-continue-actions { justify-content: stretch; }
  .home-continue-actions .primary, .home-continue-actions .secondary { flex: 1; }
  .home-continue-searches { display: grid; grid-template-columns: 1fr; }
  .home-continue-searches strong { max-width: none; }
  .has-sourcing-dock { padding-bottom: 260px; }
  .sourcing-dock { bottom: 10px; width: calc(100vw - 20px); padding: 10px; }
  .sourcing-dock-head span, .sourcing-dock-hint { font-size: 11px; }
  .sourcing-dock-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
  .sourcing-dock-metrics span { justify-content: center; padding-inline: 5px; }
  .sourcing-dock-items { display: grid; grid-template-columns: 1fr 1fr; max-height: 92px; overflow: auto; }
  .sourcing-dock-item { min-width: 0; max-width: none; grid-template-columns: minmax(0, 1fr) auto; }
  .sourcing-dock-item img { display: none; }
  .sourcing-dock-more { justify-content: center; min-height: 34px; white-space: normal; }
  .sourcing-dock-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .sourcing-dock-actions a, .sourcing-dock-actions button { padding-inline: 8px; }
  .block, .business { margin-inline: 18px; }
  .footer-groups { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .help-content { padding: 28px 20px; }
  .datasheet-head { flex-direction: column; }
  .datasheet-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .datasheet-actions button, .datasheet-actions a { min-width: 0; padding-inline: 10px; text-align: center; white-space: normal; }
  .detail-tabs { overflow-x: auto; max-width: 100%; }
  .detail-tabs a { flex: 0 0 auto; padding: 13px 18px; white-space: nowrap; }
  .datasheet-preview { padding: 18px; }
  .datasheet-facts { grid-template-columns: 1fr; }
}
@media print {
  body * { visibility: hidden; }
  .datasheet-panel, .datasheet-panel * { visibility: visible; }
  .datasheet-panel { position: absolute; inset: 0; padding: 0; border: 0; }
  .datasheet-actions, .datasheet-head p { display: none; }
  .datasheet-preview { border: 0; box-shadow: none; max-width: none; }
}
