:root {
  --bg: #07131f;
  --panel: #0b2030;
  --line: rgba(20, 223, 217, 0.48);
  --cyan: #12d8d0;
  --green: #18d578;
  --orange: #c78938;
  --red: #e54545;
  --text: #152033;
  --muted: #6b7485;
  --soft: #f3f6fa;
  --white: #fff;
  --shadow: 0 16px 48px rgba(2, 12, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1180px;
  background: #02070d;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
}

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

button {
  cursor: pointer;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 120px, rgba(175, 31, 112, 0.24), transparent 370px),
    radial-gradient(circle at 18% 560px, rgba(18, 216, 208, 0.12), transparent 420px),
    linear-gradient(180deg, #07131f 0, #07131f 420px, #02070d 100%);
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.top-asset {
  width: 100%;
  height: 63px;
  overflow: hidden;
  background: #06111d;
}

.top-asset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.utility-bar {
  height: 38px;
  background: rgba(3, 13, 24, 0.92);
  color: #d6e2ee;
  border-bottom: 1px solid rgba(18, 216, 208, 0.28);
}

.utility-inner,
.brand-row,
.main-nav,
.hero-grid,
.home-band,
.main-page,
.footer-inner {
  width: 1200px;
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.utility-left,
.utility-right,
.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-link {
  border: 0;
  background: transparent;
  color: #d6e2ee;
  padding: 0;
}

.utility-link:hover,
.utility-link.strong {
  color: var(--cyan);
}

.utility-menu {
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
}

.utility-dropdown {
  position: absolute;
  right: 0;
  top: 38px;
  z-index: 30;
  width: 520px;
  padding: 18px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(7, 24, 36, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.utility-menu:hover .utility-dropdown {
  display: grid;
}

.dropdown-item {
  padding: 9px 10px;
  border: 1px solid rgba(18, 216, 208, 0.22);
  color: #dff9ff;
}

.dropdown-item:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.brand-row {
  height: 126px;
  display: grid;
  grid-template-columns: 250px 1fr 172px;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e9ffff;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border: 3px solid var(--cyan);
  clip-path: polygon(50% 0, 93% 25%, 93% 74%, 50% 100%, 7% 74%, 7% 25%);
  display: grid;
  place-items: center;
  background: rgba(18, 216, 208, 0.1);
}

.logo-mark::before {
  content: "Z";
  font-size: 31px;
  font-weight: 800;
  color: var(--cyan);
}

.logo-text strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: #e9ffff;
}

.logo-text span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  color: #8feee7;
  text-transform: uppercase;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 112px;
  border: 2px solid var(--cyan);
  background: rgba(9, 31, 48, 0.86);
  height: 48px;
}

.search-area {
  min-height: 76px;
}

.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #f7ffff;
  padding: 0 18px;
}

.search-box input::placeholder {
  color: #8fb2c0;
}

.search-box button,
.cart-button,
.primary-btn,
.ghost-btn,
.line-btn,
.order-btn,
.chat-send {
  border: 0;
  border-radius: 4px;
}

.search-box button {
  color: #002926;
  background: var(--cyan);
  font-weight: 700;
}

.hot-words {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  padding-left: 16px;
  color: #9bb7c3;
}

.hot-words button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.hot-words button:hover {
  color: var(--cyan);
}

.cart-button {
  height: 46px;
  border: 1px solid rgba(18, 216, 208, 0.64);
  color: var(--cyan);
  background: rgba(8, 28, 44, 0.78);
}

.main-nav-wrap {
  border-top: 1px solid rgba(18, 216, 208, 0.22);
  border-bottom: 1px solid rgba(18, 216, 208, 0.38);
  background: rgba(5, 16, 29, 0.64);
}

.main-nav {
  display: flex;
  align-items: center;
  height: 52px;
}

.all-cats-tab {
  width: 220px;
  color: #f7ffff;
  font-size: 18px;
  font-weight: 700;
}

.nav-list {
  flex: 1;
  gap: 34px;
  color: #f0fbff;
  font-size: 17px;
}

.nav-list button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 700;
}

.nav-list button:hover,
.nav-list button.active {
  color: var(--cyan);
}

.hero-grid {
  display: grid;
  grid-template-columns: 220px 740px 220px;
  gap: 20px;
  padding: 22px 0 30px;
}

.category-panel,
.welcome-panel {
  min-height: 430px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 44, 0.87);
  color: #e9ffff;
  box-shadow: 0 0 30px rgba(18, 216, 208, 0.12);
}

.category-title {
  height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(18, 216, 208, 0.28);
}

.category-list {
  padding: 8px 0;
}

.category-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  color: #deeff6;
  padding: 14px 18px;
}

.category-row:hover {
  color: var(--cyan);
  background: rgba(18, 216, 208, 0.08);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 430px;
  border: 1px solid var(--line);
  background: #081928;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 0;
}

