:root {
  --color-bg: #fff8ec;
  --color-surface: #ffffff;
  --color-surface-hover: #fff1cf;
  --color-border: #efd8b2;
  --color-text: #2f2417;
  --color-text-secondary: #7e6b55;
  --color-primary: #f59e0b;
  --color-primary-soft: rgba(245, 158, 11, 0.14);
  --color-accent: #fb7185;
  --color-price: #1f2937;
  --color-success: #16a34a;
  --color-danger: #e11d48;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 16px 35px rgba(186, 126, 23, 0.12);
  --shadow-md: 0 28px 56px rgba(186, 126, 23, 0.18);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 72px;
  --max-width: 1040px;
  --browser-panel-width: min(100%, var(--max-width));
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.24), transparent 34%),
    radial-gradient(circle at top right, rgba(251, 113, 133, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #fff5e3 100%);
  color: var(--color-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg) calc(var(--space-xl) + 8px);
  border-bottom: 1px solid rgba(120, 84, 34, 0.12);
}

.hero-links {
  position: absolute;
  top: 15px;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(160, 112, 36, 0.14);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-shortcut:hover {
  transform: translateY(-1px);
  background: var(--color-surface-hover);
  border-color: rgba(245, 158, 11, 0.32);
}

.hero-shortcut-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-shortcut-label {
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto var(--space-lg);
}

.hero-brand-logo {
  width: clamp(118px, 14vw, 176px);
  height: auto;
  flex: 0 0 auto;
}

.hero-brand-slogan {
  width: min(430px, 54vw);
  max-width: 100%;
  height: auto;
}

.hero-tagline {
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

.home-mode-switch {
  position: static;
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 30px auto 0;
  padding: 0 var(--space-lg) var(--space-xl);
}

.official-section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  color: #8f7454;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.official-section-kicker::before,
.official-section-kicker::after {
  content: "✦";
  font-size: 0.9rem;
  color: #f5cf72;
  text-shadow: 0 0 12px rgba(255, 220, 130, 0.65);
}

.home-mode-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: min(100%, 415px);
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 191, 152, 0.52);
  box-shadow:
    0 18px 40px rgba(208, 170, 121, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.home-mode-switch.is-stuck .home-mode-tabs {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(219, 191, 152, 0.72);
  box-shadow:
    0 22px 44px rgba(208, 170, 121, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.home-mode-tab {
  border: 0;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  font-weight: 800;
  min-width: 196px;
  padding: 13px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.home-mode-tab:hover {
  transform: translateY(-1px);
}

.home-mode-tab.is-active {
  background: linear-gradient(135deg, #ff9f0a, #ff6b7a);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 14px 28px rgba(255, 146, 44, 0.28);
}

.home-panel[hidden] {
  display: none !important;
}

.hero-community {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(160, 112, 36, 0.14);
  box-shadow: var(--shadow-sm);
}

.hero-community-copy {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text);
}

.hero-community-link {
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.share-preview-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 229, 170, 0.9), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 190, 92, 0.24), transparent 22%),
    linear-gradient(180deg, #fff7ea 0%, #fbe3bb 100%);
}

.share-preview-shell {
  min-height: 100vh;
  padding: 0;
  display: grid;
  place-items: center;
}

.share-card {
  position: relative;
  width: 648px;
  max-width: 100%;
}

.share-card-export {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  margin: 24px 20px 0;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 247, 232, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 243, 214, 0.48));
  border: 1px solid rgba(214, 163, 72, 0.24);
  box-shadow:
    0 40px 90px rgba(180, 120, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.share-card-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.62;
  pointer-events: none;
}

.share-card-glow--left {
  top: -120px;
  left: -70px;
  background: radial-gradient(circle, rgba(255, 205, 103, 0.42), transparent 68%);
}

.share-card-glow--right {
  right: -90px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(255, 166, 77, 0.26), transparent 66%);
}

.share-card-header,
.share-card-table {
  position: relative;
  z-index: 1;
}

.share-card-header {
  display: grid;
  gap: 18px;
}

.share-card-header-top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 14px 0;
}

.share-card-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}

.share-card-brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.share-card-brand-copy {
  display: grid;
  gap: 6px;
  align-content: center;
}

