:root {
  --navy: #071f43;
  --blue: #123f7a;
  --cyan: #3b82c4;
  --green: #1e9f6f;
  --gold: #d9a441;
  --red: #c64b42;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #d8e0ea;
  --soft: #f4f7fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 16px 36px rgba(15, 35, 66, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #eef3f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }

.overview-jump {
  position: relative;
  z-index: 10;
  min-height: 34px;
  margin: 10px 0 8px 16px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(7,31,67,.18);
  font-size: 13px;
  font-weight: 700;
}
.overview-jump:hover { background: var(--navy); }

.layout { width: 1440px; min-width: 1440px; min-height: 1024px; margin: 0 auto; display: grid; grid-template-columns: 240px minmax(0, 1fr); background: #eef3f7; }
.side { background: #061a38; color: #dce9f8; padding: 20px 16px; position: sticky; top: 0; height: 1024px; min-height: 100vh; }
.brand { display: flex; gap: 10px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 7px; background: url("v3-icons/logo-deep-blue-transparent.png") center/contain no-repeat; color: transparent; font-size: 0; }
.brand strong { display: block; font-size: 15px; }
.brand span { color: #98b4d2; font-size: 12px; }
.nav-title { margin: 18px 8px 8px; color: #8eabc9; font-size: 12px; }
.nav-link { display: flex; align-items: center; gap: 10px; min-height: 40px; margin: 4px 0; padding: 0 10px; border-radius: 7px; color: #dce9f8; }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.12); color: #fff; }
.nav-icon { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; font-size: 12px; color: #b9d2ed; }

.main { min-width: 0; padding: 32px 28px 48px; }
.topbar { min-height: 58px; display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 18px; }
.crumb { color: var(--muted); font-size: 13px; }
h1 { margin: 0 0 8px; font-size: 26px; line-height: 1.25; color: #111827; }
h2 { margin: 0 0 14px; font-size: 17px; }
h3 { margin: 0 0 10px; font-size: 15px; }
p { margin: 0; }
.subtle { color: var(--muted); font-size: 13px; line-height: 1.55; }
.page-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 18px; }
.toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn { min-height: 38px; padding: 0 14px; border-radius: 7px; background: #e7edf5; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn.primary { background: var(--blue); color: #fff; }
.btn.dark { background: var(--navy); color: #fff; }
.btn.warn { background: #fff1d6; color: #7a4b00; }
.btn.danger { background: #fae7e5; color: #96342d; }
.btn.ghost { background: transparent; border: 1px solid var(--line); }
.status, .tag { display: inline-flex; align-items: center; min-height: 24px; padding: 0 8px; border-radius: 999px; font-size: 12px; white-space: nowrap; }
.green { background: #e4f6ee; color: #146647; }
.blue { background: #e6f0ff; color: #164c9f; }
.gold { background: #fff4d8; color: #8a5b00; }
.red { background: #fde8e6; color: #9a382f; }
.gray { background: #eef2f7; color: #546174; }
.tag { background: #eff5fb; color: #365674; }

.grid { display: grid; gap: 16px; }
.two { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.home-grid { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; }
.admin-grid { grid-template-columns: 310px minmax(0, 1fr); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: 0 1px 0 rgba(15,23,42,.02); }
.panel.flush { padding: 0; overflow: hidden; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; display: grid; gap: 10px; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-1px); transition: .16s ease; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.more-link { color: var(--blue); font-size: 13px; font-weight: 650; }
.linklike { padding: 0; background: transparent; color: var(--blue); font-weight: 650; }
.manage-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, .72fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  margin-bottom: 14px;
  background: #f7fafc;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
}
.manage-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.manage-pagination {
  margin-top: 14px;
}
.wishlist-scroll { max-height: 438px; overflow-y: auto; padding-right: 4px; display: grid; gap: 10px; }
.wishlist-item { display: grid; gap: 8px; padding: 12px; border: 1px solid #e3ebf4; border-radius: 8px; background: #f8fbfe; }
.wishlist-item:hover { border-color: #b7c9df; background: #fff; }
.wishlist-meta { display: flex; flex-wrap: wrap; gap: 6px; }

.hero { min-height: 300px; display: grid; grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr); padding: 0; overflow: hidden; }
.asset-img { min-height: 300px; background: linear-gradient(130deg, rgba(7,31,67,.28), rgba(18,63,122,.14)), url("../../../../v3-客户沟通补充整合/design-output/ui-mockups-v3-gaote-theme/figma-assets/asset1.jpg") center/cover; }
.hero-body { padding: 24px; display: grid; gap: 16px; align-content: center; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { padding: 12px; background: #f7fafc; border: 1px solid #e6edf5; border-radius: 7px; }
.metric span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 5px; }
.metric strong { font-size: 17px; }
.field-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.field { min-width: 0; padding-bottom: 9px; border-bottom: 1px dashed #d8e0ea; }
.field label { display: block; color: var(--muted); font-size: 12px; margin-bottom: 4px; }
.field b { font-size: 14px; font-weight: 650; }
.stepper { display: grid; gap: 10px; }
.step { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.dot { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #d7e5f3; color: #31506e; font-size: 12px; font-weight: 700; }
.step.done .dot { background: var(--green); color: #fff; }
.step.current .dot { background: var(--gold); color: #2d2107; }
.order-progress-panel { margin: 10px 0 16px; }
.order-progress { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); align-items: start; padding: 8px 2px 2px; }
.order-progress-step { position: relative; display: grid; justify-items: center; gap: 6px; min-width: 0; text-align: center; color: #53647a; }
.order-progress-step::before { content: ""; position: absolute; top: 11px; left: calc(-50% + 11px); width: calc(100% - 22px); height: 2px; background: #d7e3ef; }
.order-progress-step:first-child::before { display: none; }
.order-progress-step.done::before,
.order-progress-step.current::before { background: var(--green); }
.order-progress-step.done .dot { background: var(--green); color: #fff; }
.order-progress-step.current .dot { background: var(--gold); color: #2d2107; }
.order-progress-step strong { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; color: var(--ink); }
.order-progress-step small { font-size: 12px; color: var(--muted); }
.order-detail-shell { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 16px; align-items: start; }
.order-anchor-nav { position: sticky; top: 16px; display: grid; gap: 8px; }
.order-anchor-nav a { min-height: 34px; display: flex; align-items: center; gap: 8px; padding: 0 10px; border-radius: 7px; color: #40566f; font-size: 13px; }
.order-anchor-nav a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #b7c7d8; flex: 0 0 auto; }
.order-anchor-nav a:hover { background: #eef5fc; color: var(--blue); }
.order-anchor-nav a:hover::before { background: var(--blue); }
.order-detail-content { display: grid; gap: 16px; min-width: 0; }
.order-detail-content > section { scroll-margin-top: 18px; }
.order-info-note { margin-top: 12px; padding: 12px; border: 1px solid #dce8f4; border-radius: 8px; background: #f8fbfe; color: #40566f; font-size: 13px; line-height: 1.55; }
.order-stage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.order-stage-card { padding: 14px; border: 1px solid #e1eaf4; border-radius: 8px; background: #f8fbfe; display: grid; gap: 8px; }
.order-stage-card strong { font-size: 14px; }
.order-stage-card p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.asset-file-field { display: grid; gap: 8px; }
.asset-file-summary { max-width: 100%; color: var(--ink); font-size: 14px; font-weight: 650; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.asset-file-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.asset-file-actions .btn { min-height: 30px; padding: 0 10px; font-size: 12px; }
.asset-file-table td:nth-child(2) { max-width: 360px; }
.asset-file-name { color: var(--blue); font-weight: 650; }
.pdf-preview-shell { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 16px; align-items: start; }
.pdf-preview-pane { min-height: 720px; padding: 34px 42px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 1px 0 rgba(15,23,42,.02); }
.pdf-page { min-height: 640px; border: 1px solid #d8e0ea; background: linear-gradient(#fff, #fbfdff); display: grid; align-content: start; gap: 18px; padding: 36px; color: #25364b; }
.pdf-page h2 { font-size: 22px; margin-bottom: 4px; }
.pdf-line { height: 12px; border-radius: 999px; background: #e4ebf3; }
.pdf-line.short { width: 52%; }
.pdf-line.mid { width: 72%; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid #e5ebf2; text-align: left; vertical-align: top; }
.table th { color: #53647a; background: #f6f9fc; font-weight: 650; }
.chat { display: grid; gap: 12px; max-height: 420px; overflow: auto; padding-right: 4px; }
.bubble { max-width: 78%; padding: 12px 14px; border-radius: 8px; background: #eef4fb; line-height: 1.5; font-size: 13px; }
.bubble.right { justify-self: end; background: #e4f6ee; }
.bubble.system { justify-self: center; max-width: 92%; background: #fff4d8; color: #72500d; }
.inquiry-channel-chat { max-height: 500px; }
.channel-group { display: grid; gap: 10px; padding: 12px; border: 1px solid #e1eaf4; border-radius: 8px; background: #f8fbfe; }
.channel-title { font-size: 13px; font-weight: 700; color: #003f66; }
.inquiry-detail-grid { align-items: stretch; }
.inquiry-asset-summary { display: grid; gap: 14px; align-content: start; }
.inquiry-asset-img { width: 100%; height: 214px; object-fit: cover; border-radius: 8px; border: 1px solid #dce6f0; }
.inquiry-action-panel { margin-top: 16px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: end; }
.inquiry-action-input { min-height: 92px; resize: vertical; margin-top: 10px; }
.inquiry-action-buttons { justify-content: flex-end; }
.timeline { display: grid; gap: 12px; }
.timeline-item { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #e7edf5; }
.timeline-item time { color: var(--muted); font-size: 12px; line-height: 1.45; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.control { display: grid; gap: 6px; }
.control label { font-size: 12px; color: var(--muted); }
.input, textarea, select { width: 100%; min-height: 38px; border: 1px solid #cfd9e5; border-radius: 7px; padding: 8px 10px; background: #fff; color: var(--ink); }
textarea { min-height: 84px; resize: vertical; }
.mobile-frame { width: 375px; min-height: 690px; margin: 0 auto; border: 10px solid #17253a; border-radius: 28px; background: #f5f8fb; overflow: hidden; box-shadow: var(--shadow); }
.mobile-frame.front { border-color: #111827; background: #eef3f7; position: relative; }
.mobile-top { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; background: var(--navy); color: #fff; }
.mobile-frame.front .mobile-top { height: 58px; background: rgba(255,255,255,.96); color: #003a60; border-bottom: 1px solid #dfe7f0; }
.mobile-body { padding: 14px; display: grid; gap: 12px; }
.mobile-frame.front .mobile-body { min-height: calc(690px - 58px); padding: 0 0 64px; gap: 0; }
.h5-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #003a60; }
.h5-logo img { width: 30px; height: 30px; object-fit: contain; }
.h5-menu { color: #5d6c80; font-size: 12px; }
.h5-top-actions { display: flex; align-items: center; gap: 6px; }
.h5-unread-count { min-height: 24px; padding: 0 9px; display: inline-flex; align-items: center; border-radius: 999px; background: #fff1f2; color: #c2410c; font-size: 12px; font-weight: 800; }
.h5-read-all, .h5-read-btn { min-height: 28px; border: 1px solid #cfd9e5; border-radius: 7px; background: #fff; color: #003a60; font-size: 12px; font-weight: 750; cursor: pointer; }
.h5-read-all { padding: 0 8px; }
.h5-hero {
  min-height: 154px;
  padding: 18px 16px 14px;
  background:
    linear-gradient(90deg, rgba(238,246,249,.98), rgba(238,246,249,.72)),
    url("images/scene1.jpg") center/cover;
  border-bottom: 1px solid #dfe7f0;
  position: relative;
}
.h5-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,58,96,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,58,96,.05) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.h5-hero > * { position: relative; z-index: 1; }
.h5-hero h1 { margin: 0; font-size: 26px; line-height: 1.18; color: #111827; }
.h5-hero p { margin: 8px 0 12px; color: #45607f; font-size: 13px; line-height: 1.5; }
.h5-message-hero { min-height: 104px; padding-top: 18px; }
.h5-search { display: grid; grid-template-columns: 1fr 64px; min-height: 42px; border: 1px solid #003a60; border-radius: 6px; background: #fff; overflow: hidden; box-shadow: 0 10px 20px rgba(0,58,96,.10); }
.h5-search input { border: 0; outline: 0; padding: 0 12px; font-size: 13px; min-width: 0; }
.h5-search button, .h5-search a { display: grid; place-items: center; background: #003a60; color: #fff; font-weight: 750; }
.h5-content { padding: 12px 14px 16px; display: grid; gap: 12px; }
.h5-category-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.h5-category { min-height: 64px; display: grid; place-items: center; gap: 4px; padding: 8px 4px; border: 1px solid #dfe7f0; border-radius: 8px; background: rgba(255,255,255,.96); color: #152238; font-size: 12px; font-weight: 700; text-align: center; }
.h5-category img { width: 28px; height: 28px; object-fit: contain; }
.h5-pulse { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; overflow: hidden; }
.h5-pulse div { padding: 10px 8px; border-right: 1px solid #e6edf5; }
.h5-pulse div:last-child { border-right: 0; }
.h5-pulse span { display: block; color: #64748b; font-size: 11px; }
.h5-pulse strong { display: block; margin-top: 2px; color: #003a60; font-size: 17px; line-height: 1.15; }
.h5-section-head { display: flex; justify-content: space-between; align-items: end; margin: 4px 0 -2px; }
.h5-section-head h2 { margin: 0; font-size: 17px; color: #111827; }
.h5-section-head a, .h5-section-head span { color: #5d6c80; font-size: 12px; }
.h5-asset-card, .h5-wish-card, .h5-action-card {
  display: grid;
  gap: 7px;
  padding: 9px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7,31,67,.05);
}
.h5-asset-card img { width: 100%; height: 100px; object-fit: cover; object-position: left top; border-radius: 5px; display: block; }
.h5-asset-card h3, .h5-wish-card h3, .h5-action-card h3 { margin: 0; color: #152238; font-size: 13px; line-height: 1.35; }
.h5-price { color: #d9482f; font-size: 15px; font-weight: 800; }
.h5-meta { color: #64748b; font-size: 11px; line-height: 1.45; }
.h5-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 6px; margin-top: 1px; }
.h5-card-foot .btn { min-height: 30px; padding: 0 10px; font-size: 12px; border-radius: 6px; }
.h5-card-actions { display: flex; gap: 6px; align-items: center; }
.h5-stat { color: #64748b; font-size: 11px; }
.h5-tabs { display: flex; gap: 8px; overflow: hidden; }
.h5-tabs .btn { min-height: 32px; padding: 0 10px; font-size: 12px; border-radius: 6px; }
.h5-carousel { overflow-x: auto; scrollbar-width: none; }
.h5-carousel::-webkit-scrollbar { display: none; }
.h5-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: 86%; gap: 10px; padding-bottom: 2px; }
.h5-carousel .h5-asset-card { min-width: 0; }
.h5-wish-strip { overflow-x: auto; scrollbar-width: none; }
.h5-wish-strip::-webkit-scrollbar { display: none; }
.h5-wish-track { display: grid; grid-auto-flow: column; grid-auto-columns: 104px; gap: 8px; padding-bottom: 2px; }
.h5-wish-mini {
  min-height: 92px;
  padding: 9px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  display: grid;
  gap: 5px;
  align-content: start;
}
.h5-wish-mini h3 { margin: 0; color: #152238; font-size: 12px; line-height: 1.35; }
.h5-wish-mini p { margin: 0; color: #64748b; font-size: 10px; line-height: 1.35; }
.h5-bottom-nav { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #dfe7f0; background: #fff; }
.mobile-frame.front .h5-bottom-nav { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; }
.h5-bottom-nav a { min-height: 50px; display: grid; place-items: center; color: #5d6c80; font-size: 12px; }
.h5-bottom-nav a.active { color: #003a60; font-weight: 800; }
.h5-notice { padding: 11px 12px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; gap: 6px; }
.h5-notice strong { color: #152238; font-size: 14px; }
.h5-message-card { position: relative; min-height: 82px; padding: 12px 14px 12px 20px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; }
.h5-message-card h3 { margin: 0 0 5px; color: #152238; font-size: 14px; line-height: 1.35; }
.h5-message-card > div { min-width: 0; }
.h5-message-card.unread { border-color: #b7d8ea; background: #f7fbff; }
.h5-dot { position: absolute; top: 13px; left: 9px; width: 7px; height: 7px; border-radius: 50%; background: #e23b2d; }
.h5-read-btn { padding: 0 10px; }
.h5-form-card { padding: 12px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; gap: 10px; }
.h5-detail-image { width: 100%; height: 190px; object-fit: cover; object-position: left top; display: block; }
.h5-gallery { position: relative; background: #fff; }
.h5-gallery-hero { width: 100%; height: 228px; object-fit: cover; object-position: center; display: block; }
.h5-gallery-actions { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: center; }
.h5-round-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: #172033; border: 1px solid rgba(15,23,42,.08); font-size: 22px; }
.h5-gallery-right { display: flex; gap: 8px; }
.h5-count { position: absolute; right: 14px; bottom: 12px; min-height: 26px; padding: 0 10px; display: inline-flex; align-items: center; border-radius: 999px; background: rgba(0,0,0,.45); color: #fff; font-size: 13px; }
.h5-thumbs { display: grid; grid-template-columns: repeat(5, 1fr) 58px; gap: 7px; padding: 8px 10px 10px; background: #fff; }
.h5-thumbs img, .h5-thumb-more { height: 44px; border-radius: 7px; object-fit: cover; overflow: hidden; border: 1px solid #dfe7f0; }
.h5-thumbs img.active { border: 2px solid #003a60; }
.h5-thumb-more { display: grid; place-items: center; background: #eef2f7; color: #152238; font-size: 13px; line-height: 1.25; text-align: center; }
.h5-detail-main { padding: 12px 14px; background: #fff; border-bottom: 1px solid #dfe7f0; display: grid; gap: 8px; }
.h5-detail-main h1 { margin: 0; font-size: 20px; line-height: 1.28; color: #111827; }
.h5-detail-main .h5-price { font-size: 26px; color: #f26a21; }
.h5-detail-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.h5-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; color: #64748b; font-size: 11px; }
.h5-stats-row span { min-height: 28px; display: grid; place-items: center; border-radius: 999px; background: #eef5fb; }
.h5-detail-actions { display: grid; grid-template-columns: 62px minmax(0, 1fr) minmax(0, 1fr); gap: 10px; padding: 10px 12px; background: #fff; border-top: 1px solid #dfe7f0; }
.h5-detail-actions .btn { min-height: 46px; justify-content: center; }
.h5-asset-actions { grid-template-columns: 62px minmax(0, 1fr); }
.h5-fav { display: grid; place-items: center; gap: 2px; color: #41526a; font-size: 12px; }
.h5-fav strong { font-size: 24px; line-height: 1; color: #172033; }
.h5-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.h5-info { padding: 9px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; }
.h5-info span { display: block; color: #64748b; font-size: 11px; margin-bottom: 4px; }
.h5-info strong { color: #152238; font-size: 13px; line-height: 1.35; }
.h5-param-card { padding: 10px 12px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; grid-template-columns: repeat(2, 1fr); }
.h5-param { min-height: 54px; padding: 8px 10px; border-bottom: 1px solid #eef2f7; }
.h5-param:nth-last-child(-n+2) { border-bottom: 0; }
.h5-param:nth-child(odd) { border-right: 1px solid #eef2f7; }
.h5-param span { display: block; color: #64748b; font-size: 12px; margin-bottom: 4px; }
.h5-param strong { color: #111827; font-size: 15px; }
.h5-assurance { display: grid; grid-template-columns: repeat(4, 1fr); padding: 10px 4px; border: 1px solid #b7d8ea; border-radius: 8px; background: #fff; }
.h5-assurance div { padding: 0 6px; border-right: 1px solid #e6edf5; text-align: center; }
.h5-assurance div:last-child { border-right: 0; }
.h5-assurance strong { display: block; color: #003a60; font-size: 13px; margin-bottom: 4px; }
.h5-assurance span { color: #64748b; font-size: 10px; line-height: 1.35; }
.h5-report-card { padding: 12px; border: 1px solid #b7d8ea; border-radius: 8px; background: #fff; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.h5-report-card h2 { margin: 7px 0 4px; font-size: 15px; color: #111827; }
.h5-report-card .btn { min-height: 36px; padding: 0 12px; }
.h5-seller { padding: 12px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; gap: 10px; }
.h5-seller-head { display: grid; grid-template-columns: 46px 1fr auto; gap: 10px; align-items: center; }
.h5-seller-logo { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #eef5fb; color: #003a60; font-weight: 800; }
.h5-seller h2 { margin: 0; font-size: 15px; }
.h5-seller-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #eef2f7; padding-top: 8px; text-align: center; }
.h5-seller-stats span { display: block; color: #64748b; font-size: 11px; }
.h5-seller-stats strong { color: #111827; font-size: 15px; }
.h5-link-list { border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; overflow: hidden; }
.h5-link-row { min-height: 50px; padding: 0 12px; display: grid; grid-template-columns: 70px 1fr auto; gap: 8px; align-items: center; border-bottom: 1px solid #eef2f7; }
.h5-link-row:last-child { border-bottom: 0; }
.h5-link-row strong { color: #111827; font-size: 14px; }
.h5-link-row span { color: #64748b; font-size: 12px; }
.h5-rich { padding: 12px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; gap: 8px; }
.h5-rich h2 { margin: 0; font-size: 15px; color: #111827; }
.h5-rich p, .h5-rich li { color: #4b5f78; font-size: 12px; line-height: 1.6; }
.h5-rich ul { margin: 0; padding-left: 18px; }
.h5-inquiry-asset { display: grid; grid-template-columns: 108px 1fr; gap: 10px; padding: 12px; background: #fff; border-bottom: 1px solid #dfe7f0; }
.h5-inquiry-asset img { width: 108px; height: 96px; border-radius: 8px; object-fit: cover; object-position: left top; }
.h5-inquiry-asset h1 { margin: 6px 0 2px; color: #111827; font-size: 16px; line-height: 1.3; }
.h5-form-card label { display: grid; gap: 6px; color: #4b5f78; font-size: 12px; }
.h5-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.h5-inquiry-actions { grid-template-columns: 92px minmax(0, 1fr); }
.h5-template-list { padding: 12px; border: 1px solid #dfe7f0; border-radius: 8px; background: #fff; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.h5-template-list h3 { grid-column: 1 / -1; margin: 0 0 2px; font-size: 14px; color: #111827; }
.h5-template-list button { min-height: 34px; border-radius: 6px; border: 1px solid #cbd8e6; background: #f7fbff; color: #003a60; font-weight: 700; font-size: 12px; }
.toast { position: fixed; right: 26px; bottom: 26px; min-width: 260px; max-width: 420px; padding: 14px 16px; border-radius: 8px; background: #0b2f5b; color: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .2s ease; z-index: 11; }
.toast.show { opacity: 1; transform: translateY(0); }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(7, 31, 67, .42);
}
.modal-backdrop.open {
  display: flex;
}
.modal-card {
  width: 760px;
  max-width: calc(100vw - 64px);
  max-height: calc(100vh - 64px);
  overflow: auto;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.modal-head,
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.modal-head {
  margin-bottom: 16px;
}
.modal-actions {
  justify-content: flex-end;
  margin-top: 18px;
}
.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #eef3f9;
  color: #41526a;
  font-size: 22px;
  line-height: 1;
}
.inquiry-modal {
  width: 680px;
}
.inquiry-rule {
  padding: 14px 16px;
  border: 1px solid #cfe1f1;
  border-radius: 7px;
  background: #f3f8fc;
}
.inquiry-rule h3,
.inquiry-templates h3 {
  margin: 0 0 8px;
  color: #152238;
  font-size: 16px;
}
.inquiry-rule p {
  margin: 0;
  color: #41526a;
  line-height: 1.7;
}
.inquiry-modal textarea {
  width: 100%;
  min-height: 120px;
  margin-top: 8px;
}
.inquiry-templates {
  margin-top: 14px;
}
.inquiry-templates button {
  margin: 0 8px 8px 0;
  padding: 8px 12px;
  border: 1px solid #d6e2ee;
  border-radius: 6px;
  background: #f7fbff;
  color: #003a60;
  font-weight: 700;
}
.asset-create-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}
.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.upload-box {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px dashed #bfd0e2;
  border-radius: 8px;
  background: #f7fbff;
  color: #54708c;
  text-align: center;
  line-height: 1.5;
}
.linked-demand {
  display: grid;
  gap: 12px;
}
.linked-demand .status {
  width: fit-content;
}

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .side { position: relative; height: auto; }
  .two, .three, .four, .five, .home-grid, .admin-grid, .hero { grid-template-columns: 1fr; }
  .field-list, .form-grid { grid-template-columns: 1fr; }
}

.pc-canvas {
  width: 1440px;
  min-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  color: #172033;
  background: #eef3f7;
}
.pc-top {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #dfe7f0;
}
.pc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pc-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.pc-brand strong {
  display: block;
  color: #003a60;
  font-size: 17px;
  line-height: 1.2;
}
.pc-brand span {
  display: block;
  color: #66758a;
  font-size: 12px;
}
.pc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #53647a;
  font-size: 14px;
}
.pc-nav a.active,
.pc-nav a:hover {
  color: #003a60;
  font-weight: 700;
}
.pc-main {
  width: 1200px;
  margin: 0 auto;
  padding: 24px 0 48px;
  min-height: calc(100vh - 74px);
}
.pc-titlebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.pc-kicker {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 6px;
}
.pc-titlebar h1,
.pc-page-title {
  margin: 0;
  color: #111827;
  font-size: 28px;
  line-height: 1.25;
}
.pc-titlebar p {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}
.pc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pc-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eff5fb;
  border: 1px solid #d7e3ef;
  color: #003a60;
  font-weight: 650;
  white-space: nowrap;
}
.pc-btn.primary {
  background: #003a60;
  border-color: #003a60;
  color: #fff;
}
.pc-btn.orange {
  background: #d9482f;
  border-color: #d9482f;
  color: #fff;
}
.pc-btn.icon-only {
  width: 38px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}
.pc-panel {
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(7,31,67,.05);
}
.pc-filter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  margin-bottom: 18px;
}
.pc-search {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 82px;
  overflow: hidden;
  border: 1px solid #cbd8e7;
  border-radius: 7px;
  background: #fff;
}
.pc-search input {
  border: 0;
  padding: 0 14px;
  outline: 0;
}
.pc-search button {
  background: #003a60;
  color: #fff;
  font-weight: 700;
}
.pc-selects {
  display: flex;
  gap: 10px;
}
.pc-selects select {
  width: 130px;
  min-height: 42px;
}
.pc-market-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 20px;
}
.pc-wish-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pc-wish-layout > .pc-filter-side {
  align-self: stretch;
  height: 100%;
}
.pc-filter-side {
  padding: 16px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.pc-filter-side h3 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 15px;
}
.pc-check-list {
  display: grid;
  gap: 8px;
  color: #53647a;
  font-size: 13px;
}
.pc-check-list label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-category-filter {
  display: grid;
  gap: 14px;
}
.pc-category-group {
  display: grid;
  gap: 6px;
}
.pc-category-main {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #24364f;
  font-size: 13px;
  font-weight: 700;
}
.pc-subcategory-list {
  position: relative;
  display: grid;
  gap: 7px;
  margin-left: 6px;
  padding-left: 20px;
}
.pc-subcategory-list::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: 10px;
  left: 5px;
  border-left: 1px solid #cbd8e7;
}
.pc-subcategory-list label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #53647a;
  font-size: 12px;
  line-height: 1.35;
}
.tree-branch {
  width: 10px;
  height: 1px;
  margin-left: -14px;
  background: #cbd8e7;
  flex: 0 0 auto;
}
.pc-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pc-results {
  display: grid;
  gap: 18px;
}
.pc-asset-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
}
.pc-asset-card img {
  width: calc(100% - 24px);
  height: 106px;
  margin: 12px 12px 8px;
  border-radius: 6px;
  object-fit: cover;
}
.pc-asset-body {
  padding: 0 12px 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.pc-asset-body h3 {
  min-height: 40px;
  margin: 0;
  color: #152238;
  font-size: 15px;
  line-height: 1.35;
}
.pc-price {
  margin-top: 8px;
  color: #d9482f;
  font-size: 19px;
  font-weight: 800;
}
.pc-meta {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}
.pc-card-bottom {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pc-pagination {
  min-height: 48px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
}
.pc-pagination span {
  margin-right: auto;
}
.pc-pagination button {
  min-width: 34px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #d7e3ef;
  border-radius: 6px;
  background: #fff;
  color: #34445b;
  font-weight: 650;
}
.pc-pagination button.active {
  background: #003a60;
  border-color: #003a60;
  color: #fff;
}
.pc-pagination button.ghost {
  min-width: 64px;
}
.pc-wish-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pc-seller-action {
  margin-bottom: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pc-seller-action strong {
  margin-left: 8px;
  color: #152238;
}
.pc-seller-action p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
}
.pc-wish-card {
  min-height: 184px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(7,31,67,.05);
}
.pc-wish-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-wish-card:hover {
  border-color: #b7c9df;
  box-shadow: 0 12px 26px rgba(7,31,67,.08);
}
.pc-wish-card h3 {
  margin: 0;
  color: #152238;
  font-size: 18px;
  line-height: 1.35;
}
.pc-wish-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}
.pc-wish-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.pc-wish-fields span {
  min-width: 0;
  color: #152238;
  font-size: 14px;
  line-height: 1.45;
}
.pc-wish-fields b {
  display: block;
  margin-bottom: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}
.pc-wish-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #64748b;
  font-size: 12px;
}
.wishlist-info {
  margin-top: 2px;
  padding: 12px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #f8fbfe;
}
.wishlist-asset-list {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
}
.wishlist-asset-filter {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 104px 148px 128px 64px;
  gap: 8px;
  padding: 10px;
  background: #f8fbfe;
  border-bottom: 1px solid #dfe7f0;
}
.wishlist-asset-filter .input {
  min-height: 34px;
  font-size: 12px;
}
.wishlist-asset-filter .btn {
  min-height: 34px;
  padding: 0 12px;
}
.wishlist-asset-scroll {
  max-height: 276px;
  overflow-y: auto;
}
.wishlist-asset-list .table th,
.wishlist-asset-list .table td {
  padding: 10px 12px;
}
.wishlist-asset-list .table th {
  position: sticky;
  top: 0;
  z-index: 1;
}
.wishlist-asset-pagination {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #dfe7f0;
  color: #64748b;
  font-size: 12px;
}
.wishlist-asset-pagination > div {
  display: flex;
  gap: 6px;
}
.pc-wish-detail-main,
.pc-wish-contact,
.pc-wish-detail-section {
  padding: 20px;
}
.pc-wish-detail-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.pc-wish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pc-wish-detail-main h2,
.pc-wish-contact h2,
.pc-wish-detail-section h2 {
  margin: 0 0 12px;
  color: #152238;
  font-size: 20px;
}
.pc-wish-detail-main p {
  margin: 0;
  color: #53647a;
  font-size: 14px;
  line-height: 1.75;
}
.pc-detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pc-detail-metrics div {
  padding: 14px;
  background: #f4f8fc;
  border: 1px solid #dfe7f0;
  border-radius: 7px;
}
.pc-detail-metrics span {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
}
.pc-detail-metrics strong {
  color: #003a60;
  font-size: 18px;
}
.pc-wish-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pc-wish-contact .pc-btn {
  width: 100%;
}
.pc-wish-detail-section {
  margin-top: 18px;
}
.pc-wish-hero {
  display: block;
}
.pc-wish-hero .pc-wish-detail-main {
  min-height: 260px;
}
.pc-detail-hero {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pc-gallery {
  padding: 12px;
}
.pc-gallery > img {
  width: 100%;
  height: 360px;
  border-radius: 7px;
  object-fit: cover;
  display: block;
}
.pc-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.pc-thumbs img {
  height: 68px;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid transparent;
}
.pc-thumbs img.active {
  border-color: #003a60;
}
.pc-detail-summary {
  padding: 22px;
  display: grid;
  align-content: stretch;
  gap: 16px;
}
.pc-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pc-summary-title {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.3;
}
.pc-summary-price {
  color: #d9482f;
  font-size: 30px;
  font-weight: 850;
}
.pc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pc-metric {
  padding: 12px;
  border: 1px solid #e4ebf4;
  border-radius: 7px;
  background: #f8fbfe;
}
.pc-metric span {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 6px;
}
.pc-metric strong {
  color: #152238;
  font-size: 16px;
}
.pc-detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #64748b;
  font-size: 13px;
}
.pc-detail-stats span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #e4ebf4;
  border-radius: 7px;
  background: #f8fbfe;
}
.pc-detail-actions {
  margin-top: auto;
  padding-top: 18px;
  align-items: stretch;
}
.pc-detail-actions .pc-btn:not(.icon-only) {
  flex: 1 1 150px;
}
.purchase-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.purchase-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #f8fbfe;
  cursor: pointer;
}
.purchase-option input {
  margin-top: 3px;
}
.purchase-option strong,
.purchase-option small {
  display: block;
}
.purchase-option small {
  margin-top: 5px;
  color: #64748b;
  line-height: 1.45;
}
.pc-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  margin-top: 20px;
}
.pc-section-single {
  grid-template-columns: 1fr;
}
.pc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}
.pc-info {
  padding-bottom: 10px;
  border-bottom: 1px dashed #d8e0ea;
}
.pc-info label {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 5px;
}
.pc-info strong {
  color: #1e293b;
  font-size: 14px;
}
.locked-text {
  margin-right: 6px;
}
.lock-icon {
  min-width: 22px;
  min-height: 22px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7e3ef;
  border-radius: 999px;
  background: #f1f7fd;
  color: #003a60;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
}
.pc-login-shell {
  min-height: calc(1024px - 74px);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 32px;
  align-items: center;
  padding: 58px 120px 72px;
  background:
    linear-gradient(90deg, rgba(238,246,249,.98) 0%, rgba(238,246,249,.88) 54%, rgba(238,246,249,.76) 100%),
    url("../assets/images/scene1.jpg") center/cover;
}
.pc-login-copy h1 {
  margin: 0;
  color: #111827;
  font-size: 42px;
  line-height: 1.18;
}
.pc-login-copy p {
  margin: 16px 0 0;
  width: 620px;
  color: #45607f;
  font-size: 17px;
  line-height: 1.7;
}
.pc-login-card {
  padding: 24px;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  border: 1px solid #dbe6f0;
  box-shadow: 0 20px 42px rgba(7,31,67,.14);
}
.pc-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px;
  border-radius: 8px;
  background: #eef4fa;
}
.pc-tab {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #53647a;
  font-weight: 700;
}
.pc-tab.active {
  color: #003a60;
  background: #fff;
  box-shadow: 0 2px 8px rgba(7,31,67,.08);
}
.pc-login-form {
  display: grid;
  gap: 12px;
}
.pc-login-form label {
  color: #64748b;
  font-size: 12px;
}
.pc-login-form input {
  width: 100%;
  height: 42px;
  margin-top: 6px;
  border: 1px solid #cfd9e5;
  border-radius: 7px;
  padding: 0 12px;
  background: #fff;
}
.pc-code-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 10px;
}

@media (max-width: 900px) {
  .order-progress { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 16px; }
  .order-progress-step::before { display: none; }
}
