/* Homepage-only Market Intelligence layout — scoped to .page-home */

.page-home {
  --home-ink: #0d1f34;
  --home-navy: #0b2746;
  --home-navy2: #12395f;
  --home-paper: #f4f2ed;
  --home-card: #ffffff;
  --home-line: #dce2e7;
  --home-muted: #667381;
  --home-green: #06875d;
  --home-amber: #b2750c;
  --home-blue: #1769aa;
  --home-soft: #edf3f7;
  --home-shadow: 0 15px 40px rgba(7, 29, 53, 0.09);
  --home-radius: 18px;
  --home-gold: #e2af43;
  background: var(--home-paper);
  color: var(--home-ink);
}

.page-home .shell {
  width: min(1180px, calc(100% - 36px));
}

.page-home .source-ribbon {
  background: #082038;
  color: #c9d8e5;
  font-size: 12px;
  text-align: center;
  padding: 7px 14px;
}

.page-home .home-header {
  background: rgba(244, 242, 237, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 31, 52, 0.1);
}

.page-home .home-header .navrow {
  height: 72px;
}

.page-home .home-header .mainnav a:hover {
  color: var(--home-blue);
}

.page-home .home-nav-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}

.page-home .lang-toggle {
  border-color: rgba(12, 47, 74, 0.18);
  color: var(--home-navy, #0b2746);
  background: #fff;
  height: 40px;
}

.page-home .btn {
  border: 0;
  border-radius: 11px;
  padding: 10px 15px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-home .btn:hover {
  transform: translateY(-1px);
}

.page-home .btn-dark {
  background: var(--home-navy);
  color: #fff;
}

.page-home .btn-light {
  background: #fff;
  border: 1px solid var(--home-line);
  color: var(--home-ink);
}

.page-home .ticker {
  background: var(--home-navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.page-home .ticker-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
}

.page-home .tick {
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.page-home .tick:last-child {
  border: 0;
}

.page-home .tick-label {
  font-size: 11px;
  color: #aebfd0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.page-home .tick-value {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .tick-value.pending {
  font-size: 13px;
  color: #f0c46c;
}

.page-home .home-hero {
  padding: 88px 0 72px;
  min-height: clamp(520px, 62vh, 720px);
  position: relative;
  overflow: hidden;
  color: var(--home-ink);
  /* HK skyline — cover keeps aspect; taller band avoids ultra-wide crop look */
  background-color: #0c2f4a;
  background-image:
    linear-gradient(100deg, rgba(244,247,252,0.92) 0%, rgba(244,247,252,0.78) 32%, rgba(244,247,252,0.28) 58%, rgba(12,47,74,0.10) 100%),
    url(/assets/img/hero-hk-skyline.jpg?v=20260731j);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-home .home-hero::after {
  display: none;
}

.page-home .home-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-hero .eyebrow,
.page-home .home-section .eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--home-blue);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.page-home .home-hero .eyebrow::before,
.page-home .home-section .section-head .eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--home-blue);
}

.page-home .home-hero h1 {
  font-family: Georgia, "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 18px 0;
  color: var(--home-ink);
}

.page-home .home-hero p {
  font-size: 18px;
  color: #4e5e6d;
  max-width: 640px;
  margin: 0 0 26px;
}

.page-home .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .hero-actions .btn {
  padding: 13px 20px;
}

.page-home .micro {
  font-size: 12px;
  color: var(--home-muted);
  margin-top: 13px;
}

.page-home .index-card {
  background: var(--home-card);
  border: 1px solid #dde4e8;
  border-radius: 24px;
  box-shadow: var(--home-shadow);
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.page-home .index-card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #eef5f7;
}

.page-home .index-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}

.page-home .kicker {
  font-size: 12px;
  color: var(--home-muted);
  font-weight: 800;
  letter-spacing: 0.4px;
}

.page-home .index-name {
  font-weight: 900;
  font-size: 19px;
  margin-top: 3px;
}

.page-home .confidence {
  background: #fff7df;
  color: var(--home-amber);
  border: 1px solid #f0daa4;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.page-home .index-pending {
  font-size: 36px;
  font-weight: 950;
  margin: 28px 0 3px;
  letter-spacing: -1px;
  position: relative;
}

.page-home .index-sub {
  color: var(--home-muted);
  font-size: 13px;
  position: relative;
}

.page-home .chart-placeholder {
  height: 155px;
  margin-top: 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fafb, #fff);
  border: 1px dashed #cbd8df;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--home-muted);
  position: relative;
  overflow: hidden;
}

.page-home .chart-placeholder::before,
.page-home .chart-placeholder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #edf1f3;
}