.share-card-brand-domain {
  font-size: 1.42rem;
  font-weight: 900;
  color: #2d1b06;
  line-height: 1.05;
}

.share-card-brand-slogan {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(118, 83, 31, 0.82);
  line-height: 1.25;
}

.share-card-qr {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.share-card-qr-frame {
  width: 104px;
  height: 104px;
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 230, 0.96));
  border: 1px solid rgba(223, 183, 114, 0.28);
  box-shadow:
    0 18px 30px rgba(190, 132, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.share-card-qr-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.share-card-qr-image > svg,
.share-card-qr-image > img {
  display: block;
  width: 100%;
  height: 100%;
}

.share-card-qr-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 226, 173, 0.88), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 227, 0.96));
  color: #8d5f1d;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.share-card-qr-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(126, 91, 40, 0.82);
}

.share-card-selection {
  display: block;
}

.share-card-product,
.share-card-row {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.share-card-product {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(223, 183, 114, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.share-card-product-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 248, 230, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: 8px;
}

.share-card-selection-copy {
  min-width: 0;
}

.share-card-selection-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #241502;
}

.share-card-selection-title strong {
  font-size: 1.32rem;
  line-height: 1.15;
}

.share-card-selection-separator {
  color: rgba(146, 104, 44, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.share-card-selection-meta {
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  color: rgba(92, 68, 34, 0.78);
}

.share-card-table {
  margin-top: 2px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(223, 183, 114, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 24px 32px rgba(188, 132, 41, 0.08);
}

.share-card-table-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1.02fr) minmax(0, 0.82fr) minmax(0, 0.7fr) minmax(0, 0.98fr);
  gap: 7px;
  padding: 0 10px 10px;
  color: rgba(128, 93, 40, 0.84);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.share-card-table-body {
  display: grid;
  gap: 8px;
}

.share-card-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1.02fr) minmax(0, 0.82fr) minmax(0, 0.7fr) minmax(0, 0.98fr);
  gap: 7px;
  align-items: center;
  min-height: 50px;
  padding: 0 10px;
  border-radius: 16px;
  border: 1px solid rgba(219, 191, 152, 0.32);
  background: rgba(255, 255, 255, 0.78);
}

.share-card-row--lowest {
  background: linear-gradient(180deg, rgba(235, 255, 240, 0.94), rgba(244, 255, 246, 0.94));
  border-color: rgba(45, 190, 96, 0.28);
}

.share-card-row--highest {
  background: linear-gradient(180deg, rgba(255, 240, 240, 0.94), rgba(255, 247, 247, 0.94));
  border-color: rgba(235, 87, 87, 0.22);
}

.share-card-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 244, 217, 0.92);
  color: #b26a16;
  font-size: 0.8rem;
  font-weight: 900;
}

.share-card-country,
.share-card-price,
.share-card-cny,
.share-card-compare {
  font-size: 0.8rem;
  font-weight: 800;
  color: #32200a;
  line-height: 1.2;
}

.share-card-price {
  color: rgba(104, 75, 35, 0.92);
}

.share-card-cny {
  color: #d97706;
}

.share-card-compare {
  display: grid;
  gap: 2px;
  justify-self: start;
  color: #9a5b34;
}

.share-card-compare-top,
.share-card-compare-bottom {
  display: block;
  white-space: nowrap;
}

.share-card-compare-top {
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.1;
}

.share-card-compare-bottom {
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.08;
}

.share-card-compare--lowest .share-card-compare-top {
  font-size: 0.9rem;
}

.share-card-compare--higher .share-card-compare-top {
  color: rgba(154, 91, 52, 0.86);
}

.share-card-compare--higher .share-card-compare-bottom {
  color: #b45309;
}

.share-card-row--lowest .share-card-compare,
.share-card-row--lowest .share-card-cny {
  color: #15803d;
}

.share-card-row--lowest .share-card-compare-bottom {
  color: #15803d;
}

.share-card-row--highest .share-card-compare,
.share-card-row--highest .share-card-cny {
  color: #dc2626;
}

.share-card-row--highest .share-card-compare-bottom {
  color: #dc2626;
}

.share-card-other {
  margin-top: 12px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 251, 243, 0.84);
  border: 1px solid rgba(223, 183, 114, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 26px rgba(188, 132, 41, 0.06);
}

