:root {
  --paper: #f5f1e8;
  --paper-strong: #eae2d4;
  --white: #fffdf8;
  --ink: #17251f;
  --muted: #617068;
  --line: rgba(23, 37, 31, 0.16);
  --green: #234f3c;
  --green-dark: #143427;
  --sage: #b9c9b6;
  --orange: #d36a31;
  --blue: #315f82;
  --red: #a64a3b;
  --shadow: 0 22px 70px rgba(18, 44, 33, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.transaction-page {
  background: #f1eee7;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.top-notice {
  background: var(--green-dark);
  color: var(--white);
}

.top-notice-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
  font-size: 11px;
}

.top-notice-inner > span {
  color: var(--sage);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.top-notice-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.top-notice-inner a {
  justify-self: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-family: "STSong", "Songti SC", serif;
  font-size: 21px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "STSong", "Songti SC", serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: #4f7661;
}

.header-order {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
  font-size: 13px;
  font-weight: 700;
}

.header-order b {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--green-dark);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 800;
}

.button:focus-visible,
.text-button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid #3f7258;
  outline-offset: 4px;
}

.section-kicker,
.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.commerce-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.commerce-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 680px;
  gap: 72px;
  padding-top: 64px;
  padding-bottom: 70px;
}

.commerce-hero-copy {
  animation: enter-up 600ms ease both;
}

.commerce-hero h1 {
  margin: 28px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(48px, 4.8vw, 70px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 37px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 505px;
  margin-top: 62px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding-left: 20px;
}

.hero-trust div:first-child {
  padding-left: 0;
}

.hero-trust div:last-child {
  border-right: 0;
}

.hero-trust strong {
  font-family: "STSong", "Songti SC", serif;
  font-size: 22px;
}

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

.hero-service-board {
  position: relative;
  animation: enter-right 700ms 100ms ease both;
}

.hero-service-board::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 48%;
  height: 55%;
  background: var(--sage);
  content: "";
}

.hero-photo {
  position: relative;
  height: 410px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: rgba(17, 45, 33, 0.11);
  content: "";
}

.hero-photo > p {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  width: 56%;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  padding: 18px 22px;
}

.hero-photo > p span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-photo > p strong {
  margin-top: 3px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 18px;
}

.hero-quick-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.hero-quick-products a {
  display: flex;
  min-height: 77px;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  padding: 12px 18px;
  transition: background 180ms ease;
}

.hero-quick-products a:hover {
  background: var(--paper-strong);
}

.hero-quick-products a:last-child {
  grid-column: 1 / -1;
}

.hero-quick-products span {
  color: var(--muted);
  font-size: 11px;
}

.hero-quick-products strong {
  margin-top: 2px;
  color: var(--green);
  font-family: "STSong", "Songti SC", serif;
  font-size: 18px;
}

.checkout-trustbar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trustbar-grid p {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 14px;
  margin: 0;
  border-right: 1px solid var(--line);
  padding: 0 20px;
  font-size: 12px;
}

.trustbar-grid p:first-child {
  padding-left: 0;
}

.trustbar-grid p:last-child {
  border-right: 0;
}

.trustbar-grid b {
  color: var(--green);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 10px;
}