.page-home .chart-placeholder::before {
  top: 35%;
}

.page-home .chart-placeholder::after {
  top: 68%;
}

.page-home .chart-placeholder span {
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.page-home .index-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  font-size: 11px;
  color: var(--home-muted);
  position: relative;
}

.page-home .index-foot a {
  color: var(--home-blue);
  font-weight: 800;
}

.page-home .home-section {
  padding: 58px 0;
  background: transparent;
  color: var(--home-ink);
}

.page-home .home-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.page-home .home-section .section-head h2 {
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: 32px;
  line-height: 1.15;
  margin: 4px 0 0;
  color: var(--home-ink);
}

.page-home .home-section .section-head p {
  max-width: 570px;
  color: var(--home-muted);
  margin: 0;
  font-size: 14px;
}

.page-home .link {
  font-size: 13px;
  color: var(--home-blue);
  font-weight: 900;
  white-space: nowrap;
}

.page-home .price-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.page-home .panel {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  box-shadow: 0 8px 28px rgba(9, 30, 53, 0.05);
}

.page-home .source-ribbon a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .panel-title {
  padding: 20px 32px;
  border-bottom: 1px solid var(--home-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.page-home .chip {
  border: 1px solid var(--home-line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  color: #4f6070;
}

.page-home .chip.active,
.page-home .chip:hover {
  background: var(--home-navy);
  border-color: var(--home-navy);
  color: #fff;
}

.page-home .empty-state {
  min-height: 228px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 35px;
}

.page-home .empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #edf4f7;
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 24px;
}

.page-home .empty-state h3 {
  font-size: 18px;
  margin: 14px 0 6px;
}

.page-home .empty-state p {
  font-size: 13px;
  color: var(--home-muted);
  max-width: 480px;
  margin: 0 auto;
}

.page-home .hidden {
  display: none !important;
}

.page-home .pressure {
  padding: 12px 32px 28px;
}

.page-home .pressure .metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 12px;
  margin: 0;
  border-bottom: 1px solid #edf0f2;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.page-home .pressure .metric:last-of-type {
  border-bottom: 0;
}

.page-home .metric-label {
  font-size: 13px;
  color: #516172;
  padding-right: 12px;
}

.page-home .pressure .metric strong {
  font-size: 14px;
  color: inherit;
  flex-shrink: 0;
  padding-left: 8px;
}

.page-home .muted-value {
  color: var(--home-amber);
}

.page-home .pressure-note {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 11px;
  background: #fff8e8;
  color: #76520f;
  font-size: 12px;
  line-height: 1.55;
}

.page-home .price-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-end;
  align-items: center;
}

.page-home .price-filters .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .price-updates-list {
  padding: 8px 0;
}

.page-home .price-row-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 32px;
  border-bottom: 1px solid #edf0f2;
}

.page-home .price-row-item:last-child {
  border: 0;
}

.page-home .price-row-copy {
  min-width: 0;
  flex: 1;
}

.page-home .price-row-item .price-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0c2f4a;
  background: #eef4f9;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.page-home .price-row-item .desc {
  font-size: 14px;
  font-weight: 700;
}

.page-home .price-row-item .meta {
  font-size: 12px;
  color: var(--home-muted);
  margin-top: 4px;
}

.page-home .price-row-item .change {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-home .price-row-item .change strong {
  display: block;
  font-size: 14px;
}

.page-home .price-row-item .change.down strong {
  color: var(--home-amber);
}

.page-home .price-row-item .change.up strong {
  color: var(--home-green);
}

.page-home .price-row-item .change span {
  display: block;
  font-size: 11px;
  color: var(--home-muted);
  margin-top: 2px;
}

.page-home .listings-section {
  background: #ebeef0;
}

.page-home .search-box {
  background: var(--home-navy);
  padding: 23px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.72fr) auto;
  gap: 10px;
  box-shadow: var(--home-shadow);
}

