:root {
  --ink: #101819;
  --muted: #657271;
  --line: rgba(16, 24, 25, 0.08);
  --cream: #fff8ee;
  --paper: rgba(255, 255, 255, 0.84);
  --mint: #31dcc1;
  --leaf: #5bed95;
  --deep: #078f7d;
  --sun: #ffd86b;
  --sky: #78d8ff;
  --coral: #ff7d67;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-line: rgba(255, 255, 255, 0.58);
  --shadow: 0 24px 58px rgba(20, 75, 67, 0.16);
  --soft-shadow: 0 14px 36px rgba(25, 75, 66, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 216, 107, 0.34), transparent 24rem),
    radial-gradient(circle at 78% 0%, rgba(49, 220, 193, 0.42), transparent 26rem),
    linear-gradient(135deg, #fff9f0 0%, #ebfff8 52%, #f6fbff 100%);
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(16px) saturate(1.22);
  -webkit-backdrop-filter: blur(16px) saturate(1.22);
}

button:active {
  transform: translateY(2px) scale(0.97);
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-shell {
  position: relative;
  width: min(100%, 430px);
  height: min(930px, calc(100vh - 36px));
  min-height: 720px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% -8%, rgba(91, 237, 149, 0.38), transparent 16rem),
    linear-gradient(180deg, rgba(229, 255, 247, 0.97), rgba(255, 248, 238, 0.98) 52%, #fbfffd 100%);
  box-shadow: 0 30px 80px rgba(25, 74, 67, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.screen {
  position: absolute;
  inset: 0;
  display: none;
  overflow-y: auto;
  padding: 16px 16px 24px;
  scrollbar-width: none;
}

.screen.active {
  display: block;
}

.home-screen {
  padding: 14px 16px;
}

.home-screen.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.screen::-webkit-scrollbar,
.quick-scroll::-webkit-scrollbar,
.filters::-webkit-scrollbar {
  display: none;
}

.exchange-screen {
  padding-bottom: 130px;
}

.hero-panel {
  position: relative;
  padding: 14px 13px 13px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 0%, rgba(91, 237, 149, 0.82), transparent 8rem),
    linear-gradient(140deg, rgba(49, 220, 193, 0.92), rgba(255, 248, 238, 0.8) 60%, rgba(255, 216, 107, 0.34));
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 142px;
  height: 142px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  z-index: -1;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  left: -28px;
  bottom: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  z-index: -1;
}

.brand-row,
.page-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.brand-row {
  margin-bottom: 10px;
  justify-content: center;
  text-align: center;
}

.page-top {
  align-items: center;
  margin-bottom: 14px;
}

.page-top > div {
  flex: 1;
  text-align: center;
}

.page-top h1 {
  margin-bottom: 0;
  font-size: 27px;
}

.top-spacer {
  width: 42px;
  height: 42px;
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--deep);
  text-transform: uppercase;
  text-align: center;
}

h1 {
  margin-bottom: 6px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: 0;
}

.slogan {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 800;
  color: rgba(16, 24, 25, 0.68);
}

.icon-button,
.close-button,
.back-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(25, 74, 67, 0.12);
  flex: 0 0 auto;
}

.back-button {
  background: rgba(16, 24, 25, 0.06);
  box-shadow: none;
}

