:root {
  --atlas-bg: #f4f8fb;
  --atlas-surface: #ffffff;
  --atlas-surface-soft: #f7fafc;
  --atlas-ink: #111827;
  --atlas-muted: #667085;
  --atlas-line: #dce5ec;
  --atlas-line-strong: #cddae4;
  --atlas-blue: #1769e0;
  --atlas-blue-dark: #1155b8;
  --atlas-blue-soft: #edf5ff;
  --atlas-night: #0b0d10;
  --atlas-gold: #a85b00;
  --atlas-danger: #bd3343;
  --atlas-success: #087a55;
  --atlas-success-soft: #eaf8ef;
  --atlas-shadow: 0 14px 38px rgba(38, 73, 96, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.atlas-body {
  background: linear-gradient(180deg,#f5faff 0,#f7fafc 420px,#f4f7f9 100%);
  color: var(--atlas-ink);
  font-family: "HarmonyOS Sans SC","MiSans","Microsoft YaHei","PingFang SC",sans-serif;
  font-size: 15px;
  min-height: 100vh;
}
.atlas-body button,.atlas-body input,.atlas-body select,.atlas-body textarea { font-family: inherit; }
.atlas-body a { text-decoration: none; }

/* Header */
.atlas-body .atlas-header {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--atlas-line-strong);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(50,84,105,.11);
  margin: 12px auto 0;
  position: sticky;
  top: 10px;
  width: calc(100% - 32px);
  z-index: 1000;
}
.atlas-header-inner { align-items: center; display: flex; gap: 20px; min-height: 72px; }
.atlas-brand { align-items: center; color: var(--atlas-ink)!important; display: inline-flex; flex: 0 0 auto; gap: 10px; min-width: 188px; }
.atlas-logo .orbit-logo-mark {
  align-items: center; background: var(--atlas-blue); border-radius: 50%; color: #fff; display: inline-flex;
  font-size: 13px; font-weight: 850; height: 42px; justify-content: center; width: 42px;
}
.atlas-brand-copy { align-items: baseline; display: flex; gap: 6px; white-space: nowrap; }
.atlas-brand-copy strong { color: var(--atlas-ink); font-size: 18px; font-weight: 850; line-height: 1.1; }
.atlas-brand-copy small { color: #53616c; font-size: 12px; font-weight: 700; letter-spacing: 0; }
.atlas-nav { align-items: center; display: flex; flex: 1 1 auto; gap: 2px; justify-content: center; }
.atlas-body .atlas-header .atlas-nav a,.atlas-body .atlas-header .atlas-nav button {
  align-items: center; background: transparent; border: 0; border-radius: 999px; color: #66717b; cursor: pointer;
  display: inline-flex; font-size: 13px; font-weight: 700; gap: 7px; justify-content: center; min-height: 44px; padding: 0 13px; white-space: nowrap;
}
.atlas-body .atlas-header .atlas-nav a i,.atlas-body .atlas-header .atlas-nav button i { color: #7a8791; font-size: 14px; }
.atlas-body .atlas-header .atlas-nav a:hover,.atlas-body .atlas-header .atlas-nav button:hover { background: #f0f4f7; color: var(--atlas-ink); }
.atlas-body .atlas-header .atlas-nav a.is-active { background: #fff; box-shadow: 0 8px 22px rgba(39,65,82,.12); color: var(--atlas-ink); }
.atlas-body .atlas-header .atlas-nav a.is-active i { color: var(--atlas-blue); }
.atlas-actions { align-items: center; display: flex; flex: 0 0 auto; gap: 8px; margin-left: auto; }
.atlas-body .atlas-header .orbit-login {
  align-items: center; border: 1px solid var(--atlas-line-strong); border-radius: 999px; color: #26323b!important;
  display: inline-flex; font-size: 13px; font-weight: 750; justify-content: center; min-height: 40px; padding: 0 15px;
}
.atlas-body .atlas-header .orbit-login:hover { border-color: #9caeba; color: #000!important; }
.atlas-body .atlas-header .orbit-account {
  align-items: center; background: var(--atlas-night); border: 1px solid var(--atlas-night); border-radius: 999px; color: #fff;
  display: inline-flex; font-size: 13px; font-weight: 750; gap: 6px; justify-content: center; min-height: 40px; padding: 0 16px;
}
.atlas-body .atlas-header .orbit-account:hover { background: #24282e; border-color: #24282e; color: #fff; }
.atlas-menu-toggle {
  align-items: center; background: #f1f5f7; border: 1px solid var(--atlas-line); border-radius: 50%; color: var(--atlas-ink);
  display: none; height: 40px; justify-content: center; width: 40px;
}
.atlas-announcement-bar { display: none; }

/* Notice modal */
.atlas-modal-open { overflow: hidden; }
.atlas-notice[hidden] { display: none; }
.atlas-notice { inset: 0; position: fixed; z-index: 2000; }
.atlas-notice-backdrop { background: rgba(8,15,22,.72); inset: 0; position: absolute; }
.atlas-notice-dialog {
  background: #fff; border: 1px solid var(--atlas-line); border-radius: 8px; box-shadow: 0 30px 80px rgba(8,18,28,.28);
  left: 50%; max-height: calc(100vh - 40px); max-width: 700px; overflow: auto; position: absolute; top: 50%; transform: translate(-50%,-50%); width: calc(100% - 32px);
}
.atlas-notice-dialog>header { align-items: center; border-bottom: 1px solid var(--atlas-line); display: flex; justify-content: space-between; padding: 19px 22px; }
.atlas-notice-dialog>header span { color: var(--atlas-blue); display: block; font-size: 10px; font-weight: 800; }
.atlas-notice-dialog>header h2 { color: var(--atlas-ink); font-size: 20px; font-weight: 850; margin: 3px 0 0; }
.atlas-notice-dialog>header button { align-items: center; background: #eef2f5; border: 0; border-radius: 50%; color: #40515e; display: flex; height: 34px; justify-content: center; width: 34px; }
.atlas-notice-content { padding: 4px 22px; }
.atlas-notice-content>div { border-bottom: 1px solid #ebeff2; display: grid; gap: 18px; grid-template-columns: 104px minmax(0,1fr); padding: 15px 0; }
.atlas-notice-content>div:last-child { border-bottom: 0; }
.atlas-notice-content strong { color: #263640; font-size: 13px; }
.atlas-notice-content p { color: var(--atlas-muted); font-size: 13px; line-height: 1.75; margin: 0; }
.atlas-notice-dialog>footer { background: var(--atlas-surface-soft); border-top: 1px solid var(--atlas-line); padding: 13px 22px; text-align: right; }
.atlas-notice-dialog>footer button { background: var(--atlas-night); border: 0; border-radius: 6px; color: #fff; font-size: 12px; font-weight: 750; min-height: 38px; padding: 0 18px; }

/* Catalog */
.atlas-body .atlas-main { max-width: 1540px; padding-bottom: 48px; padding-top: 24px; }
.atlas-market-intro { display: none; }
.atlas-service-shortcuts { display: none!important; }
.atlas-store { align-items: start; display: grid; gap: 24px; grid-template-columns: 286px minmax(0,1fr); }
.atlas-sidebar,.atlas-catalog {
  background: rgba(255,255,255,.98); border: 1px solid var(--atlas-line-strong); border-radius: 8px; box-shadow: var(--atlas-shadow); min-width: 0; overflow: hidden;
}
.atlas-sidebar { position: sticky; top: 108px; }
.atlas-panel-title,.atlas-catalog-head { align-items: center; border-bottom: 1px solid var(--atlas-line); display: flex; justify-content: space-between; min-height: 112px; padding: 18px 24px; }
.atlas-panel-title span,.atlas-catalog-title>span,.atlas-guides-heading span,.atlas-section-title span,.atlas-query-head>span,.atlas-query-section-title span {
  color: #606c76; display: block; font-size: 10px; font-weight: 850; letter-spacing: 0;
}
.atlas-panel-title strong,.atlas-catalog-title h1,.atlas-catalog-title h2 { color: #080b0e; display: block; font-size: 25px; font-weight: 850; line-height: 1.25; margin: 9px 0 0; }
.atlas-mobile-tree-toggle { display: none; }
.atlas-category-tree { max-height: calc(100vh - 250px); overflow-y: auto; padding: 16px 18px 20px; scrollbar-color: #c7d2da transparent; scrollbar-width: thin; }
.atlas-category-row { --depth: 0; margin: 3px 0; padding-left: calc(var(--depth) * 12px); }
.atlas-category-button {
  align-items: center; background: transparent; border: 0; border-radius: 7px; color: #4f5b65; display: grid; font-size: 13px;
  gap: 10px; grid-template-columns: 28px minmax(0,1fr) auto; min-height: 46px; padding: 7px 9px; text-align: left; width: 100%;
}
.atlas-category-button:hover { background: #f2f6f8; color: var(--atlas-ink); }
.atlas-category-button.is-active { background: var(--atlas-blue-soft); color: #0f4f9f; font-weight: 800; }
.atlas-category-icon { align-items: center; background: #f0f5f8; border: 1px solid #dce7ee; border-radius: 50%; color: #55707f; display: inline-flex; font-size: 10px; font-weight: 850; height: 28px; justify-content: center; width: 28px; }
.atlas-category-hot { background: #fff2e9; border-color: #ffd6bd; color: #ed7a31; }
.atlas-category-branch { align-items: center; background: #edf4f8; border-radius: 999px; color: #647784; display: inline-flex; font-size: 10px; font-weight: 750; height: 24px; justify-content: center; min-width: 30px; padding: 0 8px; }
.atlas-category-button.is-active .atlas-category-branch { background: #d8eaff; color: #0f559e; }
.atlas-order-link { align-items: center; border-top: 1px solid var(--atlas-line); color: #526575; display: flex; font-size: 12px; gap: 8px; justify-content: space-between; margin: 0 18px; padding: 18px 0; }
.atlas-order-link:hover { color: var(--atlas-blue); }
.atlas-partner-link { color: #253642; font-weight: 750; }
.atlas-partner-link > i:first-child { color: var(--atlas-blue); }
.atlas-catalog-head { gap: 24px; }
.atlas-search { align-items: center; background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 999px; display: grid; gap: 6px; grid-template-columns: minmax(220px,1fr) auto; max-width: 470px; padding: 5px; width: 46%; }
.atlas-search:focus-within { border-color: #7ea9e7; box-shadow: 0 0 0 3px rgba(23,105,224,.1); }
.atlas-search-field { align-items: center; color: #7b8791; display: flex; gap: 9px; margin: 0; min-width: 0; padding-left: 12px; }
.atlas-search input { background: transparent; border: 0; color: var(--atlas-ink); font-size: 13px; height: 38px; outline: 0; width: 100%; }
.atlas-search input::placeholder { color: #9aa4ad; }
.atlas-search-button { align-items: center; background: var(--atlas-night); border: 0; border-radius: 999px; color: #fff; display: inline-flex; font-size: 12px; font-weight: 750; gap: 7px; justify-content: center; min-height: 38px; min-width: 82px; padding: 0 15px; }
.atlas-search-button:hover { background: #252a30; }
.atlas-list-meta { align-items: center; background: #fbfcfd; border-bottom: 1px solid var(--atlas-line); color: #74808a; display: flex; font-size: 11px; justify-content: space-between; min-height: 38px; padding: 8px 24px; }
.atlas-product-count { color: #344752; font-weight: 750; }
.atlas-product-table-head,.atlas-product-card { display: grid; grid-template-columns: minmax(0,1fr) 120px 100px 104px; }
.atlas-product-table-head { align-items: center; background: #f7f9fb; border-bottom: 1px solid var(--atlas-line); color: #65717c; font-size: 11px; font-weight: 750; min-height: 48px; padding: 0 24px; }
.atlas-product-table-head span:last-child { text-align: right; }
.atlas-product-grid { display: block; }
.atlas-product-card { align-items: center; background: #fff; border-bottom: 1px solid var(--atlas-line); min-height: 104px; padding: 14px 24px; transition: background .16s ease; }
.atlas-product-card[hidden] { display: none; }
.atlas-product-card:last-child { border-bottom: 0; }
.atlas-product-card:hover { background: #fbfdff; }
.atlas-product-info { align-items: center; color: inherit; display: grid; gap: 14px; grid-template-columns: 54px minmax(0,1fr); min-width: 0; padding-right: 24px; }
.atlas-product-media { align-items: center; background: #f4f7f9; border: 1px solid #dfe7ec; border-radius: 8px; color: var(--atlas-blue-dark); display: flex; font-size: 13px; font-weight: 850; height: 54px; justify-content: center; overflow: hidden; width: 54px; }
.atlas-product-media img { height: 100%; object-fit: contain; padding: 4px; width: 100%; }
.atlas-product-copy { min-width: 0; }
.atlas-product-name { color: #181d23; display: -webkit-box; font-size: 14px; font-weight: 800; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-height: 1.5; overflow: hidden; }
.atlas-product-info:hover .atlas-product-name { color: var(--atlas-blue-dark); }
.atlas-product-tags { align-items: center; display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.atlas-product-delivery,.atlas-product-recommend { border-radius: 999px; display: inline-flex; font-size: 10px; font-weight: 750; line-height: 22px; padding: 0 9px; }
.atlas-product-delivery { background: var(--atlas-success-soft); color: var(--atlas-success); }
.atlas-product-recommend { background: var(--atlas-blue-soft); color: var(--atlas-blue-dark); }
.atlas-price { color: #111; font-size: 16px; font-weight: 850; white-space: nowrap; }
.atlas-price small { color: #111; font-size: 12px; font-weight: 850; margin-right: 3px; }
.atlas-product-stock { color: #74808a; font-size: 12px; overflow: hidden; padding-right: 8px; text-overflow: ellipsis; white-space: nowrap; }
.atlas-product-action { text-align: right; }
.atlas-buy-button,.atlas-sold-out { align-items: center; border-radius: 999px; display: inline-flex; font-size: 11px; font-weight: 800; gap: 6px; justify-content: center; min-height: 38px; min-width: 82px; padding: 0 13px; }
.atlas-buy-button { background: var(--atlas-night); border: 1px solid var(--atlas-night); color: #fff; }
.atlas-buy-button:hover { background: #272c32; border-color: #272c32; color: #fff; }
.atlas-sold-out { background: #edf3f6; color: #687783; }
.atlas-loading,.atlas-empty { align-items: center; color: #6f7d87; display: flex; font-size: 13px; justify-content: center; min-height: 240px; }
.atlas-empty { flex-direction: column; gap: 7px; }
.atlas-empty i { color: #8fa1ae; font-size: 27px; }
.atlas-empty strong { color: #344651; font-size: 14px; }
.atlas-load-more { background: #fff; border: 0; border-top: 1px solid var(--atlas-line); color: var(--atlas-blue-dark); font-size: 12px; font-weight: 800; min-height: 50px; width: 100%; }
.atlas-load-more:hover { background: var(--atlas-blue-soft); }
.atlas-load-more[hidden] { display: none; }

/* SEO resources */
.atlas-seo-guides { margin-top: 34px; }
.atlas-guides-heading { align-items: end; display: flex; justify-content: space-between; }
.atlas-guides-heading h2 { color: var(--atlas-ink); font-size: 21px; font-weight: 850; margin: 6px 0 0; }
.atlas-guides-heading>a { color: var(--atlas-blue-dark); font-size: 12px; font-weight: 750; }
.atlas-guides-grid { display: grid; gap: 12px; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 14px; }
.atlas-guides-grid a { background: #fff; border: 1px solid var(--atlas-line); border-radius: 8px; color: inherit; min-height: 116px; padding: 16px; }
.atlas-guides-grid a:hover { border-color: #aebfd0; box-shadow: 0 8px 20px rgba(46,76,95,.07); }
.atlas-guides-grid span { color: var(--atlas-blue); display: block; font-size: 10px; font-weight: 850; }
.atlas-guides-grid strong { color: #273743; display: block; font-size: 14px; line-height: 1.5; margin-top: 7px; }
.atlas-guides-grid p { color: #6c7983; font-size: 11px; line-height: 1.6; margin: 5px 0 0; }

/* Product detail */
.atlas-item-page { min-height: calc(100vh - 120px); padding-bottom: 50px!important; padding-top: 14px!important; }
.atlas-breadcrumb { align-items: center; color: #74808a; display: flex; font-size: 12px; gap: 9px; min-height: 50px; }
.atlas-breadcrumb a { color: var(--atlas-blue-dark); }
.atlas-breadcrumb i { font-size: 9px; }
.atlas-item-layout { align-items: start; display: grid; gap: 20px; grid-template-columns: minmax(0,1fr) 420px; }
.atlas-item-content,.atlas-item-order { background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 8px; box-shadow: var(--atlas-shadow); }
.atlas-item-content { min-width: 0; overflow: hidden; }
.atlas-item-summary { align-items: center; border-bottom: 1px solid var(--atlas-line); display: grid; gap: 18px; grid-template-columns: 96px minmax(0,1fr); padding: 22px; }
.atlas-item-cover { align-items: center; background: #f1f5f8; border: 1px solid #e0e6eb; border-radius: 8px; display: flex; height: 96px; justify-content: center; overflow: hidden; }
.atlas-item-cover img { height: 100%; object-fit: contain; padding: 8px; width: 100%; }
.atlas-item-summary-copy { min-width: 0; }
.atlas-item-summary .atlas-product-category { color: var(--atlas-blue-dark); display: block; font-size: 11px; font-weight: 800; }
.atlas-item-summary-copy h1 { color: var(--atlas-ink); font-size: 24px; font-weight: 850; line-height: 1.4; margin: 5px 0 10px; }
.atlas-item-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.atlas-item-meta span { background: #f2f5f7; border-radius: 4px; color: #52616c; font-size: 11px; padding: 5px 7px; }
.atlas-item-description { padding: 24px; }
.atlas-section-title h2 { color: var(--atlas-ink); font-size: 20px; font-weight: 850; margin: 4px 0 15px; }
.atlas-description-content { color: #40515d; font-size: 14px; line-height: 1.85; overflow-wrap: anywhere; }
.atlas-description-content h2,.atlas-description-content h3 { color: var(--atlas-ink); font-weight: 800; margin: 24px 0 10px; }
.atlas-description-content h2 { font-size: 19px; }
.atlas-description-content h3 { font-size: 16px; }
.atlas-description-content p { margin: 0 0 13px; }
.atlas-description-content img { border: 1px solid var(--atlas-line); border-radius: 6px; height: auto; max-width: 100%; }
.atlas-description-content table { border-collapse: collapse; display: block; max-width: 100%; overflow-x: auto; }
.atlas-description-content td,.atlas-description-content th { border: 1px solid var(--atlas-line); padding: 9px; }
.atlas-item-order { padding: 20px; position: sticky; top: 108px; }
.atlas-item-order-head { align-items: center; border-bottom: 1px solid var(--atlas-line); display: flex; justify-content: space-between; margin-bottom: 18px; padding-bottom: 15px; }
.atlas-item-order-head>span { color: var(--atlas-ink); font-size: 17px; font-weight: 850; }
.atlas-item-order-head .price { color: var(--atlas-gold); font-size: 24px; font-weight: 850; }
.atlas-buy-form { display: grid; gap: 15px; }
.atlas-form-section>label,.atlas-payment>label { color: #40525f; display: block; font-size: 12px; font-weight: 750; margin-bottom: 7px; }
.atlas-buy-form .form-control { background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 6px; color: var(--atlas-ink); font-size: 13px; min-height: 42px; padding: 9px 11px; }
.atlas-buy-form .form-control:focus { border-color: var(--atlas-blue); box-shadow: 0 0 0 3px rgba(23,105,224,.1); outline: 0; }
.sku-list { display: flex; flex-wrap: wrap; gap: 7px; }
.pay-list { display: grid; gap: 8px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.atlas-buy-form .sku,.atlas-buy-form .optional-card,.atlas-payment .pay { background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 6px; color: #42535f; font-size: 12px; min-height: 38px; padding: 9px 10px; }
.atlas-payment .pay { align-items: center; border-radius: 999px; display: flex; font-size: 12px; font-weight: 750; gap: 8px; justify-content: flex-start; line-height: 1.35; min-height: 48px; min-width: 0; padding: 8px 12px; }
.atlas-payment .pay img { border-radius: 5px; flex: 0 0 auto; height: 26px; object-fit: contain; width: 26px; }
.atlas-payment .pay span { min-width: 0; overflow-wrap: anywhere; }
.atlas-buy-form .sku.is-primary,.atlas-payment .pay.is-primary { background: var(--atlas-blue-soft)!important; border-color: var(--atlas-blue)!important; color: var(--atlas-blue-dark)!important; }
.atlas-buy-form .badge-money,.atlas-buy-form .badge-moeny { background: transparent!important; color: inherit!important; font-size: 10px; margin-left: 5px; }
.qty-group { display: grid; grid-template-columns: 40px minmax(70px,1fr) 40px; max-width: 180px; }
.qty-group button { background: #f1f4f6; border: 1px solid var(--atlas-line-strong); color: #344651; font-size: 16px; }
.qty-group input { border-left: 0!important; border-radius: 0!important; border-right: 0!important; }
.atlas-captcha { display: grid; gap: 8px; grid-template-columns: minmax(0,1fr) 110px; }
.atlas-captcha img { border: 1px solid var(--atlas-line); border-radius: 6px; cursor: pointer; height: 42px; object-fit: cover; width: 110px; }
.atlas-payment { background: #f7f9fb!important; border: 1px solid var(--atlas-line)!important; border-radius: 6px; padding: 13px; }
.atlas-body .atlas-buy-form .input-group.qty-group { align-items: stretch; background: #fff!important; border: 1px solid var(--atlas-line-strong)!important; border-radius: 6px!important; box-shadow: none!important; display: grid!important; gap: 0!important; grid-template-columns: 40px minmax(70px,1fr) 40px!important; padding: 0!important; width: 180px!important; }
.atlas-body .atlas-buy-form .input-group.qty-group>button { background: #f1f4f6!important; border: 0!important; border-radius: 0!important; box-shadow: none!important; color: #344651!important; filter: none!important; height: 42px!important; transform: none!important; width: 40px!important; }
.atlas-body .atlas-buy-form .input-group.qty-group>button:first-child { border-radius: 5px 0 0 5px!important; border-right: 1px solid var(--atlas-line-strong)!important; }
.atlas-body .atlas-buy-form .input-group.qty-group>button:last-child { border-left: 1px solid var(--atlas-line-strong)!important; border-radius: 0 5px 5px 0!important; }
.atlas-body .atlas-buy-form .input-group.qty-group>input[type="number"] { background: #fff!important; border: 0!important; border-radius: 0!important; box-shadow: none!important; color: var(--atlas-ink)!important; font-size: 14px!important; font-weight: 750!important; height: 42px!important; min-width: 0!important; padding: 0 6px!important; text-align: center!important; width: 100%!important; }
.atlas-body .atlas-buy-form .atlas-payment .pay-list { border: 0!important; display: grid!important; gap: 8px!important; grid-template-columns: repeat(2,minmax(0,1fr))!important; padding: 0!important; }
.atlas-body .atlas-buy-form .atlas-payment .pay-list .pay { background: #fff!important; border: 1px solid var(--atlas-line-strong)!important; border-radius: 999px!important; box-shadow: none!important; color: #42535f!important; gap: 8px!important; justify-content: flex-start!important; min-height: 48px!important; padding: 8px 12px!important; transform: none!important; }
.atlas-body .atlas-buy-form .atlas-payment .pay-list .pay span { color: inherit!important; font-size: 12px!important; }
.atlas-body .atlas-buy-form .atlas-payment .pay-list .pay img { box-shadow: none!important; height: 26px!important; width: 26px!important; }
.atlas-body .atlas-buy-form .atlas-payment .pay-list .pay.is-primary,.atlas-body .atlas-buy-form .atlas-payment .pay-list .pay.active,.atlas-body .atlas-buy-form .atlas-payment .pay-list .pay.selected { background: var(--atlas-blue-soft)!important; border-color: var(--atlas-blue)!important; box-shadow: 0 0 0 3px rgba(23,105,224,.08)!important; color: var(--atlas-blue-dark)!important; }
.atlas-body .btn-primary { background: var(--atlas-night)!important; border-color: var(--atlas-night)!important; color: #fff!important; }
.atlas-body .btn-primary:hover { background: #282d32!important; border-color: #282d32!important; }

/* Query and footer */
.atlas-query-page { max-width: 920px!important; min-height: calc(100vh - 120px); padding-bottom: 50px!important; }
.atlas-query-head { padding: 42px 0 22px; }
.atlas-query-head h1 { color: var(--atlas-ink); font-size: 30px; font-weight: 850; margin: 5px 0 8px; }
.atlas-query-head p { color: var(--atlas-muted); font-size: 13px; line-height: 1.7; margin: 0; }
.atlas-query-panel { background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 8px; box-shadow: var(--atlas-shadow); padding: 22px; }
.atlas-query-form>label { color: #40525f; display: block; font-size: 12px; font-weight: 750; margin-bottom: 8px; }
.atlas-query-input-row { display: grid; gap: 8px; grid-template-columns: minmax(0,1fr) 126px; }
.atlas-query-input-row .form-control { border: 1px solid var(--atlas-line-strong); border-radius: 6px; min-height: 44px; padding: 10px 12px; }
.atlas-query-input-row .form-control:focus { border-color: var(--atlas-blue); box-shadow: 0 0 0 3px rgba(23,105,224,.1); }
.atlas-query-input-row .btn { border-radius: 6px; font-size: 13px; font-weight: 750; }
.atlas-query-results { margin-top: 14px; }
.atlas-query-section-title { border-bottom: 1px solid var(--atlas-line); margin: -2px 0 12px; padding-bottom: 14px; }
.atlas-query-section-title h2 { color: var(--atlas-ink); font-size: 19px; margin: 4px 0 0; }
.atlas-query-empty { margin-top: 14px; text-align: center; }
.atlas-query-empty i { color: #8da1b0; font-size: 28px; }
.atlas-query-empty h2 { color: var(--atlas-ink); font-size: 18px; margin: 10px 0 6px; }
.atlas-query-empty p { color: var(--atlas-muted); font-size: 12px; margin: 0; }
.atlas-body .atlas-footer { background: #101820; border: 0; color: #91a1ad; font-size: 12px; padding: 0; }
.atlas-footer>div { align-items: center; display: flex; gap: 20px; min-height: 64px; }
.atlas-footer a,.atlas-footer button { background: transparent; border: 0; color: #c6d0d7; font-size: 12px; padding: 0; }
.atlas-footer a:hover,.atlas-footer button:hover { color: #fff; }
.layui-layer .layui-layer-title { background: #f7f9fb!important; border-bottom-color: var(--atlas-line)!important; color: var(--atlas-ink)!important; }
.layui-layer .layui-layer-btn .layui-layer-btn0 { background: var(--atlas-night)!important; border-color: var(--atlas-night)!important; }

@media (min-width:768px) {
  .atlas-header-inner,.atlas-body .atlas-main,.atlas-footer>div,.atlas-tools-main {
    margin-left: auto; margin-right: auto; max-width: 1540px!important; padding-left: 0; padding-right: 0; width: calc(100% - 48px)!important;
  }
}

@media (max-width:1180px) {
  .atlas-brand { min-width: 148px; }
  .atlas-brand-copy small { display: none; }
  .atlas-body .atlas-header .atlas-nav a,.atlas-body .atlas-header .atlas-nav button { padding: 0 9px; }
  .atlas-store { grid-template-columns: 250px minmax(0,1fr); }
}

@media (max-width:980px) {
  .atlas-header-inner { min-height: 62px; position: relative; }
  .atlas-nav {
    background: #fff; border: 1px solid var(--atlas-line); border-radius: 8px; box-shadow: 0 18px 42px rgba(12,25,36,.18);
    display: none; gap: 4px; grid-template-columns: repeat(2,minmax(0,1fr)); left: 12px; padding: 9px; position: absolute; right: 12px; top: calc(100% + 8px); z-index: 30;
  }
  .atlas-nav.is-open { display: grid; }
  .atlas-body .atlas-header .atlas-nav a,.atlas-body .atlas-header .atlas-nav button { border-radius: 6px; color: #43545f; justify-content: flex-start; padding: 0 12px; }
  .atlas-body .atlas-header .atlas-nav a.is-active { background: var(--atlas-blue-soft); box-shadow: none; color: var(--atlas-blue-dark); }
  .atlas-menu-toggle { display: inline-flex; }
  .atlas-store { display: block; }
  .atlas-sidebar { margin-bottom: 14px; position: static; }
  .atlas-panel-title { display: none; }
  .atlas-category-tree { display: flex!important; gap: 6px; max-height: none; overflow-x: auto; padding: 10px; scrollbar-width: none; }
  .atlas-category-tree::-webkit-scrollbar { display: none; }
  .atlas-category-row { flex: 0 0 auto; margin: 0; padding-left: 0; }
  .atlas-category-button { background: #fff; border: 1px solid var(--atlas-line); grid-template-columns: 24px auto auto; min-height: 38px; padding: 5px 9px; white-space: nowrap; width: auto; }
  .atlas-category-icon { height: 24px; width: 24px; }
  .atlas-category-branch { min-width: 24px; padding: 0 6px; }
  .atlas-order-link { display: none; }
  .atlas-guides-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .atlas-item-layout { grid-template-columns: minmax(0,1fr) 360px; }
}

@media (max-width:767px) {
  .atlas-body { font-size: 14px; }
  .atlas-body .atlas-header { border-radius: 8px; margin-top: 8px; top: 6px; width: calc(100% - 16px); }
  .atlas-body .atlas-header-inner { gap: 7px; min-height: 56px; padding: 0 10px; }
  .atlas-brand { min-width: 0; }
  .atlas-logo .orbit-logo-mark { border-radius: 50%; height: 32px; width: 32px; }
  .atlas-brand-copy strong { font-size: 16px; }
  .atlas-actions { gap: 4px; }
  .atlas-body .atlas-header .orbit-login { border: 0; font-size: 12px; min-height: 34px; padding: 0 4px; }
  .atlas-body .atlas-header .orbit-account { font-size: 12px; min-height: 34px; padding: 0 10px; }
  .atlas-menu-toggle { height: 34px; width: 34px; }
  .atlas-body .atlas-main { padding: 14px 10px 36px; }
  .atlas-sidebar,.atlas-catalog { border-radius: 8px; }
  .atlas-catalog-head { align-items: stretch; display: block; min-height: 0; padding: 15px 12px 12px; }
  .atlas-catalog-title h1,.atlas-catalog-title h2 { font-size: 20px; margin-top: 5px; }
  .atlas-search { margin-top: 12px; max-width: none; width: 100%; }
  .atlas-search input { height: 36px; }
  .atlas-search-button { min-height: 36px; min-width: 78px; }
  .atlas-list-meta { padding: 8px 12px; }
  .atlas-list-meta span:last-child { display: none; }
  .atlas-product-table-head { display: none; }
  .atlas-product-card { grid-template-areas: "info info" "price action" "stock action"; grid-template-columns: minmax(0,1fr) auto; min-height: 142px; padding: 14px 12px; }
  .atlas-product-info { gap: 10px; grid-area: info; grid-template-columns: 48px minmax(0,1fr); padding: 0 0 11px; }
  .atlas-product-media { height: 48px; width: 48px; }
  .atlas-product-name { font-size: 14px; }
  .atlas-price { align-self: end; font-size: 18px; grid-area: price; }
  .atlas-product-stock { align-self: start; grid-area: stock; margin-top: 3px; }
  .atlas-product-stock::before { content: "库存 "; }
  .atlas-product-action { align-self: center; grid-area: action; }
  .atlas-buy-button,.atlas-sold-out { min-height: 44px; min-width: 88px; }
  .atlas-guides-heading h2 { font-size: 19px; }
  .atlas-guides-grid { grid-template-columns: 1fr; }
  .atlas-guides-grid a { min-height: 0; }
  .atlas-notice-content>div { display: block; }
  .atlas-notice-content p { margin-top: 5px; }
  .atlas-notice-dialog>header,.atlas-notice-content,.atlas-notice-dialog>footer { padding-left: 16px; padding-right: 16px; }
  .atlas-footer>div { align-items: flex-start; flex-wrap: wrap; gap: 7px 15px; min-height: 0; padding: 14px 12px; }
  .atlas-item-page { padding-bottom: 34px!important; padding-top: 5px!important; }
  .atlas-breadcrumb { min-height: 43px; }
  .atlas-item-layout { display: flex; flex-direction: column; gap: 10px; }
  .atlas-item-content { background: transparent; border: 0; box-shadow: none; display: contents; }
  .atlas-item-summary { background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 8px; gap: 11px; grid-template-columns: 68px minmax(0,1fr); order: 1; padding: 13px; width: 100%; }
  .atlas-item-cover { height: 68px; }
  .atlas-item-summary-copy h1 { font-size: 17px; line-height: 1.42; margin: 4px 0 7px; }
  .atlas-item-meta { gap: 4px; }
  .atlas-item-meta span { font-size: 9px; padding: 4px 5px; }
  .atlas-item-order { order: 2; padding: 15px; position: static; width: 100%; }
  .atlas-item-description { background: #fff; border: 1px solid var(--atlas-line-strong); border-radius: 8px; order: 3; padding: 17px 15px; width: 100%; }
  .atlas-item-order-head>span { font-size: 16px; }
  .atlas-item-order-head .price { font-size: 22px; }
  .atlas-section-title h2 { font-size: 18px; }
  .atlas-description-content { font-size: 13px; line-height: 1.8; }
  .atlas-query-head { padding: 28px 0 17px; }
  .atlas-query-head h1 { font-size: 24px; }
  .atlas-query-panel { padding: 15px; }
  .atlas-query-input-row { grid-template-columns: 1fr; }
  .atlas-query-input-row .btn { min-height: 42px; }
}

@media (max-width:350px) {
  .atlas-brand-copy { display: none; }
  .atlas-body .atlas-header .orbit-account { padding: 0 8px; }
}