.market-section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.section-heading > div:last-child > p,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.section-heading > div:last-child > a {
  display: inline-block;
  margin-top: 15px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

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

.product-card {
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-art {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--paper-strong);
}

.art-chip {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  background: var(--white);
  padding: 6px 9px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.art-website {
  background: #c9d3c8;
}

.art-dark {
  background: #566f62;
}

.browser-mock {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 82%;
  height: 72%;
  border: 8px solid var(--white);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 40, 29, 0.18);
}

.browser-top {
  display: flex;
  gap: 5px;
  height: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.browser-top i {
  width: 5px;
  height: 5px;
  background: var(--sage);
}

.browser-body {
  position: relative;
  height: calc(100% - 20px);
  padding: 17px;
}

.browser-body b {
  display: block;
  width: 53%;
  height: 10px;
  background: var(--green);
}

.browser-body span {
  display: block;
  width: 66%;
  height: 4px;
  margin-top: 8px;
  background: var(--paper-strong);
}

.browser-body span + span {
  width: 45%;
}

.browser-body em {
  position: absolute;
  right: 15px;
  bottom: 13px;
  width: 35%;
  height: 50%;
  background: var(--sage);
}

.art-mini {
  background: #d9c7ac;
}

.art-ink {
  background: #7f735e;
}

.phone-mock {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: -29px;
  width: 112px;
  height: 198px;
  border: 8px solid var(--ink);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(30, 30, 20, 0.2);
}

.phone-mock > i {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px auto 12px;
  background: var(--ink);
}

.phone-mock > b,
.phone-mock > span,
.phone-mock > em {
  display: block;
  margin: 0 10px;
}

.phone-mock > b {
  height: 48px;
  background: var(--green);
}

.phone-mock > span {
  height: 5px;
  margin-top: 11px;
  background: var(--paper-strong);
}

.phone-mock > span + span {
  width: 52%;
}

.phone-mock > em {
  height: 30px;
  margin-top: 13px;
  border: 1px solid var(--line);
}

.mini-panel {
  position: absolute;
  left: 22px;
  bottom: 26px;
  width: 55%;
  padding: 22px;
  background: var(--white);
}

.mini-panel b,
.mini-panel span {
  display: block;
  height: 7px;
  background: var(--green);
}

.mini-panel span {
  width: 82%;
  height: 4px;
  margin-top: 12px;
  background: var(--paper-strong);
}

.mini-panel span:last-child {
  width: 58%;
}

.art-consult {
  background: #bfcbbd;
}

.dialogue {
  position: absolute;
  top: 62px;
  right: 28px;
  width: 70%;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(23, 37, 31, 0.12);
}

.dialogue b {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--green);
  color: white;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 9px;
}

.dialogue span {
  display: block;
  width: 74%;
  height: 5px;
  margin: 11px 0 0 43px;
  background: var(--paper-strong);
}

.dialogue span:last-child {
  width: 48%;
}

.dialogue-second {
  top: 151px;
  right: 78px;
  width: 58%;
}

.dialogue-second b {
  background: var(--orange);
}

.art-document {
  background: #d8c7b9;
}

.paper-stack {
  position: absolute;
  right: 46px;
  bottom: -8px;
  width: 61%;
  height: 176px;
  background: var(--white);
  box-shadow:
    -12px -12px 0 rgba(255, 253, 248, 0.55),
    -24px -24px 0 rgba(255, 253, 248, 0.25);
  padding: 27px;
}

.paper-stack i {
  display: block;
  width: 48px;
  height: 7px;
  background: var(--orange);
}

.paper-stack b {
  display: block;
  width: 70%;
  height: 9px;
  margin-top: 18px;
  background: var(--ink);
}

.paper-stack span {
  display: block;
  height: 4px;
  margin-top: 12px;
  background: var(--paper-strong);
}

.art-hr {
  background: #b9c6cc;
}

.org-chart {
  position: absolute;
  right: 38px;
  bottom: 27px;
  width: 73%;
  height: 137px;
  border-top: 1px solid rgba(23, 37, 31, 0.25);
}

.org-chart b,
.org-chart i {
  position: absolute;
  display: block;
  width: 62px;
  height: 48px;
  background: var(--white);
  box-shadow: 0 12px 25px rgba(23, 37, 31, 0.1);
}

.org-chart b {
  top: -24px;
  left: calc(50% - 31px);
  background: var(--green);
}

.org-chart i {
  bottom: 0;
}

.org-chart i:nth-of-type(1) {
  left: 0;
}

.org-chart i:nth-of-type(2) {
  left: calc(50% - 31px);
}

.org-chart i:nth-of-type(3) {
  right: 0;
}

.art-technology {
  background: #80918a;
}

.code-card {
  position: absolute;
  right: 30px;
  bottom: 24px;
  width: 74%;
  height: 150px;
  background: #15271f;
  padding: 25px;
  box-shadow: 0 18px 40px rgba(14, 34, 26, 0.25);
}

.code-card b {
  color: var(--sage);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 28px;
}

.code-card span {
  display: block;
  width: 70%;
  height: 4px;
  margin-top: 11px;
  background: rgba(255, 255, 255, 0.28);
}

.code-card span:nth-of-type(2) {
  width: 48%;
}

.code-card span:nth-of-type(3) {
  width: 58%;
}

.product-card-body {
  padding: 25px 24px 22px;
}

.product-category {
  margin: 0;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-card h3 {
  margin: 8px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
}

.product-short {
  min-height: 46px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.product-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.product-price-row strong {
  color: var(--green);
  font-family: "STSong", "Songti SC", serif;
  font-size: 24px;
}

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

.buy-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
}

.category-section {
  padding: 0 0 118px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.category-panel {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  background: var(--green-dark);
  color: var(--white);
  padding: 48px;
}

.category-consulting {
  background: var(--paper-strong);
  color: var(--ink);
}

.category-panel > p {
  margin: 0;
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.category-consulting > p {
  color: var(--green);
}

.category-index {
  position: absolute;
  top: 42px;
  right: 44px;
  color: rgba(255, 255, 255, 0.35);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 58px;
}

.category-consulting .category-index {
  color: rgba(35, 79, 60, 0.22);
}

.category-panel h2 {
  max-width: 430px;
  margin: auto 0 15px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 38px;
  font-weight: 500;
}

.category-panel > span:not(.category-index) {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.category-consulting > span:not(.category-index) {
  color: var(--muted);
}

.category-panel > b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
  font-size: 11px;
}

.category-consulting > b {
  border-top-color: var(--line);
}

.category-panel i {
  font-size: 20px;
  font-style: normal;
}

.process-section {
  border-top: 1px solid var(--line);
  padding: 118px 0;
}

.process-heading > p {
  align-self: end;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.process-steps article {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 25px 28px 30px 0;
}

.process-steps article + article {
  padding-left: 28px;
}

.process-steps article:last-child {
  border-right: 0;
}

.process-steps span {
  color: var(--green);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 10px;
}

.process-steps h3 {
  margin: 68px 0 12px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 24px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.about-commerce {
  background: var(--white);
  padding: 118px 0;
}

.about-commerce-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--paper-strong);
}

.about-photo {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: rgba(17, 45, 33, 0.12);
  content: "";
}

.about-photo span {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 26px;
  color: white;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-commerce-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
}

.about-commerce-copy h2 {
  margin: 14px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 49px;
  font-weight: 500;
}

.about-intro {
  margin: 25px 0 15px;
  color: var(--green);
  font-family: "STSong", "Songti SC", serif;
  font-size: 21px;
}

.about-commerce-copy > p:not(.section-kicker):not(.about-intro) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.business-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 35px 0 0;
  border-top: 1px solid var(--line);
}

.business-facts div {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.business-facts div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.business-facts div:nth-child(even) {
  padding-left: 20px;
}

.business-facts dt {
  color: var(--muted);
  font-size: 9px;
}

.business-facts dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.scope-section {
  padding: 118px 0;
}

.scope-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.scope-grid h2 {
  margin: 15px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.35;
}

.scope-list {
  border-top: 1px solid var(--ink);
}

.scope-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}

.scope-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.scope-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.final-commerce-cta,
.order-cta,
.catalog-help {
  background: var(--green-dark);
  color: var(--white);
  padding: 90px 0;
}

.final-cta-grid,
.order-cta-inner,
.catalog-help-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.final-cta-grid > div:first-child > p,
.order-cta-inner > div > p,
.catalog-help-grid > div:first-child > p {
  margin: 0 0 15px;
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.final-cta-grid h2,
.order-cta-inner h2,
.catalog-help-grid h2 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 46px;
  font-weight: 500;
}

.final-cta-grid > div:last-child > p,
.catalog-help-grid > div:last-child > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.site-footer {
  background: #102a1f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr 0.65fr 1.05fr;
  gap: 60px;
  padding: 72px 0 58px;
}

.brand-footer .brand-mark {
  background: var(--white);
  color: var(--green-dark);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-summary {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links,
.footer-business {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links h3,
.footer-business h3 {
  margin: 0 0 15px;
  color: var(--sage);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.footer-business p {
  display: grid;
  width: 100%;
  grid-template-columns: 74px 1fr;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.footer-business span {
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  justify-self: end;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.catalog-hero {
  border-bottom: 1px solid var(--line);
  padding: 95px 0 80px;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.catalog-hero h1 {
  margin: 12px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.15;
}

.catalog-hero-grid > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-hero dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0 0;
  border-top: 1px solid var(--ink);
}

.catalog-hero dl div {
  padding: 18px 0;
}

.catalog-hero dl div + div {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.catalog-hero dt {
  color: var(--muted);
  font-size: 9px;
}

.catalog-hero dd {
  margin: 4px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 20px;
  font-weight: 700;
}

.catalog-body {
  padding: 95px 0 118px;
}

.catalog-anchor {
  display: grid;
  grid-template-columns: 55px auto 1fr;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 22px;
}

.catalog-anchor > span {
  color: var(--green);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 10px;
}

.catalog-anchor h2 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 36px;
}

.catalog-anchor p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.catalog-price-note {
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.catalog-price-note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.catalog-body .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.catalog-body .product-art {
  height: 190px;
}

.catalog-body .product-card h3 {
  font-size: 20px;
}

.catalog-body .product-card-body {
  padding: 21px 19px 19px;
}

.catalog-body .product-price-row strong {
  font-size: 20px;
}

.catalog-anchor-bottom {
  margin: 95px 0 0;
  border-top: 1px solid var(--ink);
  padding-top: 26px;
}

.detail-hero {
  border-bottom: 1px solid var(--line);
  padding: 33px 0 92px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 10px;
}

.breadcrumb b {
  color: var(--ink);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
}

.detail-grid > div:first-child .product-art {
  height: 520px;
}

.detail-copy {
  align-self: center;
}

.detail-category {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.detail-copy h1 {
  margin: 16px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.28;
}

.detail-description {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 26px;
}

.detail-price strong {
  color: var(--green);
  font-family: "STSong", "Songti SC", serif;
  font-size: 42px;
}

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

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

.detail-meta p {
  display: grid;
  grid-template-columns: 90px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 12px;
}

.detail-meta span {
  color: var(--muted);
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.detail-content {
  padding: 105px 0;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.detail-content-grid > div:first-child h2 {
  margin: 14px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1.35;
}

.detail-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-lists article {
  background: var(--white);
  padding: 30px;
}

.detail-lists article:last-child {
  grid-column: 1 / -1;
}

.detail-lists h3 {
  margin: 0 0 22px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 22px;
}

.detail-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-lists li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 11px 0 11px 18px;
  color: var(--muted);
  font-size: 12px;
}

.detail-lists li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  content: "";
}

.detail-exclude li::before {
  background: var(--orange);
}

.checkout-wrap,
.payment-wrap,
.orders-wrap {
  padding-top: 32px;
  padding-bottom: 105px;
}

.checkout-title,
.orders-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin: 50px 0 42px;
}

.checkout-title > p,
.orders-heading > p,
.payment-heading p {
  grid-column: 1 / -1;
  margin: 0 0 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.checkout-title h1,
.orders-heading h1,
.payment-heading h1 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 48px;
  font-weight: 500;
}

.checkout-title > span,
.orders-heading > span {
  color: var(--muted);
  font-size: 12px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: start;
  gap: 28px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-section {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
}

.form-section-heading,
.payment-card-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.form-section-heading > span,
.payment-card-title > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--green);
  color: white;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 9px;
}

.form-section-heading h2,
.payment-card-title h2 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 23px;
}

.form-section-heading p,
.payment-card-title p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  padding: 14px;
}

.checkout-art .product-art {
  height: 105px;
}

.checkout-art .art-chip,
.checkout-art .browser-top,
.checkout-art .mini-panel {
  display: none;
}

.checkout-art .browser-mock {
  right: -12px;
  bottom: -15px;
  height: 80%;
  border-width: 4px;
}

.checkout-art .phone-mock {
  right: 16px;
  bottom: -25px;
  width: 58px;
  height: 100px;
  border-width: 4px;
}

.checkout-art .dialogue {
  top: 24px;
  right: 12px;
  width: 82%;
  padding: 9px;
}

.checkout-art .dialogue-second,
.checkout-art .org-chart i,
.checkout-art .paper-stack span,
.checkout-art .code-card span {
  display: none;
}

.checkout-art .paper-stack,
.checkout-art .code-card {
  right: 17px;
  bottom: -8px;
  width: 70%;
  height: 90px;
  padding: 14px;
}

.checkout-product > div:nth-child(2) > p {
  margin: 0;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.checkout-product h3 {
  margin: 5px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 20px;
}

.checkout-product > div:nth-child(2) > span {
  color: var(--muted);
  font-size: 10px;
}

.checkout-unit-price {
  display: flex;
  align-items: end;
  flex-direction: column;
}

.checkout-unit-price strong {
  color: var(--green);
  font-family: "STSong", "Songti SC", serif;
  font-size: 23px;
}

.checkout-unit-price span {
  color: var(--muted);
  font-size: 9px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field > span {
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #fcfaf5;
  padding: 13px 14px;
  font-size: 12px;
}

.field input,
.field select {
  height: 48px;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
}

.field small,
.summary-note {
  color: var(--muted);
  font-size: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.quantity-field {
  max-width: 270px;
  margin-top: 22px;
}

.agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 10px;
}

.agreement input {
  margin-top: 4px;
  accent-color: var(--green);
}

.agreement a {
  color: var(--green);
  font-weight: 800;
}

.form-error {
  min-height: 20px;
  color: #a53d32;
  font-size: 11px;
}

.submit-order {
  align-self: flex-end;
  min-width: 240px;
  border: 0;
}

.order-summary {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  background: var(--green-dark);
  color: white;
  padding: 30px;
}

.summary-label {
  margin: 0;
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.order-summary h2 {
  margin: 10px 0 25px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 27px;
}

.order-summary dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.order-summary dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 13px 0;
  font-size: 10px;
}

.order-summary dt {
  color: rgba(255, 255, 255, 0.42);
}

.order-summary dd {
  margin: 0;
  text-align: right;
}

.summary-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 28px;
}

.summary-total span {
  font-size: 11px;
}

.summary-total strong {
  color: var(--sage);
  font-family: "STSong", "Songti SC", serif;
  font-size: 31px;
}

.summary-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
}

.payment-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 48px 0 42px;
}

.status-badge {
  border: 1px solid var(--green);
  padding: 6px 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: start;
  gap: 28px;
}

.payment-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.payment-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
}

.confirm-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.confirm-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 12px;
}

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

.confirm-list dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-methods label {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  padding: 16px;
  cursor: pointer;
}

.payment-methods label:has(input:checked) {
  border-color: var(--green);
  background: #f0f4ee;
}

.payment-methods input {
  position: absolute;
  opacity: 0;
}

.pay-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  font-style: normal;
  font-weight: 800;
}

.pay-wechat {
  background: #2b9b5f;
}

.pay-alipay {
  background: #2787c9;
}

.payment-methods span {
  display: flex;
  flex-direction: column;
}

.payment-methods strong {
  font-size: 12px;
}

.payment-methods small {
  color: var(--muted);
  font-size: 9px;
}

.payment-methods label > b {
  color: var(--green);
  font-size: 9px;
}

.payment-message {
  display: none;
  margin-top: 20px;
  border-left: 3px solid var(--green);
  background: #eef3eb;
  padding: 15px 17px;
}

.payment-message.show {
  display: flex;
  flex-direction: column;
}

.payment-message strong {
  font-size: 12px;
}

.payment-message span,
.payment-message.error {
  color: var(--muted);
  font-size: 10px;
}

.payment-message.error {
  border-color: var(--red);
  background: #f7ebe8;
}

.payment-summary {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  background: var(--green-dark);
  color: white;
  padding: 36px;
}

.payment-summary > p {
  margin: 0;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
}

.payment-summary > strong {
  margin-top: 12px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 46px;
}

.payment-summary > span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.payment-summary .button {
  width: 100%;
  margin-top: 30px;
  border: 0;
  background: var(--white);
  color: var(--green-dark);
}

.payment-summary .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.payment-summary > small {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.secure-note {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
}

.secure-note b {
  font-size: 10px;
}

.secure-note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-row {
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 0.75fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px 28px;
}

.order-row > div {
  display: flex;
  flex-direction: column;
}

.order-row span,
.order-row small {
  color: var(--muted);
  font-size: 9px;
}

.order-row strong {
  margin: 3px 0;
  font-size: 12px;
}

.empty-state {
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.empty-state > p {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.empty-state h1 {
  margin: 12px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 45px;
  font-weight: 500;
}

.empty-state > span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.empty-state .button {
  margin-top: 28px;
}

.policy-hero {
  border-bottom: 1px solid var(--line);
  padding: 90px 0 70px;
}

.policy-hero h1 {
  margin: 13px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 57px;
  font-weight: 500;
}

.policy-hero span {
  color: var(--muted);
  font-size: 10px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding-top: 75px;
  padding-bottom: 110px;
}

.policy-nav {
  position: sticky;
  top: 110px;
  display: flex;
  align-self: start;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.policy-nav a {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 12px;
  font-weight: 700;
}

.policy-content {
  max-width: 760px;
}

.policy-content section {
  scroll-margin-top: 120px;
  margin-bottom: 85px;
}

.policy-content section > p:first-child {
  margin: 0;
  color: var(--green);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 10px;
}

.policy-content h2 {
  margin: 9px 0 28px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 20px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 36px;
}

.policy-content h3 {
  margin: 27px 0 8px;
  font-size: 14px;
}

.policy-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enter-right {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .commerce-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .commerce-hero-grid {
    padding-top: 85px;
  }

  .hero-lead {
    max-width: 700px;
  }

  .hero-photo {
    height: 480px;
  }

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

  .catalog-body .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .scope-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-commerce-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
  }

  .footer-business {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-business h3 {
    grid-column: 1 / -1;
  }

  .checkout-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .payment-summary {
    position: static;
  }

  .payment-summary {
    order: -1;
  }

  .order-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .top-notice-inner {
    grid-template-columns: 1fr auto;
  }

  .top-notice-inner p {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-order span {
    display: none;
  }

  .commerce-hero-grid {
    gap: 48px;
    padding-top: 62px;
    padding-bottom: 55px;
  }

  .commerce-hero h1 {
    font-size: clamp(43px, 13.5vw, 58px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero-trust {
    margin-top: 45px;
  }

  .hero-trust div {
    padding-left: 11px;
  }

  .hero-trust strong {
    font-size: 18px;
  }

  .hero-trust span {
    font-size: 9px;
  }

  .hero-photo {
    height: 370px;
  }

  .hero-photo > p {
    width: 74%;
  }

  .hero-quick-products {
    grid-template-columns: 1fr;
  }

  .hero-quick-products a:last-child {
    grid-column: auto;
  }

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

  .trustbar-grid p {
    min-height: 67px;
    border-bottom: 1px solid var(--line);
    padding: 0 12px;
  }

  .trustbar-grid p:first-child {
    padding-left: 12px;
  }

  .market-section,
  .process-section,
  .about-commerce,
  .scope-section {
    padding: 80px 0;
  }

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

  .product-art,
  .catalog-body .product-art {
    height: 235px;
  }

  .category-section {
    padding-bottom: 80px;
  }

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

  .category-panel {
    min-height: 350px;
    padding: 35px 28px;
  }

  .category-index {
    top: 30px;
    right: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article,
  .process-steps article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 28px;
  }

  .process-steps h3 {
    margin-top: 30px;
  }

  .about-photo {
    min-height: 390px;
  }

  .about-commerce-copy {
    padding: 48px 27px;
  }

  .about-commerce-copy h2 {
    font-size: 40px;
  }

  .business-facts {
    grid-template-columns: 1fr;
  }

  .business-facts div:nth-child(odd) {
    border-right: 0;
  }

  .business-facts div:nth-child(even) {
    padding-left: 0;
  }

  .scope-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final-cta-grid,
  .order-cta-inner,
  .catalog-help-grid,
  .catalog-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .final-commerce-cta,
  .order-cta,
  .catalog-help {
    padding: 70px 0;
  }

  .final-cta-grid h2,
  .order-cta-inner h2,
  .catalog-help-grid h2 {
    font-size: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-business {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-business h3 {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
    text-align: center;
  }

  .footer-bottom p:last-child {
    justify-self: center;
  }

  .catalog-hero {
    padding: 70px 0 60px;
  }

  .catalog-anchor {
    grid-template-columns: 42px 1fr;
  }

  .catalog-anchor p {
    grid-column: 2;
    justify-self: start;
  }

  .detail-hero {
    padding-bottom: 65px;
  }

  .detail-grid > div:first-child .product-art {
    height: 390px;
  }

  .detail-copy h1 {
    font-size: 43px;
  }

  .detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-content {
    padding: 75px 0;
  }

  .detail-lists {
    grid-template-columns: 1fr;
  }

  .detail-lists article:last-child {
    grid-column: auto;
  }

  .checkout-title,
  .orders-heading {
    grid-template-columns: 1fr;
  }

  .checkout-title > span,
  .orders-heading > span {
    margin-top: 9px;
  }

  .checkout-title h1,
  .orders-heading h1,
  .payment-heading h1 {
    font-size: 39px;
  }

  .form-section,
  .payment-card {
    padding: 25px 20px;
  }

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

  .checkout-unit-price {
    grid-column: 2;
    align-items: flex-start;
  }

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

  .field-full {
    grid-column: auto;
  }

  .submit-order {
    width: 100%;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .confirm-list dd {
    text-align: left;
  }

  .order-row {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    padding: 65px 0 55px;
  }

  .policy-hero h1 {
    font-size: 43px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .policy-nav {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
