:root {
  color-scheme: light;
  --ink: #1d2028;
  --muted: #69707f;
  --soft: #f4f6fb;
  --paper: #ffffff;
  --line: #e4e8f1;
  --red: #ff3b13;
  --red-dark: #df2400;
  --pink: #ff0a4f;
  --blue: #3977d6;
  --gold: #f7b731;
  --green: #19a974;
  --shadow: 0 26px 80px rgba(26, 35, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 59, 19, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 52%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 24px;
  position: relative;
  z-index: 5;
}

.brand,
.nav-links,
.header-action,
.hero-actions,
.trust-strip,
.checkout-options,
.site-footer {
  align-items: center;
  display: flex;
}

.brand {
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  color: var(--muted);
  font-size: 0.95rem;
  gap: 24px;
}

.nav-links a:hover {
  color: var(--red-dark);
}

.header-action,
.primary-button,
.secondary-button {
  border-radius: 8px;
  font-weight: 900;
  min-height: 46px;
}

.header-action {
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
}

.hero-section {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  margin: 0 auto;
  max-width: 1200px;
  min-height: calc(100vh - 78px);
  padding: 38px 24px 84px;
}

.hero-kicker {
  color: var(--red-dark);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.22;
  margin-bottom: 12px;
}

.hero-text,
.product-card p,
.proof-copy p,
.service-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.primary-button,
.secondary-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 0 20px;
}

.primary-button {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 59, 19, 0.22);
}

.secondary-button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.trust-strip {
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
}

.order-preview {
  background: #fff;
  border: 1px solid #edf0f6;
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-height: 620px;
  overflow: hidden;
  padding: 54px 34px 34px;
  position: relative;
}

.browser-bar {
  align-items: center;
  background: #f0f3f8;
  border-radius: 7px;
  color: #5b6270;
  display: flex;
  gap: 9px;
  height: 38px;
  left: 28px;
  padding: 0 12px;
  position: absolute;
  right: 28px;
  top: 24px;
}

.lock-dot {
  background: #848c9b;
  border-radius: 3px;
  height: 11px;
  width: 11px;
}

