/* app.wxss */
html, body {
  min-height: 100%;
  background: 
    radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.06), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(36, 78, 61, 0.05), transparent 50%),
    linear-gradient(180deg, #fdfbf7 0%, #f6f5f0 30%, #f0efe8 100%);
  color: #112a1f;
  font-family: "SF Pro Display", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  line-height: 1;
}

.page-shell {
  padding: 15px 12px 34px;
}

.page-shell--senior .section-title {
  font-size: 20px;
}

.page-shell--senior .card-title {
  font-size: 17px;
}

.page-shell--senior .card-desc,
.page-shell--senior .meta-text,
.page-shell--senior .section-caption {
  font-size: 14px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
  border-radius: 24px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #0f2c1d 0%, #153a27 45%, #184a32 75%, #bea14b 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(15, 44, 29, 0.5), 0 10px 20px -5px rgba(190, 161, 75, 0.2);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% -20%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 499.5px;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(4px);
}

.hero-orb-large {
  top: -25px;
  right: -10px;
  width: 120px;
  height: 120px;
  animation: floatAura 8s ease-in-out infinite;
}

.hero-orb-small {
  bottom: -20px;
  right: 50px;
  width: 70px;
  height: 70px;
  animation: floatAura 10s ease-in-out infinite reverse;
}

.hero-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 499.5px;
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
}