.share-card-other-head {
  display: block;
  margin-bottom: 8px;
}

.share-card-other-head strong {
  color: #7a4d0c;
  font-size: 0.96rem;
  line-height: 1.1;
}

.share-card-other-groups {
  display: grid;
  gap: 8px;
}

.share-card-other-group {
  padding: 9px 10px 7px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 191, 152, 0.28);
}

.share-card-other-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.share-card-other-group-logo {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 248, 230, 0.95);
  object-fit: contain;
}

.share-card-other-group-title {
  color: #7a4d0c;
  font-size: 0.84rem;
  font-weight: 900;
}

.share-card-other-group-body {
  display: grid;
  gap: 4px;
}

.share-card-other-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 10px;
  align-items: center;
  min-height: 30px;
  padding: 0 2px;
}

.share-card-other-plan {
  display: block;
  width: 100%;
  color: #2d1b06;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  min-width: 0;
}

.share-card-other-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-width: 0;
  color: rgba(104, 75, 35, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  justify-self: center;
}

.share-card-other-country-flag {
  flex: none;
}

.share-card-other-country-label {
  min-width: 0;
}

.share-card-other-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 6px;
  white-space: nowrap;
  width: 100%;
}

.share-card-other-cny {
  color: #d97706;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.share-card-other-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #15803d;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.share-card-other-row.is-unavailable .share-card-other-country,
.share-card-other-row.is-unavailable .share-card-other-cny {
  color: rgba(146, 104, 44, 0.64);
}

.share-card-other-meta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(118, 84, 35, 0.82);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.home-panel--official {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-xl);
}

.home-panel--market {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.official-browser {
  display: grid;
  gap: 22px;
}

.official-product-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: var(--browser-panel-width);
  margin: 0 auto;
}

.official-product-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(160, 112, 36, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  border-radius: var(--radius-md);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.official-product-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 158, 11, 0.32);
  background: var(--color-surface-hover);
}

.official-product-tab,
.official-product-tab:visited {
  color: var(--color-text);
}

.official-product-tab {
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 50px;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1.5px solid rgba(219, 191, 152, 0.52);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 20px 40px rgba(208, 170, 121, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.official-product-tab.is-active {
  background: linear-gradient(180deg, rgba(255, 250, 238, 0.98), rgba(255, 246, 227, 0.98));
  border-color: rgba(255, 182, 66, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 46px rgba(239, 170, 70, 0.18);
}

.official-browser--market {
  gap: 22px;
  padding: 0 0 var(--space-xl);
}

.official-product-tabs--market {
  width: var(--browser-panel-width);
}

.official-product-tab--link {
  text-decoration: none;
}

.official-browser-card {
  display: grid;
  gap: 16px;
  width: var(--browser-panel-width);
  margin: 0 auto;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 238, 0.96));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.official-browser-header {
  display: block;
}

.official-browser-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.official-browser-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.official-browser-summary::-webkit-scrollbar {
  display: none;
}

.official-browser-summary-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.official-browser-badge--source {
  color: #0f5b94;
}

.official-browser-badge-logo {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.official-browser-summary-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
}

.official-share-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.92);
  color: #c26c09;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.official-share-button:hover,
.official-share-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 243, 214, 0.96);
  box-shadow: 0 12px 20px rgba(213, 147, 47, 0.12);
  outline: none;
}

.official-share-button:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.official-browser-summary-text--muted {
  color: var(--color-text-secondary);
  font-weight: 700;
}

.info-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 999px;
  border: 1px solid rgba(160, 112, 36, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #a16207;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  vertical-align: middle;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.info-hint:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.45);
  outline-offset: 2px;
}

.official-region-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.official-region-row {
  display: grid;
  grid-template-columns: 44px minmax(88px, 1.05fr) minmax(86px, 0.8fr) minmax(96px, 0.88fr) minmax(82px, 0.78fr) minmax(132px, 0.96fr) 34px;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(160, 112, 36, 0.12);
  color: var(--color-text);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.official-region-row:hover {
  border-color: rgba(245, 158, 11, 0.32);
  background: var(--color-surface-hover);
}

.official-region-row.is-lowest-row {
  background: #eefbf1;
  border-color: rgba(34, 197, 94, 0.24);
}

.official-region-row.is-highest-row {
  background: #fff2f2;
  border-color: rgba(239, 68, 68, 0.22);
}

.official-region-row.is-lowest-row:hover {
  background: #e5f7ea;
}

.official-region-row.is-highest-row:hover {
  background: #ffe7e7;
}

.official-region-row--head,
.official-region-row--head:hover {
  background: transparent;
  border-style: dashed;
  color: var(--color-text-secondary);
}

.official-region-rank {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-secondary);
}