.page-home .search-box .field {
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  background: #fff;
  color: var(--home-ink);
  padding: 0 13px;
  min-width: 0;
}

.page-home .search-btn {
  height: 48px;
  background: var(--home-gold);
  color: #172331;
  border: 0;
  border-radius: 11px;
  padding: 0 20px;
  font-weight: 950;
  cursor: pointer;
}

.page-home .filters {
  display: flex;
  gap: 8px;
  margin: 16px 0 22px;
  overflow: auto;
  padding-bottom: 3px;
}

.page-home .filters .chip {
  flex: 0 0 auto;
}

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

.page-home .home-listing {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 17px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  box-shadow: 0 8px 26px rgba(8, 30, 52, 0.045);
}

.page-home .home-listing:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
}

.page-home a.home-listing-art {
  height: 150px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  background: linear-gradient(130deg, #173d5e, #0c243d);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.page-home a.home-listing-art:hover img {
  opacity: 0.68;
  transform: scale(1.03);
}
.page-home a.home-listing-art img {
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.page-home .home-listing-art.tone-2 {
  background: linear-gradient(130deg, #476b5b, #173a35);
}

.page-home .home-listing-art.tone-3 {
  background: linear-gradient(130deg, #6d4d36, #35291f);
}

.page-home .home-listing-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-home .home-listing-art::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  right: -25px;
  top: -27px;
  box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-home .home-listing-art .cat {
  position: relative;
  z-index: 2;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 9px;
  border-radius: 999px;
}

.page-home .source-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  font-size: 10px;
  background: #fff;
  color: var(--home-navy);
  padding: 4px 7px;
  border-radius: 7px;
  font-weight: 900;
  z-index: 2;
}

.page-home .home-listing-body {
  padding: 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .biz-code {
  font-size: 11px;
  color: var(--home-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.page-home .biz-code strong {
  color: var(--home-navy);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-home .brand-logo {
  border-radius: 10px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}
.page-home .footer-brand .brand-logo {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.page-home .home-listing-body h3 {
  font-size: 16px;
  line-height: 1.48;
  margin: 0 0 12px;
  min-height: auto;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.page-home .home-listing-body h3 a:hover {
  color: var(--home-blue);
}

.page-home .location {
  font-size: 12px;
  color: var(--home-muted);
  margin-bottom: 12px;
}

.page-home .home-price-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #edf0f2;
  padding-top: 13px;
  margin-top: auto;
}

.page-home .home-price-row .label {
  font-size: 10px;
  color: var(--home-muted);
}

.page-home .home-price-row .value {
  font-size: 15px;
  font-weight: 950;
}

.page-home .home-price-row .profit {
  color: var(--home-green);
}

.page-home .claim {
  font-size: 10px;
  color: #87919b;
  margin-top: 11px;
}

.page-home .card-link {
  display: block;
  margin-top: 13px;
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 900;
}

.page-home .home-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-home .home-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.page-home .home-category {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 13px;
  padding: 16px 12px;
  text-align: center;
  font-weight: 850;
  font-size: 13px;
}

.page-home .home-category span {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.page-home .home-category small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--home-muted);
  font-weight: 700;
}

.page-home .home-category:hover {
  border-color: #9bb5c9;
  background: #f8fbfc;
}

.page-home .stories-section {
  padding-top: 20px;
}

.page-home .story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.page-home .story {
  border-radius: 18px;
  padding: 24px;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--home-line);
  display: flex;
  flex-direction: column;
}

.page-home .story.feature {
  background: var(--home-navy);
  color: #fff;
  border: 0;
}

.page-home .story-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7c8b97;
  font-weight: 900;
}

.page-home .feature .story-tag {
  color: #9fc1da;
}

.page-home .story h3 {
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: 23px;
  line-height: 1.28;
  margin: 15px 0 10px;
}

.page-home .story p {
  color: var(--home-muted);
  font-size: 13px;
  margin: 0;
}

.page-home .feature p {
  color: #c7d4df;
}

.page-home .story .card-link {
  margin-top: auto;
}

.page-home .feature .card-link {
  color: #f3c86a;
}

.page-home .cta {
  background: linear-gradient(135deg, #0a2745, #163f65);
  border-radius: 23px;
  color: #fff;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.page-home .cta h2 {
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: 30px;
  margin: 0 0 7px;
  color: #fff;
}

.page-home .cta p {
  margin: 0;
  color: #c9d7e2;
}

.page-home .cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: min(440px, 100%);
  align-items: center;
}

.page-home .cta-form > input[type="email"] {
  flex: 1;
  min-width: min(200px, 100%);
  height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 0 13px;
}

.page-home .cta-form > button {
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--home-gold);
  color: #172331;
  font-weight: 950;
  padding: 0 16px;
  cursor: pointer;
}

.page-home .cta-form .price-sub-opts {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12.5px;
  color: #d5e2ec;
  order: 3;
}

.page-home .cta-form .price-sub-opts label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.page-home .cta-form .price-sub-status {
  flex: 1 1 100%;
  order: 4;
  margin: 0;
  font-size: 13px;
}

.page-home .cta-form .price-sub-status.is-ok {
  color: #b7f0c8;
}

.page-home .cta-form .price-sub-status.is-err {
  color: #ffc9c9;
}

.page-home .method-section {
  padding-top: 15px;
  padding-bottom: 40px;
}

.page-home .method-panel {
  padding: 25px;
}

.page-home .method-panel .section-head {
  margin: 0;
  align-items: flex-start;
}

.page-home .method-panel .section-head h2 {
  font-size: 27px;
}

.page-home .site-footer {
  background: #071a2c;
  margin-top: 0;
}

@media (max-width: 900px) {
  .page-home .home-nav-actions {
    display: none;
  }

  .page-home .ticker-grid {
    grid-template-columns: repeat(5, 160px);
    overflow: auto;
  }

  .page-home .home-hero .hero-grid,
  .page-home .price-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-hero {
    padding-top: 42px;
  }

  .page-home .home-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-home .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .story.feature {
    grid-column: 1 / -1;
  }

  .page-home .search-box {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .search-box .field:first-child {
    grid-column: 1 / -1;
  }

  .page-home .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .page-home .shell {
    width: min(100% - 24px, 1180px);
  }

  .page-home .home-hero h1 {
    font-size: 43px;
    letter-spacing: -1.6px;
  }

  .page-home .home-hero p {
    font-size: 16px;
  }

  .page-home .home-listing-grid,
  .page-home .story-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .search-box {
    grid-template-columns: 1fr;
  }

  .page-home .search-box .field:first-child {
    grid-column: auto;
  }

  .page-home .home-section .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-home .cta {
    padding: 26px;
  }

  .page-home .cta-form {
    min-width: 100%;
    flex-direction: column;
  }
}

/* Traditional WhatsApp FAB (homepage overrides last) */
.page-home .wa-concierge{
  width:60px!important;
  height:60px!important;
  max-width:60px!important;
  min-width:60px!important;
  padding:0!important;
  gap:0!important;
  border-radius:50%!important;
  border:0!important;
  display:grid!important;
  place-items:center!important;
  grid-template-columns:1fr!important;
  background:#25D366!important;
  color:#fff!important;
  box-shadow:0 12px 30px rgba(18,140,70,.45)!important;
  animation:none!important;
}
.page-home .wa-concierge:hover{background:#1ebe57!important;transform:translateY(-2px) scale(1.05)}
.page-home .wa-concierge .wa-icon{width:30px;height:30px;display:block;color:#fff}
@media(max-width:640px){
  .page-home .wa-concierge{
    left:auto!important;
    right:14px!important;
    width:56px!important;
    height:56px!important;
    max-width:56px!important;
    border-radius:50%!important;
  }
}

/* Featured + discounted sections */
.page-home .source-badge.badge-featured{
  background:#e2af43;
  color:#172331;
}
.page-home .source-badge.badge-cut{
  background:#fff;
  color:#b2750c;
  border:1px solid #f0daa4;
}
.page-home .discount-section{
  background:#f7f5f0;
}
.page-home .cut-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed #e5ebef;
  font-size:12px;
  color:var(--home-muted);
}
.page-home .cut-row strong{
  color:var(--home-amber);
  font-size:13px;
  font-weight:900;
}