.hero-title {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: "Playfair Display", "Baskerville", "Songti SC", serif;
  background: linear-gradient(180deg, #ffffff 0%, #e8efe9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-desc {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.hero-chip-row,
.chip-row,
.action-row,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: -8px;
  margin-left: -8px;
}

.hero-chip-row {
  position: relative;
  z-index: 1;
  margin-top: 11px;
}

.hero-chip-row > *,
.hero-chip-row > button,
.chip-row > *,
.chip-row > button,
.action-row > *,
.action-row > button,
.btn-row > *,
.btn-row > button {
  margin-top: 8px;
  margin-left: 8px;
}

.hero-chip,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border-radius: 499.5px;
  font-size: 11px;
  font-weight: 500;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.chip {
  background: #f0f4ef;
  color: #112a1f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.chip--active {
  background: linear-gradient(135deg, #112a1f, #1a4231);
  color: #e5cc8a;
  box-shadow: 0 6px 12px -3px rgba(17, 42, 31, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-row {
  position: relative;
  z-index: 1;
  margin-top: 14px;
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 499.5px;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.primary-btn:active,
.secondary-btn:active,
.ghost-btn:active,
.mini-btn:active {
  transform: scale(0.96);
}

.primary-btn {
  min-width: 110px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ecd394, #d4af37);
  color: #112a1f;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 16px -4px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}

.secondary-btn {
  min-width: 100px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0b271a, #153c29);
  color: #e8c881;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(11, 39, 26, 0.2);
}

.ghost-btn {
  min-width: 100px;
  padding: 11px 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.ghost-btn--dark {
  border-color: rgba(11, 39, 26, 0.2);
  color: #0b271a;
  background: rgba(255, 255, 255, 0.65);
}

.mini-btn {
  padding: 9px 13px;
  background: linear-gradient(135deg, #eef4ea, #f8faf6);
  color: #0b271a;
  font-size: 12px;
  font-weight: 600;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 28px 6px 14px;
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.section-title {
  font-size: 19px;
  font-weight: 800;
  color: #112a1f;
  letter-spacing: 1px;
  font-family: "Playfair Display", "Baskerville", "Songti SC", serif;
}

.section-caption {
  display: block;
  font-size: 12px;
  color: #8c9b90;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.card {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfcf9 100%);
  border: 0.5px solid rgba(17, 42, 31, 0.04);
  box-shadow: 0 16px 32px -8px rgba(17, 42, 31, 0.06), 0 4px 12px -3px rgba(17, 42, 31, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.card:active {
  transform: scale(0.98);
}

.card--dark {
  background: linear-gradient(145deg, #123021 0%, #173d2a 60%, #1b4d35 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0.5px solid rgba(255, 255, 255, 0.05);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0 12px 24px -6px rgba(11, 39, 26, 0.3), 0 4px 8px -2px rgba(11, 39, 26, 0.2);
}

.card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: #0b271a;
}

.card-desc {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.6;
  color: #556658;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.card--dark .card-title,
.card--dark .card-desc,
.card--dark .meta-text,
.card--dark .meta-strong,
.card--dark .price-value,
.card--dark .price-unit {
  color: rgba(255, 255, 255, 0.95);
}

.meta-row,
.space-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.space-row {
  margin-top: 9px;
}

.meta-text {
  font-size: 10px;
  color: #738176;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.meta-strong {
  font-size: 11px;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tag,
.tag-soft,
.tag-warm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 499.5px;
  font-size: 11px;
  font-weight: 600;
}

.tag {
  background: rgba(20, 195, 113, 0.1);
  border: 0.5px solid rgba(20, 195, 113, 0.15);
  color: #109a59;
}

.tag-soft {
  background: rgba(255, 255, 255, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.tag-warm {
  background: rgba(212, 175, 55, 0.15);
  border: 0.5px solid rgba(212, 175, 55, 0.25);
  color: #b59226;
}

.price-row {
  display: flex;
  align-items: baseline;
  margin-top: 9px;
}

.price-value {
  font-size: 23px;
  font-weight: 800;
  color: #d4af37;
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}

.price-unit {
  margin-left: 4px;
  font-size: 12px;
  color: #8a998f;
  font-weight: 600;
}

.grid-2,
.grid-3,
.metric-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}

.grid-item-2,
.grid-item-3,
.metric-item {
  padding: 0 6px;
  margin-bottom: 12px;
}

.grid-item-2,
.metric-item {
  width: 50%;
}

.grid-item-2 .card {
  padding: 16px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-item-3 {
  width: 33.3333%;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #112a1f;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", "Baskerville", "Songti SC", serif;
}

.stat-label {
  margin-top: 9px;
  font-size: 12px;
  color: #6d7d70;
  font-weight: 500;
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  position: relative;
  padding-left: 14px;
  margin-top: 9px;
}

.timeline-item:first-child {
  margin-top: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 499.5px;
  background: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 2.5px;
  top: 16px;
  bottom: -9px;
  width: 1px;
  background: rgba(212, 175, 55, 0.2);
}

.timeline-item:last-child::after {
  display: none;
}

.list-stack {
  display: flex;
  flex-direction: column;
}

.list-stack > * {
  margin-top: 12px;
}

.list-stack > *:nth-child(1) { animation-delay: 0.05s; }
.list-stack > *:nth-child(2) { animation-delay: 0.10s; }
.list-stack > *:nth-child(3) { animation-delay: 0.15s; }
.list-stack > *:nth-child(4) { animation-delay: 0.20s; }
.list-stack > *:nth-child(5) { animation-delay: 0.25s; }

.list-stack > *:first-child {
  margin-top: 0;
}

.divider {
  height: 0.5px;
  margin: 9px 0;
  background: rgba(34, 58, 42, 0.08);
}

.banner-panel {
  border-radius: 16px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(20, 195, 113, 0.08), rgba(212, 175, 55, 0.12));
  border: 0.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.empty-note {
  padding: 24px;
  margin: 6px 0;
  border-radius: 18px;
  text-align: center;
  color: #8c9b90;
  background: rgba(255, 255, 255, 0.4);
  border: 0.5px dashed rgba(17, 42, 31, 0.12);
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 499.5px;
  background: rgba(36, 78, 61, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #109a59, #d4af37);
}

.icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 195, 113, 0.12), rgba(212, 175, 55, 0.2));
  border: 0.5px solid rgba(255, 255, 255, 0.8);
  color: #0b271a;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

@keyframes floatAura {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/* pages/index/index.wxss */
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  margin-top: 9px;
  margin-left: -7px;
}

.hero-metric {
  width: 50%;
  padding-left: 7px;
  margin-top: 7px;
}

.hero-metric-card {
  min-height: 63px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-metric-value {
  font-size: 19px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-metric-label {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.road-card {
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(36, 78, 61, 0.06);
}

.road-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 80px;
  height: 80px;
  border-radius: 499.5px;
  background: linear-gradient(135deg, rgba(20, 195, 113, 0.1), rgba(212, 175, 55, 0.2));
}

.road-step {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b271a, #153c29);
  color: #d4af37;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(11, 39, 26, 0.2);
}

.road-title {
  position: relative;
  z-index: 1;
  margin-top: 13px;
}

.spotlight-card {
  min-height: 84px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 248, 0.85));
}

.nav-card {
  min-height: 114px;
  transition: transform 240ms ease;
}

.nav-title {
  margin-top: 14px;
}

.business-card {
  min-height: 120px;
  border: 0.5px solid rgba(36, 78, 61, 0.05);
}

.business-card--primary {
  background: linear-gradient(135deg, #0b271a 0%, #1c5339 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(11, 39, 26, 0.2);
}

.business-card--primary .card-title,
.business-card--primary .card-desc {
  color: #ffffff;
}

.business-card--primary .business-metric {
  background: rgba(255, 255, 255, 0.15);
  color: #d4af37;
}

.business-metric {
  margin-top: 10px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 499.5px;
  background: rgba(20, 195, 113, 0.1);
  color: #109a59;
  font-size: 11px;
  font-weight: 700;
}

.tech-card {
  min-height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(248, 249, 248, 0.9));
}


/* pages/garden/index.wxss */
.hero-panel--garden {
  padding-top: 21px;
}

.live-ribbon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 499.5px;
  background: rgba(9, 24, 18, 0.26);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 499.5px;
  background: #ffec8c;
  box-shadow: 0 0 0 5px rgba(255, 236, 140, 0.15);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.garden-metrics {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
}

.hero-metric {
  width: 50%;
  padding-left: 7px;
  margin-top: 7px;
}

.hero-metric-card {
  min-height: 69px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.hero-metric-value {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.hero-metric-label {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-metric-note {
  margin-top: 3px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.64);
}

.certificate-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfcf9 0%, #eef4f0 100%);
  border: 0.5px solid rgba(11, 39, 26, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.certificate-card::after {
  content: "";
  position: absolute;
  right: -19px;
  top: -14px;
  width: 90px;
  height: 90px;
  border-radius: 499.5px;
  background: rgba(212, 175, 55, 0.08);
}

.certificate-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 499.5px;
  background: rgba(212, 175, 55, 0.12);
  color: #b59226;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.certificate-seal {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 499.5px;
  color: #b59226;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}

.certificate-code {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  font-size: 16px;
  font-weight: 800;
  color: #0b271a;
  letter-spacing: 1px;
}

.certificate-grid {
  margin-top: 3px;
}

.unit-card--selected {
  border-color: rgba(20, 195, 113, 0.4);
  background: linear-gradient(135deg, rgba(20, 195, 113, 0.05), rgba(255, 255, 255, 0.95));
  box-shadow: 0 9px 24px rgba(20, 195, 113, 0.08);
}

.metric-card {
  padding: 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
}

.metric-value {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.metric-trend {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.76);
}

.light-mini {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.timeline-title {
  font-size: 14px;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* pages/travel/index.wxss */
.hero-panel--travel {
  padding-top: 21px;
}

.travel-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 499.5px;
  background: rgba(14, 33, 24, 0.26);
  font-size: 11px;
  letter-spacing: 1px;
}

.travel-stat-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -7px;
}

.travel-stat-card {
  width: 33.3333%;
  padding: 10px 10px 10px 17px;
  margin-top: 7px;
  min-height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.travel-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.travel-stat-label {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
}

.route-story-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 241, 0.98));
}

.story-title {
  font-size: 14px;
}

.linkage-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 239, 0.98));
}

.linkage-index {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #244e3d, #4e8c65);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.linkage-title {
  margin-top: 10px;
  font-size: 14px;
}

.linkage-badge {
  margin-top: 10px;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 499.5px;
  background: rgba(36, 78, 61, 0.08);
  color: #244e3d;
  font-size: 10px;
  font-weight: 600;
}

.light-mini {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.guide-card {
  min-height: 120px;
  padding-top: 15px;
}

.guide-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.guide-title {
  margin-top: 12px;
  font-size: 14px;
}

.extra-chip-row {
  margin-top: 10px;
}


/* pages/mall/index.wxss */
.compact-price {
  margin-top: 0;
}

.small-price {
  font-size: 17px;
}

.small-btn {
  min-width: 60px;
  padding: 8px 11px;
  font-size: 12px;
}


/* pages/smart/index.wxss */
.metric-card {
  padding: 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
}

.metric-value {
  margin-top: 4px;
  font-size: 19px;
  font-weight: 800;
  color: #d4af37;
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.device-grid {
  margin-top: 10px;
}

.light-mini {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}


/* pages/profile/index.wxss */
.full-btn {
  width: 100%;
}


/* pages/admin/index.wxss */
.hero-panel--admin {
  padding-top: 21px;
}

.admin-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 499.5px;
  background: rgba(10, 24, 18, 0.28);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 1px;
}

.cockpit-card {
  padding-bottom: 9px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.cockpit-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cockpit-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -7px;
}

.cockpit-item {
  width: 50%;
  padding-left: 7px;
  margin-top: 7px;
}

.cockpit-item {
  min-height: 72px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.cockpit-value {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.cockpit-label {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.84);
}

.cockpit-note {
  margin-top: 3px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.small-btn {
  min-width: 80px;
  padding: 8px 10px;
  font-size: 12px;
}

.analytics-title {
  font-size: 14px;
}

.signal-card {
  min-height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 241, 0.98));
  border: 0.5px solid rgba(36, 78, 61, 0.05);
}

.signal-title {
  font-size: 14px;
}


/* pages/detail/index.wxss */
.detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(34, 58, 42, 0.08);
}

.detail-row:first-child {
  padding-top: 0;
}

.detail-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-value {
  margin-left: 14px;
  flex: 1;
  text-align: right;
  font-size: 12px;
  line-height: 1.6;
  color: #0b271a;
  font-weight: 600;
}

.detail-line {
  margin-top: 0;
  display: block;
  -webkit-line-clamp: unset;
}

.detail-facts {
  display: flex;
  flex-direction: column;
}

.action-panel {
  display: flex;
  margin-top: 14px;
  margin-left: -8px;
  flex-wrap: wrap;
}

.action-panel > button {
  flex: 1;
  margin-top: 8px;
  margin-left: 8px;
}

.flow-btn {
  min-width: 120px;
}

.full-btn {
  width: 100%;
}

.detail-back {
  margin-top: 12px;
}


/* pages/checkout/index.wxss */
.checkout-list > * {
  margin-top: 8px;
}

.checkout-list > *:first-child {
  margin-top: 0;
}

.action-panel {
  display: flex;
  margin-top: 14px;
  margin-left: -8px;
}

.action-panel > button {
  margin-left: 8px;
}

.flow-btn {
  flex: 1;
}


/* pages/result/index.wxss */
.result-certificate {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdf8 0%, #f2f7ef 100%);
}

.result-certificate::after {
  content: "";
  position: absolute;
  right: -17px;
  top: -17px;
  width: 85px;
  height: 85px;
  border-radius: 499.5px;
  background: rgba(36, 78, 61, 0.06);
}

.certificate-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-chain-title {
  font-size: 11px;
  color: #244e3d;
  letter-spacing: 1px;
}

.result-chain-code {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  font-size: 16px;
  font-weight: 700;
  color: #244e3d;
  letter-spacing: 0.5px;
}

.action-panel {
  display: flex;
  margin-top: 14px;
  margin-left: -8px;
}

.action-panel > button {
  margin-left: 8px;
}

.flow-btn {
  flex: 1;
}

.result-note {
  margin-top: 12px;
}



:root {
  color-scheme: light;
  --tab-height: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ink: #10251b;
  --muted: #6b766b;
  --field: #f6f2e8;
  --line: rgba(17, 42, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

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

button,
[data-goto],
[data-action] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.app-frame {
  width: 100%;
  min-height: 100vh;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: calc(var(--tab-height) + var(--safe-bottom));
}

.page-shell {
  min-height: 100vh;
  padding-bottom: calc(112px + var(--safe-bottom));
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(36, 78, 61, 0.06) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, rgba(253, 251, 247, 0.96), rgba(240, 239, 232, 0.96));
}

.hero-panel {
  border-radius: 20px;
  isolation: isolate;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,0.16) 42% 44%, transparent 44% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.hero-orb {
  display: none;
}

.card,
.banner-panel,
.empty-note {
  border-radius: 16px;
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.mini-btn,
.chip {
  user-select: none;
  white-space: normal;
  min-height: 38px;
}

.full-btn {
  width: 100%;
}

.small-btn {
  min-width: 84px;
  padding: 10px 15px;
  font-size: 13px;
}

.flow-btn {
  flex: 1 1 0;
  min-width: 0;
}

.action-panel {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.tabbar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: min(100%, 520px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: calc(var(--tab-height) + var(--safe-bottom));
  padding: 8px 10px calc(8px + var(--safe-bottom));
  background: rgba(251, 250, 244, 0.94);
  border-top: 1px solid rgba(17, 42, 31, 0.08);
  box-shadow: 0 -18px 42px rgba(17, 42, 31, 0.1);
  backdrop-filter: blur(18px);
}

.tabbar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #728072;
  font-size: 12px;
  font-weight: 700;
}

.tabbar-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 78, 61, 0.08);
  color: #244e3d;
  font-size: 15px;
}

.tabbar-btn.is-active {
  color: #244e3d;
}

.tabbar-btn.is-active .tabbar-icon {
  background: linear-gradient(135deg, #102a1d, #2d6a46);
  color: #e8c881;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--tab-height) + var(--safe-bottom) + 24px);
  z-index: 40;
  max-width: min(84vw, 420px);
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(12, 32, 22, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-value {
  max-width: 66%;
  color: #122a1f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  text-align: right;
  overflow-wrap: anywhere;
}

.detail-line {
  display: block;
  -webkit-line-clamp: unset;
}

.result-chain-code,
.certificate-code {
  overflow-wrap: anywhere;
}

.text-link {
  color: #0f7544;
  font-weight: 800;
}

@media (max-width: 360px) {
  .page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: 25px;
  }

  .card {
    padding: 18px;
  }

  .action-panel {
    flex-direction: column;
  }
}