.official-region-country {
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.official-region-price {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-price);
  text-align: left;
  white-space: nowrap;
}

.official-region-price--rate {
  color: var(--color-text-secondary);
  font-weight: 700;
}

.official-region-price--cheapness {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #9a5b34;
  font-size: 0.8rem;
  font-weight: 800;
}

.official-region-price--cheapness.is-lowest {
  color: #15803d;
}

.official-region-cheapness-arrow {
  color: #dc2626;
  font-size: 0.88rem;
  line-height: 1;
}

.official-region-cheapness-metric {
  color: #dc2626;
}

.official-region-cheapness-amount {
  color: #9a5b34;
}

.official-region-price--cny.is-lowest {
  color: #15803d;
}

.official-region-price--cny.is-highest {
  color: #dc2626;
}

.official-region-action {
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.official-region-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 999px;
  color: var(--color-primary);
  text-decoration: none;
  background: rgba(245, 158, 11, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.official-region-link:hover,
.official-region-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
  outline: none;
}

.official-browser-empty {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-secondary);
  text-align: center;
}

.official-browser-empty--inline {
  width: 100%;
  padding: 16px;
}

.official-product-tab-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.official-plan-tabs {
  display: flex;
  align-items: stretch;
  width: var(--browser-panel-width);
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1.5px solid rgba(219, 191, 152, 0.52);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 20px 40px rgba(208, 170, 121, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  scrollbar-width: none;
}

.official-plan-tabs::-webkit-scrollbar {
  display: none;
}

.official-plan-tab {
  flex: 1 1 0;
  min-height: 50px;
  padding: 10px 12px 14px;
  border: 0;
  border-right: 1px solid rgba(219, 191, 152, 0.5);
  background: transparent;
  color: var(--color-text-secondary);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.official-plan-tab:last-child {
  border-right: 0;
}

.official-plan-tab:hover {
  background: rgba(255, 249, 238, 0.84);
}

.official-plan-tab.is-active {
  background: linear-gradient(180deg, rgba(255, 250, 238, 0.7), rgba(255, 255, 255, 0.98));
  color: #ff9800;
}

.official-plan-tab.is-active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #ff9800, #ffb100);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.feed-toolbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 var(--space-md);
}

.community-featured {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-xl);
}

.community-featured-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.community-featured-eyebrow {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.community-featured-heading h2 {
  font-size: 1.35rem;
}

.community-featured-more {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

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

.community-featured-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(160, 112, 36, 0.14);
  box-shadow: var(--shadow-sm);
}

.community-featured-link,
.community-featured-card.is-loading {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--color-text);
  text-decoration: none;
}

.community-featured-meta,
.community-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-text-secondary);
  font-size: 0.8rem;
}

.community-featured-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-text);
  font-size: 0.76rem;
  font-weight: 800;
}

.community-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-featured-card h3 {
  font-size: 1rem;
}

.community-featured-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.feed-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.feed-filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(186, 126, 23, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.feed-filter--search {
  width: min(280px, calc(100vw - 248px));
  min-width: 210px;
  padding: 0 12px;
}

.feed-filter--search input {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 0.92rem;
  padding: 0;
  outline: none;
}

.feed-filter--search input::placeholder {
  color: rgba(126, 107, 85, 0.78);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 30px rgba(186, 126, 23, 0.16);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  z-index: 8;
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestion-item {
  min-height: 36px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--color-text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.search-suggestion-item:hover,
.search-suggestion-item:focus-visible {
  background: rgba(255, 241, 207, 0.82);
  transform: translateY(-1px);
  outline: none;
}

.feed-filter--price {
  width: 220px;
  min-width: 220px;
  padding: 0 12px;
}

.feed-filter-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  opacity: 0.72;
}

.price-range-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  flex: 1;
}

.price-range-inputs label {
  min-width: 0;
}

.price-range-inputs input {
  width: 100%;
  min-height: 28px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-text);
  font: inherit;
  font-size: 0.82rem;
  padding: 4px 6px;
  outline: none;
  text-align: center;
}