.slide-dot.active {
  background: var(--cyan);
}

.welcome-panel {
  padding: 18px;
}

.avatar {
  width: 78px;
  height: 78px;
  margin: 10px auto 12px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 32px;
}

.welcome-title {
  text-align: center;
  color: #d9faff;
  margin-bottom: 16px;
}

.welcome-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #022d29;
  font-weight: 700;
  min-height: 38px;
  padding: 0 16px;
}

.ghost-btn {
  background: rgba(18, 216, 208, 0.1);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  min-height: 38px;
  padding: 0 16px;
}

.notice-box {
  margin-top: 18px;
  border-top: 1px solid rgba(18, 216, 208, 0.28);
  padding-top: 14px;
}

.notice-head {
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
}

.notice-list {
  display: grid;
  gap: 9px;
}

.notice-list button {
  text-align: left;
  border: 0;
  padding: 0;
  background: transparent;
  color: #dcebf2;
}

.notice-list button:hover {
  color: var(--cyan);
}

.campaign-strip {
  width: 1200px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(2, 18, 30, 0.82);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 18px;
}

.campaign-tile {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border: 0;
  text-align: left;
  color: #fff;
}

.campaign-tile strong {
  display: block;
  font-size: 20px;
  margin-bottom: 7px;
}

.campaign-tile span {
  display: inline-block;
  margin-top: 14px;
  background: rgba(255,255,255,0.92);
  color: #17756f;
  padding: 8px 14px;
  font-weight: 700;
}

.campaign-hero {
  position: relative;
}

.campaign-hero img {
  width: 100%;
  height: auto;
  filter: contrast(1.06) saturate(1.05);
}

.campaign-hero button {
  position: absolute;
  right: 58px;
  bottom: 56px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  color: #f9ffff;
  border-radius: 4px;
}

.campaign-hero .hotspot {
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 30px;
  border: 0;
  padding: 0;
  background: transparent;
  color: transparent;
}

.campaign-hero .hotspot:hover {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.hs-all {
  left: 92px;
  top: 102px;
}

.hs-bike {
  left: 394px;
  top: 102px;
}

.hs-pile {
  left: 696px;
  top: 102px;
}

.hs-nav {
  left: 999px;
  top: 102px;
}

.home-band {
  margin-top: 22px;
  padding: 28px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title h2 {
  margin: 0;
  color: #071927;
  font-size: 28px;
}

.section-title.dark h2 {
  color: #efffff;
}

.tagline {
  padding: 9px 16px;
  background: #0f695f;
  color: #dcffff;
}

.self-run {
  background: #07131f;
  padding: 28px;
  color: #fff;
  border-top: 3px solid var(--cyan);
}

.self-grid {
  display: grid;
  grid-template-columns: 310px repeat(2, 1fr) 170px;
  grid-template-rows: repeat(2, 210px);
  gap: 12px;
}

.self-promo {
  grid-row: 1 / 3;
  padding: 24px;
  background: linear-gradient(160deg, #37b6ed, #e7f7ff);
  color: #063150;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.self-promo strong {
  font-size: 30px;
}

.self-card,
.product-card {
  position: relative;
  background: #fff;
  color: var(--text);
  overflow: hidden;
}

.self-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 14px 18px;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}

.self-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 18, 36, 0.16);
}

.self-card h3 {
  min-height: 64px;
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.self-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.self-card img {
  height: 124px;
  max-width: 94%;
  margin: auto auto 0;
  object-fit: contain;
}

.hot-rank {
  grid-row: 1 / 3;
  background: #f7f9fc;
  padding: 20px;
}

.hot-rank h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.hot-rank button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 11px 10px;
  margin-bottom: 10px;
  color: #344055;
}

.category-floor {
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5ebf2;
}

.floor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #0e9d95;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.floor-head h2 {
  margin: 0;
  font-size: 24px;
}