.banner {
  position: relative;
  aspect-ratio: 2.05 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.banner:active {
  cursor: grabbing;
}

.banner-track {
  height: 100%;
  display: flex;
  transform: translateX(calc(var(--slide, 0) * -100%));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.banner-track.dragging {
  transition: none;
}

.banner-slide {
  min-width: 100%;
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 125, 103, 0.42), transparent 8rem),
    linear-gradient(135deg, #eafff8 0%, #fff5df 100%);
  overflow: hidden;
}

.banner-slide:nth-child(2) {
  background:
    radial-gradient(circle at 76% 36%, rgba(120, 216, 255, 0.52), transparent 8rem),
    linear-gradient(135deg, #effff9 0%, #fff8ee 100%);
}

.banner-slide:nth-child(3) {
  background:
    radial-gradient(circle at 78% 36%, rgba(91, 237, 149, 0.58), transparent 8rem),
    linear-gradient(135deg, #f1fff9 0%, #fff7e8 100%);
}

.banner-slide:nth-child(4) {
  background:
    radial-gradient(circle at 80% 34%, rgba(255, 216, 107, 0.46), transparent 8rem),
    linear-gradient(135deg, #ecfff9 0%, #fff8ea 100%);
}

.banner-slide:nth-child(5) {
  background:
    radial-gradient(circle at 76% 36%, rgba(120, 216, 255, 0.46), transparent 8rem),
    linear-gradient(135deg, #f0fff8 0%, #f8fbff 100%);
}

.banner-slide h2 {
  max-width: 190px;
  margin: 10px 0 7px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: 0;
}

.banner-slide p {
  max-width: 178px;
  margin: 0;
  color: rgba(16, 24, 25, 0.64);
  font-size: 13px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.dots {
  position: absolute;
  left: 20px;
  bottom: 13px;
  display: flex;
  gap: 6px;
}

.dots button {
  width: 6px;
  height: 6px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(16, 24, 25, 0.18);
  transition: width 240ms ease, background 240ms ease;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.dots .active {
  width: 20px;
  background: var(--mint);
}

.mascot {
  position: relative;
  width: 122px;
  height: 152px;
  flex: 0 0 auto;
  margin-right: -8px;
}

.panda-ear {
  position: absolute;
  top: 13px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
}

.panda-ear.left {
  left: 18px;
}

.panda-ear.right {
  right: 18px;
}

.panda-head {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 94px;
  height: 86px;
  border-radius: 42% 42% 48% 48%;
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 24, 25, 0.12);
}

.eye {
  position: absolute;
  top: 31px;
  width: 22px;
  height: 28px;
  border-radius: 50%;
  background: #111;
}

.eye::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 6px;
  left: 8px;
  border-radius: 50%;
  background: #fff;
}

.eye.left {
  left: 18px;
  transform: rotate(9deg);
}

.eye.right {
  right: 18px;
  transform: rotate(-9deg);
}

.nose {
  position: absolute;
  left: 41px;
  top: 52px;
  width: 12px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}

.blush {
  position: absolute;
  bottom: 14px;
  width: 13px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 125, 103, 0.5);
}

.blush.left {
  left: 18px;
}

.blush.right {
  right: 18px;
}

.panda-body {
  position: absolute;
  left: 28px;
  bottom: 0;
  width: 72px;
  height: 60px;
  border-radius: 28px 28px 20px 20px;
  background: linear-gradient(160deg, #31dcc1, #2486db);
}

.badge {
  position: absolute;
  left: 21px;
  top: 14px;
  padding: 3px 5px;
  border-radius: 999px;
  background: #fff;
  color: #2486db;
  font-size: 9px;
  font-weight: 900;
}

.bamboo {
  position: absolute;
  right: -9px;
  top: -8px;
  width: 8px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(#d7ff83, #28ca70);
  transform: rotate(-18deg);
}

.bamboo::before,
.bamboo::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 12px;
  border-radius: 100% 0;
  background: #40e486;
}

.bamboo::before {
  top: 8px;
  left: -24px;
  transform: rotate(-18deg);
}

.bamboo::after {
  top: 24px;
  right: -22px;
  transform: rotate(38deg);
}

.orbit-card {
  width: 110px;
  height: 110px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  box-shadow: var(--soft-shadow);
}

.orbit-card strong {
  font-size: 34px;
}

.orbit-card span {
  color: var(--muted);
  font-weight: 800;
}

.shield-asset {
  width: 112px;
  height: 130px;
  border-radius: 40px 40px 52px 52px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, #31dcc1, #68caff);
  clip-path: polygon(50% 0, 93% 14%, 82% 78%, 50% 100%, 18% 78%, 7% 14%);
  box-shadow: var(--soft-shadow);
}

.injury-asset {
  position: relative;
  width: 108px;
  height: 118px;
  flex: 0 0 auto;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #31dcc1, #ffd86b);
  box-shadow: var(--soft-shadow);
}

.injury-asset::before,
.injury-asset::after,
.injury-asset span {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.injury-asset::before {
  left: 22px;
  top: 26px;
  width: 64px;
  height: 10px;
}

.injury-asset::after {
  left: 22px;
  top: 52px;
  width: 48px;
  height: 10px;
}

.injury-asset span {
  left: 22px;
  bottom: 26px;
  width: 58px;
  height: 10px;
}

.route-asset {
  position: relative;
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #dffcff, #31dcc1);
  box-shadow: var(--soft-shadow);
}

.route-asset::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 56px;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: rgba(16, 24, 25, 0.24);
  transform: rotate(-18deg);
}

.route-asset span,
.route-asset i,
.route-asset b {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px var(--mint);
}

.route-asset span {
  left: 20px;
  bottom: 25px;
}

.route-asset i {
  left: 50px;
  top: 46px;
}

.route-asset b {
  right: 18px;
  top: 28px;
}

.entry-section {
  margin-top: 0;
  padding: 0;
}

.entry-head {
  padding: 0 4px;
  margin-bottom: 8px;
  text-align: center;
}

.entry-head h2 {
  margin-bottom: 0;
  font-size: 25px;
  letter-spacing: 0;
}

.quick-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 1px 8px;
}

.quick-item {
  flex: 0 0 104px;
  min-height: 106px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: var(--ink);
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
  background: linear-gradient(135deg, rgba(49, 220, 193, 0.86), rgba(255, 255, 255, 0.72));
}

.quick-item.tone-mint {
  background: linear-gradient(135deg, #31dcc1, #5bed95);
}

.quick-item.tone-leaf {
  background: linear-gradient(135deg, #61e8a8, #d9ff9b);
}

.quick-item.tone-sky {
  background: linear-gradient(135deg, #68d8ff, #dffcff);
}

.quick-item.tone-teal {
  background: linear-gradient(135deg, #0bb49c, #b8ffe9);
}

.quick-item.tone-sun {
  background: linear-gradient(135deg, #ffd86b, #fff4bb);
}

.quick-item strong {
  font-size: 15px;
}

.quick-item small {
  color: rgba(16, 24, 25, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.quick-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  color: #101819;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 25, 0.06);
  font-weight: 900;
}

.quick-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.injury-entry-section {
  margin: 0;
}

.injury-entry {
  width: 100%;
  min-height: 54px;
  padding: 8px 12px 8px 16px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 216, 107, 0.34), transparent 7rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 255, 248, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(25, 74, 67, 0.09);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
}

.injury-entry em {
  display: block;
  font-style: normal;
}

.injury-entry strong {
  display: block;
  font-size: 16px;
}

.injury-entry em {
  margin-top: 2px;
  color: rgba(16, 24, 25, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.injury-entry i {
  min-width: 44px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(49, 220, 193, 0.18);
  color: var(--deep);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.injury-entry:active {
  transform: translateY(2px) scale(0.985);
}

.video-card {
  position: relative;
  margin: 0;
  min-height: 150px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(49, 220, 193, 0.12)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
}

.video-card video {
  width: 100%;
  height: 164px;
  display: block;
  object-fit: cover;
  background: #eafff8;
}

.video-copy {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  text-align: center;
}

.video-copy h2 {
  margin: 0;
  font-size: 16px;
}

.product-detail-hero > div:last-child,
.drawer-card > .eyebrow,
.drawer-card > h2 {
  text-align: center;
}

.home-footer,
.footer {
  display: grid;
  gap: 5px;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.home-footer {
  padding: 0 10px;
  font-size: 11px;
}

.footer {
  padding: 28px 12px 6px;
  font-size: 11px;
}

.home-footer strong,
.footer strong {
  color: var(--ink);
}

.activate-strip {
  width: 100%;
  min-height: 72px;
  margin: 4px 0 18px;
  padding: 14px 16px;
  border-radius: 22px;
  display: grid;
  gap: 4px;
  text-align: left;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(184, 207, 199, 0.42), transparent 6rem),
    linear-gradient(135deg, rgba(213, 232, 226, 0.94), rgba(239, 246, 241, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 34px rgba(60, 92, 85, 0.1);
}

.activate-strip span {
  font-size: 15px;
  font-weight: 900;
}

.activate-strip strong {
  color: rgba(16, 24, 25, 0.58);
  font-size: 12px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-head > div {
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.segmented {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.segmented button {
  min-width: 48px;
  height: 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.segmented .selected {
  background: var(--ink);
  color: #fff;
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 14px;
}

.filters button {
  flex: 0 0 auto;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.filters .selected {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(49, 220, 193, 0.95), rgba(91, 237, 149, 0.9));
}

.products {
  display: grid;
  gap: 12px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px;
  min-height: 140px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(49, 220, 193, 0.13);
}

.product-art {
  position: relative;
  min-height: 116px;
  border-radius: 20px;
  background: var(--accent);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-art::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  transform: rotate(12deg);
}

.product-art::after {
  content: attr(data-icon);
  position: absolute;
  font-size: 34px;
  font-weight: 900;
}

.product-info {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.tag {
  min-height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(16, 24, 25, 0.06);
  color: rgba(16, 24, 25, 0.68);
  font-size: 11px;
  font-weight: 900;
}

.product-info h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-info p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  display: flex;
  flex-direction: column;
  font-weight: 900;
}

.price strong {
  color: var(--coral);
  font-size: 18px;
}

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

.card-actions {
  display: flex;
  gap: 8px;
}

.ghost-button,
.redeem-button,
.primary-button {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 900;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 25, 0.04), 0 10px 26px rgba(16, 24, 25, 0.08);
}

.redeem-button,
.primary-button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(49, 220, 193, 0.94), rgba(91, 237, 149, 0.88));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(49, 220, 193, 0.3);
}

.tabbar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 8;
  width: min(406px, calc(100vw - 24px));
  height: 74px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(26px) saturate(1.35);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  box-shadow: 0 18px 44px rgba(16, 24, 25, 0.16);
  display: grid;
  padding: 6px;
  transform: translateX(-50%);
}

.tabbar.secondary-nav {
  grid-template-columns: repeat(4, 1fr);
}

.tabbar button {
  border-radius: 18px;
  background: transparent;
  color: #9aa5a4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 900;
}

.tabbar button.active {
  color: var(--ink);
  background: rgba(49, 220, 193, 0.2);
  box-shadow: inset 0 0 0 1px rgba(49, 220, 193, 0.24);
}

.tabbar svg {
  width: 22px;
  height: 22px;
}

.closed-state {
  min-height: 430px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(91, 237, 149, 0.28), transparent 8rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  padding: 32px;
}

.closed-mark {
  width: 84px;
  height: 84px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--leaf));
  font-size: 34px;
  font-weight: 900;
}

.closed-state h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.closed-state p {
  max-width: 250px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.coupon-panel,
.logistics-overview,
.logistics-card,
.mine-card,
.profile-summary,
.package-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.coupon-panel {
  margin: 4px 0 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 84% 12%, rgba(183, 207, 199, 0.34), transparent 7rem),
    linear-gradient(135deg, rgba(213, 232, 226, 0.9), rgba(255, 255, 255, 0.78));
}

.coupon-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.coupon-panel span {
  color: rgba(16, 24, 25, 0.7);
  font-size: 13px;
  font-weight: 900;
}

.coupon-panel strong {
  font-size: 38px;
  line-height: 1;
}

.coupon-panel p {
  margin: 10px 0 0;
  color: rgba(16, 24, 25, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.package-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.package-card {
  padding: 14px;
}

.package-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.package-card h3 {
  margin: 0;
  font-size: 17px;
}

.package-card em {
  font-style: normal;
  color: var(--coral);
  font-size: 18px;
  font-weight: 900;
}

.package-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.package-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(16, 24, 25, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.package-card li span {
  color: var(--muted);
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.package-footer button,
.logistics-actions button,
.mine-grid button,
.mine-grid a {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(49, 220, 193, 0.92), rgba(91, 237, 149, 0.84));
  font-weight: 900;
}

.logistics-card {
  padding: 16px;
}

.logistics-card + .logistics-card {
  margin-top: 12px;
}

.logistics-overview {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  margin: 4px 0 12px;
  padding: 12px;
  background:
    radial-gradient(circle at 90% 8%, rgba(183, 207, 199, 0.3), transparent 6rem),
    rgba(255, 255, 255, 0.82);
}

.order-state {
  min-height: 96px;
  padding: 13px;
  border-radius: 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: rgba(16, 24, 25, 0.05);
}

.order-state.active {
  background:
    linear-gradient(135deg, rgba(213, 232, 226, 0.9), rgba(255, 255, 255, 0.78));
}

.order-state span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.order-state strong {
  font-size: 20px;
}

.order-state p {
  margin: 0;
  color: rgba(16, 24, 25, 0.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.logistics-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.logistics-head span,
.order-brief span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.logistics-head strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.logistics-head em {
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(49, 220, 193, 0.18);
  color: var(--deep);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.order-brief {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(16, 24, 25, 0.05);
}

.order-brief strong {
  font-size: 15px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
  display: grid;
  gap: 0;
}

.timeline li {
  position: relative;
  padding: 0 0 18px 18px;
  border-left: 2px solid rgba(16, 24, 25, 0.09);
}

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

.timeline li.active::before {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(49, 220, 193, 0.18);
}

.timeline li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline strong {
  display: block;
  font-size: 14px;
}

.timeline span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.logistics-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.logistics-detail-card {
  overflow: hidden;
}

.tracking-box {
  margin: 14px 0;
  padding: 14px;
  border-radius: 20px;
  background: rgba(16, 24, 25, 0.05);
}

.tracking-box span,
.tracking-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.tracking-box strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.tracking-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.delivery-map {
  position: relative;
  min-height: 240px;
  margin: 14px 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    radial-gradient(circle at 24% 26%, rgba(255, 216, 107, 0.32), transparent 5rem),
    radial-gradient(circle at 76% 72%, rgba(49, 220, 193, 0.34), transparent 6rem),
    linear-gradient(135deg, #dff8f0, #fff2e4);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.map-road {
  position: absolute;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(16, 24, 25, 0.08);
}

.road-main {
  left: 44px;
  right: 38px;
  top: 118px;
  transform: rotate(-16deg);
}

.road-branch {
  width: 150px;
  right: 34px;
  top: 150px;
  transform: rotate(34deg);
}

.map-pin {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.map-pin i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--deep);
  box-shadow: 0 10px 22px rgba(16, 24, 25, 0.14);
}

.map-pin.active i {
  border-color: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 125, 103, 0.16), 0 10px 22px rgba(16, 24, 25, 0.14);
}

.map-pin strong {
  max-width: 70px;
  text-align: center;
}

.map-pin.warehouse {
  left: 22px;
  top: 34px;
}

.map-pin.hub {
  left: 130px;
  top: 108px;
}

.map-pin.outlet {
  right: 52px;
  top: 72px;
}

.map-pin.destination {
  right: 24px;
  bottom: 24px;
}

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

.tracking-grid div {
  min-height: 72px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(16, 24, 25, 0.05);
}

.tracking-grid strong {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}

.profile-screen {
  background:
    radial-gradient(circle at 20% 6%, rgba(255, 216, 107, 0.34), transparent 8rem),
    radial-gradient(circle at 86% 18%, rgba(124, 209, 194, 0.32), transparent 9rem),
    linear-gradient(180deg, #fff7f1 0%, #f5fffa 48%, #fffdf6 100%);
}

.profile-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.profile-summary.points-balance-card {
  position: relative;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(183, 207, 199, 0.34), transparent 7rem),
    linear-gradient(135deg, rgba(213, 232, 226, 0.92), rgba(236, 245, 241, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 42px rgba(60, 92, 85, 0.12);
}

.profile-summary div {
  min-height: 74px;
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(49, 220, 193, 0.16), rgba(255, 255, 255, 0.76));
}

.profile-summary.points-balance-card div,
.profile-summary.points-balance-card .balance-detail {
  position: relative;
  z-index: 1;
  min-height: 112px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.profile-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.profile-summary.points-balance-card span,
.profile-summary.points-balance-card small,
.profile-summary.points-balance-card p {
  color: rgba(16, 24, 25, 0.7);
  font-weight: 900;
}

.profile-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.balance-main strong {
  font-size: 54px;
  line-height: 0.95;
}

.balance-main small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.balance-detail {
  display: grid;
  align-content: center;
  width: 100%;
  min-height: 112px;
  text-align: left;
}

.balance-detail p {
  margin: 8px 0 0;
  font-size: 13px;
}

.mine-card {
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mine-card h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.mine-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.mine-card p:last-child {
  margin-bottom: 0;
}

.mine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mine-grid button {
  min-height: 86px;
  border-radius: 20px;
  padding: 12px 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.mine-grid a {
  min-height: 86px;
  border-radius: 20px;
  padding: 12px 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.mine-grid .activate-tile {
  color: #101819;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.56), transparent 4.8rem),
    linear-gradient(135deg, rgba(213, 232, 226, 0.96), rgba(238, 246, 242, 0.88));
  box-shadow: 0 16px 34px rgba(60, 92, 85, 0.12);
}

.mine-grid .activate-tile span {
  color: rgba(16, 24, 25, 0.72);
}

.mine-grid .injury-tile {
  color: #101819;
}

.mine-grid a:active {
  transform: translateY(2px) scale(0.97);
}

.mine-grid strong {
  font-size: 14px;
}

.mine-grid span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.points-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.points-line:last-child {
  border-bottom: 0;
}

.points-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.points-line strong {
  font-size: 15px;
}

.faq details {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 8px 0 0;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 190px;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.52), transparent 7rem),
    var(--accent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-detail-hero h2 {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.08;
}

.product-detail-hero p:last-child {
  margin-bottom: 0;
  color: rgba(16, 24, 25, 0.68);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.detail-product-art {
  position: relative;
  min-height: 134px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.detail-product-art::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  transform: rotate(13deg);
}

.detail-product-art::after {
  content: attr(data-icon);
  position: absolute;
  font-size: 42px;
  font-weight: 900;
}

.detail-section {
  margin-top: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
}

.detail-section h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.detail-section p,
.detail-list,
.detail-steps {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 760;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.detail-specs div {
  min-height: 70px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(16, 24, 25, 0.05);
}

.detail-specs span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.detail-specs strong {
  display: block;
  margin-top: 7px;
  font-size: 17px;
}

.detail-list,
.detail-steps {
  padding-left: 18px;
}

.detail-redeem {
  margin-bottom: 12px;
}

.chat-panel {
  min-height: 560px;
  max-height: calc(100vh - 224px);
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 216, 107, 0.22), transparent 7rem),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.support-status {
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(49, 220, 193, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.chat-message {
  max-width: 84%;
  display: grid;
  gap: 5px;
}

.chat-message span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.chat-message p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(16, 24, 25, 0.07);
  font-size: 13px;
  line-height: 1.5;
}

.chat-message.user {
  justify-self: end;
}

.chat-message.user span {
  text-align: right;
}

.chat-message.user p {
  background: linear-gradient(135deg, rgba(49, 220, 193, 0.88), rgba(91, 237, 149, 0.78));
}

.chat-composer {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--soft-shadow);
}

.chat-composer input,
.after-sales-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.chat-composer input {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 14px;
}

.chat-composer button {
  min-width: 70px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--leaf));
  font-weight: 900;
}

.after-type-card,
.after-issue-group {
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 220, 193, 0.16), transparent 5.6rem),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.after-type-card {
  user-select: none;
}

.after-type-card span,
.after-issue-group span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.after-type-card strong,
.after-issue-group strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.after-type-card p {
  margin: 8px 0 0;
  color: rgba(16, 24, 25, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.after-issue-list button {
  min-height: 46px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-weight: 900;
}

.after-issue-list button.selected {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(213, 232, 226, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: var(--soft-shadow);
}

.after-issue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.review-flow {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.flow-step {
  padding: 13px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  box-shadow: var(--soft-shadow);
}

.flow-step.active {
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 20%, rgba(255, 216, 107, 0.28), transparent 5rem),
    rgba(255, 255, 255, 0.82);
}

.flow-step strong,
.flow-step span {
  display: block;
}

.flow-step span {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.45;
}

.after-sales-form {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
}

.after-sales-form textarea {
  resize: none;
  min-height: 98px;
  border-radius: 18px;
  padding: 12px 14px;
  font: inherit;
}

.readonly-value {
  min-height: 50px;
  border: 1px solid rgba(49, 220, 193, 0.28);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: rgba(247, 251, 248, 0.78);
  font-weight: 900;
  user-select: none;
}

.file-field input {
  padding: 13px;
  height: auto;
}

.file-field em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.checkout-summary,
.checkout-form,
.checkout-result,
.statement-summary,
.statement-row {
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(235, 255, 248, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.checkout-summary {
  padding: 16px;
  margin-bottom: 12px;
}

.checkout-head {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.checkout-head span,
.checkout-points span,
.statement-summary span,
.statement-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.checkout-head strong {
  font-size: 22px;
}

.checkout-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.checkout-summary li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(16, 24, 25, 0.045);
  font-size: 13px;
  font-weight: 900;
}

.checkout-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.checkout-points div {
  min-height: 70px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.checkout-points strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.checkout-form {
  padding: 16px;
}

.checkout-result {
  display: none;
  margin-top: 12px;
  padding: 16px;
}

.checkout-result:not(:empty) {
  display: block;
}

.checkout-result strong {
  display: block;
  font-size: 18px;
}

.checkout-result p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.statement-summary {
  padding: 18px;
  margin-bottom: 12px;
}

.statement-summary strong {
  display: block;
  margin: 8px 0;
  font-size: 52px;
  line-height: 0.95;
}

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

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

.statement-row {
  min-height: 76px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.statement-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.statement-row em {
  font-style: normal;
  font-size: 20px;
  font-weight: 900;
}

.statement-row.income em {
  color: var(--deep);
}

.statement-row.spend em {
  color: #ce6f5e;
}

.swipe-ripple {
  position: fixed;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 30;
  background: rgba(49, 220, 193, 0.32);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.58);
  animation: swipeRipple 620ms ease-out forwards;
}

@keyframes swipeRipple {
  from {
    opacity: 0.72;
    transform: scale(0.55);
  }

  to {
    opacity: 0;
    transform: scale(4.6);
  }
}

.drawer {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: rgba(8, 16, 14, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 10;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-card {
  width: min(100%, 430px);
  border-radius: 30px 30px 24px 24px;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(49, 220, 193, 0.2), transparent 10rem),
    #fffdf8;
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(24px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer.open .drawer-card {
  transform: translateY(0);
}

.drawer-card h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.close-button {
  float: right;
  box-shadow: none;
  background: rgba(16, 24, 25, 0.06);
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.field {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  font-weight: 900;
}

.field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
  padding: 0 14px;
  background: #f7fbf8;
  color: var(--ink);
}

.field textarea {
  width: 100%;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
  padding: 12px 14px;
  resize: none;
  background: #f7fbf8;
  color: var(--ink);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(49, 220, 193, 0.8);
  box-shadow: 0 0 0 4px rgba(49, 220, 193, 0.14);
}

.primary-button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

.detail-card {
  max-height: min(78vh, 720px);
  overflow-y: auto;
}

.detail-hero {
  min-height: 170px;
  border-radius: 24px;
  background: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.52);
  transform: rotate(14deg);
}

.detail-hero::after {
  content: attr(data-icon);
  position: relative;
  font-size: 60px;
  font-weight: 900;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.detail-meta div {
  border-radius: 16px;
  padding: 12px;
  background: rgba(16, 24, 25, 0.05);
}

.detail-meta span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.detail-meta strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

/* Unified low-saturation palette based on the home screen. */
.home-screen,
.exchange-screen,
.package-screen,
.logistics-screen,
.profile-screen,
.chat-screen,
.aftersales-screen,
.service-screen,
.product-detail-screen {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 216, 107, 0.18), transparent 9rem),
    radial-gradient(circle at 86% 10%, rgba(49, 220, 193, 0.2), transparent 10rem),
    linear-gradient(180deg, rgba(235, 255, 248, 0.94) 0%, rgba(255, 248, 238, 0.88) 54%, rgba(250, 255, 252, 0.96) 100%);
}

.quick-item {
  --entry-accent: #31dcc1;
  --entry-soft: rgba(49, 220, 193, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 80% 6%, var(--entry-soft), transparent 4.8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(235, 255, 248, 0.66));
  box-shadow: 0 14px 34px rgba(25, 74, 67, 0.1);
}

.quick-item::after {
  display: none;
}

.quick-item small {
  display: none;
}

.quick-item.tone-mint {
  --entry-accent: #31dcc1;
  --entry-soft: rgba(49, 220, 193, 0.22);
}

.quick-item.tone-sky {
  --entry-accent: #88cfc7;
  --entry-soft: rgba(136, 207, 199, 0.2);
}

.quick-item.tone-teal {
  --entry-accent: #0f9f8d;
  --entry-soft: rgba(15, 159, 141, 0.18);
}

.quick-item.tone-sun {
  --entry-accent: #d9c979;
  --entry-soft: rgba(255, 216, 107, 0.2);
}

.quick-item.tone-mint,
.quick-item.tone-sky,
.quick-item.tone-teal,
.quick-item.tone-sun {
  background:
    radial-gradient(circle at 80% 6%, var(--entry-soft), transparent 4.8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(235, 255, 248, 0.68));
}

.quick-icon {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 22px rgba(25, 74, 67, 0.1);
}

.quick-icon img {
  filter: none;
}

.product-card,
.package-card,
.logistics-overview,
.logistics-card,
.mine-card,
.chat-panel,
.after-sales-form,
.after-type-card,
.after-issue-group,
.checkout-summary,
.checkout-form,
.checkout-result,
.statement-summary,
.statement-row,
.detail-section,
.coupon-panel,
.drawer-card,
.closed-state {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(235, 255, 248, 0.58));
  box-shadow: 0 14px 34px rgba(25, 74, 67, 0.1);
}

.profile-summary.points-balance-card,
.activate-strip,
.mine-grid .activate-tile,
.mine-grid .injury-tile {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.52), transparent 5rem),
    linear-gradient(135deg, rgba(218, 239, 232, 0.96), rgba(247, 251, 240, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(60, 92, 85, 0.1);
}

.primary-button,
.redeem-button,
.package-footer button,
.logistics-actions button,
.chat-composer button,
.segmented button.selected,
.filters button.selected,
.after-issue-list button.selected {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(49, 220, 193, 0.78), rgba(91, 237, 149, 0.6));
}

.drawer-card {
  background:
    radial-gradient(circle at 88% 8%, rgba(49, 220, 193, 0.12), transparent 10rem),
    rgba(255, 253, 248, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.2);
}

.logistics-detail-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(49, 220, 193, 0.1), transparent 9rem),
    rgba(255, 253, 248, 0.985);
}

.tracking-box,
.tracking-grid div {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 25, 0.06);
}

.delivery-map {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(135deg, rgba(213, 239, 232, 0.94), rgba(248, 255, 252, 0.96));
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  max-width: min(360px, calc(100vw - 36px));
  transform: translate(-50%, 24px);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(16, 24, 25, 0.92);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 460px) {
  body {
    padding: 0;
  }

  .mini-shell {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .screen {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 31px;
  }

  .banner-slide {
    padding: 18px;
  }

  .logistics-overview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 365px) {
  .product-card {
    grid-template-columns: 84px 1fr;
  }

  .card-actions {
    flex-direction: column;
  }
}

/* Enterprise-grade home refresh. */
.mini-shell {
  border-radius: 36px;
}

.home-screen {
  padding: 22px 20px 20px;
}

.home-screen.active {
  justify-content: flex-start;
  gap: 18px;
}

.home-screen > * {
  flex: 0 0 auto;
}

.brand-row {
  margin-bottom: 18px;
  justify-content: flex-start;
  text-align: left;
}

.brand-kicker {
  margin: 0 0 8px;
  color: rgba(7, 143, 125, 0.86);
  font-size: 11px;
  font-weight: 800;
}

.brand-row h1 {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0 0 8px;
  color: #17332f;
}

.brand-row h1 span {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.brand-row h1 small {
  color: rgba(23, 51, 47, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.slogan {
  color: rgba(23, 51, 47, 0.66);
  font-size: 15px;
  font-weight: 500;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.brand-tags span {
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(23, 51, 47, 0.72);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.hero-panel {
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% -10%, rgba(91, 237, 149, 0.42), transparent 11rem),
    radial-gradient(circle at 0% 72%, rgba(120, 216, 255, 0.2), transparent 10rem),
    linear-gradient(145deg, rgba(235, 255, 248, 0.94), rgba(255, 248, 228, 0.74));
  box-shadow: 0 24px 58px rgba(20, 75, 67, 0.13);
}

.banner {
  aspect-ratio: 1.82 / 1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.46);
}

.banner-slide {
  padding: 20px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 16px;
  align-items: center;
}

.banner-visual {
  min-width: 0;
  display: grid;
  place-items: center;
}

.banner-copy {
  min-width: 0;
  text-align: left;
}

.banner-copy .pill {
  color: rgba(23, 51, 47, 0.78);
  background: rgba(255, 255, 255, 0.72);
}

.banner-copy h2 {
  max-width: none;
  margin: 10px 0 8px;
  color: #17332f;
  font-size: 25px;
  font-weight: 800;
}

.banner-copy p {
  max-width: none;
  color: rgba(23, 51, 47, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.52;
}

.banner-cta {
  min-height: 36px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #078f7d, #31dcc1);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 26px rgba(7, 143, 125, 0.22);
  font-size: 13px;
  font-weight: 900;
}

.banner-cta.secondary {
  color: #17332f;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(217, 255, 235, 0.7));
  box-shadow: 0 12px 24px rgba(25, 75, 66, 0.1);
}

.premium-shield {
  position: relative;
  width: 108px;
  height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 70% 24%, rgba(255, 216, 107, 0.7), transparent 4.2rem),
    linear-gradient(160deg, #2ed2c0, #69c9ff);
  box-shadow: 0 18px 34px rgba(23, 91, 83, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.premium-shield::before {
  content: "";
  position: absolute;
  inset: 15px 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  clip-path: polygon(50% 0, 88% 14%, 79% 72%, 50% 100%, 21% 72%, 12% 14%);
}

.premium-shield span,
.premium-shield i {
  position: absolute;
  left: 35px;
  right: 35px;
  height: 7px;
  border-radius: 999px;
  background: rgba(7, 143, 125, 0.64);
}

.premium-shield span {
  top: 46px;
}

.premium-shield i {
  top: 62px;
}

.mini-mascot {
  transform: scale(0.78);
  transform-origin: center;
  margin: -12px;
}

.orbit-card {
  width: 104px;
  height: 104px;
  border-radius: 30px;
}

.injury-asset,
.route-asset {
  width: 104px;
  height: 112px;
}

.entry-section {
  padding: 0;
}

.entry-head {
  margin-bottom: 12px;
  padding: 0;
  text-align: left;
}

.entry-head .eyebrow,
.workbench-head .eyebrow,
.video-copy .eyebrow {
  text-align: left;
}

.entry-head h2,
.workbench-head h2 {
  color: #17332f;
  font-size: 20px;
  font-weight: 800;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-item {
  min-height: 118px;
  border-radius: 24px;
  padding: 14px 12px;
  gap: 8px;
}

.quick-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.quick-item strong {
  color: #17332f;
  font-size: 15px;
  font-weight: 900;
}

.quick-item small {
  display: block;
  color: rgba(23, 51, 47, 0.56);
  font-size: 11px;
  font-weight: 700;
}

.injury-entry {
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 216, 107, 0.44), transparent 8rem),
    linear-gradient(135deg, rgba(235, 255, 248, 0.9), rgba(255, 249, 226, 0.86));
  box-shadow: 0 16px 34px rgba(25, 75, 66, 0.12);
}

.injury-entry strong {
  color: #17332f;
  font-size: 18px;
}

.injury-entry em {
  color: rgba(23, 51, 47, 0.58);
  font-size: 12px;
}

.injury-entry i,
.workbench-head button {
  min-width: 58px;
  height: 36px;
  color: #fff;
  background: linear-gradient(135deg, #078f7d, #31dcc1);
  box-shadow: 0 12px 24px rgba(7, 143, 125, 0.2);
}

.workbench-card {
  padding: 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(120, 216, 255, 0.2), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 255, 248, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(25, 75, 66, 0.1);
}

.workbench-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.workbench-head h2 {
  margin: 0;
}

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

.workbench-list button {
  min-height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: #17332f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.workbench-list span {
  color: rgba(23, 51, 47, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.workbench-list strong {
  font-size: 25px;
  line-height: 1;
}

.video-card {
  min-height: 146px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.5), transparent 7rem),
    linear-gradient(135deg, rgba(224, 249, 255, 0.9), rgba(235, 255, 248, 0.76));
}

.video-card video {
  height: 150px;
  opacity: 0.88;
}

.mengfu-bubble {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 26px rgba(25, 75, 66, 0.1);
}

.mengfu-bubble strong {
  color: #078f7d;
  font-size: 13px;
  white-space: nowrap;
}

.mengfu-bubble span {
  color: rgba(23, 51, 47, 0.64);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.video-copy {
  left: 14px;
  top: 12px;
  text-align: left;
}

.home-footer {
  color: rgba(23, 51, 47, 0.46);
  font-size: 10px;
}

@media (max-width: 460px) {
  .home-screen {
    padding: 20px;
  }

  .brand-row h1 span {
    font-size: 34px;
  }

  .banner-slide {
    padding: 18px;
  }
}

/* 2026-06-04 focused homepage refinements. */
:root {
  --soft-button-bg: linear-gradient(135deg, rgba(239, 255, 247, 0.98), rgba(198, 245, 224, 0.92));
  --soft-button-ink: #126b5e;
  --soft-button-border: rgba(255, 255, 255, 0.82);
}

.home-screen {
  padding: 20px;
}

.home-screen.active {
  gap: 14px;
}

.hero-panel {
  padding: 18px;
  border-radius: 30px;
}

.brand-row {
  margin-bottom: 14px;
}

.brand-title-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(43, 126, 65, 0.16);
}

.brand-row h1 {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 6px;
}

.brand-row h1 span {
  font-size: 34px;
}

.brand-row h1 small {
  line-height: 1;
}

.slogan {
  margin: 8px 0 0;
}

.brand-tags,
.entry-head,
.workbench-card,
.mengfu-bubble,
.video-copy,
.mine-grid .injury-tile {
  display: none !important;
}

.banner {
  min-height: 218px;
  aspect-ratio: auto;
  border-radius: 30px;
  overflow: hidden;
}

.banner-track,
.banner-slide {
  min-height: inherit;
  height: 100%;
}

.banner-slide {
  padding: 16px;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  border-radius: 30px;
}

.banner-visual {
  min-height: 136px;
  width: 100%;
  border-radius: 24px;
  overflow: visible;
}

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

.banner-copy .pill {
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
}

.banner-copy h2 {
  margin: 9px 0 7px;
  font-size: 21px;
  line-height: 1.16;
}

.banner-copy p {
  font-size: 12.5px;
  line-height: 1.48;
}

.banner-cta,
.banner-cta.secondary,
.activate-strip,
.injury-entry i,
.primary-button,
.redeem-button,
.ghost-button,
.package-footer button,
.logistics-actions button,
.chat-composer button,
.segmented button,
.filters button,
.segmented button.selected,
.filters button.selected,
.after-issue-list button,
.after-issue-list button.selected,
.balance-detail {
  color: var(--soft-button-ink);
  background: var(--soft-button-bg);
  border: 1px solid var(--soft-button-border);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(7, 143, 125, 0.12);
}

.banner-cta {
  min-height: 36px;
  margin-top: 12px;
  padding: 0 15px;
  white-space: nowrap;
}

.profile-summary.points-balance-card .balance-detail {
  color: #17332f;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  box-shadow: none;
}

.activate-strip {
  border-radius: 24px;
}

.segmented button:not(.selected),
.filters button:not(.selected),
.after-issue-list button:not(.selected) {
  opacity: 0.78;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.premium-shield {
  width: 92px;
  height: 112px;
  clip-path: none;
  border-radius: 28px;
  display: grid;
  place-items: center;
  margin: 0;
}

.premium-shield::before {
  inset: 18px 21px 24px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(7, 143, 125, 0.08);
}

.premium-shield span,
.premium-shield i {
  left: 36px;
  right: 36px;
}

.premium-shield span {
  top: 47px;
}

.premium-shield i {
  top: 62px;
}

.mini-mascot {
  transform: scale(0.66);
  margin: -30px;
}

.orbit-card {
  width: 88px;
  height: 88px;
  border-radius: 26px;
}

.orbit-card strong {
  font-size: 30px;
}

.orbit-card span {
  font-size: 12px;
}

.injury-asset,
.route-asset {
  width: 90px;
  height: 98px;
  border-radius: 26px;
}

.entry-section {
  padding: 0;
}

.quick-grid {
  gap: 12px;
}

.quick-item {
  min-height: 100px;
  padding: 12px 10px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 4%, rgba(49, 220, 193, 0.16), transparent 4.6rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(235, 255, 248, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(25, 75, 66, 0.08);
}

.quick-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
}

.quick-item strong {
  font-size: 15px;
}

.quick-item small {
  display: none;
}

.injury-entry {
  min-height: 64px;
  border-radius: 24px;
}

.injury-entry i {
  min-width: 58px;
  height: 34px;
}

.video-card {
  min-height: 154px;
  border-radius: 28px;
  overflow: hidden;
}

.video-card video {
  height: 154px;
  opacity: 1;
}

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

.mine-grid button {
  min-height: 78px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.54), transparent 5rem),
    linear-gradient(135deg, rgba(239, 255, 247, 0.96), rgba(218, 239, 232, 0.86));
}

.icon-button,
.close-button,
.back-button {
  border-radius: 50%;
}

.tabbar button {
  border-radius: 22px;
}

.tabbar button.active {
  color: var(--soft-button-ink);
  background: var(--soft-button-bg);
}

@media (max-width: 460px) {
  .home-screen {
    padding: 18px;
  }

  .hero-panel {
    padding: 17px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-row h1 span {
    font-size: 32px;
  }

  .banner {
    min-height: 216px;
  }

  .banner-slide {
    padding: 15px;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .banner-copy h2 {
    font-size: 20px;
  }

  .quick-item {
    min-height: 98px;
  }
}

/* 2026-06-11 loyal palette and service modules. */
:root {
  --ink: #073f40;
  --muted: rgba(6, 87, 88, 0.68);
  --deep: #065758;
  --mint: #00999f;
  --leaf: #bcedd8;
  --sun: #feee30;
  --sky: #81d2e3;
  --cream: #f7fbf4;
  --line: rgba(6, 87, 88, 0.12);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-line: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 60px rgba(6, 87, 88, 0.2);
  --soft-shadow: 0 14px 34px rgba(6, 87, 88, 0.14);
  --soft-button-bg: linear-gradient(135deg, #065758, #00999f);
  --soft-button-ink: #ffffff;
}

html {
  background:
    radial-gradient(circle at 16% 10%, rgba(129, 210, 227, 0.52), transparent 24rem),
    radial-gradient(circle at 82% 0%, rgba(254, 238, 48, 0.34), transparent 19rem),
    linear-gradient(140deg, #e8f5f3 0%, #f7fbf4 47%, #dff4f3 100%);
}

.mini-shell {
  background:
    radial-gradient(circle at 78% -8%, rgba(254, 238, 48, 0.28), transparent 15rem),
    radial-gradient(circle at 6% 12%, rgba(129, 210, 227, 0.44), transparent 14rem),
    linear-gradient(180deg, #e8f6f2 0%, #f7fbf4 52%, #edf9f5 100%);
  box-shadow: 0 30px 80px rgba(6, 87, 88, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.brand-kicker {
  color: #00999f;
}

.brand-row h1,
.brand-row h1 small,
.slogan,
.page-top h1,
.section-head h1,
.section-head h2,
.quick-item strong,
.banner-copy h2,
.injury-entry strong,
.home-footer strong {
  color: #065758;
}

.hero-panel {
  background:
    radial-gradient(circle at 88% -8%, rgba(254, 238, 48, 0.45), transparent 9rem),
    radial-gradient(circle at 3% 20%, rgba(129, 210, 227, 0.5), transparent 10rem),
    linear-gradient(145deg, rgba(188, 237, 216, 0.92), rgba(247, 251, 244, 0.88) 58%, rgba(129, 210, 227, 0.42));
}

.banner-slide {
  background:
    radial-gradient(circle at 82% 18%, rgba(254, 238, 48, 0.32), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(188, 237, 216, 0.68)) !important;
}

.banner-copy .pill,
.quick-item small,
.service-hero span,
.plan-topline span,
.checkup-body span,
.zone-card span {
  color: #065758;
  background: rgba(188, 237, 216, 0.72);
}

.banner-cta,
.banner-cta.secondary,
.activate-strip,
.injury-entry i,
.primary-button,
.redeem-button,
.ghost-button,
.package-footer button,
.logistics-actions button,
.chat-composer button,
.segmented button.selected,
.filters button.selected,
.after-issue-list button.selected,
.zone-card button,
.service-plan-card button,
.checkup-plan-card button,
.service-hero button {
  color: #ffffff;
  background: linear-gradient(135deg, #065758, #00999f);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(6, 87, 88, 0.2);
}

.segmented button:not(.selected),
.filters button:not(.selected),
.after-issue-list button:not(.selected) {
  color: #065758;
  background: rgba(188, 237, 216, 0.58);
}

.quick-item {
  background:
    radial-gradient(circle at 85% 5%, rgba(254, 238, 48, 0.18), transparent 5rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(188, 237, 216, 0.64));
  border-color: rgba(255, 255, 255, 0.82);
}

.quick-item.tone-mint {
  --entry-accent: #00999f;
}

.quick-item.tone-sky {
  --entry-accent: #81d2e3;
}

.quick-item.tone-teal {
  --entry-accent: #065758;
}

.quick-item.tone-sun {
  --entry-accent: #d7c715;
}

.quick-icon {
  background: linear-gradient(145deg, rgba(188, 237, 216, 0.72), rgba(129, 210, 227, 0.5));
}

.exchange-zone-banner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 88%);
  gap: 12px;
  margin: 4px 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.exchange-zone-banner::-webkit-scrollbar {
  display: none;
}

.zone-card {
  min-height: 142px;
  padding: 18px;
  border-radius: 26px;
  display: grid;
  align-content: space-between;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.zone-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 122px;
  height: 122px;
  border-radius: 40px;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.28);
}

.zone-bashu {
  background:
    radial-gradient(circle at 88% 18%, rgba(254, 238, 48, 0.58), transparent 6rem),
    linear-gradient(135deg, #065758, #00999f);
  color: #ffffff;
}

.zone-fsg {
  background:
    radial-gradient(circle at 84% 22%, rgba(129, 210, 227, 0.66), transparent 6rem),
    linear-gradient(135deg, #00999f, #bcedd8);
  color: #053f40;
}

.zone-card div,
.zone-card button {
  position: relative;
  z-index: 1;
}

.zone-card span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.zone-bashu span {
  color: #065758;
  background: #feee30;
}

.zone-card h2 {
  margin: 10px 0 7px;
  font-size: 22px;
  line-height: 1.12;
}

.zone-card p {
  margin: 0;
  max-width: 230px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0.86;
}

.zone-card button {
  width: fit-content;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  font-weight: 900;
}

.service-screen {
  background:
    radial-gradient(circle at 82% 0%, rgba(254, 238, 48, 0.24), transparent 13rem),
    linear-gradient(180deg, rgba(232, 246, 242, 0.98), rgba(247, 251, 244, 0.98));
}

.service-content {
  display: grid;
  gap: 14px;
}

.service-hero {
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(254, 238, 48, 0.34), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(188, 237, 216, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.service-hero span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.service-hero h2 {
  margin: 12px 0 8px;
  color: #065758;
  font-size: 25px;
  line-height: 1.12;
}

.service-hero p {
  margin: 0;
  color: rgba(6, 87, 88, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.service-stats {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.service-stats i {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #065758;
  background: rgba(254, 238, 48, 0.56);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.service-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-plan-card {
  padding: 15px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(129, 210, 227, 0.3), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(188, 237, 216, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(6, 87, 88, 0.1);
}

.service-plan-card.plan-accident {
  background:
    radial-gradient(circle at 90% 8%, rgba(254, 238, 48, 0.3), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(129, 210, 227, 0.36));
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-topline span {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.plan-topline em {
  color: rgba(6, 87, 88, 0.36);
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
}

.service-plan-card h2 {
  margin: 10px 0 7px;
  color: #065758;
  font-size: 17px;
  line-height: 1.22;
}

.service-plan-card p {
  margin: 0 0 12px;
  color: rgba(6, 87, 88, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.service-plan-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.service-plan-card dl div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  align-items: start;
}

.service-plan-card dt {
  color: rgba(6, 87, 88, 0.48);
  font-size: 11px;
  font-weight: 900;
}

.service-plan-card dd {
  margin: 0;
  color: #065758;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.service-plan-card button,
.checkup-plan-card button,
.service-hero button {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  font-weight: 900;
}

.checkup-card-list {
  display: grid;
  gap: 14px;
}

.checkup-plan-card {
  min-height: 188px;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 118px 1fr;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.checkup-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 60% 24%, rgba(254, 238, 48, 0.42), transparent 4rem),
    linear-gradient(145deg, #00999f, #81d2e3);
}

.checkup-image img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(6, 87, 88, 0.18);
}

.checkup-body {
  padding: 15px;
}

.checkup-body span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
}

.checkup-body h2 {
  margin: 10px 0 7px;
  color: #065758;
  font-size: 18px;
  line-height: 1.18;
}

.checkup-body p {
  margin: 0;
  color: rgba(6, 87, 88, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.checkup-body strong {
  display: block;
  margin-top: 10px;
  color: #00999f;
  font-size: 12px;
  line-height: 1.35;
}

.checkup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.checkup-tags em {
  padding: 4px 7px;
  border-radius: 999px;
  color: #065758;
  background: rgba(254, 238, 48, 0.42);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

@media (max-width: 390px) {
  .checkup-plan-card {
    grid-template-columns: 1fr;
  }

  .checkup-image {
    min-height: 110px;
  }
}

/* 2026-06-11 zone order refinement: use colors 04/03/05 on home, 03 for buttons. */
:root {
  --color-03: #bcedd8;
  --color-04: #feee30;
  --color-05: #81d2e3;
  --button-03: linear-gradient(135deg, #bcedd8, #d8f7ea);
  --button-03-ink: #065758;
  --soft-button-bg: var(--button-03);
  --soft-button-ink: var(--button-03-ink);
}

.home-screen {
  background:
    radial-gradient(circle at 78% 2%, rgba(254, 238, 48, 0.32), transparent 13rem),
    radial-gradient(circle at 8% 20%, rgba(129, 210, 227, 0.32), transparent 12rem),
    linear-gradient(180deg, rgba(188, 237, 216, 0.42), rgba(255, 255, 255, 0));
}

.home-screen .hero-panel {
  background:
    radial-gradient(circle at 86% 0%, rgba(254, 238, 48, 0.58), transparent 8.5rem),
    radial-gradient(circle at 5% 22%, rgba(129, 210, 227, 0.6), transparent 9rem),
    linear-gradient(145deg, rgba(188, 237, 216, 0.96), rgba(255, 255, 255, 0.88) 58%, rgba(129, 210, 227, 0.44));
}

.home-screen .banner-slide {
  background:
    radial-gradient(circle at 83% 15%, rgba(254, 238, 48, 0.34), transparent 7rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(188, 237, 216, 0.74) 58%, rgba(129, 210, 227, 0.34)) !important;
}

.home-screen .quick-item,
.home-screen .video-card {
  background:
    radial-gradient(circle at 84% 8%, rgba(254, 238, 48, 0.22), transparent 5rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(188, 237, 216, 0.66) 62%, rgba(129, 210, 227, 0.24));
}

.banner-cta,
.banner-cta.secondary,
.activate-strip,
.injury-entry i,
.primary-button,
.redeem-button,
.ghost-button,
.package-footer button,
.logistics-actions button,
.chat-composer button,
.segmented button.selected,
.filters button.selected,
.after-issue-list button.selected,
.zone-card button,
.service-plan-card button,
.checkup-plan-card button,
.service-hero button,
.zone-product-card button {
  color: var(--button-03-ink);
  background: var(--button-03);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(6, 87, 88, 0.12);
}

.banner-cta:active,
.primary-button:active,
.redeem-button:active,
.zone-card button:active,
.zone-product-card button:active {
  box-shadow: 0 8px 18px rgba(6, 87, 88, 0.1);
}

.zone-bashu {
  background:
    radial-gradient(circle at 88% 16%, rgba(254, 238, 48, 0.6), transparent 6.6rem),
    linear-gradient(135deg, #bcedd8, #81d2e3);
  color: #065758;
}

.zone-fsg {
  background:
    radial-gradient(circle at 84% 18%, rgba(254, 238, 48, 0.46), transparent 6rem),
    linear-gradient(135deg, #81d2e3, #bcedd8);
  color: #065758;
}

.zone-bashu span,
.zone-fsg span {
  color: #065758;
  background: rgba(254, 238, 48, 0.86);
}

.zone-card p {
  color: rgba(6, 87, 88, 0.74);
  opacity: 1;
}

.zone-detail-screen {
  background:
    radial-gradient(circle at 78% 0%, rgba(254, 238, 48, 0.26), transparent 12rem),
    radial-gradient(circle at 6% 18%, rgba(129, 210, 227, 0.36), transparent 11rem),
    linear-gradient(180deg, #effaf5, #f9fdf8);
}

.zone-detail-content {
  display: grid;
  gap: 14px;
}

.zone-detail-hero {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.zone-detail-bashu {
  background:
    radial-gradient(circle at 86% 12%, rgba(254, 238, 48, 0.5), transparent 7rem),
    linear-gradient(135deg, rgba(188, 237, 216, 0.96), rgba(129, 210, 227, 0.48));
}

.zone-detail-fsg {
  background:
    radial-gradient(circle at 88% 12%, rgba(254, 238, 48, 0.38), transparent 7rem),
    linear-gradient(135deg, rgba(129, 210, 227, 0.82), rgba(188, 237, 216, 0.72));
}

.zone-detail-hero span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-grid;
  color: #065758;
  background: rgba(254, 238, 48, 0.76);
  font-size: 11px;
  font-weight: 900;
}

.zone-detail-hero h2 {
  margin: 12px 0 8px;
  color: #065758;
  font-size: 27px;
  line-height: 1.1;
}

.zone-detail-hero p {
  margin: 0;
  color: rgba(6, 87, 88, 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

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

.zone-product-card {
  padding: 14px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: stretch;
  background:
    radial-gradient(circle at 90% 8%, rgba(254, 238, 48, 0.2), transparent 6rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(188, 237, 216, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(6, 87, 88, 0.1);
}

.zone-product-art {
  min-height: 92px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #065758;
  background:
    radial-gradient(circle at 70% 18%, rgba(254, 238, 48, 0.52), transparent 4rem),
    linear-gradient(145deg, #bcedd8, #81d2e3);
  font-size: 28px;
  font-weight: 900;
}

.zone-product-source {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #065758;
  background: rgba(254, 238, 48, 0.62);
  font-size: 10px;
  font-weight: 900;
}

.zone-product-body h2 {
  margin: 9px 0 6px;
  color: #065758;
  font-size: 17px;
  line-height: 1.2;
}

.zone-product-body p {
  margin: 0;
  color: rgba(6, 87, 88, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.zone-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.zone-product-tags span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #065758;
  background: rgba(129, 210, 227, 0.32);
  font-size: 10px;
  font-weight: 900;
}

.zone-product-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.zone-product-card footer strong {
  color: #065758;
  font-size: 17px;
}

.zone-product-card button {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
}

@media (max-width: 390px) {
  .zone-product-card {
    grid-template-columns: 64px 1fr;
  }
}

/* 2026-06-11 golden brand theme from attached logo. */
:root {
  --gold-bg: #feee30;
  --logo-gold: #c9922e;
  --logo-gold-2: #dfa83d;
  --logo-gold-dark: #7a5316;
  --gold-ink: #4f3510;
  --gold-muted: rgba(79, 53, 16, 0.66);
  --gold-card: rgba(255, 255, 255, 0.86);
  --gold-card-2: rgba(255, 248, 210, 0.9);
  --soft-button-bg: linear-gradient(135deg, #c9922e, #dfa83d);
  --soft-button-ink: #ffffff;
}

html,
body {
  background: #feee30;
}

html {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.42), transparent 21rem),
    radial-gradient(circle at 84% 0%, rgba(201, 146, 46, 0.32), transparent 24rem),
    #feee30;
}

body {
  color: var(--gold-ink);
}

.mini-shell {
  background:
    radial-gradient(circle at 78% -8%, rgba(255, 255, 255, 0.38), transparent 16rem),
    radial-gradient(circle at 8% 12%, rgba(201, 146, 46, 0.24), transparent 15rem),
    linear-gradient(180deg, #feee30 0%, #fff5a6 48%, #fff9d8 100%);
  box-shadow: 0 30px 80px rgba(122, 83, 22, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.screen,
.home-screen,
.exchange-screen,
.product-detail-screen,
.zone-detail-screen,
.order-screen,
.package-screen,
.logistics-screen,
.profile-screen,
.points-screen,
.chat-screen,
.aftersales-screen,
.service-screen {
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.32), transparent 12rem),
    linear-gradient(180deg, rgba(254, 238, 48, 0.92), rgba(255, 249, 216, 0.94));
}

.brand-kicker,
.eyebrow,
.page-top .eyebrow,
.section-head .eyebrow,
.service-hero span,
.plan-topline span,
.checkup-body span,
.zone-card span,
.zone-product-source,
.zone-detail-hero span {
  color: var(--logo-gold-dark);
  background: rgba(255, 255, 255, 0.62);
}

.brand-row h1,
.brand-row h1 small,
.slogan,
.page-top h1,
.section-head h1,
.section-head h2,
.quick-item strong,
.banner-copy h2,
.product-info h3,
.profile-summary strong,
.mine-card h2,
.service-hero h2,
.service-plan-card h2,
.checkup-body h2,
.zone-card h2,
.zone-detail-hero h2,
.zone-product-body h2,
.zone-product-card footer strong,
.home-footer strong {
  color: var(--gold-ink);
}

.slogan,
.banner-copy p,
.quick-item small,
.product-info p,
.zone-detail-hero p,
.zone-product-body p,
.service-hero p,
.service-plan-card p,
.checkup-body p,
.mine-grid span,
.home-footer {
  color: var(--gold-muted);
}

.hero-panel,
.banner-slide,
.quick-item,
.video-card,
.product-card,
.package-card,
.logistics-card,
.profile-summary,
.mine-card,
.service-hero,
.service-plan-card,
.checkup-plan-card,
.zone-detail-hero,
.zone-product-card,
.drawer-card {
  background:
    radial-gradient(circle at 88% 8%, rgba(254, 238, 48, 0.34), transparent 7rem),
    linear-gradient(145deg, var(--gold-card), var(--gold-card-2));
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(122, 83, 22, 0.13);
}

.home-screen .hero-panel,
.home-screen .banner-slide,
.home-screen .quick-item,
.home-screen .video-card {
  background:
    radial-gradient(circle at 84% 8%, rgba(201, 146, 46, 0.2), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 177, 0.84));
}

.banner-cta,
.banner-cta.secondary,
.activate-strip,
.primary-button,
.redeem-button,
.ghost-button,
.package-footer button,
.logistics-actions button,
.chat-composer button,
.segmented button.selected,
.filters button.selected,
.after-issue-list button.selected,
.zone-card button,
.service-plan-card button,
.checkup-plan-card button,
.service-hero button,
.zone-product-card button,
.balance-detail {
  color: #fff;
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-2));
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(122, 83, 22, 0.22);
}

.segmented button:not(.selected),
.filters button:not(.selected),
.after-issue-list button:not(.selected),
.tabbar button.active {
  color: var(--gold-ink);
  background: rgba(255, 255, 255, 0.62);
}

.quick-icon,
.product-art,
.detail-product-art,
.zone-product-art,
.checkup-image {
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 255, 255, 0.3), transparent 3.8rem),
    linear-gradient(145deg, var(--logo-gold), var(--logo-gold-2));
}

.quick-icon img,
.brand-logo {
  filter: sepia(0.18) saturate(0.92) hue-rotate(352deg);
}

.premium-shield,
.injury-asset,
.route-asset,
.orbit-card {
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.34), transparent 4rem),
    linear-gradient(145deg, var(--logo-gold), var(--logo-gold-2));
  color: #fff;
}

.dots .active {
  background: var(--logo-gold);
}

.zone-card {
  min-height: 128px;
}

.zone-card p {
  display: none;
}

.zone-bashu,
.zone-fsg,
.zone-detail-bashu,
.zone-detail-fsg {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.34), transparent 7rem),
    linear-gradient(135deg, #fff7b2, #f1d17c 58%, #c9922e);
  color: var(--gold-ink);
}

.zone-bashu span,
.zone-fsg span {
  color: #fff;
  background: rgba(122, 83, 22, 0.72);
}

.zone-product-tags span,
.checkup-tags em,
.service-stats i {
  color: var(--gold-ink);
  background: rgba(201, 146, 46, 0.18);
}

/* 2026-06-11 supplied logo and banner assets. */
:root {
  --platform-bg: #d3b630;
  --logo-gold: #c8922d;
  --logo-gold-2: #e0aa41;
  --logo-gold-dark: #56390d;
  --gold-ink: #3f2a0b;
  --gold-muted: rgba(63, 42, 11, 0.68);
}

html,
body {
  background: var(--platform-bg);
}

html {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.24), transparent 20rem),
    radial-gradient(circle at 82% 4%, rgba(255, 236, 128, 0.26), transparent 24rem),
    var(--platform-bg);
}

.mini-shell {
  background:
    radial-gradient(circle at 80% -8%, rgba(255, 255, 255, 0.22), transparent 15rem),
    linear-gradient(180deg, var(--platform-bg) 0%, #dfc64a 46%, #f4e690 100%);
}

.screen,
.home-screen,
.exchange-screen,
.product-detail-screen,
.zone-detail-screen,
.order-screen,
.package-screen,
.logistics-screen,
.profile-screen,
.points-screen,
.chat-screen,
.aftersales-screen,
.service-screen {
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(211, 182, 48, 0.96), rgba(245, 229, 132, 0.96));
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-radius: 50%;
  filter: none;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 10px 22px rgba(86, 57, 13, 0.2);
}

.hero-panel {
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 255, 255, 0.22), transparent 8rem),
    linear-gradient(145deg, rgba(255, 248, 199, 0.86), rgba(211, 182, 48, 0.42));
}

.banner {
  min-height: unset;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 36px rgba(86, 57, 13, 0.18);
}

.banner-slide.image-banner {
  padding: 0;
  display: block;
  min-height: 100%;
  background: transparent !important;
}

.home-banner-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-screen .banner-slide.image-banner {
  background: transparent !important;
}

.dots {
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(63, 42, 11, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dots button {
  background: rgba(255, 255, 255, 0.54);
}

.dots .active {
  background: #fff;
}

.banner-visual,
.banner-copy {
  pointer-events: none;
}

@media (max-width: 460px) {
  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}

/* 2026-06-11 Rong e Fu video/nav/zone refinement. */
.brand-title-line h1 {
  margin: 0;
}

.exchange-screen,
.package-screen,
.logistics-screen,
.profile-screen {
  padding-bottom: 130px;
}

.welfare-tabbar {
  display: none;
}

.welfare-tabbar.visible {
  display: grid;
}

.tab-logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.35), transparent 0.42rem),
    linear-gradient(145deg, var(--logo-gold), var(--logo-gold-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.tabbar button.active .tab-logo-mark {
  color: var(--gold-ink);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.42), transparent 0.42rem),
    linear-gradient(145deg, #fff8bd, #f0d26e);
}

.exchange-zone-wrap {
  display: grid;
  gap: 7px;
  margin: 4px 0 16px;
}

.exchange-zone-banner {
  grid-auto-columns: minmax(184px, 66%);
  gap: 10px;
  margin: 0;
  padding: 2px 1px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(86, 57, 13, 0.5) rgba(255, 255, 255, 0.32);
}

.exchange-zone-banner::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.exchange-zone-banner::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.exchange-zone-banner::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(86, 57, 13, 0.5);
}

.zone-card {
  min-height: 108px;
  padding: 14px;
  border-radius: 22px;
}

.zone-card h2 {
  margin: 8px 0 0;
  font-size: 19px;
}

.zone-card button {
  min-height: 32px;
  padding: 0 13px;
}

.zone-scroll-hint {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(63, 42, 11, 0.68);
  font-size: 11px;
  font-weight: 900;
}

.zone-scroll-hint span {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(86, 57, 13, 0.52) 0 48%, rgba(255, 255, 255, 0.42) 48% 100%);
}

.zone-product-season {
  margin: 9px 0 10px;
  padding: 8px 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-ink);
  background: rgba(255, 248, 189, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.zone-product-season strong {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
}

.zone-product-season span {
  color: rgba(63, 42, 11, 0.72);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

/* 2026-06-11 remix home: keep the supplied screenshot exact, while retaining all deeper pages. */
.replica-home {
  padding: 0 !important;
  background: #f7cf67 !important;
}

.replica-home.active {
  display: block;
}

.replica-home .home-reference {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.replica-home .hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 130, 20, 0.16);
}

.replica-home .hotspot:active {
  transform: none;
}

.replica-home .hotspot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(255, 112, 0, 0.38);
}

.hotspot-bell {
  left: 55.4%;
  top: 3.7%;
  width: 8.7%;
  height: 5.5%;
  border-radius: 50%;
}

.hotspot-profile {
  left: 66.4%;
  top: 3.7%;
  width: 30.2%;
  height: 5.6%;
  border-radius: 999px;
}

.hotspot-hero {
  left: 8.5%;
  top: 30.15%;
  width: 24.2%;
  height: 4.35%;
  border-radius: 999px;
}

.hotspot-exchange {
  left: 3.1%;
  top: 42.55%;
  width: 46.4%;
  height: 11.35%;
}

.hotspot-checkup {
  left: 50.5%;
  top: 42.55%;
  width: 46.4%;
  height: 11.35%;
}

.hotspot-insurance {
  left: 3.1%;
  top: 54.45%;
  width: 46.4%;
  height: 11.35%;
}

.hotspot-activity {
  left: 50.5%;
  top: 54.45%;
  width: 46.4%;
  height: 11.35%;
}

.hotspot-all {
  left: 80.5%;
  top: 68.1%;
  width: 16.2%;
  height: 3.25%;
  border-radius: 999px;
}

.hotspot-claim {
  left: 5.8%;
  top: 71.25%;
  width: 29.1%;
  height: 9.6%;
}

.hotspot-code {
  left: 37%;
  top: 71.25%;
  width: 28.4%;
  height: 9.6%;
}

.hotspot-appointment {
  left: 67.2%;
  top: 71.25%;
  width: 28.4%;
  height: 9.6%;
}

.hotspot-reminder {
  left: 3.1%;
  top: 83.25%;
  width: 93.8%;
  height: 11.2%;
}

.hotspot-reminder-cta {
  left: 74.2%;
  top: 89.65%;
  width: 17.7%;
  height: 4.2%;
  border-radius: 999px;
}

.module-content {
  display: grid;
  gap: 14px;
}

.module-hero,
.module-card,
.module-list-card,
.module-form,
.detail-section.module-panel {
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.34), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 177, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(122, 83, 22, 0.13);
}

.module-hero {
  min-height: 150px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.4), transparent 7rem),
    linear-gradient(135deg, #fff3a6, #f4c75a 58%, #d3962b);
}

.module-hero span,
.module-kicker {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-grid;
  color: #fff;
  background: rgba(122, 83, 22, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.module-hero h2,
.module-card h2,
.module-list-card h2 {
  margin: 10px 0 8px;
  color: var(--gold-ink);
  font-size: 22px;
  line-height: 1.18;
}

.module-hero p,
.module-card p,
.module-list-card p {
  margin: 0;
  color: var(--gold-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.module-grid {
  display: grid;
  gap: 12px;
}

.module-list-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.module-list-card h2 {
  font-size: 17px;
}

.module-list-card strong {
  color: var(--gold-ink);
}

.module-list-card button,
.module-card button,
.module-form button,
.module-action {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-2));
  border-color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(122, 83, 22, 0.2);
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.module-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--gold-ink);
  background: rgba(201, 146, 46, 0.18);
  font-size: 10px;
  font-weight: 900;
}

.module-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.module-form {
  display: grid;
  gap: 12px;
}

.module-form .field {
  margin: 0;
}

.status-pill {
  justify-self: end;
  min-width: 72px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(122, 83, 22, 0.72);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 390px) {
  .module-list-card {
    grid-template-columns: 1fr;
  }

  .status-pill {
    justify-self: start;
  }
}

body {
  padding: 0 !important;
}

.mini-shell {
  width: min(100vw, 430px);
  height: 100vh;
  min-height: 0;
  border-radius: 0;
}

@media (min-width: 760px) {
  body {
    padding: 20px !important;
  }

  .mini-shell {
    height: min(930px, calc(100vh - 40px));
    border-radius: 36px;
  }
}