.price-range-inputs input.is-invalid {
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.65);
  background: rgba(255, 236, 240, 0.92);
}

.price-range-separator {
  color: rgba(126, 107, 85, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
}

#products {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 var(--space-xl);
}

.feed-filter input:disabled {
  opacity: 1;
  cursor: text;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 238, 0.96));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.product-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.product-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: rgba(255, 250, 242, 0.94);
  padding: 7px;
  object-fit: contain;
  box-shadow: 0 10px 20px rgba(186, 126, 23, 0.18);
}

.product-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.product-copy h2 {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-summary {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  min-width: 0;
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(160, 112, 36, 0.12);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.offer:hover {
  transform: translateY(-1px);
  background: var(--color-surface-hover);
  border-color: rgba(245, 158, 11, 0.38);
}

.offer-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.offer-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.offer-title {
  font-weight: 700;
  font-size: 0.9375rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-store-name {
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  flex: 0 0 auto;
  white-space: nowrap;
}

.status-badge,
.offer-tag,
.offer-inline-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.offer-inline-tag {
  background: rgba(251, 113, 133, 0.15);
  color: var(--color-danger);
  flex: 0 0 auto;
}

.status-badge--in_stock {
  background: rgba(52, 211, 153, 0.16);
  color: var(--color-success);
}

.status-badge--low_stock {
  background: rgba(96, 165, 250, 0.16);
  color: var(--color-accent);
}

.status-badge--unknown {
  background: rgba(151, 167, 186, 0.16);
  color: var(--color-text-secondary);
}

.status-badge--out_of_stock {
  background: rgba(251, 113, 133, 0.15);
  color: var(--color-danger);
}

.offer-tag {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.platform-price {
  flex: 0 0 auto;
  color: var(--color-price);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.offer.status--out {
  opacity: 0.62;
}

.offer.status--out .platform-price {
  color: var(--color-danger);
  text-decoration: line-through;
}

.offers-empty {
  padding: var(--space-md);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.64);
}

.offers-loading,
.offers-error {
  text-align: center;
}

.offers-loading {
  color: rgba(126, 107, 85, 0.82);
}

.offers-error {
  color: var(--color-danger);
}

footer {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid rgba(120, 84, 34, 0.12);
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
}

footer p + p {
  margin-top: var(--space-xs);
}

.footer-sponsor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
}

.footer-sponsor-link:hover,
.footer-sponsor-link:focus-visible {
  text-decoration: underline;
}

.footer-sponsor-icon {
  width: auto;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}

.footer-disclaimer {
  color: #8f2238;
}

.footer-updated-at {
  display: inline-block;
  margin-left: 10px;
  color: rgba(126, 107, 85, 0.88);
}

.source-submit {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
}

body[data-home-mode="official"] .source-submit {
  opacity: 0;
  pointer-events: none;
}

.source-submit-trigger {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(160, 112, 36, 0.2);
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.source-submit-trigger:hover,
.source-submit-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.48);
  box-shadow: 0 28px 60px rgba(186, 126, 23, 0.24);
  outline: none;
}

.source-submit-trigger img {
  width: 80%;
  height: auto;
  object-fit: cover;
}

.source-submit-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.source-submit-panel[hidden] {
  display: none;
}

.source-submit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(160, 112, 36, 0.14);
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.78);
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.source-submit-close:hover,
.source-submit-close:focus-visible {
  background: var(--color-surface-hover);
  color: var(--color-text);
  outline: none;
}

.source-submit-panel h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 42px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 800;
}

.source-submit-title-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

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

.source-submit-form label {
  display: grid;
  gap: 6px;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.source-submit-form input,
.source-submit-form textarea {
  width: 100%;
  border: 1px solid rgba(160, 112, 36, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.94);
  color: var(--color-text);
  font: inherit;
  font-size: 0.9375rem;
  padding: 11px 12px;
  outline: none;
  resize: vertical;
}

.source-submit-form textarea {
  min-height: 96px;
  max-height: 180px;
}

.source-submit-form input:focus,
.source-submit-form textarea:focus {
  border-color: rgba(245, 158, 11, 0.58);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.source-submit-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.source-submit-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fffdf8;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.24);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.source-submit-button:hover,
.source-submit-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  outline: none;
}