.floor-keywords {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.floor-grid {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 14px;
}

.floor-banner {
  min-height: 360px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(145deg, #0c7f8a, #12315e);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floor-banner h3 {
  margin: 0;
  font-size: 26px;
}

.floor-banner p {
  line-height: 1.8;
}

.product-card {
  border: 1px solid #e8edf3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 35, 55, 0.12);
}

.product-card button.card-hit {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.product-img {
  height: 170px;
  background: #f7f8fb;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.product-info {
  padding: 12px;
}

.product-title {
  min-height: 42px;
  line-height: 1.55;
  color: #1a2536;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.price {
  color: #e53935;
  font-weight: 800;
  font-size: 18px;
}

.merchant-pill {
  color: #0b807a;
  background: #e7fbf9;
  padding: 4px 7px;
  border-radius: 4px;
  max-width: 98px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-page {
  padding: 32px 0 48px;
}

.page-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  box-shadow: 0 8px 22px rgba(26, 43, 70, 0.05);
  padding: 28px;
}

.page-title {
  margin: 0 0 22px;
  font-size: 28px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e8edf3;
}

.tab {
  border: 0;
  background: transparent;
  padding: 0 18px 14px;
  color: var(--muted);
  font-weight: 700;
}

.tab.active {
  color: #0b8f87;
  border-bottom: 3px solid #0b8f87;
}

.listing-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
}

.filter-panel {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 18px;
  align-self: start;
}

.filter-panel h3 {
  margin: 0 0 12px;
}

.filter-panel button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #e4eaf2;
  background: #fff;
  text-align: left;
}

.filter-panel button.active {
  color: #0b8f87;
  border-color: #0b8f87;
  background: #ecfffd;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 34px;
}

.gallery-main {
  height: 430px;
  border: 1px solid #e3e9f1;
  background: #fff;
  display: grid;
  place-items: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  height: 86px;
  border: 1px solid #e4eaf2;
  background: #fff;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.detail-main h1 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.35;
}

.detail-sub {
  color: var(--muted);
  margin-bottom: 18px;
}

.price-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #fff5f4;
  margin-bottom: 18px;
}

.price-panel .price {
  font-size: 30px;
}

.specs {
  display: grid;
  gap: 14px;
}

.spec-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
}

.spec-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-options button {
  border: 1px solid #d9e2ec;
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
}

.spec-options button.active {
  border-color: #0b8f87;
  color: #0b8f87;
  background: #ecfffd;
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.detail-actions button {
  min-width: 140px;
  height: 46px;
}

.detail-sections {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.detail-section {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 28px;
}

.detail-section h3 {
  margin: 0 0 12px;
}

.detail-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.detail-image-grid img {
  display: block;
  width: 88%;
  max-width: 860px;
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border: 0;
  padding: 0;
}


.product-detail-lower {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.detail-side-panel {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.store-visit-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  background: #f4f6f8;
  border: 1px solid #e5ebf2;
}

.store-logo-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #121820;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  padding: 8px;
}

.store-visit-info h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.4;
  color: #1d2736;
}

.store-visit-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #b8843f;
  font-weight: 700;
}

.store-related {
  padding: 14px;
  background: #07131f;
  border: 1px solid rgba(0, 224, 224, 0.35);
  color: #e9fbff;
}

.store-related h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.store-related-list {
  display: grid;
  gap: 10px;
}

.store-related-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.store-related-item:hover {
  border-color: var(--cyan);
  background: rgba(0,224,224,0.08);
}

.store-related-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
}

.store-related-item strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
}

.store-related-item em {
  display: block;
  margin-top: 5px;
  color: #9fb5c2;
  font-size: 12px;
  font-style: normal;
}

.license-panel {
  padding: 18px;
  border: 1px solid #e4eaf2;
  background: #f7fafc;
}

.license-panel .primary-btn {
  width: 100%;
}

.license-preview {
  margin-top: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e1e8f0;
}

.license-preview img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.merchant-hero {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 26px;
  align-items: center;
}

.merchant-hero > img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border: 1px solid #e4eaf2;
  background: #fff;
}

.merchant-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat-box {
  padding: 14px;
  background: #f5faf9;
  border: 1px solid #dceeed;
}

.license-img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border: 1px solid #e4eaf2;
  background: #fff;
}

.merchant-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.merchant-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #e5ebf2;
}

.merchant-card h3 {
  margin: 0 0 10px;
}

.merchant-card p {
  color: var(--muted);
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #dce4ef;
  border-radius: 4px;
  padding: 12px;
  outline: 0;
  background: #fff;
}

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

.check-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.agreement-box {
  max-height: 240px;
  overflow: auto;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e3eaf2;
  line-height: 1.9;
}

.agreement-box h3,
.article h3 {
  margin: 16px 0 8px;
}

.agreement-signoff {
  margin-top: 34px;
  text-align: right;
  line-height: 2;
  color: #13233a;
  font-weight: 700;
}

.inline-link {
  display: inline;
  margin: 0;
  vertical-align: baseline;
}

.article {
  line-height: 1.95;
  color: #253348;
}

.article p {
  margin: 0 0 12px;
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-item {
  border-bottom: 1px solid #edf1f6;
  padding-bottom: 14px;
}

.article-item h3 {
  margin: 0 0 8px;
}

.article-date {
  color: var(--muted);
  font-size: 13px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
}

.checkout-section {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 22px;
  margin-bottom: 18px;
}

.checkout-section h3 {
  margin: 0 0 16px;
}

.order-summary {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
}

.summary-total {
  border-top: 1px solid #e7edf4;
  margin-top: 16px;
  padding-top: 16px;
}

.order-card {
  background: #fff;
  border: 1px solid #e4eaf2;
  margin-bottom: 18px;
}

.order-head {
  display: flex;
  justify-content: space-between;
  background: #f1f4f8;
  padding: 12px 18px;
  color: #5d6878;
}

.order-body {
  display: grid;
  grid-template-columns: 1fr 140px 150px 150px;
  min-height: 130px;
}

.order-product {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid #edf1f6;
}

.order-product img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #f8fafc;
}