.address-text {
  display: block;
  flex: 1;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-icon {
  color: #7a8190;
  flex: 0 0 auto;
}

.checkout-card {
  background: #f7f9fe;
  border: 1px solid #edf1f8;
  border-radius: 8px;
  margin-top: 60px;
  overflow: hidden;
}

.store-line {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e7ecf5;
  color: #7a8291;
  display: flex;
  gap: 9px;
  min-height: 48px;
  padding: 0 14px;
}

.store-line strong {
  color: #2b3039;
  font-size: 0.95rem;
}

.store-badge {
  align-items: center;
  background: var(--pink);
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.order-row {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e7ecf5;
  display: grid;
  gap: 14px;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  min-height: 116px;
  padding: 16px 16px;
}

.product-thumb {
  background: linear-gradient(145deg, #111 0%, #272727 45%, #d4d9e2 46%, #eef1f6 100%);
  border: 1px solid #dde3ed;
  border-radius: 6px;
  height: 58px;
  position: relative;
  width: 58px;
}

.product-thumb span {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  bottom: 12px;
  height: 9px;
  left: 14px;
  position: absolute;
  transform: rotate(8deg);
  width: 32px;
}

.product-copy h2 {
  font-size: 0.98rem;
  line-height: 1.35;
  margin: 0 0 6px;
}

.product-copy p {
  color: #7a8291;
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0 0 7px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag-row span {
  background: #fff3cd;
  border-radius: 4px;
  color: #d17a00;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 5px;
}

.tag-row span:first-child {
  background: #e2fbef;
  color: #13845b;
}

.unit-price {
  color: var(--pink);
  font-size: 1.08rem;
  font-weight: 900;
}

.checkout-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 0.9fr;
  padding: 18px 16px;
}

.message-box {
  color: #7a8291;
  font-size: 0.86rem;
}

.message-box p {
  background: #fff;
  border: 1px solid #e1e6f0;
  border-radius: 6px;
  color: #a0a7b4;
  line-height: 1.5;
  min-height: 54px;
  margin: 8px 0 0;
  padding: 12px;
}

.message-box small {
  color: #a0a7b4;
  display: block;
  font-weight: 800;
  margin-top: -22px;
  padding-right: 12px;
  text-align: right;
}

.fee-list {
  display: grid;
  gap: 13px;
}

.fee-list div {
  align-items: center;
  color: #697184;
  display: flex;
  font-size: 0.86rem;
  justify-content: space-between;
}

.fee-list strong {
  color: var(--pink);
}

.checkout-options {
  background: #fff;
  border-top: 1px solid #e7ecf5;
  color: #8991a0;
  gap: 18px;
  justify-content: center;
  min-height: 54px;
}

.checkout-options span {
  font-size: 0.84rem;
  position: relative;
}

.checkout-options .selected::before {
  background: #5d8cff;
  border-radius: 4px;
  color: #fff;
  content: "✓";
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  height: 14px;
  justify-content: center;
  line-height: 14px;
  margin-right: 5px;
  width: 14px;
}

.payment-panel {
  background: #fff;
  border-left: 6px solid var(--red);
  margin-left: auto;
  max-width: 260px;
  padding: 14px 14px 16px;
}

.payment-total {
  align-items: baseline;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.payment-total span {
  color: #4f5663;
  font-weight: 900;
}

.payment-total strong {
  color: var(--pink);
  font-size: 1.95rem;
  line-height: 1;
}

.payment-panel dl {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
}

.payment-panel dl div {
  display: grid;
  grid-template-columns: 58px 1fr;
}

.payment-panel dt,
.payment-panel dd {
  color: #4f5663;
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0;
}

.payment-panel button {
  background: var(--pink);
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 44px;
  width: 100%;
}

.order-note {
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
  padding: 11px 13px;
  position: absolute;
  z-index: 2;
}

.note-url {
  right: 28px;
  top: 22px;
}

.note-product {
  left: 108px;
  top: 142px;
}

.note-buyer {
  bottom: 88px;
  right: 26px;
}

.note-valid {
  bottom: 24px;
  left: 28px;
  max-width: calc(100% - 56px);
}

.note-url::before,
.note-product::before,
.note-buyer::before {
  border: 5px solid var(--red);
  border-radius: 10px;
  content: "";
  pointer-events: none;
  position: absolute;
}

.note-url::before {
  height: 34px;
  right: -2px;
  top: -9px;
  width: min(790px, calc(100vw - 220px));
}

.note-product::before {
  height: 122px;
  left: -92px;
  top: -20px;
  width: 410px;
}

.note-buyer::before {
  bottom: -50px;
  height: 88px;
  right: -5px;
  width: 210px;
}

.product-section,
.proof-section,
.payment-stage,
.service-section,
.site-footer {
  margin: 0 auto;
  max-width: 1200px;
  padding: 92px 24px;
}

.section-heading,
.proof-copy,
.payment-heading {
  max-width: 760px;
}

.section-heading p,
.proof-copy > p:first-child {
  color: var(--red-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 34px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 28px;
}

.product-card.featured {
  background: var(--ink);
  color: #fff;
}

.product-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.product-card strong {
  color: var(--pink);
  display: block;
  font-size: 2rem;
  margin-top: 28px;
}

.card-topline {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 52px;
}

.proof-section {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 46px;
  grid-template-columns: 0.92fr 1.08fr;
}

.proof-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.proof-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  min-height: 78px;
  padding: 18px 22px;
}

.proof-list div:last-child {
  border-bottom: 0;
}

.proof-list span {
  color: var(--red);
  font-size: 1.08rem;
  font-weight: 900;
}

.service-section {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.service-section div {
  max-width: 740px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  justify-content: space-between;
  padding-bottom: 46px;
  padding-top: 28px;
}

@media (max-width: 1040px) {
  .hero-section,
  .proof-section,
  .payment-layout,
  .service-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .order-preview {
    min-height: 650px;
  }

  .service-section {
    align-items: flex-start;
    display: grid;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-action {
    width: 100%;
    justify-content: center;
  }

  .hero-section,
  .product-section,
  .proof-section,
  .payment-stage,
  .service-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .order-preview {
    margin-left: 0;
    margin-right: 0;
    min-height: 780px;
    padding: 50px 12px 120px;
  }

  .browser-bar {
    left: 12px;
    right: 12px;
  }

  .checkout-card {
    margin-top: 58px;
  }

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

  .unit-price {
    justify-self: start;
  }

  .checkout-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }

  .payment-panel {
    max-width: none;
  }

  .order-note {
    font-size: 1rem;
  }

  .note-url {
    right: 12px;
    top: 18px;
  }

  .note-url::before {
    width: calc(100vw - 138px);
  }

  .note-product {
    left: 86px;
    top: 142px;
  }

  .note-product::before {
    left: -74px;
    width: min(320px, calc(100vw - 62px));
  }

  .note-buyer {
    bottom: 92px;
    right: 12px;
  }

  .note-buyer::before {
    width: 176px;
  }

  .note-valid {
    bottom: 22px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}


.payment-stage {
  border-top: 1px solid var(--line);
}

.payment-heading {
  margin-bottom: 34px;
}

.payment-heading span {
  color: var(--muted);
  display: block;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 720px;
}

.payment-showcase {
  background: #f2f5fb;
  border: 1px solid #dde5f0;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.payment-browser {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e3e8f1;
  border-radius: 8px;
  color: #697184;
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
}

.payment-browser strong {
  color: #2f3746;
  flex: 1;
  font-size: 0.94rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-browser span:last-child {
  background: #e8fff3;
  border-radius: 5px;
  color: #14865f;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 4px 8px;
}

.secure-dot {
  background: #8791a2;
  border-radius: 4px;
  height: 12px;
  width: 12px;
}

.payment-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 330px;
  margin-top: 22px;
}

.payment-main {
  display: grid;
  gap: 16px;
}

.payment-block,
.payment-summary {
  background: #ffffff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
}

.payment-block {
  padding: 20px;
}

.block-title {
  align-items: center;
  border-bottom: 1px solid #edf1f6;
  display: flex;
  justify-content: space-between;
  margin: -2px 0 18px;
  padding-bottom: 14px;
}

.block-title span {
  color: #242936;
  font-size: 1rem;
  font-weight: 900;
}

.block-title em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.block-title button {
  background: #fff3f0;
  border: 1px solid #ffd2c8;
  border-radius: 6px;
  color: var(--red-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 32px;
  padding: 0 12px;
}

.receiver-card {
  background: #fff7f4;
  border: 2px solid var(--red);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 16px;
}

.receiver-card strong {
  color: #202530;
  font-size: 1.18rem;
}

.receiver-card span,
.receiver-card small {
  color: #616b7b;
  line-height: 1.5;
}

.receiver-card small {
  font-weight: 800;
}

.pay-product-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 84px minmax(0, 1fr) auto;
}

.pay-product-image {
  background:
    linear-gradient(135deg, #111 0 43%, transparent 44%),
    linear-gradient(160deg, #eef2f7 0%, #d9e0ea 100%);
  border: 1px solid #d7deea;
  border-radius: 8px;
  height: 84px;
  position: relative;
  width: 84px;
}

.pay-product-image::after {
  background: rgba(48, 56, 68, 0.28);
  border-radius: 999px;
  bottom: 20px;
  content: "";
  height: 12px;
  left: 24px;
  position: absolute;
  transform: rotate(9deg);
  width: 45px;
}

.pay-product-info h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
}

.pay-product-info p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 10px;
}

.pay-product-row > strong {
  color: var(--pink);
  font-size: 1.24rem;
  white-space: nowrap;
}

.pay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-tags span {
  background: #fff3cd;
  border-radius: 5px;
  color: #bd7100;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 4px 7px;
}

.pay-tags span:first-child {
  background: #e5fbf1;
  color: #168b61;
}

.method-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-card {
  align-items: center;
  background: #fbfcff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 14px;
  position: relative;
}

.method-card.selected {
  background: #fff8f6;
  border: 2px solid var(--red);
}

.method-card input {
  accent-color: var(--red);
  position: absolute;
  right: 12px;
  top: 12px;
}

.method-icon {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.method-icon.blue {
  background: #2f7df6;
}

.method-icon.green {
  background: #18aa64;
}

.method-icon.dark {
  background: #262c37;
}

.method-card strong {
  color: #222734;
}

.method-card small {
  color: var(--muted);
  line-height: 1.35;
}

.payment-summary {
  align-self: start;
  border-top: 5px solid var(--red);
  padding: 20px;
  position: relative;
}

.summary-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.summary-head span {
  color: #222734;
  font-size: 1rem;
  font-weight: 900;
}

.summary-head strong {
  background: #fff3f0;
  border-radius: 6px;
  color: var(--red-dark);
  font-size: 0.92rem;
  padding: 5px 8px;
}

.summary-lines {
  border-bottom: 1px solid #edf1f6;
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 18px;
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
}

.summary-lines dt,
.summary-lines dd {
  color: #606a7a;
  font-size: 0.92rem;
  margin: 0;
}

.summary-lines dd {
  color: #222734;
  font-weight: 900;
}

.summary-total {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.summary-total span {
  color: #222734;
  font-weight: 900;
}

.summary-total strong {
  color: var(--pink);
  font-size: 2.65rem;
  line-height: 1;
}

.pay-code {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid #dfe6f0;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 18px;
  max-width: 132px;
  padding: 10px;
}

.pay-code span {
  background: #242936;
  border-radius: 2px;
}

.pay-code span:nth-child(2n),
.pay-code span:nth-child(5),
.pay-code span:nth-child(11) {
  background: #ff3b13;
}

.pay-code span:nth-child(3),
.pay-code span:nth-child(8),
.pay-code span:nth-child(10) {
  background: #eef2f7;
}

.pay-button {
  background: var(--pink);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  min-height: 50px;
  width: 100%;
}

.payment-summary p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 14px 0 0;
}

.payment-marker {
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  padding: 10px 12px;
  position: absolute;
  z-index: 3;
}

.payment-marker::before {
  border: 4px solid var(--red);
  border-radius: 10px;
  content: "";
  pointer-events: none;
  position: absolute;
}

.marker-url {
  right: 40px;
  top: 26px;
}

.marker-url::before {
  height: 42px;
  right: -4px;
  top: -10px;
  width: min(740px, calc(100vw - 320px));
}

.marker-goods {
  left: 176px;
  top: 426px;
}

.marker-goods::before {
  height: 188px;
  left: -148px;
  top: -72px;
  width: min(620px, calc(100vw - 420px));
}

.marker-user {
  left: 126px;
  top: 142px;
}

.marker-user::before {
  height: 104px;
  left: -98px;
  top: -58px;
  width: 462px;
}

.marker-total {
  right: 50px;
  top: 352px;
}

.marker-total::before {
  height: 122px;
  right: -8px;
  top: -52px;
  width: 306px;
}

@media (max-width: 1040px) {
  .method-grid {
    grid-template-columns: 1fr;
  }

  .marker-url::before,
  .marker-goods::before,
  .marker-user::before {
    width: min(620px, calc(100vw - 100px));
  }

  .marker-total {
    bottom: auto;
    top: 360px;
  }
}

@media (max-width: 720px) {
  .payment-showcase {
    padding: 12px;
  }

  .payment-layout,
  .pay-product-row {
    grid-template-columns: 1fr;
  }

  .payment-browser {
    min-height: 40px;
    padding-right: 108px;
  }

  .payment-browser span:last-child {
    display: none;
  }

  .pay-product-row > strong {
    justify-self: start;
  }

  .payment-summary {
    padding-bottom: 98px;
  }

  .payment-marker {
    font-size: 0.85rem;
    padding: 8px 9px;
  }

  .marker-url {
    right: 18px;
    top: 14px;
  }

  .marker-url::before {
    height: 40px;
    right: -5px;
    top: -8px;
    width: calc(100vw - 142px);
  }

  .marker-user {
    left: 96px;
    top: 130px;
  }

  .marker-user::before {
    height: 114px;
    left: -76px;
    top: -56px;
    width: calc(100vw - 64px);
  }

  .marker-goods {
    left: 96px;
    top: 334px;
  }

  .marker-goods::before {
    height: 212px;
    left: -76px;
    top: -96px;
    width: calc(100vw - 64px);
  }

  .marker-total {
    bottom: 122px;
    right: 18px;
  }

  .marker-total::before {
    bottom: -42px;
    height: 118px;
    right: -4px;
    width: min(282px, calc(100vw - 76px));
  }
}