.source-submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.source-submit-message {
  min-height: 20px;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.source-submit-message.is-success {
  color: var(--color-success);
}

.source-submit-message.is-error {
  color: var(--color-danger);
}

.share-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px 16px;
}

.share-preview-modal[hidden] {
  display: none;
}

.share-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 236, 211, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.share-preview-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 980px);
  overflow: auto;
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.98);
  border: 1px solid rgba(233, 210, 167, 0.68);
  box-shadow: 0 20px 50px rgba(88, 53, 8, 0.12);
}

.share-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 245, 220, 0.96);
  color: #8d5f1d;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.share-preview-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-right: 34px;
}

.share-preview-panel-head h2 {
  margin: 0;
  font-size: 1.18rem;
}

.share-preview-panel-message {
  margin: 4px 0 0;
  color: var(--color-text-secondary);
  font-size: 0.84rem;
}

.share-preview-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-preview-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(219, 191, 152, 0.48);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.share-preview-action--primary {
  background: linear-gradient(180deg, rgba(255, 166, 77, 0.98), rgba(255, 120, 112, 0.96));
  color: #fff;
  border-color: rgba(255, 135, 80, 0.8);
}

.share-preview-action[disabled],
.share-preview-action[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.share-preview-stage {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  min-height: 0;
  padding: 6px 6px 4px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(252, 240, 214, 0.98));
}

.share-preview-image {
  display: block;
  width: min(100%, 520px);
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(127, 84, 24, 0.1);
}

.runtime-share-card {
  box-sizing: border-box;
  width: 520px;
  overflow: hidden;
  padding: 22px 20px 14px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 228, 173, 0.84), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 190, 92, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(255, 244, 225, 0.98));
  border: 1px solid rgba(214, 163, 72, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: #2d1b06;
  font-family: "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
}

.runtime-share-card * {
  box-sizing: border-box;
}

.runtime-share-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.runtime-share-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.runtime-share-card-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.runtime-share-card-brand-copy {
  display: grid;
  gap: 3px;
}

.runtime-share-card-domain {
  font-size: 0.95rem;
  font-weight: 900;
}

.runtime-share-card-slogan {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(118, 83, 31, 0.82);
}

.runtime-share-card-qr {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.runtime-share-card-qr-frame {
  width: 84px;
  height: 84px;
  padding: 6px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 230, 0.97));
  border: 1px solid rgba(223, 183, 114, 0.28);
  box-shadow:
    0 14px 24px rgba(190, 132, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.runtime-share-card-qr-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: #fff;
}

.runtime-share-card-qr-label {
  font-size: 0.66rem;
  font-weight: 800;
  color: rgba(126, 91, 40, 0.82);
}

