@font-face {
  font-family: 'Compatil Text';
  src: url('./assets/fonts/CompatilTextLTCom-Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Text';
  src: url('./assets/fonts/CompatilTextLTCom-Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Text';
  src: url('./assets/fonts/CompatilTextLTCom-It.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Compatil Text SC';
  src: url('./assets/fonts/CompatilTextLTCom-RgSC.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Text SC';
  src: url('./assets/fonts/CompatilTextLTCom-BdSC.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Fact';
  src: url('./assets/fonts/CompatilFactLTCom-Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Fact';
  src: url('./assets/fonts/CompatilFactLTCom-Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Fact SC';
  src: url('./assets/fonts/CompatilFactLTCom-RgSC.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Fact SC';
  src: url('./assets/fonts/CompatilFactLTCom-BdSC.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Exquisit';
  src: url('./assets/fonts/CompatilExquisitLTCom-Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Compatil Exquisit';
  src: url('./assets/fonts/CompatilExquisitLTCom-Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Compatil Text', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000000;
  color: #f0f0f0;
  min-height: 100vh;
}

/*
  Web preview is not the WeChat mini program: it is plain HTML/CSS served in a
  desktop browser. Wide viewports + flex: 1 on cards = one horizontal row
  (marketing-site look). The mini program uses ~750rpx width so the same flex
  pattern wraps to ~2 columns. Below: narrow “phone” column on larger screens
  so /preview resembles H5 inside WeChat.
*/
@media (min-width: 560px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0a0a0a;
  }
  #app {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    background: #000;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.75);
  }
}
.font-fact { font-family: 'Compatil Fact', 'PingFang SC', 'Microsoft YaHei', sans-serif; }
.font-fact-sc { font-family: 'Compatil Fact SC', 'Compatil Fact', 'PingFang SC', 'Microsoft YaHei', sans-serif; }
.font-text-sc { font-family: 'Compatil Text SC', 'Compatil Text', 'PingFang SC', 'Microsoft YaHei', sans-serif; }
.font-exquisit { font-family: 'Compatil Exquisit', 'Compatil Text', 'PingFang SC', 'Microsoft YaHei', serif; }

.brand-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px 14px;
  border-bottom: 1px solid rgba(195, 165, 114, 0.18);
}
.brand-strip-logo {
  display: block;
  height: 36px;
  width: 220px;
  max-width: 100%;
  object-fit: contain;
}

.page { display: none; padding: 40px 24px 80px; }
.page.active { display: block; }

.nav-back { color: #c2a572; padding: 16px 0; cursor: pointer; font-size: 14px; }
.nav-back:hover { text-decoration: underline; }

.hero { position: relative; padding: 60px 0 40px; text-align: center; }
.lang-toggle-wrap { position: absolute; top: 12px; right: 24px; display: flex; gap: 6px; z-index: 10; }
.lang-toggle { padding: 6px 14px; font-size: 13px; color: #666; background: rgba(255,255,255,0.08); border-radius: 16px; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; }
.lang-toggle:hover, .lang-toggle.active { color: #c2a572; background: rgba(195,165,114,0.2); border-color: rgba(195,165,114,0.5); }
.hero-bg { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(195,165,114,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-logo { position: relative; display: block; width: min(320px, 86%); height: auto; margin: 0 auto 28px; z-index: 2; }
.hero-title { font-size: 36px; font-weight: 300; letter-spacing: 4px; margin-bottom: 12px; }
.hero-subtitle { font-size: 14px; color: #c2a572; letter-spacing: 2px; margin-bottom: 24px; }
.hero-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, #c2a572, transparent); margin: 0 auto 24px; }
.hero-desc { font-size: 13px; color: #999; line-height: 1.6; }

.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.actions .action-card {
  flex: 1 1 calc(50% - 8px);
  min-width: 140px;
}
.action-card { background: rgba(26,26,26,0.9); border: 1px solid rgba(195,165,114,0.3); border-radius: 16px; padding: 24px; text-align: center; cursor: pointer; transition: all 0.2s; }
.action-card:hover { border-color: #c2a572; transform: scale(1.02); }
.action-icon { display: block; margin-bottom: 12px; }
.action-icon svg { width: 36px; height: 36px; color: #c2a572; margin: 0 auto; }
.action-title { display: block; font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.action-desc { font-size: 12px; color: #888; }

.section { margin-bottom: 32px; }
.section-title { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.featured-swipe-caption {
  font-size: 12px;
  color: #777;
  margin: -8px 0 12px 0;
}
.featured-row-wrap {
  position: relative;
  width: 100%;
}
.featured-edge-hint {
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 0;
  width: 40px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
  box-sizing: border-box;
  background: linear-gradient(90deg, transparent, rgba(15, 15, 15, 0.88));
}
.featured-edge-chevron {
  color: rgba(194, 165, 114, 0.75);
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  animation: featured-edge-pulse 1.8s ease-in-out infinite;
}
@keyframes featured-edge-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}
.featured-scroll {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  width: 100%;
  min-width: 0;
  padding: 8px 0;
}
.featured-item {
  box-sizing: border-box;
  flex: 0 0 200px;
  flex-shrink: 0;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  height: 320px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(195,165,114,0.2);
  cursor: pointer;
}
.featured-item:hover { border-color: #c2a572; }
.featured-img {
  box-sizing: border-box;
  flex: 0 0 50%;
  width: 100%;
  min-height: 0;
  background: #2a2a2a;
  overflow: hidden;
}
.featured-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 0;
}
.featured-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.featured-info {
  box-sizing: border-box;
  flex: 0 0 50%;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 12px 10px 14px;
}
.featured-name {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
}
.featured-size {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 1.45;
  color: #c2a572;
  white-space: normal;
  word-break: break-word;
  text-align: left;
}

.payment-banner { padding: 24px; margin-top: 32px; background: rgba(26,26,26,0.95); border: 1px solid rgba(195,165,114,0.2); border-radius: 12px; }
.payment-title { font-size: 14px; font-weight: 600; color: #c2a572; margin-bottom: 8px; }
.payment-methods { font-size: 12px; color: #999; }

.header { margin-bottom: 32px; }
.header-title { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.header-desc { font-size: 14px; color: #888; }

.piano-grid { display: flex; flex-direction: column; gap: 24px; }
.piano-card { background: rgba(26,26,26,0.95); border: 1px solid rgba(195,165,114,0.2); border-radius: 12px; overflow: hidden; cursor: pointer; }
.piano-card:hover { border-color: #c2a572; }
.piano-image-wrap { height: 200px; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); position: relative; overflow: hidden; }
.piano-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.piano-image-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); }
.piano-badge { padding: 6px 12px; background: rgba(195,165,114,0.9); color: #000000; font-size: 12px; font-weight: 600; display: inline-block; margin: 12px; border-radius: 6px; }
.piano-content { padding: 20px; }
.piano-name { font-size: 20px; font-weight: 600; display: block; margin-bottom: 6px; }
.piano-size { font-size: 13px; color: #c2a572; margin-bottom: 12px; }
.piano-desc { font-size: 13px; color: #999; line-height: 1.5; }

.explore-content { display: flex; flex-direction: column; gap: 20px; }
.explore-card { padding: 20px; background: rgba(26,26,26,0.95); border: 1px solid rgba(195,165,114,0.2); border-radius: 12px; }
.explore-card h3 { font-size: 18px; margin-bottom: 12px; color: #c2a572; }
.explore-card p { font-size: 13px; color: #999; margin-bottom: 8px; line-height: 1.5; }
.explore-card a { color: #c2a572; text-decoration: none; }
.explore-card a:hover { text-decoration: underline; }

.follow-wechat-card { border-color: rgba(195,165,114,0.35); }
.follow-wechat-desc { margin-bottom: 16px !important; }
.follow-wechat-content { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.follow-wechat-qr { flex-shrink: 0; }
.follow-wechat-qr img { width: 140px; height: 140px; display: block; border-radius: 8px; background: #fff; }
.follow-wechat-id { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.follow-wechat-label { font-size: 12px; color: #888; }
.follow-wechat-value { font-size: 16px; font-weight: 600; color: #c2a572; }
.follow-wechat-copy { padding: 6px 14px; font-size: 12px; color: #000000; background: #c2a572; border: none; border-radius: 8px; cursor: pointer; }
.follow-wechat-copy:hover { opacity: 0.9; }

.cta-banner { margin-top: 32px; padding: 24px; background: rgba(195,165,114,0.15); border: 1px solid rgba(195,165,114,0.4); border-radius: 12px; text-align: center; cursor: pointer; }
.cta-banner:hover { background: rgba(195,165,114,0.25); }
.cta-text { font-size: 14px; color: #c2a572; }

.chat-header { margin-bottom: 24px; }
.chat-title { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.chat-subtitle { font-size: 13px; color: #888; }

.lead-form { margin-bottom: 20px; padding: 16px; background: rgba(26,26,26,0.95); border: 1px solid rgba(195,165,114,0.2); border-radius: 12px; }
.lead-form-title { font-size: 13px; color: #888; margin-bottom: 12px; }
.lead-form-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.lead-form-fields input { padding: 12px 16px; font-size: 14px; color: #fff; background: rgba(0,0,0,0.3); border: 1px solid rgba(195,165,114,0.25); border-radius: 10px; }
.lead-form-fields input::placeholder { color: #666; }
.lead-save-btn { padding: 8px 20px; font-size: 13px; color: #000000; background: rgba(195,165,114,0.8); border: none; border-radius: 8px; cursor: pointer; }
.lead-save-btn:hover { background: #c2a572; }
.lead-form.lead-saved .lead-form-title { color: #6a9; }

.messages { height: 400px; overflow-y: auto; padding: 16px; margin-bottom: 16px; }
.message-wrap { margin-bottom: 16px; display: flex; align-items: flex-end; gap: 10px; }
.message-wrap.user { justify-content: flex-end; flex-direction: row-reverse; }
.message-wrap.assistant { justify-content: flex-start; }
.msg-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.message-bubble { max-width: 85%; padding: 14px 18px; border-radius: 16px; line-height: 1.5; font-size: 14px; white-space: pre-wrap; }
.user .message-bubble { background: rgba(195,165,114,0.25); border: 1px solid rgba(195,165,114,0.4); }
.assistant .message-bubble { background: rgba(26,26,26,0.9); border: 1px solid rgba(195,165,114,0.2); }

.msg-workflow-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.msg-wf-opt {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.45;
  color: #f0f0f0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(195, 165, 114, 0.35);
  border-radius: 10px;
  cursor: pointer;
  white-space: normal;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.msg-wf-opt:hover {
  color: #c2a572;
  background: rgba(195, 165, 114, 0.12);
  border-color: rgba(195, 165, 114, 0.55);
}
.msg-wf-opt:focus {
  outline: 2px solid rgba(195, 165, 114, 0.6);
  outline-offset: 2px;
}

.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.quick-reply { padding: 6px 12px; background: rgba(195,165,114,0.15); border: 1px solid rgba(195,165,114,0.3); border-radius: 16px; font-size: 12px; color: #c2a572; cursor: pointer; }
.quick-reply:hover { background: rgba(195,165,114,0.25); }
.msg-video { display: block; width: 100%; max-height: 280px; margin-top: 8px; border-radius: 8px; background: #000; }

.msg-video-link {
  display: inline-block;
  margin: 6px 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  background: linear-gradient(135deg, #d4b896, #c2a572);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  line-height: 1.3;
  vertical-align: baseline;
}
.msg-video-link:hover { filter: brightness(1.06); }
.msg-video-link:focus { outline: 2px solid #c2a572; outline-offset: 2px; }

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.video-modal.active { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 90vh;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(194, 165, 114, 0.35);
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.video-modal-close:hover { background: rgba(194, 165, 114, 0.35); }
.video-modal-player {
  display: block;
  width: 100%;
  max-height: min(72vh, 520px);
  border-radius: 8px;
  background: #000;
}
.input-area { display: flex; gap: 12px; align-items: center; }
.input-area input { flex: 1; height: 48px; padding: 0 16px; background: rgba(0,0,0,0.3); border: 1px solid rgba(195,165,114,0.3); border-radius: 24px; color: #fff; font-size: 14px; }
.input-area input::placeholder { color: #666; }
.input-area button { width: 100px; height: 48px; background: #c2a572; color: #000000; font-size: 14px; font-weight: 600; border: none; border-radius: 24px; cursor: pointer; }
.input-area button:hover:not(:disabled) { opacity: 0.9; }
.input-area button:disabled { background: #444; color: #666; cursor: not-allowed; }

/* Investment page */
.investment-content { display: flex; flex-direction: column; gap: 24px; }
.investment-toggles, .investment-models { }
.toggle-label { display: block; font-size: 12px; color: #888; margin-bottom: 10px; }
.toggle-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.toggle-btn { padding: 8px 16px; font-size: 13px; color: #999; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; }
.toggle-btn:hover, .toggle-btn.active { color: #c2a572; background: rgba(195,165,114,0.2); border-color: rgba(195,165,114,0.5); }
.model-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.model-chip { padding: 8px 16px; font-size: 12px; color: #999; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; }
.model-chip:hover, .model-chip.active { color: #c2a572; background: rgba(195,165,114,0.2); border-color: rgba(195,165,114,0.5); }
.chart-wrap { background: #141414; border-radius: 12px; padding: 16px; height: 280px; }
.chart-wrap canvas { width: 100% !important; height: 100% !important; }
.value-summary { padding: 16px; background: rgba(195,165,114,0.08); border: 1px solid rgba(195,165,114,0.25); border-radius: 10px; }
.value-summary .value-title { font-size: 13px; color: #c2a572; margin-bottom: 12px; display: block; }
.value-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.value-row .value-name { color: #aaa; }
.value-row .value-amount { font-weight: 600; color: #fff; }
.investment-descriptions { }
.investment-descriptions .desc-card { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.investment-descriptions .desc-card:last-child { border-bottom: none; }
.investment-descriptions .desc-name { font-size: 14px; font-weight: 600; color: #c2a572; display: block; margin-bottom: 6px; }
.investment-descriptions .desc-text { font-size: 12px; color: #999; line-height: 1.5; }
.investment-notes { padding: 16px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); }
.investment-notes .note-text { font-size: 12px; color: #888; line-height: 1.6; margin-bottom: 8px; }
.investment-notes .note-text:last-child { margin-bottom: 0; }

.roi-section { margin-bottom: 24px; padding: 20px; background: rgba(195,165,114,0.06); border: 1px solid rgba(195,165,114,0.25); border-radius: 12px; }
.roi-title { display: block; font-size: 16px; font-weight: 600; color: #c2a572; margin-bottom: 6px; }
.roi-subtitle { display: block; font-size: 12px; color: #888; margin-bottom: 12px; }
.roi-year-toggles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.roi-year-btn { padding: 8px 16px; font-size: 13px; color: #999; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; }
.roi-year-btn:hover, .roi-year-btn.active { color: #c2a572; background: rgba(195,165,114,0.2); border-color: rgba(195,165,114,0.5); }
.roi-custom { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.roi-custom-label { font-size: 12px; color: #888; }
.roi-custom-input { width: 80px; padding: 8px 12px; font-size: 14px; color: #fff; background: rgba(0,0,0,0.3); border: 1px solid rgba(195,165,114,0.3); border-radius: 8px; }
.roi-forecast-list { }
.roi-forecast-row { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.roi-forecast-row:last-child { border-bottom: none; }
.roi-model-name { display: block; font-size: 14px; font-weight: 600; color: #c2a572; margin-bottom: 6px; }
.roi-details { display: flex; flex-direction: column; gap: 2px; }
.roi-line { font-size: 12px; color: #aaa; }
.roi-line.roi-highlight { color: #fff; font-weight: 500; }

.section-label { font-size: 14px; font-weight: 600; color: #c2a572; margin-bottom: 12px; display: block; }
.asset-section { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.steinway-advantage { margin-bottom: 20px; padding: 20px; background: rgba(195,165,114,0.12); border: 1px solid rgba(195,165,114,0.4); border-radius: 12px; }
.advantage-title { display: block; font-size: 15px; font-weight: 700; color: #c2a572; margin-bottom: 14px; }
.roi-table { margin-bottom: 10px; }
.roi-row { display: flex; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.roi-row.header { font-weight: 600; color: #888; }
.roi-row.highlight { background: rgba(195,165,114,0.15); color: #c2a572; font-weight: 600; border-radius: 8px; margin: 4px 0; padding: 10px 8px; }
.roi-col { flex: 1; }
.advantage-note { font-size: 12px; color: #888; line-height: 1.5; margin-top: 8px; }
.asset-desc { font-size: 12px; color: #888; margin-bottom: 12px; }
.asset-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.asset-chip { padding: 6px 14px; font-size: 12px; color: #999; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; }
.asset-chip:hover, .asset-chip.active { color: #c2a572; background: rgba(195,165,114,0.2); border-color: rgba(195,165,114,0.5); }
.asset-summary { margin-top: 16px; padding: 16px; background: rgba(195,165,114,0.06); border: 1px solid rgba(195,165,114,0.2); border-radius: 10px; }
.asset-summary-title { font-size: 13px; font-weight: 600; color: #c2a572; margin-bottom: 10px; display: block; }
.asset-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; }
.asset-summary-row .name { color: #aaa; }
.asset-summary-row .val { color: #fff; font-weight: 500; }

/* In-app web viewer overlay */
.webview-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: #000000; flex-direction: column; }
.webview-overlay.active { display: flex; }
.webview-header { flex-shrink: 0; padding: 12px 16px; background: #000000; border-bottom: 1px solid rgba(195,165,114,0.3); }
.webview-close { padding: 8px 16px; font-size: 14px; color: #c2a572; background: transparent; border: 1px solid rgba(195,165,114,0.5); border-radius: 8px; cursor: pointer; }
.webview-close:hover { background: rgba(195,165,114,0.2); }
.webview-frame { flex: 1; width: 100%; border: none; background: #fff; }
.link-in-app { color: #c2a572; cursor: pointer; text-decoration: underline; }
.link-in-app:hover { text-decoration: none; }

/* Explore toolbar + Steinway reviews clone (official reviews layout, dark theme) */
.explore-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 8px;
  margin: -8px 0 0;
}
.explore-toolbar .lang-toggle-wrap { position: static; }
.stg-reviews-card { padding-bottom: 24px; }
.stg-section-h3 { font-size: 18px; margin-bottom: 8px; color: #c2a572; }
.stg-section-sub { font-size: 12px; color: #777; margin-bottom: 16px; line-height: 1.5; }
.stg-reviews-root { margin-top: 4px; }
.stg-reviews-loading, .stg-reviews-err { font-size: 13px; color: #888; padding: 12px 0; }

.stg-review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stg-left-col { flex: 1 1 200px; min-width: 0; }
.stg-cust-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.stg-hear { font-size: 17px; font-weight: 600; color: #fff; margin: 8px 0 12px; line-height: 1.35; }
.stg-total-star { display: flex; flex-direction: column; gap: 6px; }
.stg-avg-rating { color: #c2a572; letter-spacing: 2px; font-size: 15px; line-height: 1; }
.stg-total-5star { font-size: 13px; color: #aaa; }

.stg-right-col { flex: 1 1 160px; min-width: 0; }
.stg-review-count { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.stg-stats { display: flex; flex-direction: column; gap: 8px; }
.stg-stat-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.stg-star-count { width: 52px; flex-shrink: 0; color: #999; }
.stg-stat-row progress {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  background: rgba(255,255,255,0.08);
}
.stg-stat-row progress::-webkit-progress-bar { background: rgba(255,255,255,0.08); border-radius: 4px; }
.stg-stat-row progress::-webkit-progress-value { background: #c2a572; border-radius: 4px; }
.stg-stat-row progress::-moz-progress-bar { background: #c2a572; border-radius: 4px; }
.stg-percent { width: 36px; text-align: right; color: #aaa; flex-shrink: 0; }

.stg-featured-reviews { margin-top: 4px; }
.stg-review-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.stg-cat {
  display: inline-block;
  padding: 8px 12px;
  font-size: 12px;
  color: #999;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
.stg-cat:hover { color: #c2a572; border-color: rgba(195,165,114,0.35); }
.stg-cat.active { color: #000; background: #c2a572; border-color: #c2a572; font-weight: 600; }

.stg-all-title h2 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 14px; }

.stg-reviewpro {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stg-reviewpro:last-child { border-bottom: none; }
.stg-reviewhead { margin-bottom: 8px; }
.stg-authorname { font-size: 14px; color: #e8e8e8; line-height: 1.5; }
.stg-authorverify { font-size: 12px; color: #7a9e7a; margin-left: 6px; }
.stg-reviewdate { font-size: 12px; color: #888; margin-left: 8px; }
.stg-reviewcontent { padding-left: 0; }
.stg-review-star { color: #c2a572; letter-spacing: 1px; font-size: 14px; margin-bottom: 6px; }
.stg-reviewtitle { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.stg-reviewdesc { font-size: 13px; color: #aaa; line-height: 1.55; margin-bottom: 10px; }
.stg-review-product { font-size: 12px; }
.stg-product-link {
  color: #c2a572;
  cursor: pointer;
  text-decoration: underline;
}

.stg-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding-top: 12px;
}
.stg-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  font-size: 12px;
  color: #aaa;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  text-decoration: none;
}
.stg-page:hover:not(.disabled):not(.active) { color: #c2a572; border-color: rgba(195,165,114,0.4); }
.stg-page.active { color: #000; background: #c2a572; border-color: #c2a572; font-weight: 600; }
.stg-page.disabled { opacity: 0.35; pointer-events: none; }