.order-cell {
  display: grid;
  place-items: center;
  border-right: 1px solid #edf1f6;
  padding: 18px;
  text-align: center;
}

.order-actions {
  display: grid;
  gap: 9px;
}

.line-btn {
  min-height: 34px;
  border: 1px solid #c78938;
  color: #9a6423;
  background: #fff;
  padding: 0 12px;
}

.order-btn {
  min-height: 36px;
  background: var(--orange);
  color: #fff;
  padding: 0 14px;
}

.progress-head {
  background: #fff;
  padding: 28px 34px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.progress-status {
  color: #a87535;
  font-size: 28px;
  font-weight: 800;
  border-right: 1px solid #e5ebf2;
}

.progress-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-left: 28px;
}

.progress-step {
  position: relative;
  color: #8b95a5;
}

.progress-step strong {
  display: block;
  color: #a87535;
  margin-bottom: 6px;
}

.progress-step::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #c78938;
  margin-bottom: 8px;
}

.logistics-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 24px;
}

.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
  border-left: 2px solid #dce4ef;
}

.timeline li {
  position: relative;
  padding: 0 0 18px 20px;
  color: #596579;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0b8f87;
}

.modal-mask {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.56);
}

.modal {
  width: 520px;
  max-height: 86vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal.wide {
  width: 760px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #edf1f6;
}

.modal-head h3 {
  margin: 0;
}

.modal-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #8c96a5;
}

.modal-body {
  padding: 22px;
}

.toast {
  position: fixed;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  z-index: 120;
  padding: 12px 20px;
  background: rgba(9, 28, 42, 0.96);
  color: #eaffff;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.chat-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
}

.chat-button {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 0;
  color: #052d29;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 151, 143, 0.38);
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 360px;
  background: #fff;
  border: 1px solid #dce5ef;
  box-shadow: var(--shadow);
  display: none;
}

.chat-window.open {
  display: block;
}

.chat-head {
  padding: 14px 16px;
  background: #0b2030;
  color: #eaffff;
  display: flex;
  justify-content: space-between;
}

.chat-body {
  height: 300px;
  overflow: auto;
  padding: 14px;
  background: #f6f9fc;
}

.faq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e5ebf2;
}

.faq-row button {
  border: 1px solid #cdd8e5;
  background: #fff;
  padding: 6px 9px;
  border-radius: 4px;
}

.message {
  margin: 0 0 10px;
  display: flex;
}

.message.user {
  justify-content: flex-end;
}

.bubble {
  max-width: 82%;
  padding: 9px 11px;
  border-radius: 8px;
  line-height: 1.6;
}

.message.bot .bubble {
  background: #fff;
  border: 1px solid #e2eaf3;
}

.message.user .bubble {
  background: #dcfbf8;
  color: #07564f;
}

.footer {
  background: #06111d;
  color: #aab7c8;
  padding-top: 30px;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.promise {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
}

.promise b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  font-size: 22px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 170px;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #f4fbff;
}

.footer-col button,
.footer-bottom button {
  display: block;
  border: 0;
  background: transparent;
  color: #aab7c8;
  padding: 0;
  margin-bottom: 10px;
  text-align: left;
}

.footer-col button:hover,
.footer-bottom button:hover {
  color: var(--cyan);
}

.qr {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid var(--cyan);
  background: rgba(0, 224, 224, 0.06);
}

.qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  padding: 24px 0 32px;
  text-align: center;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 18px;
}

.empty-state {
  padding: 46px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid #e5ebf2;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
}

.success-panel {
  text-align: center;
  padding: 54px 28px;
}

.success-panel h2 {
  margin: 0 0 12px;
  color: #0b8f87;
  font-size: 30px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-card {
  border: 1px solid #e5ebf2;
  padding: 18px;
  background: #fff;
}

.support-card h3 {
  margin: 0 0 10px;
}

.status-badge {
  display: inline-block;
  color: #0b8f87;
  background: #e8fbf8;
  padding: 4px 8px;
  border-radius: 4px;
}

@media (max-width: 1240px) {
  body {
    min-width: 1040px;
  }

  .container,
  .utility-inner,
  .brand-row,
  .main-nav,
  .hero-grid,
  .home-band,
  .main-page,
  .footer-inner,
  .campaign-strip {
    width: 1040px;
  }

  .hero-grid {
    grid-template-columns: 210px 600px 210px;
  }

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