.runtime-share-card-selection {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(223, 183, 114, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.runtime-share-card-product-logo {
  width: 48px;
  height: 48px;
  padding: 9px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 248, 230, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.runtime-share-card-selection-copy {
  min-width: 0;
}

.runtime-share-card-selection-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.runtime-share-card-selection-title strong {
  font-size: 1.18rem;
  line-height: 1.16;
}

.runtime-share-card-selection-separator {
  color: rgba(146, 104, 44, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.runtime-share-card-selection-meta {
  margin-top: 7px;
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(92, 68, 34, 0.78);
}

.runtime-share-card-table {
  margin-top: 14px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(223, 183, 114, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 28px rgba(188, 132, 41, 0.08);
}

.runtime-share-card-head,
.runtime-share-card-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1.18fr) minmax(0, 0.9fr) minmax(0, 0.74fr) minmax(0, 0.72fr);
  gap: 8px;
  align-items: center;
}

.runtime-share-card-head {
  padding: 0 8px 10px;
  color: rgba(128, 93, 40, 0.84);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.runtime-share-card-body {
  display: grid;
  gap: 8px;
}

.runtime-share-card-row {
  min-height: 48px;
  padding: 0 8px;
  border-radius: 16px;
  border: 1px solid rgba(219, 191, 152, 0.32);
  background: rgba(255, 255, 255, 0.78);
}

.runtime-share-card-row--lowest {
  background: linear-gradient(180deg, rgba(235, 255, 240, 0.94), rgba(244, 255, 246, 0.94));
  border-color: rgba(45, 190, 96, 0.28);
}

.runtime-share-card-row--highest {
  background: linear-gradient(180deg, rgba(255, 240, 240, 0.94), rgba(255, 247, 247, 0.94));
  border-color: rgba(235, 87, 87, 0.22);
}

.runtime-share-card-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 244, 217, 0.92);
  color: #b26a16;
  font-size: 0.76rem;
  font-weight: 900;
}

.runtime-share-card-country,
.runtime-share-card-price,
.runtime-share-card-cny,
.runtime-share-card-compare {
  font-size: 0.82rem;
  font-weight: 800;
  color: #32200a;
}

.runtime-share-card-price {
  color: rgba(104, 75, 35, 0.92);
}

.runtime-share-card-cny {
  color: #d97706;
}

.runtime-share-card-compare {
  display: grid;
  gap: 2px;
  color: #9a5b34;
}

.runtime-share-card-compare-top,
.runtime-share-card-compare-bottom {
  display: block;
  white-space: nowrap;
}

.runtime-share-card-compare-top {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.08;
}

.runtime-share-card-compare-bottom {
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.08;
}

.runtime-share-card-compare--lowest .runtime-share-card-compare-top {
  font-size: 0.86rem;
}

.runtime-share-card-compare--higher .runtime-share-card-compare-top {
  color: rgba(154, 91, 52, 0.86);
}

.runtime-share-card-compare--higher .runtime-share-card-compare-bottom {
  color: #b45309;
}

.runtime-share-card-row--lowest .runtime-share-card-compare,
.runtime-share-card-row--lowest .runtime-share-card-cny {
  color: #15803d;
}

.runtime-share-card-row--lowest .runtime-share-card-compare-bottom {
  color: #15803d;
}

.runtime-share-card-row--highest .runtime-share-card-compare,
.runtime-share-card-row--highest .runtime-share-card-cny {
  color: #dc2626;
}

.runtime-share-card-row--highest .runtime-share-card-compare-bottom {
  color: #dc2626;
}

.runtime-share-card-other {
  margin-top: 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 251, 243, 0.84);
  border: 1px solid rgba(223, 183, 114, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 24px rgba(188, 132, 41, 0.06);
}

.runtime-share-card-other-head {
  display: block;
  margin-bottom: 7px;
}

.runtime-share-card-other-head strong {
  color: #7a4d0c;
  font-size: 0.9rem;
  line-height: 1.1;
}

.runtime-share-card-other-groups {
  display: grid;
  gap: 7px;
}

.runtime-share-card-other-group {
  padding: 8px 9px 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 191, 152, 0.28);
}

.runtime-share-card-other-group-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.runtime-share-card-other-group-logo {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 248, 230, 0.95);
  object-fit: contain;
}

.runtime-share-card-other-group-title {
  color: #7a4d0c;
  font-size: 0.8rem;
  font-weight: 900;
}

.runtime-share-card-other-group-body {
  display: grid;
  gap: 4px;
}

.runtime-share-card-other-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 8px;
  align-items: center;
  min-height: 28px;
  padding: 0 2px;
}

.runtime-share-card-other-plan {
  display: block;
  width: 100%;
  color: #2d1b06;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  min-width: 0;
}

.runtime-share-card-other-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-width: 0;
  color: rgba(104, 75, 35, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  justify-self: center;
}

.runtime-share-card-other-country-flag {
  flex: none;
}

.runtime-share-card-other-country-label {
  min-width: 0;
}

.runtime-share-card-other-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 6px;
  white-space: nowrap;
  width: 100%;
}

.runtime-share-card-other-cny {
  color: #d97706;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.runtime-share-card-other-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #15803d;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.runtime-share-card-other-row.is-unavailable .runtime-share-card-other-country,
.runtime-share-card-other-row.is-unavailable .runtime-share-card-other-cny {
  color: rgba(146, 104, 44, 0.64);
}

.runtime-share-card-other-meta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(118, 84, 35, 0.82);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
}
