:root {
  --ink: #14231d;
  --muted: #66736e;
  --line: #e6e9e2;
  --paper: #fffdf8;
  --panel: #f6f7f2;
  --brand: #087a63;
  --brand-dark: #114331;
  --accent: #e9534f;
  --amber: #f4b43f;
  --rose: #fff1ee;
  --shadow: 0 18px 48px rgba(24, 43, 35, .10);
  --radius: 14px;
  --gap: 18px;
}

/* 7.9 首页商城一体化与正式官网体验 */
.yuhua-79 .mall-header {
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 8px 30px rgba(21, 48, 39, 0.08);
}

.yuhua-79 .mall-logo .logo-badge {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.yuhua-79 .mall-search {
  max-width: 430px;
}

.yuhua-79 .mall-hero {
  align-items: center;
  min-height: calc(100vh - 112px);
}

.home-shop-section,
.supply-chain-flow {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto;
}

.home-shop-section {
  background: #fffdf8;
  border: 1px solid rgba(19, 70, 55, 0.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(33, 52, 43, 0.08);
}

.home-shop-browser {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.home-shop-primary {
  display: grid;
  gap: 10px;
  align-content: start;
}

.home-shop-primary button,
.home-shop-secondary button {
  border: 1px solid rgba(19, 70, 55, 0.13);
  background: #f8f7f1;
  color: #24463a;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

.home-shop-primary button {
  min-height: 48px;
}

.home-shop-primary button.active,
.home-shop-secondary button.active {
  background: #143f31;
  color: #fffdf8;
  border-color: #143f31;
  box-shadow: 0 12px 24px rgba(20, 63, 49, 0.18);
}

.home-shop-main {
  min-width: 0;
}

.home-shop-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-shop-filter-head strong {
  display: block;
  font-size: 24px;
  color: #143f31;
}

.home-shop-filter-head span {
  display: block;
  margin-top: 4px;
  color: #6e7a73;
}

.home-shop-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.home-shop-secondary button {
  min-height: 40px;
  padding: 0 16px;
}

.home-shop-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-shop-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.yuhua-79 .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.yuhua-79 .product-card .product-photo {
  aspect-ratio: 1 / 1;
  background: #f6f5ef;
}

.yuhua-79 .product-card .product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yuhua-79 .product-card .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.yuhua-79 .product-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.yuhua-79 .product-card .price {
  margin-top: auto;
}

.recent-orders-strip.is-empty {
  display: none;
}

.supply-chain-flow {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #123e31, #1f5c49);
  color: #fffdf8;
}

.supply-chain-flow .section-title p,
.supply-chain-flow .section-title h2,
.supply-chain-flow .section-title span {
  color: #fffdf8;
}

.supply-flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.supply-flow-map article {
  position: relative;
  min-height: 178px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.22);
}

.supply-flow-map article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: rgba(255, 253, 248, 0.38);
}

.supply-flow-map article:last-child::after {
  display: none;
}

.supply-flow-map b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fffdf8;
  color: #143f31;
  margin-bottom: 18px;
}

.supply-flow-map strong {
  display: block;
  font-size: 19px;
  margin-bottom: 10px;
}

.supply-flow-map span {
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.7;
}

.yuhua-79 .founder-grid.photo-grid article {
  display: flex;
  flex-direction: column;
}

.yuhua-79 .founder-grid.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.yuhua-79 .cooperation-types {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1020px) {
  .home-shop-browser {
    grid-template-columns: 1fr;
  }

  .home-shop-primary,
  .home-shop-secondary {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .home-shop-primary button,
  .home-shop-secondary button {
    flex: 0 0 auto;
    min-width: 86px;
  }

  .home-shop-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .supply-flow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supply-flow-map article::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .home-shop-section,
  .supply-chain-flow {
    width: min(100% - 24px, 1180px);
    margin: 24px auto;
    padding: 20px 14px;
    border-radius: 18px;
  }

  .home-shop-filter-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-shop-filter-head .secondary-action {
    width: 100%;
  }

  .home-shop-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-shop-actions {
    flex-direction: column;
  }

  .home-shop-actions .primary-action,
  .home-shop-actions .secondary-action {
    width: 100%;
  }

  .supply-flow-map {
    grid-template-columns: 1fr;
  }

  .yuhua-79 .cooperation-types {
    grid-template-columns: 1fr;
  }
}

/* 与花同行 7.8 私域转化层 */
.nav-private,
.private-header-button,
.private-action,
.lane-private-tip {
  border: 1px solid rgba(233, 83, 79, .22);
  border-radius: 999px;
  background: #fff2ef;
  color: var(--accent);
  font-weight: 950;
}

.mall-nav .nav-private {
  min-height: 34px;
  padding: 0 14px;
  white-space: nowrap;
}

.private-header-button {
  min-height: 42px;
  padding: 0 14px;
  box-shadow: 0 8px 22px rgba(233, 83, 79, .08);
}

.private-action {
  min-height: 50px;
  padding: 0 22px;
  box-shadow: 0 14px 30px rgba(233, 83, 79, .12);
}

.hero-coupon-card,
.hero-mini-qr {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24,43,35,.07);
}

.hero-coupon-card {
  display: grid;
  gap: 8px;
}

.hero-coupon-card strong {
  font-size: 18px;
  color: var(--brand-dark);
}

.hero-coupon-card span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-coupon-card button,
.category-private-actions button,
.detail-private-coupon button,
.mobile-private-bar button:last-child {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 950;
}

.hero-mini-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.hero-mini-qr img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.private-benefits,
.category-private-prompt {
  margin: 24px clamp(18px, 5vw, 76px) 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,242,239,.76), rgba(255,253,248,.95)),
    #fff;
  box-shadow: var(--shadow);
}

.private-benefit-copy,
.category-private-prompt > div:first-child {
  max-width: 780px;
}

.private-benefit-copy h2,
.category-private-prompt h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.private-benefit-copy span,
.category-private-prompt span {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.private-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.private-benefit-grid article {
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(230,233,226,.9);
  border-radius: 18px;
  background: #fff;
}

.private-benefit-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 20px;
}

.private-benefit-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.private-benefit-actions,
.category-private-actions,
.private-modal-actions,
.pay-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* 与花同行 7.11 私域领券强化层 */
.yuhua-711 .nav-private,
.yuhua-711 .private-action,
.yuhua-711 .lane-private-tip {
  border-color: rgba(220, 63, 58, .26);
  background: linear-gradient(135deg, #fff4ef, #fffdf8);
  color: #c93d38;
}

.yuhua-711 .hero-coupon-card {
  border-color: rgba(220, 63, 58, .18);
  background:
    linear-gradient(135deg, rgba(255, 247, 240, .96), rgba(255, 255, 255, .98)),
    #fff;
}

.yuhua-711 .hero-coupon-card strong {
  color: #bd342f;
}

.private-savings-ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(220, 63, 58, .18);
  border-radius: 999px;
  background: #fff2ee;
  color: #bd342f;
  font-weight: 950;
  line-height: 1.35;
}

.yuhua-711 .private-benefits {
  position: relative;
  overflow: hidden;
  border-color: rgba(220, 63, 58, .16);
  background:
    linear-gradient(135deg, rgba(255, 242, 237, .88), rgba(255, 253, 248, .96) 48%, rgba(238, 248, 241, .88)),
    #fffdf8;
}

.yuhua-711 .private-benefit-grid article {
  border-color: rgba(220, 63, 58, .10);
  box-shadow: 0 14px 34px rgba(41, 63, 51, .06);
}

.yuhua-711 .private-benefit-grid article:first-child {
  background: #fff7f2;
}

.yuhua-711 .private-benefit-actions .primary-action {
  background: #bd342f;
}

.wecom-savings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.wecom-savings-grid li {
  padding: 13px;
  border: 1px solid rgba(220, 63, 58, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
}

.wecom-savings-grid strong,
.wecom-savings-grid span {
  display: block;
}

.wecom-savings-grid strong {
  color: var(--brand-dark);
  font-size: 15px;
}

.wecom-savings-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.yuhua-711 .private-domain-panel {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 238, 225, .88), transparent 34%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(255,245,241,.96)),
    #fff;
}

.yuhua-711 .private-qr-card {
  border-color: rgba(220, 63, 58, .12);
}

.yuhua-711 .private-modal-copy h2 {
  color: #183f32;
}

.yuhua-711 .private-modal-actions .primary-action {
  background: #143f31;
}

.yuhua-710.yuhua-711 .official-header.site-header {
  display: block;
  grid-template-columns: none;
  gap: 0;
  min-height: auto;
  padding: 0;
}

.yuhua-710.yuhua-711 .official-header-main {
  width: min(1220px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.yuhua-710.yuhua-711 .official-nav-row {
  width: min(1220px, calc(100% - 40px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 与花同行 7.12 官网体验深化 */
.yuhua-712 .mall-hero h1 {
  max-width: 760px;
  letter-spacing: 0;
}

.yuhua-712 .mall-hero .lead {
  max-width: 780px;
}

.yuhua-712 .trust-mini-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.private-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.private-flow-steps span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(20, 67, 49, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
  color: var(--brand-dark);
  text-align: center;
  font-weight: 950;
}

.platform-intro-712,
.why-yuhua,
.service-audience,
.brand-vision {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto;
}

.platform-intro-712 {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(20, 67, 49, .12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(242, 248, 239, .94)),
    #fffdf8;
  box-shadow: 0 24px 70px rgba(33, 52, 43, .08);
}

.platform-intro-712 .platform-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-intro-712 .platform-copy strong {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: #eef7f2;
  color: var(--brand-dark);
  line-height: 1.7;
}

.platform-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-yuhua,
.service-audience {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(20, 67, 49, .12);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 18px 58px rgba(33, 52, 43, .07);
}

.why-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.why-grid article,
.audience-grid article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(20, 67, 49, .11);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 246, .96)),
    #fff;
}

.why-grid article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eaf5ef;
  color: var(--brand);
  font-weight: 950;
}

.why-grid strong,
.audience-grid strong {
  color: var(--brand-dark);
  font-size: 21px;
}

.why-grid p,
.audience-grid span {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.audience-grid a,
.audience-grid button {
  width: fit-content;
  margin-top: auto;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 999px;
  background: #143f31;
  color: #fffdf8;
  text-decoration: none;
  font-weight: 950;
}

.brand-vision {
  background:
    linear-gradient(135deg, rgba(20, 67, 49, .94), rgba(13, 92, 73, .88)),
    #143f31;
  color: #fffdf8;
}

.brand-vision .eyebrow,
.brand-vision h2,
.brand-vision .section-title p,
.brand-vision .section-title h2 {
  color: #fffdf8;
}

.brand-vision .section-title span,
.brand-vision .philosophy-grid p {
  color: rgba(255, 253, 248, .78);
}

.brand-vision .philosophy-grid article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.brand-vision .philosophy-grid strong {
  color: #fffdf8;
}

.flower-friend-price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff2ee;
  color: #bd342f;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
}

/* 与花同行 7.13 企业级官网视觉深化 */
.yuhua-713 {
  background: #fbfaf6;
}

.yuhua-713 .mall-page {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.98), rgba(246, 249, 244, 0.92) 42%, #fbfaf6 100%);
}

.yuhua-713 .profile-color-line {
  width: min(520px, 100%);
  height: 6px;
  margin: 20px 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f23d57 0 16%, #f59e2e 16% 32%, #f6d64a 32% 48%, #3cc66f 48% 64%, #16a6d9 64% 80%, #7555d9 80% 100%);
}

.yuhua-713 .mall-hero {
  grid-template-columns: minmax(0, 1.42fr) minmax(310px, .78fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  min-height: auto;
  padding-top: clamp(72px, 10vw, 118px);
  padding-bottom: clamp(46px, 7vw, 78px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .92), transparent 34%),
    linear-gradient(115deg, #fbfaf6 0%, #f4f8f2 58%, #eef6f3 100%);
}

.yuhua-713 .mall-hero-copy {
  max-width: 790px;
}

.yuhua-713 .mall-hero .eyebrow,
.yuhua-713 .section-title p,
.yuhua-713 .profile-section-head p {
  letter-spacing: 0;
  color: #087a63;
  font-weight: 950;
}

.yuhua-713 .mall-hero h1 {
  max-width: 760px;
  margin: 12px 0 8px;
  color: #17231c;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
}

.yuhua-713 .mall-hero h1 span {
  display: block;
}

.yuhua-713 .hero-subtitle {
  margin: 0 0 10px;
  color: #8b9691;
  font-weight: 850;
  font-size: clamp(15px, 1.6vw, 19px);
}

.yuhua-713 .hero-slogan {
  margin: 0;
  color: #087a63;
  font-weight: 950;
  font-size: clamp(19px, 2.4vw, 30px);
}

.yuhua-713 .mall-hero .lead {
  max-width: 820px;
  padding: 20px 22px;
  border: 1px solid rgba(20, 67, 49, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: #4f5c55;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.9;
}

.yuhua-713 .trust-mini-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.yuhua-713 .trust-mini-list li {
  min-height: 70px;
  border-radius: 8px;
  background: #fff;
  color: #17231c;
  box-shadow: 0 10px 28px rgba(24, 43, 35, .06);
}

.yuhua-713 .profile-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  overflow: hidden;
}

.yuhua-713 .profile-metric-row article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid rgba(20, 67, 49, .12);
  text-align: center;
}

.yuhua-713 .profile-metric-row article:last-child {
  border-right: 0;
}

.yuhua-713 .profile-metric-row strong {
  color: #087a63;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1;
}

.yuhua-713 .profile-metric-row article:nth-child(1) strong { color: #e84b62; }
.yuhua-713 .profile-metric-row article:nth-child(2) strong { color: #b77b24; }
.yuhua-713 .profile-metric-row article:nth-child(4) strong { color: #168ee7; }

.yuhua-713 .profile-metric-row span {
  color: #17231c;
  font-weight: 950;
}

.yuhua-713 .profile-metric-row small {
  color: #909b96;
}

.yuhua-713 .hero-commerce-panel {
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 60px rgba(24, 43, 35, .08);
}

.yuhua-713 .hero-panel-head strong {
  color: #17231c;
}

.yuhua-713 .hero-coupon-card {
  border-color: rgba(232, 75, 98, .18);
  border-radius: 8px;
  background: #fff8f4;
}

.yuhua-713 .profile-section {
  width: min(1180px, calc(100% - 44px));
  margin: 48px auto;
}

.yuhua-713 .platform-intro-712 {
  display: block;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.yuhua-713 .profile-section-head h2,
.yuhua-713 .section-title h2 {
  color: #17231c;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.06;
}

.yuhua-713 .profile-section-head > span,
.yuhua-713 .section-title span {
  color: #68736d;
  font-size: clamp(17px, 1.55vw, 22px);
}

.yuhua-713 .profile-intro-box {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(20, 67, 49, .12);
  border-radius: 8px;
  background: #fbfaf6;
}

.yuhua-713 .profile-intro-box strong {
  color: #17231c;
  font-size: clamp(21px, 2.2vw, 28px);
}

.yuhua-713 .profile-intro-box span {
  color: #3f4b45;
  line-height: 1.9;
}

.yuhua-713 .profile-intro-box small {
  color: #919b96;
  line-height: 1.8;
}

.yuhua-713 .profile-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  overflow: hidden;
}

.yuhua-713 .profile-feature-grid article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid rgba(20, 67, 49, .14);
  border-bottom: 1px solid rgba(20, 67, 49, .14);
  background: #fff;
}

.yuhua-713 .profile-feature-grid article:nth-child(2n) {
  border-right: 0;
}

.yuhua-713 .profile-feature-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.yuhua-713 .profile-feature-grid b {
  color: #b77b24;
  letter-spacing: .03em;
}

.yuhua-713 .profile-feature-grid strong {
  color: #17231c;
  font-size: clamp(21px, 2.2vw, 28px);
}

.yuhua-713 .profile-feature-grid span {
  color: #4f5c55;
  line-height: 1.75;
}

.yuhua-713 .profile-feature-grid small {
  color: #8b9691;
  line-height: 1.6;
}

.yuhua-713 .profile-closing-line {
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(183, 123, 36, .2);
  border-radius: 8px;
  background: #fffaf0;
  color: #0f5c49;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 950;
  line-height: 1.75;
}

.yuhua-713 .why-yuhua,
.yuhua-713 .service-audience {
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.yuhua-713 .why-grid article,
.yuhua-713 .audience-grid article {
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: none;
}

.yuhua-713 .supply-chain-flow {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: #fff;
  color: #17231c;
  box-shadow: none;
}

.yuhua-713 .supply-chain-flow .section-title p,
.yuhua-713 .supply-chain-flow .section-title h2,
.yuhua-713 .supply-chain-flow .section-title span {
  color: inherit;
}

.yuhua-713 .supply-chain-flow .section-title p {
  color: #087a63;
}

.yuhua-713 .supply-flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  overflow: hidden;
}

.yuhua-713 .supply-flow-map article {
  min-height: 250px;
  padding: 26px 22px;
  border: 0;
  border-right: 1px solid rgba(20, 67, 49, .14);
  border-radius: 0;
  background: #fbfaf6;
  color: #17231c;
  box-shadow: none;
}

.yuhua-713 .supply-flow-map article:last-child {
  border-right: 0;
}

.yuhua-713 .supply-flow-map b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 50%;
  background: #fff;
  color: #087a63;
  font-size: 20px;
}

.yuhua-713 .supply-flow-map strong {
  color: #17231c;
  font-size: 24px;
}

.yuhua-713 .supply-flow-map span {
  color: #5f6b65;
  line-height: 1.8;
}

.yuhua-713 .brand-vision {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: #fff;
  color: #17231c;
  box-shadow: none;
}

.yuhua-713 .brand-vision .section-title p,
.yuhua-713 .brand-vision .section-title h2,
.yuhua-713 .brand-vision .section-title span,
.yuhua-713 .brand-vision .philosophy-grid p {
  color: inherit;
}

.yuhua-713 .brand-vision .section-title p {
  color: #087a63;
}

.yuhua-713 .vision-statement {
  max-width: 920px;
  margin: 0 0 26px;
  color: #4f5c55;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.9;
}

.yuhua-713 .vision-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  overflow: hidden;
}

.yuhua-713 .vision-metrics article {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 20px;
  border-right: 1px solid rgba(20, 67, 49, .14);
  background: #fbfaf6;
}

.yuhua-713 .vision-metrics article:last-child {
  border-right: 0;
}

.yuhua-713 .vision-metrics strong {
  color: #087a63;
  font-size: clamp(24px, 3vw, 38px);
}

.yuhua-713 .vision-metrics span {
  color: #17231c;
  font-weight: 950;
}

.yuhua-713 .vision-metrics small {
  color: #8b9691;
}

.yuhua-713 .brand-vision .philosophy-grid article {
  border-radius: 8px;
  background: #fbfaf6;
  border-color: rgba(20, 67, 49, .12);
  box-shadow: none;
}

.yuhua-713 .brand-vision .philosophy-grid span {
  background: #fff;
  border: 1px solid rgba(20, 67, 49, .12);
}

.yuhua-713 .brand-vision .philosophy-grid strong {
  color: #17231c;
}

.yuhua-713 .founder-trust {
  display: block;
  width: min(1180px, calc(100% - 44px));
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.yuhua-713 .founder-copy {
  max-width: 900px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.yuhua-713 .founder-copy h2 {
  color: #17231c;
  font-size: clamp(34px, 5vw, 60px);
}

.yuhua-713 .founder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.yuhua-713 .founder-grid.photo-grid article {
  min-height: auto;
  display: block;
  padding: 0;
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: #fbfaf6;
  color: #17231c;
  box-shadow: none;
}

.yuhua-713 .photo-grid article::after {
  content: none;
}

.yuhua-713 .photo-grid article img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: none;
}

.yuhua-713 .founder-card-body {
  position: static;
  padding: 22px;
  background: #fff;
}

.yuhua-713 .founder-card-body h3 {
  color: #17231c;
  font-size: 26px;
}

.yuhua-713 .founder-card-body strong {
  display: block;
  margin-top: 8px;
  color: #087a63;
}

.yuhua-713 .founder-card-body p {
  color: #5f6b65;
  line-height: 1.75;
}

.yuhua-713 .founder-tags {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7f2;
  color: #087a63;
}

.yuhua-713 .feedback-panel {
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(20, 67, 49, .14);
  border-radius: 8px;
  background: #fff;
  color: #17231c;
  box-shadow: none;
}

.yuhua-713 .feedback-panel .eyebrow,
.yuhua-713 .feedback-panel h2 {
  color: #17231c;
}

.yuhua-713 .feedback-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.yuhua-713 .feedback-copy span {
  color: #5f6b65;
  font-size: clamp(16px, 1.45vw, 20px);
}

.yuhua-713 .feedback-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.yuhua-713 .feedback-mini-list span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(20, 67, 49, .12);
  border-radius: 999px;
  background: #fbfaf6;
  color: #087a63;
  font-size: 14px;
  font-weight: 950;
}

.yuhua-713 .feedback-panel .standalone-feedback {
  border: 1px solid rgba(20, 67, 49, .12);
  border-radius: 8px;
  background: #fbfaf6;
}

.yuhua-713 .standalone-feedback input,
.yuhua-713 .standalone-feedback select,
.yuhua-713 .standalone-feedback textarea {
  border-radius: 8px;
  background: #fff;
}

.yuhua-713 .standalone-feedback button {
  border-radius: 8px;
  background: #087a63;
  color: #fff;
}

@media (max-width: 760px) {
  .yuhua-713 .mall-hero {
    padding-top: 34px;
  }

  .yuhua-713 .trust-mini-list,
  .yuhua-713 .profile-metric-row,
  .yuhua-713 .profile-feature-grid,
  .yuhua-713 .vision-metrics,
  .yuhua-713 .supply-flow-map,
  .yuhua-713 .founder-grid,
  .yuhua-713 .feedback-panel {
    grid-template-columns: 1fr;
  }

  .yuhua-713 .profile-metric-row article,
  .yuhua-713 .vision-metrics article,
  .yuhua-713 .supply-flow-map article,
  .yuhua-713 .profile-feature-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 67, 49, .14);
  }

  .yuhua-713 .profile-metric-row article:last-child,
  .yuhua-713 .vision-metrics article:last-child,
  .yuhua-713 .supply-flow-map article:last-child,
  .yuhua-713 .profile-feature-grid article:last-child {
    border-bottom: 0;
  }

  .yuhua-713 .home-shop-browser,
  .yuhua-713 .home-shop-main,
  .yuhua-713 .feedback-panel,
  .yuhua-713 .standalone-feedback {
    min-width: 0;
    width: 100%;
  }

  .yuhua-713 .home-shop-primary {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .yuhua-713 .home-shop-primary button {
    flex: 0 0 auto;
  }

  .yuhua-713 .standalone-feedback {
    grid-template-columns: 1fr;
  }

  .yuhua-713 .standalone-feedback input,
  .yuhua-713 .standalone-feedback select,
  .yuhua-713 .standalone-feedback textarea,
  .yuhua-713 .standalone-feedback button,
  .yuhua-713 .standalone-feedback .form-tip {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .yuhua-713 .photo-grid article img {
    aspect-ratio: 4 / 4.4;
  }
}

.recent-orders-strip {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 18px clamp(18px, 5vw, 76px) 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(24,43,35,.07);
}

.recent-orders-strip h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.recent-order-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.recent-order-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8faf6;
}

.recent-order-list img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.recent-order-list strong {
  display: block;
  color: var(--brand-dark);
  font-size: 14px;
}

.recent-order-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lane-private-tip {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  background: #fff8f6;
}

.founder-tags {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf7f4;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.cooperation-types button {
  align-items: flex-start;
}

.cooperation-types button strong,
.cooperation-types button b {
  display: block;
}

.cooperation-types button em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.cooperation-types button b {
  margin-top: 12px;
  color: var(--accent);
  font-size: 14px;
}

.cooperation-detail {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8faf6;
  color: var(--muted);
  line-height: 1.8;
}

.cooperation-detail strong {
  color: var(--brand-dark);
}

.private-domain-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.private-domain-modal.open {
  display: flex;
}

.private-domain-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 22, .52);
  backdrop-filter: blur(10px);
}

.private-domain-panel {
  position: relative;
  width: min(860px, 100%);
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(255,242,239,.94)),
    #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}

.private-modal-visual {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.private-qr-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(24,43,35,.10);
}

.private-qr-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 14px;
}

.private-qr-placeholder {
  display: none;
  width: 100%;
  min-height: 220px;
  place-items: center;
  border: 1px dashed rgba(8,122,99,.32);
  border-radius: 16px;
  color: var(--muted);
  font-weight: 900;
  background: #f8faf6;
}

.private-qr-placeholder.show {
  display: grid;
}

.private-modal-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.private-modal-copy p,
.private-modal-copy li,
.private-modal-tip {
  color: var(--muted);
  line-height: 1.75;
}

.private-modal-copy ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.private-modal-actions .ghost-action {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.detail-private-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 16px 0;
  padding: 18px;
  border: 1px solid rgba(233,83,79,.18);
  border-radius: 18px;
  background: #fff8f6;
}

.detail-private-coupon h3 {
  margin-bottom: 6px;
  color: var(--brand-dark);
}

.detail-private-coupon p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .private-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-intro-712,
  .why-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-summary-grid,
  .private-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .yuhua-710.yuhua-711 .official-header.site-header {
    display: block;
    padding: 0;
  }

  .yuhua-710.yuhua-711 .official-header-main {
    width: calc(100% - 24px);
    min-height: 68px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .yuhua-710.yuhua-711 .official-header .brand-word,
  .yuhua-710.yuhua-711 .official-header .nav-private,
  .yuhua-710.yuhua-711 .official-header .cart-link {
    display: none;
  }

  .yuhua-710.yuhua-711 .official-header .mall-search {
    min-width: 0;
    width: 100%;
  }

  .yuhua-710.yuhua-711 .official-header .mall-search input {
    min-width: 0;
  }

  .yuhua-710.yuhua-711 .official-header .header-actions {
    min-width: 0;
    justify-self: end;
  }

  .yuhua-710.yuhua-711 .official-mobile-menu nav {
    right: 0;
    left: auto;
    max-width: calc(100vw - 24px);
  }

  .yuhua-710.yuhua-711 .official-nav-row {
    display: none;
  }

  .yuhua-710.yuhua-711 .mini-tabbar {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    transform: none;
    border-radius: 18px 18px 0 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .yuhua-712 .trust-mini-list,
  .platform-intro-712,
  .platform-summary-grid,
  .why-grid,
  .audience-grid,
  .private-flow-steps {
    grid-template-columns: 1fr;
  }

  .platform-intro-712,
  .why-yuhua,
  .service-audience,
  .brand-vision {
    width: calc(100% - 24px);
    margin: 26px auto;
    padding: 22px;
    border-radius: 20px;
  }
}

.detail-private {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(233,83,79,.24);
  border-radius: 999px;
  background: #fff2ef;
  color: var(--accent);
  font-weight: 950;
}

.checkout-private-tip {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(233,83,79,.18);
  border-radius: 16px;
  background: #fff8f6;
}

.checkout-private-tip span {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-private-tip button {
  width: fit-content;
}

.pay-fallback-actions button,
.pay-fallback-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 900;
}

.pay-fallback-actions button:first-child {
  border-color: transparent;
  background: var(--brand-dark);
  color: #fff;
}

.mobile-private-bar {
  display: none;
}

@media (max-width: 860px) {
  .mall-nav .nav-private,
  .private-header-button {
    display: none;
  }

  .private-benefits,
  .category-private-prompt {
    margin-inline: 14px;
    border-radius: 20px;
  }

  .private-benefit-grid,
  .private-modal-visual,
  .detail-private-coupon,
  .recent-orders-strip {
    grid-template-columns: 1fr;
  }

  .recent-order-list {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    max-height: 260px;
  }

  .private-domain-panel {
    max-height: calc(100vh - 34px);
    overflow: auto;
  }

  .private-qr-card {
    min-height: 220px;
  }

  .private-modal-actions {
    display: grid;
  }

  .wecom-savings-grid {
    grid-template-columns: 1fr;
  }

  .mobile-private-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 82px;
    z-index: 55;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(233,83,79,.16);
    border-radius: 18px;
    background: rgba(255,253,248,.97);
    box-shadow: 0 14px 36px rgba(24,43,35,.16);
  }

  .mobile-private-bar.closed {
    display: none;
  }

  .mobile-private-bar strong,
  .mobile-private-bar span {
    grid-column: 1;
  }

  .mobile-private-bar span {
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-private-close {
    position: absolute;
    top: -10px;
    right: -6px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 0;
  }

  .mobile-private-close::before {
    content: "×";
    font-size: 18px;
    color: var(--muted);
  }

  .mobile-private-bar button:last-child {
    grid-row: 1 / span 2;
    grid-column: 2;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 74px;
}

body::selection { background: rgba(8,122,99,.16); }
h1, h2, h3, p { margin-top: 0; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

#hot,
#category,
#deal,
#scene,
#feed,
#distribution,
#supply,
#growth,
#founders,
#feedback {
  scroll-margin-top: 116px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(230,233,226,.85);
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(18px);
}

.miniapp-header {
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, .8fr) auto;
  gap: 18px;
}

.brand img {
  display: block;
  width: clamp(190px, 18vw, 270px);
  height: auto;
}

.miniapp-header .brand img {
  width: clamp(150px, 15vw, 210px);
}

.mini-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
  overflow-x: auto;
}

.mini-nav a,
.order-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.mini-nav a:hover,
.order-link:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.order-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(24,43,35,.06);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
  overflow-x: auto;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.nav a.active { color: var(--accent); }

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(24,43,35,.06);
}

.cart-link b {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 72px clamp(20px, 6vw, 92px);
}

.commerce-hero {
  background:
    linear-gradient(90deg, rgba(255,253,248,.98), rgba(255,253,248,.9) 48%, rgba(255,253,248,.42)),
    url("./yuhua-logo-horizontal-20260616.jpg"),
    linear-gradient(135deg, #eaf5f1, #fff8f3);
  background-repeat: no-repeat;
  background-position: center, right 8vw center, center;
  background-size: auto, min(40vw, 520px), cover;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.section-title p,
.deal-head p,
.industry-title p {
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.68;
}

.search {
  display: flex;
  max-width: 660px;
  margin-top: 32px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mini-search {
  width: min(100%, 620px);
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(24,43,35,.06);
}

.founder-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
}

.founder-line span,
.founder-line b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(24,43,35,.06);
}

.founder-line span {
  color: var(--accent);
  font-weight: 900;
}

.founder-line b {
  color: var(--brand-dark);
  font-weight: 950;
}

.founder-line small {
  line-height: 1.6;
}

.search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0 20px;
  background: transparent;
}

button,
.search button,
.buy-bar a,
.detail-primary,
.checkout-form-button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.trust-strip {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1080px;
  margin-top: 52px;
}

.trust-strip div {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(230,233,226,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 36px rgba(24,43,35,.08);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.trust-strip span,
.subtle,
.desc {
  color: var(--muted);
}

.shop-band,
.category-mall,
.industry-dock,
.feedback-sheet {
  padding: 66px clamp(18px, 6vw, 92px);
}

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

.section-title h2,
.deal-head h2,
.industry-title h2,
.feedback-sheet h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.section-title a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.growth-signal-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.growth-signal-list article {
  grid-column: span 4;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(24,43,35,.06);
}

.growth-signal-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 20px;
}

.growth-signal-list span,
.growth-signal-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.category-mall {
  background: #fffdf8;
}

.miniapp-page {
  background: #f7f8f5;
}

.miniapp-hero {
  padding: 20px clamp(16px, 6vw, 92px) 16px;
}

.miniapp-hero > div {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    url("./yuhua-logo-horizontal-20260616.jpg"),
    linear-gradient(135deg, #e6f5ef, #fff1eb);
  background-repeat: no-repeat;
  background-position: center, right 6vw center, center;
  background-size: auto, min(34vw, 420px), cover;
  box-shadow: 0 14px 34px rgba(24,43,35,.08);
}

.miniapp-hero p {
  margin-bottom: 10px;
  color: var(--brand);
  font-weight: 950;
}

.miniapp-hero h1 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw, 52px);
}

.miniapp-hero span {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.trust-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-mini-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(8,122,99,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--brand-dark);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(24,43,35,.05);
}

.category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-head p,
.platform-copy p,
.cooperation-copy p {
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 950;
}

.category-head h2,
.platform-copy h2,
.cooperation-copy h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.filter-drawer-open {
  display: none;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(146px, 180px) minmax(0, 1fr);
  gap: 18px;
}

.category-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24,43,35,.07);
}

.category-sidebar button {
  width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  box-shadow: none;
}

.category-sidebar button.active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.mirror-category {
  padding-top: 10px;
}

.category-board {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24,43,35,.07);
}

.mirror-category .category-board {
  position: sticky;
  top: 78px;
  z-index: 24;
  border-radius: 14px;
  gap: 6px;
  padding: 10px 14px;
}

.filter-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mirror-category .filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 0;
}

.mirror-category .filter-row strong {
  flex: 0 0 58px;
}

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

.filter-row strong {
  color: var(--brand-dark);
  font-size: 15px;
}

.filter-row button {
  width: auto;
  min-height: 38px;
  margin: 3px 6px 3px 0;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.mirror-category .filter-row button {
  min-height: 30px;
  margin-right: 5px;
  padding: 5px 12px;
}

.filter-row button.active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.category-status {
  margin: 18px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.product-grid,
.masonry-products {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.masonry-products {
  align-items: start;
}

.product-grid > .product-card,
.masonry-products > .product-card {
  grid-column: span 3;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.product-row > .product-card {
  grid-column: span 3;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24,43,35,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(24,43,35,.12);
}

.product-card img,
.product-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: linear-gradient(135deg, #eef7f3, #fff0eb);
}

.product-photo {
  display: block;
  text-decoration: none;
}

.product-card .content {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.product-card h3 {
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.34;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--rose);
  color: #b45048;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-row {
  min-height: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}

.tag-row .tag {
  margin: 0;
  max-width: 100%;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 23px;
  font-weight: 950;
}

.price small {
  color: #9aa39d;
  font-size: 13px;
  text-decoration: line-through;
}

.sales-line {
  min-height: 21px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
}

.price-extra {
  min-height: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #fff6df;
  color: #9a6414;
  font-size: 12px;
  font-weight: 900;
}

.shipping-line {
  min-height: 20px;
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.product-actions {
  display: block;
  margin-top: auto;
}

.product-actions button,
.product-actions a,
.product-card button,
.product-card .buy-button {
  width: 100%;
  min-height: 44px;
  display: grid;
  place-items: center;
  background: var(--brand-dark);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.miniapp-page .product-grid,
.miniapp-page .masonry-products,
.miniapp-page .product-row {
  grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  gap: 14px;
}

.miniapp-page .product-grid > .product-card,
.miniapp-page .masonry-products > .product-card,
.miniapp-page .product-row > .product-card {
  grid-column: auto;
}

.miniapp-page .product-card {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(24,43,35,.06);
}

.miniapp-page .product-card .content {
  min-height: 174px;
  padding: 12px;
}

.miniapp-page .tag {
  max-width: 100%;
  margin-bottom: 8px;
}

.miniapp-page .price {
  font-size: 22px;
}

.product-actions .share-action,
.detail-share {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.product-actions .share-action {
  width: auto;
  min-width: 88px;
  padding-left: 14px;
  padding-right: 14px;
}

.empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.deal-zone {
  display: grid;
  grid-template-columns: minmax(240px, .38fr) minmax(0, 1fr);
  gap: 24px;
  background: var(--panel);
}

.deal-head {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
}

.deal-head p { color: #ffc9bf; }
.deal-head span,
.industry-title span {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.scene-grid button {
  min-height: 86px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(24,43,35,.06);
}

.load-more {
  margin-top: 22px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.distribution-dock,
.supply-dock,
.growth-ops {
  padding: 66px clamp(18px, 6vw, 92px);
}

.distribution-dock {
  background: var(--brand-dark);
  color: #fff;
}

.distribution-dock .section-title p,
.distribution-dock .subtle {
  color: #ffc9bf;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.growth-grid article {
  grid-column: span 4;
  min-height: 178px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.growth-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.growth-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.supply-dock {
  background: #fbfaf5;
}

.industry-title {
  max-width: 680px;
  margin-bottom: 24px;
}

.industry-title span {
  color: var(--muted);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.industry-grid article {
  grid-column: span 4;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24,43,35,.06);
}

.industry-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.industry-grid button {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--brand-dark);
}

.growth-ops {
  background: var(--panel);
}

.ops-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.ops-list article {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(24,43,35,.06);
}

.ops-list strong {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 19px;
}

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

.ops-list button {
  margin-top: auto;
}

.share-toast {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.share-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.founder-trust {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 66px clamp(18px, 6vw, 92px);
  background: #fffdf8;
}

.founder-copy {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24,43,35,.06);
}

.founder-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.founder-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.founder-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.34), rgba(17,67,49,.92)),
    linear-gradient(135deg, #e8f4ef, #fff1ee);
  color: #fff;
  box-shadow: 0 14px 34px rgba(24,43,35,.08);
}

.photo-grid article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 0;
  background: #fff;
}

.photo-grid article img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.photo-grid article div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(17,67,49,0), rgba(17,67,49,.92));
}

.photo-grid article p {
  margin-bottom: 0;
}

.platform-trust,
.cooperation-panel {
  padding: 66px clamp(18px, 6vw, 92px);
}

.platform-trust {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.platform-copy {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.10), rgba(17,67,49,.88)),
    url("./yunshe-facility-exterior-20260613.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.platform-copy p,
.platform-copy span {
  color: rgba(255,255,255,.78);
}

.platform-copy h2 {
  color: #fff;
}

.platform-copy span,
.cooperation-copy span {
  display: block;
  margin-top: 16px;
  line-height: 1.75;
}

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

.platform-grid article {
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24,43,35,.06);
}

.platform-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 22px;
}

.platform-grid span,
.cooperation-copy span {
  color: var(--muted);
}

.cooperation-panel {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(280px, .45fr) minmax(340px, .58fr);
  gap: 22px;
  background: var(--brand-dark);
  color: #fff;
}

.cooperation-types {
  display: grid;
  gap: 10px;
}

.cooperation-types button {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  text-align: left;
}

.yuhua-feedback {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}

.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.filter-drawer.open {
  display: block;
}

.filter-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,35,29,.38);
}

.filter-drawer-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 82vh;
  overflow-y: auto;
  padding: 18px;
  border-radius: 22px 22px 0 0;
  background: #fffdf8;
  box-shadow: 0 -18px 42px rgba(24,43,35,.22);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.drawer-head button,
.drawer-filter-group button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.drawer-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.drawer-filter-group b {
  flex: 0 0 100%;
}

.drawer-filter-group button.active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.founder-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.founder-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.feedback-sheet {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: 28px;
  background: var(--brand-dark);
  color: #fff;
}

.feedback-form,
.order-form {
  display: grid;
  gap: 12px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea,
.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
}

.order-form input,
.order-form textarea {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.feedback-form textarea,
.order-form textarea { min-height: 112px; resize: vertical; }
.feedback-form option { color: var(--ink); }
.feedback-form button { background: var(--amber); color: var(--ink); }
.form-tip { min-height: 22px; color: rgba(255,255,255,.76); }
.form-tip.dark { color: var(--muted); }

.buy-bar {
  position: sticky;
  bottom: 0;
  z-index: 28;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 -10px 28px rgba(24,43,35,.08);
}

.mini-tabbar {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 40;
  width: min(calc(100% - 28px), 520px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(230,233,226,.92);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(24,43,35,.16);
  backdrop-filter: blur(18px);
}

.mini-tabbar a {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.mini-tabbar a:first-child {
  background: var(--brand-dark);
  color: #fff;
}

.buy-bar span { font-weight: 900; }
.buy-bar a { min-width: 148px; text-align: center; }

.product-detail-page,
.checkout-page,
.pay-page,
.order-page,
.cart-page {
  min-height: 100vh;
  padding: 42px clamp(18px, 5vw, 80px) 110px;
}

.back-link,
.secondary-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 900;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .78fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-shell .product-detail-images {
  grid-column: 1 / -1;
}

.detail-gallery,
.detail-info,
.checkout-main,
.checkout-summary,
.pay-card,
.order-card,
.cart-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-shell > *,
.checkout-shell > *,
.cart-shell > * {
  min-width: 0;
}

.detail-gallery {
  overflow: hidden;
}

.main-photo img,
.main-photo .product-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: cover;
  display: block;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 12px;
}

.thumb-row button {
  padding: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  background: transparent;
}

.thumb-row button.active { border-color: var(--accent); }
.thumb-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.detail-info {
  padding: clamp(24px, 4vw, 42px);
}

.detail-info h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.detail-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-price-box {
  margin: 10px 0 6px;
}

.detail-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}

.detail-tag-row .tag {
  margin: 0;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 6px;
}

.detail-spec-grid div {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
}

.detail-spec-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.detail-spec-grid b {
  color: var(--ink);
}

.sku-panel,
.quantity-panel,
.freight-note {
  margin-top: 20px;
}

.sku-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sku-list button {
  display: grid;
  gap: 4px;
  justify-items: start;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: none;
  text-align: left;
}

.sku-list button.active {
  border-color: var(--accent);
  background: var(--rose);
  color: #b45048;
}

.sku-list button span {
  color: var(--accent);
  font-weight: 950;
}

.sku-list button small {
  color: var(--muted);
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-stepper button {
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.quantity-stepper input {
  width: 58px;
  border: 0;
  text-align: center;
  outline: 0;
}

.freight-note {
  padding: 14px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  line-height: 1.65;
}

.product-logistics-card {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(8,122,99,.16);
  border-radius: 14px;
  background: linear-gradient(135deg, #f4fbf7, #fffdf8);
}

.product-logistics-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.product-logistics-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.product-logistics-grid div {
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.product-logistics-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.detail-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.detail-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border-radius: 999px;
}

.detail-secondary {
  min-height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.detail-mini {
  min-height: 48px;
  border: 1px solid rgba(8,122,99,.24);
  background: #f4fbf7;
  color: var(--brand-dark);
}

.product-detail-images {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-detail-images h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 36px);
}

.product-detail-images img {
  width: 100%;
  max-height: 880px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: #f6f7f2;
}

.detail-image-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: #fffdf8;
}

.checkout-shell,
.cart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .38fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.checkout-main,
.cart-shell > div {
  padding: clamp(22px, 3vw, 34px);
}

.checkout-summary {
  align-self: start;
  padding: 24px;
  position: sticky;
  top: 104px;
}

.checkout-product,
.cart-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.checkout-login-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .72fr);
  gap: 16px;
  align-items: start;
  margin: 18px 0 24px;
  padding: 20px;
  border: 1px solid rgba(8,122,99,.16);
  border-radius: 14px;
  background: linear-gradient(135deg, #f6fbf8, #fffdf8);
}

.checkout-login-panel.is-logged {
  border-color: rgba(8,122,99,.36);
  box-shadow: 0 0 0 3px rgba(8,122,99,.08);
}

.checkout-login-panel h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.checkout-login-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.checkout-login-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-login-form button:last-child {
  grid-column: 1 / -1;
}

.weak-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.logistics-panel {
  margin: 18px 0 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
}

.logistics-panel h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.logistics-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.logistics-summary div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.logistics-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.logistics-options {
  display: grid;
  gap: 10px;
}

.logistics-options button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: none;
}

.logistics-options button.active {
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 3px rgba(17,67,49,.08);
}

.logistics-options strong {
  color: var(--brand-dark);
  font-size: 17px;
}

.logistics-options b {
  color: var(--accent);
  font-size: 18px;
}

.logistics-options span,
.logistics-options em,
.logistics-options small,
.logistics-note,
.logistics-empty {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.logistics-options em,
.logistics-options small {
  grid-column: 1 / -1;
}

.logistics-empty {
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fff;
}

.logistics-note {
  margin: 12px 0 0;
}

.logistics-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.logistics-flags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.line-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.line-item img,
.line-item .product-img-placeholder {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.line-item h3 { margin-bottom: 8px; }
.line-item p { margin-bottom: 6px; color: var(--muted); }

.line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.line-actions button {
  min-height: 38px;
  padding: 10px 16px;
}

.line-actions .weak-action {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

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

.checkout-hint {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  padding-top: 18px;
  font-size: 24px;
  font-weight: 950;
  color: var(--accent);
}

.pay-page,
.order-page {
  display: grid;
  place-items: start center;
}

.pay-card,
.order-card {
  width: min(100%, 680px);
  padding: clamp(26px, 5vw, 48px);
}

.pay-methods {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.pay-env {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(8,122,99,.16);
  border-radius: 12px;
  background: #f4fbf7;
  color: var(--brand-dark);
  font-weight: 850;
  line-height: 1.6;
}

.pay-methods label {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pay-fallback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
}

.pay-fallback strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.pay-fallback p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pay-fallback img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.order-status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--rose);
  color: #b45048;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .miniapp-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .miniapp-header .mini-search {
    grid-column: 1 / -1;
    width: 100%;
  }
  .mini-nav {
    justify-content: flex-start;
  }
  .product-grid > .product-card,
  .masonry-products > .product-card,
  .product-row > .product-card {
    grid-column: span 4;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .miniapp-header {
    grid-template-columns: 1fr auto;
  }
  .miniapp-header .mini-search {
    grid-column: 1 / -1;
    order: 3;
  }
  .mini-nav {
    grid-column: 1 / -1;
    order: 4;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .header-actions {
    grid-column: 2;
  }
  .brand img { width: 190px; }
  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    padding-bottom: 3px;
  }
  .trust-strip,
  .deal-zone,
  .feedback-sheet,
  .founder-trust,
  .platform-trust,
  .cooperation-panel,
  .detail-shell,
  .checkout-shell,
  .cart-shell {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
  }
  .detail-gallery,
  .detail-info {
    width: 100%;
    max-width: 100%;
  }
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-grid article {
    grid-column: span 6;
  }
  .growth-signal-list article,
  .growth-grid article,
  .ops-list article {
    grid-column: span 6;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .logistics-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-layout {
    grid-template-columns: 1fr;
  }
  .category-sidebar {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }
  .category-sidebar button {
    width: auto;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 10px 14px 8px;
    gap: 8px 12px;
  }
  .brand img { width: 154px; }
  .miniapp-header .brand img { width: 132px; }
  .header-actions {
    gap: 6px;
  }
  .cart-link {
    justify-self: end;
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
  .order-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
  .mini-nav {
    gap: 14px;
    padding: 0 0 4px;
  }
  .mini-nav a {
    font-size: 13px;
  }
  .cart-link b {
    min-width: 19px;
    height: 19px;
  }
  .nav {
    gap: 18px;
    padding: 3px 0 2px;
    font-size: 13px;
  }
  .nav a { font-size: 13px; }
  .hero { min-height: 590px; padding: 42px 16px; }
  .commerce-hero {
    background-position: center, right -70px bottom 50px, center;
    background-size: auto, 310px, cover;
  }
  h1 { font-size: 42px; }
  .lead { font-size: 17px; }
  .search {
    flex-direction: column;
    border-radius: 8px;
  }
  .mini-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 4px;
    border-radius: 999px;
  }
  .mini-search input {
    min-height: 40px;
    padding: 0 12px;
  }
  .mini-search button {
    min-height: 40px;
    padding: 0 14px;
  }
  .search input { min-height: 46px; }
  .miniapp-hero {
    padding: 12px 12px 10px;
  }
  .miniapp-hero > div {
    min-height: 150px;
    padding: 22px;
    background-position: center, right -70px center, center;
    background-size: auto, 230px, cover;
  }
  .miniapp-hero h1 {
    font-size: 32px;
  }
  .shop-band,
  .category-mall,
  .industry-dock,
  .feedback-sheet,
  .product-detail-page,
  .checkout-page,
  .pay-page,
  .order-page,
  .cart-page {
    padding-left: 16px;
    padding-right: 16px;
  }
  .scene-grid,
  .filter-row,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .mirror-category .category-board {
    position: static;
    top: auto;
  }
  .filter-drawer-open {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
  }
  .category-head {
    align-items: center;
  }
  .category-head h2 {
    font-size: 28px;
  }
  .category-sidebar {
    margin: -2px 0 14px;
    padding: 8px;
  }
  .category-sidebar button {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .mirror-category .filter-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 7px;
  }
  .mirror-category .filter-row strong {
    flex: 0 0 42px;
  }
  .mirror-category .filter-row button {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 11px;
    font-size: 13px;
  }
  .product-grid > .product-card,
  .masonry-products > .product-card,
  .product-row > .product-card,
  .industry-grid article,
  .growth-signal-list article,
  .growth-grid article,
  .ops-list article {
    grid-column: 1 / -1;
  }
  .miniapp-page .product-grid,
  .miniapp-page .masonry-products,
  .miniapp-page .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .miniapp-page .product-grid > .product-card,
  .miniapp-page .masonry-products > .product-card,
  .miniapp-page .product-row > .product-card {
    grid-column: auto;
  }
  .miniapp-page .product-card .content {
    min-height: 162px;
    padding: 10px;
  }
  .miniapp-page .product-card h3 {
    min-height: 39px;
    font-size: 14px;
  }
  .miniapp-page .price {
    font-size: 19px;
  }
  .miniapp-page .sales-line {
    font-size: 12px;
  }
  .miniapp-page .product-actions button,
  .miniapp-page .product-actions a {
    min-height: 38px;
    padding: 9px 10px;
  }
  .product-actions {
    display: block;
  }
  .product-actions .share-action {
    width: 100%;
  }
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .platform-copy {
    min-height: 340px;
  }
  .platform-grid article {
    min-height: 150px;
  }
  .photo-grid article,
  .photo-grid article img {
    min-height: 420px;
  }
  .cooperation-panel {
    gap: 16px;
  }
  .logistics-summary,
  .detail-spec-grid {
    grid-template-columns: 1fr;
  }
  .logistics-options button {
    grid-template-columns: 1fr;
  }
  .pay-fallback {
    grid-template-columns: 1fr;
  }
  .pay-fallback img {
    justify-self: center;
  }
  .buy-bar {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
}

/* 与花同行 7.5: small-program mall mirror */
.yuhua-75 {
  background:
    radial-gradient(circle at 8% 0, rgba(8, 122, 99, .06), transparent 28%),
    linear-gradient(180deg, #fffdf8 0, #f8f7f0 100%);
}

.mall-header {
  grid-template-columns: auto minmax(280px, 520px) minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.mall-logo img {
  width: clamp(142px, 13vw, 198px);
}

.mall-search {
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 5px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(24, 43, 35, .07);
}

.mall-search input {
  min-height: 40px;
  padding: 0 16px;
}

.mall-search button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
}

.mall-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.mall-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.mall-nav a.active,
.mall-nav a:hover {
  color: var(--accent);
}

.mini-program-button,
.secondary-action,
.primary-action,
.clear-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 950;
}

.mini-program-button,
.secondary-action,
.clear-filter {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(24, 43, 35, .06);
}

.primary-action {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.mall-page,
.category-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px clamp(14px, 3.5vw, 34px) 92px;
}

.mall-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: stretch;
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(230, 233, 226, .9);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(255, 253, 248, .86)),
    url("./yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(24, 43, 35, .10);
}

.mall-hero h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
}

.mall-hero .lead {
  max-width: 640px;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.mini-program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mini-program-card {
  align-self: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-program-card img,
.modal-panel img {
  width: min(100%, 188px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.choice-guide,
.curated-products,
.mini-program-more,
.category-browser,
.category-title-block {
  margin-top: 26px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 42px rgba(24, 43, 35, .07);
}

.compact-title h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.6vw, 46px);
}

.guide-chips {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.guide-chips button,
.category-secondary button,
.sort-tabs button,
.category-primary button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  font-weight: 900;
}

.guide-chips button.active,
.category-secondary button.active,
.sort-tabs button.active,
.category-primary button.active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.guide-result {
  margin-top: 18px;
}

.guide-result > p,
.guide-loading {
  margin: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
}

.guide-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.guide-result-head a,
.lane-head a,
.compact-title a {
  color: var(--accent);
  font-weight: 950;
  text-decoration: none;
}

.product-lane {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.product-lane:last-child {
  border-bottom: 0;
}

.lane-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 16px;
}

.lane-head p {
  margin-bottom: 6px;
  color: var(--accent);
  font-weight: 950;
}

.lane-head h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.4vw, 30px);
}

.product-grid-compact,
.category-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.compact-card .product-photo {
  display: block;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: var(--panel);
}

.compact-card .product-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.compact-card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 12px;
}

.compact-card h3 {
  min-height: 44px;
  margin-bottom: 8px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.45;
}

.spec-line,
.shipping-line,
.sales-line {
  color: var(--muted);
  font-size: 12px;
}

.spec-line {
  min-height: 18px;
  margin-bottom: 8px;
}

.compact-card .price {
  margin-top: auto;
  font-size: 22px;
}

.compact-card .buy-button {
  margin-top: 10px;
  width: 100%;
  min-height: 40px;
}

.mini-program-more {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #173e2f, #0c7b63);
  color: #fff;
}

.mini-program-more .eyebrow,
.mini-program-more span {
  color: rgba(255, 255, 255, .78);
}

.mini-program-more h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.mini-program-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.mini-program-modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 24, .42);
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 420px);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .24);
  text-align: center;
}

.modal-close {
  justify-self: end;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.modal-panel img {
  width: min(260px, 68vw);
  max-height: 260px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(24,43,35,.10);
}

.modal-panel h3 {
  margin: 0;
  font-size: 24px;
}

.modal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mini-tabbar button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.category-page {
  padding-top: 22px;
}

.category-title-block h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 64px);
}

.category-title-block span {
  color: var(--muted);
  line-height: 1.7;
}

.category-browser {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
}

.category-primary {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.category-primary button {
  border-radius: 14px;
}

.category-main {
  min-width: 0;
}

.category-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.category-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.category-tools strong,
.category-tools span {
  display: block;
}

.category-tools span {
  margin-top: 4px;
  color: var(--muted);
}

.sort-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.sort-tabs button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.category-load-more {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 22px;
}

.category-load-more button {
  min-width: 180px;
}

.category-load-more p {
  margin: 0;
  color: var(--muted);
}

.empty.with-mini {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.empty.with-mini button,
.empty.with-mini a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

@media (min-width: 1380px) {
  .product-grid-compact,
  .category-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .mall-header,
  .category-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .mall-search {
    grid-column: 1 / -1;
    max-width: none;
    order: 4;
  }
  .mall-nav {
    justify-content: flex-start;
  }
  .product-grid-compact,
  .category-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .guide-chips {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .mall-hero,
  .mini-program-more,
  .category-browser {
    grid-template-columns: 1fr;
  }
  .category-primary {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }
  .category-tools {
    grid-template-columns: 1fr;
  }
  .sort-tabs {
    justify-content: flex-start;
  }
  .product-grid-compact,
  .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkout-login-panel {
    grid-template-columns: 1fr;
  }
  .guide-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .mall-header,
  .category-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }
  .mall-logo img {
    width: 132px;
  }
  .mall-nav {
    grid-column: 1 / -1;
    order: 3;
  }
  .mall-nav a {
    font-size: 13px;
  }
  .mini-program-button {
    display: none;
  }
  .mall-page,
  .category-page {
    padding-left: 12px;
    padding-right: 12px;
  }
  .mall-hero,
  .choice-guide,
  .curated-products,
  .mini-program-more,
  .category-browser,
  .category-title-block {
    padding: 18px;
    border-radius: 16px;
  }
  .mall-hero h1 {
    font-size: 38px;
  }
  .trust-mini-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lane-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .compact-card .content {
    min-height: 222px;
  }
  .product-logistics-grid,
  .checkout-login-form {
    grid-template-columns: 1fr;
  }
  .category-secondary {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .category-secondary button {
    flex: 0 0 auto;
  }
}

/* 7.9 分类页桌面分页 / 移动端加载更多 */
.category-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 28px 0 12px;
}

.category-pager button {
  min-width: 108px;
  height: 42px;
  border: 1px solid rgba(19, 70, 55, 0.16);
  border-radius: 999px;
  background: #fffdf8;
  color: #143f31;
  font-weight: 800;
  cursor: pointer;
}

.category-pager button:not(:disabled):hover {
  background: #143f31;
  color: #fffdf8;
}

.category-pager button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.category-pager span {
  min-width: 86px;
  color: #63726a;
  text-align: center;
  font-weight: 800;
}

@media (min-width: 861px) {
  .category-load-more {
    display: none;
  }
}

@media (max-width: 860px) {
  .category-pager {
    display: none;
  }
}

/* 7.10 官网 + 商城一体化正式版 */
.yuhua-710 {
  scroll-padding-top: 128px;
}

.yuhua-710 .official-header {
  display: block;
  min-height: auto;
  padding: 0;
  border-bottom: 1px solid rgba(20, 67, 49, 0.12);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(18px);
}

.yuhua-710 .official-header-main {
  width: min(1220px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.yuhua-710 .official-header .mall-search {
  width: 100%;
  max-width: none;
}

.yuhua-710 .official-header .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.yuhua-710 .official-nav-row {
  width: min(1220px, calc(100% - 40px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  border-top: 1px solid rgba(20, 67, 49, 0.08);
}

.yuhua-710 .official-nav-row a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: #34493f;
  font-weight: 800;
  text-decoration: none;
}

.yuhua-710 .official-nav-row a:hover {
  background: #edf4ef;
  color: #143f31;
}

.official-mobile-menu {
  position: relative;
  display: none;
}

.official-mobile-menu summary {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 900;
  cursor: pointer;
}

.official-mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  z-index: 10;
}

.official-mobile-menu nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 800;
}

.official-mobile-menu nav a:hover {
  background: #f3f7f2;
}

.yuhua-710 .home-shop-section {
  margin-top: 42px;
}

.home-shop-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.home-shop-pager button {
  min-width: 108px;
  height: 42px;
  border: 1px solid rgba(19, 70, 55, 0.16);
  border-radius: 999px;
  background: #fffdf8;
  color: #143f31;
  font-weight: 900;
  cursor: pointer;
}

.home-shop-pager button:not(:disabled):hover {
  background: #143f31;
  color: #fffdf8;
}

.home-shop-pager button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.home-shop-pager span {
  min-width: 86px;
  color: #62736b;
  text-align: center;
  font-weight: 900;
}

.yuhua-710 .curated-products {
  display: none;
}

.platform-philosophy,
.contact-panel,
.feedback-panel,
.yuhua-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto;
}

.platform-philosophy {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(20, 67, 49, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(246, 249, 241, 0.94)),
    #fffdf8;
  box-shadow: 0 24px 70px rgba(33, 52, 43, 0.08);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.philosophy-grid article,
.contact-grid article {
  padding: 24px;
  border: 1px solid rgba(20, 67, 49, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(24, 43, 35, 0.06);
}

.philosophy-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #eaf5ef;
  color: #087a63;
  font-weight: 900;
}

.philosophy-grid strong,
.contact-grid strong {
  display: block;
  color: var(--brand-dark);
  font-size: 22px;
}

.philosophy-grid p,
.contact-grid span,
.feedback-copy span {
  color: var(--muted);
  line-height: 1.75;
}

.contact-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(20, 67, 49, 0.12);
  border-radius: 24px;
  background: #fffdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid article .primary-action,
.contact-grid article .secondary-action {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 24px;
  background: #143f31;
  color: #fffdf8;
}

.feedback-panel .eyebrow,
.feedback-panel h2 {
  color: #fffdf8;
}

.feedback-panel .standalone-feedback {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.standalone-feedback button {
  background: #fffdf8;
  color: #143f31;
}

.yuhua-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.yuhua-footer strong {
  display: block;
  color: var(--brand-dark);
  font-size: 20px;
}

.yuhua-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yuhua-footer a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .yuhua-710 .official-header-main {
    grid-template-columns: minmax(180px, auto) minmax(200px, 1fr) auto;
    width: calc(100% - 28px);
  }

  .yuhua-710 .official-nav-row {
    width: calc(100% - 28px);
  }

  .yuhua-710 .official-header .mini-program-button {
    display: none;
  }

  .official-mobile-menu {
    display: block;
  }

  .philosophy-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .yuhua-710 {
    scroll-padding-top: 92px;
  }

  .yuhua-710 .official-header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 68px;
  }

  .yuhua-710 .official-header .brand-word {
    display: none;
  }

  .yuhua-710 .official-header .mall-search input {
    min-width: 0;
  }

  .yuhua-710 .official-header .nav-private,
  .yuhua-710 .official-header .cart-link {
    display: none;
  }

  .yuhua-710 .official-nav-row {
    display: none;
  }

  .home-shop-pager {
    gap: 10px;
  }

  .home-shop-pager button {
    min-width: 88px;
  }

  .platform-philosophy,
  .contact-panel,
  .feedback-panel,
  .yuhua-footer {
    width: calc(100% - 24px);
    margin: 26px auto;
  }

  .philosophy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .yuhua-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 90px;
  }
}
/* 与花同行 7.14 | official mall visual polish */
.yuhua-714 {
  --yuhua-green: #0f4a35;
  --yuhua-green-2: #147a4d;
  --yuhua-cream: #fbfaf5;
  --yuhua-line: rgba(15, 74, 53, 0.12);
  --yuhua-gold: #b98235;
  background: var(--yuhua-cream);
}

.yuhua-714 .site-header {
  max-height: 118px;
}

.yuhua-714 .official-header-main {
  min-height: 62px;
}

.yuhua-714 .official-nav-row {
  min-height: 42px;
  gap: 8px;
}

.yuhua-714 .official-nav-row a {
  border: 1px solid var(--yuhua-line);
  border-radius: 999px;
  color: #244035;
  padding: 9px 16px;
}

.yuhua-714 .official-nav-row a:hover,
.yuhua-714 .official-nav-row a:focus {
  background: #eef6ef;
  color: var(--yuhua-green);
}

.yuhua-714 main section[id] {
  scroll-margin-top: 132px;
}

.yuhua-714 .mall-hero {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.88) 58%, rgba(246, 248, 241, 0.94) 100%),
    url("../assets/yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 76px);
}

.yuhua-714 .mall-hero h1 {
  max-width: 860px;
}

.yuhua-714 .mall-hero h1 span {
  display: inline;
}

.yuhua-714 .hero-slogan {
  color: var(--yuhua-green);
  font-weight: 800;
}

.yuhua-714 .trust-mini-list {
  gap: 10px;
}

.yuhua-714 .trust-mini-list li {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 74, 53, 0.12);
  box-shadow: none;
}

.yuhua-714 .hero-profile-metrics article {
  min-height: 110px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 74, 53, 0.12);
  box-shadow: 0 14px 34px rgba(28, 55, 43, 0.06);
}

.yuhua-714 .hero-profile-metrics strong {
  letter-spacing: 0;
}

.yuhua-714 .hero-commerce-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 74, 53, 0.12);
  box-shadow: 0 24px 60px rgba(17, 45, 32, 0.10);
}

.yuhua-714 .hero-mini-qr {
  align-items: center;
  background: #fff;
  border: 1px dashed rgba(15, 74, 53, 0.22);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
}

.yuhua-714 .hero-mini-qr img {
  border-radius: 12px;
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.yuhua-714 .hero-mini-qr span,
.yuhua-714 .hero-recent-buyer {
  color: #51675d;
  font-size: 14px;
  line-height: 1.6;
}

.yuhua-714 .hero-recent-buyer {
  border-top: 1px solid rgba(15, 74, 53, 0.10);
  margin-top: 12px;
  padding-top: 12px;
}

.yuhua-714 .home-shop-section,
.yuhua-714 .private-benefits,
.yuhua-714 .mini-program-more,
.yuhua-714 .platform-trust,
.yuhua-714 .why-yuhua,
.yuhua-714 .service-audience,
.yuhua-714 .brand-vision,
.yuhua-714 .founder-trust,
.yuhua-714 .cooperation-panel,
.yuhua-714 .contact-panel,
.yuhua-714 .feedback-panel {
  border-radius: 24px;
}

.yuhua-714 .profile-feature-grid article,
.yuhua-714 .why-grid article,
.yuhua-714 .audience-grid article,
.yuhua-714 .contact-grid article {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.11);
  box-shadow: 0 14px 34px rgba(31, 52, 41, 0.04);
}

.yuhua-714 .profile-feature-grid b,
.yuhua-714 .why-grid span {
  background: #eef8ef;
  border: 1px solid rgba(20, 122, 77, 0.12);
  color: var(--yuhua-green-2);
}

.yuhua-714 .supply-chain-flow {
  background: #fff;
}

.yuhua-714 .supply-flow-map article {
  min-height: 250px;
}

.yuhua-714 .founder-grid.photo-grid article {
  min-height: 620px;
}

.yuhua-714 .founder-card-body {
  min-height: 214px;
}

.yuhua-714 .feedback-panel {
  background: linear-gradient(135deg, #123f31, #0f4a35);
}

.yuhua-714 .feedback-panel .standalone-feedback {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.yuhua-714 .standalone-feedback input,
.yuhua-714 .standalone-feedback select,
.yuhua-714 .standalone-feedback textarea {
  min-height: 58px;
}

.yuhua-714 .standalone-feedback textarea {
  min-height: 152px;
}

.unified-modal,
.yuhua-714 .mini-program-modal,
.yuhua-714 .private-domain-modal,
.yuhua-714 .cooperation-modal {
  align-items: center;
  background: rgba(10, 32, 24, 0.48);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 2000;
}

.unified-modal.open,
.yuhua-714 .mini-program-modal.open,
.yuhua-714 .private-domain-modal.open,
.yuhua-714 .cooperation-modal.open {
  display: flex;
}

.unified-modal-backdrop,
.unified-modal .modal-backdrop,
.yuhua-714 .modal-backdrop,
.yuhua-714 .private-domain-backdrop,
.yuhua-714 .cooperation-modal-backdrop {
  inset: 0;
  position: absolute;
}

.unified-modal-panel,
.yuhua-714 .mini-program-modal .modal-panel,
.yuhua-714 .private-domain-panel,
.yuhua-714 .cooperation-modal-panel {
  background: #fffdfa;
  border: 1px solid rgba(15, 74, 53, 0.12);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(5, 28, 20, 0.24);
  max-height: min(760px, calc(100vh - 48px));
  max-width: 760px;
  overflow: auto;
  padding: 28px;
  position: relative;
  width: min(760px, calc(100vw - 48px));
}

.unified-modal-close,
.yuhua-714 .modal-close,
.yuhua-714 .private-close {
  align-items: center;
  background: #f3f6ef;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 999px;
  color: var(--yuhua-green);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 58px;
}

.unified-qr-layout {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 260px 1fr;
}

.unified-qr-card {
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.92), rgba(241, 251, 240, 0.92)),
    url("../assets/yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(21, 55, 38, 0.10);
  padding: 24px;
  text-align: center;
}

.unified-qr-card img {
  background: #fff;
  border: 10px solid #fff;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(15, 74, 53, 0.10);
  height: 220px;
  object-fit: contain;
  width: 220px;
}

.unified-qr-card span {
  color: #52665d;
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
}

.unified-modal-copy .eyebrow {
  color: var(--yuhua-gold);
  font-weight: 900;
}

.unified-modal-copy h2 {
  color: #173c2e;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 0;
  line-height: 1.22;
  margin: 8px 0 14px;
}

.unified-modal-copy p {
  color: #53675e;
  font-size: 16px;
  line-height: 1.8;
}

.unified-benefit-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.unified-benefit-list li {
  background: #f4f8f1;
  border: 1px solid rgba(15, 74, 53, 0.08);
  border-radius: 999px;
  color: var(--yuhua-green);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

.unified-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.unified-modal-actions button {
  min-height: 46px;
}

.ghost-action {
  background: transparent;
  border: 1px solid rgba(15, 74, 53, 0.12);
  border-radius: 999px;
  color: #52665d;
  font-weight: 800;
  padding: 0 20px;
}

.yuhua-toast {
  background: #173c2e;
  border-radius: 999px;
  bottom: 86px;
  box-shadow: 0 16px 34px rgba(10, 32, 24, 0.20);
  color: #fff;
  left: 50%;
  opacity: 0;
  padding: 12px 20px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2200;
}

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

.yuhua-state-card {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 18px;
  color: #52665d;
  padding: 24px;
  text-align: center;
}

.yuhua-state-card strong,
.yuhua-state-card span {
  display: block;
}

html.modal-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .yuhua-714 .site-header {
    max-height: none;
  }

  .yuhua-714 main section[id] {
    scroll-margin-top: 88px;
  }

  .yuhua-714 .mall-hero {
    border-radius: 0 0 24px 24px;
    grid-template-columns: 1fr;
    padding: 34px 18px 28px;
  }

  .yuhua-714 .mall-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .yuhua-714 .profile-metric-row,
  .yuhua-714 .trust-mini-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yuhua-714 .hero-commerce-panel {
    margin-top: 18px;
  }

  .unified-modal,
  .yuhua-714 .mini-program-modal,
  .yuhua-714 .private-domain-modal,
  .yuhua-714 .cooperation-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .unified-modal-panel,
  .yuhua-714 .mini-program-modal .modal-panel,
  .yuhua-714 .private-domain-panel,
  .yuhua-714 .cooperation-modal-panel {
    border-radius: 22px 22px 18px 18px;
    max-height: calc(100vh - 28px);
    padding: 24px 18px;
    width: calc(100vw - 24px);
  }

  .unified-qr-layout {
    grid-template-columns: 1fr;
  }

  .unified-qr-card img {
    height: min(220px, 58vw);
    width: min(220px, 58vw);
  }

  .unified-benefit-list {
    grid-template-columns: 1fr;
  }

  .unified-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .unified-modal-actions button {
    width: 100%;
  }

  .yuhua-714 .founder-grid.photo-grid article {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .yuhua-714 .profile-metric-row,
  .yuhua-714 .trust-mini-list {
    grid-template-columns: 1fr;
  }

  .yuhua-714 .mall-hero h1 {
    font-size: 34px;
  }

  .yuhua-714 .hero-mini-qr {
    align-items: flex-start;
  }
}

/* 与花同行 7.15 | official launch polish */
.yuhua-715 {
  background: #fbfaf5;
  color: #182b23;
}

.yuhua-715 .official-nav-row a[href="#supply-chain"],
.yuhua-715 .official-mobile-menu a[href="#supply-chain"] {
  white-space: nowrap;
}

.yuhua-715 .mall-hero {
  background:
    linear-gradient(90deg, rgba(252, 251, 246, 0.98) 0%, rgba(252, 251, 246, 0.91) 58%, rgba(246, 250, 244, 0.96) 100%),
    url("./yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
  border-radius: 30px;
}

.yuhua-715 .mall-hero h1 {
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.08;
  max-width: 820px;
}

.yuhua-715 .hero-subtitle {
  color: #0f4a35;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 0;
}

.yuhua-715 .lead {
  max-width: 830px;
}

.yuhua-715 .trust-mini-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
}

.yuhua-715 .official-white-section,
.yuhua-715 .official-profile-block {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(29, 52, 41, 0.05);
  margin: clamp(22px, 4vw, 48px) auto;
  padding: clamp(28px, 4.8vw, 64px);
}

.yuhua-715 .intro-official-layout,
.yuhua-715 .platform-flow-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.yuhua-715 .profile-intro-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f0 100%);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 24px;
  box-shadow: none;
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
}

.yuhua-715 .profile-intro-box strong {
  color: #143c2d;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.28;
}

.yuhua-715 .profile-intro-box span,
.yuhua-715 .profile-intro-box small,
.yuhua-715 .official-note,
.yuhua-715 .vision-statement {
  color: #5b6d64;
  font-size: 17px;
  line-height: 1.9;
}

.yuhua-715 .profile-intro-box small,
.yuhua-715 .official-note {
  background: #f7f2e7;
  border: 1px solid rgba(180, 139, 69, 0.16);
  border-radius: 18px;
  display: block;
  margin-top: 22px;
  padding: 16px 18px;
}

.yuhua-715 .profile-feature-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yuhua-715 .profile-feature-grid article,
.yuhua-715 .official-card-grid article,
.yuhua-715 .audience-grid article,
.yuhua-715 .growth-timeline article,
.yuhua-715 .fulfillment-data-row article,
.yuhua-715 .platform-entry-card {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(31, 56, 43, 0.05);
}

.yuhua-715 .official-card-grid {
  display: grid;
  gap: 18px;
}

.yuhua-715 .official-card-grid.four,
.yuhua-715 .fulfillment-data-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yuhua-715 .official-card-grid article {
  min-height: 190px;
  padding: 26px;
}

.yuhua-715 .official-card-grid b,
.yuhua-715 .profile-feature-grid b {
  align-items: center;
  background: #eef9f1;
  border-radius: 14px;
  color: #167b55;
  display: inline-flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.yuhua-715 .official-card-grid strong,
.yuhua-715 .audience-grid strong,
.yuhua-715 .growth-timeline strong {
  color: #173c2e;
  display: block;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.yuhua-715 .official-card-grid span,
.yuhua-715 .audience-grid span,
.yuhua-715 .growth-timeline span {
  color: #5c6f65;
  font-size: 16px;
  line-height: 1.75;
}

.yuhua-715 .fulfillment-data-row {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.yuhua-715 .fulfillment-data-row article {
  padding: 22px;
}

.yuhua-715 .fulfillment-data-row strong {
  color: #0f4a35;
  display: block;
  font-size: clamp(28px, 3.6vw, 42px);
}

.yuhua-715 .supply-flow-map {
  gap: 16px;
}

.yuhua-715 .growth-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yuhua-715 .growth-timeline article {
  padding: 24px;
  position: relative;
}

.yuhua-715 .growth-timeline time {
  color: #b78a42;
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

.yuhua-715 .platform-flow-line,
.yuhua-715 .channel-table {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
}

.yuhua-715 .platform-flow-line span,
.yuhua-715 .channel-table span {
  background: #f5f8f1;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 999px;
  color: #173c2e;
  font-size: 14px;
  font-weight: 900;
  padding: 12px 14px;
  text-align: center;
}

.yuhua-715 .channel-table {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yuhua-715 .platform-entry-card {
  align-content: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 28px;
  text-align: center;
}

.yuhua-715 .platform-entry-card img {
  background: #fff;
  border: 10px solid #fff;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(15, 74, 53, 0.08);
  height: 190px;
  object-fit: contain;
  width: 190px;
}

.yuhua-715 .platform-entry-card button {
  background: #0f4a35;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  min-height: 44px;
  padding: 0 22px;
}

.yuhua-715 .feedback-panel {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  color: #173c2e;
}

.yuhua-715 .feedback-copy span,
.yuhua-715 .feedback-copy p {
  color: #5c6f65;
}

.yuhua-715 .feedback-form {
  background: #f7f5ee;
  border: 1px solid rgba(15, 74, 53, 0.10);
}

.yuhua-715 .founder-grid.photo-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
}

.yuhua-715 .founder-grid.photo-grid img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-position: center top;
  width: 100%;
}

.yuhua-715 .founder-card-body {
  background: #fff;
  min-height: 260px;
}

.yuhua-715 .unified-modal {
  align-items: center;
}

@media (max-width: 1080px) {
  .yuhua-715 .official-card-grid.four,
  .yuhua-715 .fulfillment-data-row,
  .yuhua-715 .growth-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .yuhua-715 .intro-official-layout,
  .yuhua-715 .platform-flow-layout {
    grid-template-columns: 1fr;
  }

  .yuhua-715 .profile-feature-compact,
  .yuhua-715 .official-card-grid.four,
  .yuhua-715 .fulfillment-data-row,
  .yuhua-715 .growth-timeline,
  .yuhua-715 .platform-flow-line,
  .yuhua-715 .channel-table,
  .yuhua-715 .trust-mini-list {
    grid-template-columns: 1fr;
  }

  .yuhua-715 .official-white-section,
  .yuhua-715 .official-profile-block {
    border-radius: 22px;
    margin: 20px 12px;
    padding: 24px 18px;
  }

  .yuhua-715 .mall-hero {
    border-radius: 0 0 24px 24px;
  }

  .yuhua-715 .mall-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .yuhua-715 .unified-modal {
    align-items: flex-end;
  }
}

/* 7.16 final official commerce experience */
.yuhua-716 .app-download-button,
.yuhua-716 .app-hero-action,
.app-download-button {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.16);
  border-radius: 999px;
  color: #143c2d;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 0 18px;
}

.yuhua-716 .official-mobile-menu button {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.12);
  border-radius: 12px;
  color: #143c2d;
  font-weight: 900;
  padding: 12px;
  text-align: left;
}

.yuhua-716 .hero-platform-entrances,
.yuhua-716 .shopping-bridge,
.yuhua-716 .delivery-tab-panels,
.yuhua-716 .platform-system-layout {
  display: grid;
  gap: 16px;
}

.yuhua-716 .hero-platform-entrances {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.yuhua-716 .hero-platform-entrances button {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 18px;
  color: #143c2d;
  cursor: pointer;
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 16px;
  text-align: left;
}

.yuhua-716 .hero-platform-entrances strong {
  font-size: 18px;
}

.yuhua-716 .hero-platform-entrances span {
  color: #5b6d64;
  font-size: 13px;
  line-height: 1.45;
}

.yuhua-716 .shopping-bridge {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px auto;
  max-width: 1440px;
  padding: 18px;
  width: calc(100% - 64px);
}

.yuhua-716 .shopping-bridge article,
.yuhua-716 .delivery-panel article,
.yuhua-716 .platform-system-cards article {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(31, 56, 43, 0.05);
  padding: 22px;
}

.yuhua-716 .shopping-bridge span,
.yuhua-716 .delivery-panel b,
.yuhua-716 .platform-system-cards b {
  align-items: center;
  background: #edf8f0;
  border-radius: 999px;
  color: #167b55;
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 12px;
}

.yuhua-716 .shopping-bridge strong,
.yuhua-716 .delivery-panel strong,
.yuhua-716 .platform-system-cards strong {
  color: #143c2d;
  display: block;
  font-size: 20px;
  line-height: 1.35;
  margin: 16px 0 10px;
}

.yuhua-716 .shopping-bridge p,
.yuhua-716 .delivery-panel span,
.yuhua-716 .platform-system-cards span {
  color: #5b6d64;
  font-size: 15px;
  line-height: 1.75;
}

.yuhua-716 .shopping-bridge button,
.yuhua-716 .delivery-tabs button {
  background: #0f4a35;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 0 18px;
}

.yuhua-716 .source-delivery {
  overflow: hidden;
}

.yuhua-716 .delivery-tabs {
  background: #f5f8f1;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  margin: 4px 0 20px;
  padding: 6px;
}

.yuhua-716 .delivery-tabs button {
  background: transparent;
  color: #5b6d64;
}

.yuhua-716 .delivery-tabs button.active {
  background: #0f4a35;
  color: #fff;
}

.yuhua-716 .delivery-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yuhua-716 .delivery-panel.active {
  display: grid;
  gap: 16px;
}

.yuhua-716 .source-flow-line {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
}

.yuhua-716 .source-flow-line span {
  background: #f5f8f1;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 999px;
  color: #143c2d;
  font-size: 14px;
  font-weight: 900;
  padding: 12px;
  text-align: center;
}

.yuhua-716 .platform-system-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.yuhua-716 .platform-system-copy {
  background: linear-gradient(140deg, #fffefa, #f5f8f1);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 24px;
  padding: 28px;
}

.yuhua-716 .platform-system-cards,
.yuhua-716 .compact-growth {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yuhua-716 .compact-growth {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.yuhua-716 .cart-drawer-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  max-height: 42vh;
  overflow: auto;
}

.yuhua-716 .cart-drawer-item {
  align-items: center;
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: 74px 1fr;
  padding: 10px;
}

.yuhua-716 .cart-drawer-item img {
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  width: 74px;
}

.yuhua-716 .cart-drawer-item strong {
  color: #143c2d;
  display: block;
  font-size: 16px;
}

.yuhua-716 .cart-drawer-item span {
  color: #6a766e;
  display: block;
  font-size: 13px;
  margin: 4px 0;
}

.yuhua-716 .cart-drawer-item b,
.yuhua-716 .cart-drawer-summary strong {
  color: #e34b32;
}

.yuhua-716 .cart-drawer-summary {
  align-items: center;
  border-top: 1px solid rgba(15, 74, 53, 0.10);
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
}

.yuhua-716 .app-reserve-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0;
}

.yuhua-716 .app-reserve-grid span {
  background: #f5f8f1;
  border-radius: 999px;
  color: #143c2d;
  font-weight: 900;
  padding: 10px 12px;
  text-align: center;
}

.detail-buybar [data-bottom-cart] {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.14);
  color: #143c2d;
}

@media (max-width: 1080px) {
  .yuhua-716 .shopping-bridge,
  .yuhua-716 .platform-system-layout,
  .yuhua-716 .delivery-panel.active,
  .yuhua-716 .compact-growth {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .yuhua-716 .shopping-bridge,
  .yuhua-716 .hero-platform-entrances,
  .yuhua-716 .platform-system-layout,
  .yuhua-716 .platform-system-cards,
  .yuhua-716 .delivery-panel.active,
  .yuhua-716 .compact-growth,
  .yuhua-716 .source-flow-line,
  .yuhua-716 .app-reserve-grid {
    grid-template-columns: 1fr;
  }

  .yuhua-716 .shopping-bridge {
    border-radius: 22px;
    margin: 18px 12px;
    width: auto;
  }

  .yuhua-716 .delivery-tabs {
    border-radius: 18px;
    display: grid;
    width: 100%;
  }

  .yuhua-716 .app-download-button {
    min-height: 38px;
    padding: 0 14px;
  }
}

/* 7.17 launch readiness */
.yuhua-717 .product-photo {
  background: #f7f4ed;
  overflow: hidden;
  position: relative;
}

.yuhua-717 .product-photo .product-image-loading {
  color: #8a948d;
  font-size: 13px;
  font-weight: 800;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.yuhua-717 .product-photo img {
  background: #f7f4ed;
  position: relative;
  z-index: 1;
}

.yuhua-717 .cart-toolbar {
  align-items: center;
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 18px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 14px 0;
  padding: 12px 14px;
}

.yuhua-717 .cart-toolbar.is-empty {
  display: none;
}

.yuhua-717 .cart-select {
  align-items: center;
  color: #143c2d;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  min-height: 44px;
}

.yuhua-717 .cart-select input {
  accent-color: #0f6f5d;
  height: 18px;
  width: 18px;
}

.yuhua-717 .line-item {
  align-items: center;
  grid-template-columns: auto 108px minmax(0, 1fr);
}

.yuhua-717 .line-item.is-invalid {
  background: #f8f4ee;
  opacity: 0.72;
}

.yuhua-717 .line-item-main em {
  color: #a15a2a;
  display: block;
  font-style: normal;
  margin: 5px 0;
}

.yuhua-717 .line-actions span {
  align-items: center;
  color: #143c2d;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-width: 28px;
}

.yuhua-717 .cart-empty-state {
  align-items: flex-start;
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 22px;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.yuhua-717 .cart-empty-state strong {
  color: #143c2d;
  font-size: 22px;
}

.yuhua-717 .cart-empty-state span {
  color: #627168;
  line-height: 1.7;
}

.yuhua-717 .cart-empty-state div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.yuhua-717 .cart-empty-state a,
.yuhua-717 .cart-empty-state button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.yuhua-717 .unified-modal.open {
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

@media (max-width: 860px) {
  .yuhua-717 .line-item {
    align-items: start;
    grid-template-columns: auto 86px minmax(0, 1fr);
  }

  .yuhua-717 .cart-toolbar {
    margin-left: 0;
    margin-right: 0;
  }

  .yuhua-717 .cart-empty-state {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .yuhua-717 .line-item {
    grid-template-columns: auto 78px minmax(0, 1fr);
  }

  .yuhua-717 .line-actions {
    gap: 7px;
  }
}

/* 7.17 UX audit polish | tighten conversion path before launch */
.yuhua-717 .site-header {
  box-shadow: 0 10px 28px rgba(18, 52, 39, 0.07);
}

.yuhua-717 .official-nav-row {
  justify-content: center;
}

.yuhua-717 .mall-hero {
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  min-height: auto;
  padding: clamp(28px, 3.2vw, 46px);
}

.yuhua-717 .mall-hero h1 {
  font-size: clamp(42px, 4.8vw, 66px);
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 12px;
  max-width: 780px;
}

.yuhua-717 .hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 10px;
}

.yuhua-717 .hero-slogan {
  font-size: 17px;
  margin-bottom: 12px;
}

.yuhua-717 .mall-hero .lead {
  color: #52645c;
  font-size: 15px !important;
  line-height: 1.58 !important;
  margin-bottom: 0;
  max-width: 760px;
}

.yuhua-717 .trust-mini-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  grid-template-columns: none !important;
  margin: 16px 0 0;
  max-width: 760px;
}

.yuhua-717 .trust-mini-list li {
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  text-align: center;
}

.yuhua-717 .hero-profile-metrics {
  margin-top: 16px;
}

.yuhua-717 .hero-profile-metrics article {
  min-height: 68px !important;
  padding: 9px 10px !important;
}

.yuhua-717 .hero-profile-metrics strong {
  font-size: clamp(19px, 2.2vw, 26px) !important;
}

.yuhua-717 .hero-profile-metrics span {
  font-size: 13px;
}

.yuhua-717 .hero-profile-metrics small {
  display: none;
}

.yuhua-717 .hero-actions {
  margin-top: 18px;
}

.yuhua-717 .hero-commerce-panel {
  border-radius: 22px;
  padding: 18px;
}

.yuhua-717 .hero-panel-head {
  margin-bottom: 10px;
}

.yuhua-717 .hero-product-stack {
  display: grid;
  gap: 10px;
}

.yuhua-717 .hero-product-mini {
  align-items: center;
  border-radius: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 98px;
  padding: 10px;
}

.yuhua-717 .hero-product-mini img {
  border-radius: 14px;
  height: 78px;
  object-fit: cover;
  width: 92px;
}

.yuhua-717 .hero-product-mini strong {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
}

.yuhua-717 .hero-coupon-card {
  margin-top: 12px;
  padding: 14px;
}

.yuhua-717 .hero-mini-qr,
.yuhua-717 .hero-platform-entrances,
.yuhua-717 .hero-recent-buyer {
  display: none !important;
}

.yuhua-717 .hero-product-mini:nth-child(n+3) {
  display: none;
}

.conversion-shortcuts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px auto 0;
  width: 100%;
}

.conversion-shortcuts a,
.conversion-shortcuts button {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.11);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 56, 43, 0.045);
  color: #143c2d;
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 18px;
  text-align: left;
  text-decoration: none;
}

.conversion-shortcuts a:hover,
.conversion-shortcuts button:hover {
  border-color: rgba(15, 74, 53, 0.25);
  transform: translateY(-1px);
}

.conversion-shortcuts strong {
  font-size: 20px;
  line-height: 1.25;
}

.conversion-shortcuts span {
  color: #607169;
  font-size: 14px;
  line-height: 1.45;
}

.yuhua-717 .home-shop-section {
  margin-top: 18px;
}

.yuhua-717 .home-shop-products {
  gap: 16px;
}

.yuhua-717 .product-card {
  box-shadow: 0 12px 34px rgba(28, 51, 40, 0.055);
}

.yuhua-717 .product-card h3 {
  min-height: 44px;
}

.yuhua-717 .product-card .price {
  color: #e54b32;
  font-size: 24px;
}

.yuhua-717 .product-card .flower-friend-price {
  background: #fff3eb;
  border: 1px solid rgba(229, 75, 50, 0.12);
  border-radius: 999px;
  color: #a8482c;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 6px;
  padding: 6px 9px;
}

.yuhua-717 .buy-button {
  min-height: 42px;
}

.yuhua-717 .curated-products {
  display: block;
}

.yuhua-717 .curated-products .section-title {
  margin-bottom: 4px;
}

.yuhua-717 .curated-products .product-lane:nth-of-type(n+4) {
  display: none;
}

.yuhua-717 .curated-products .product-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yuhua-717 .shopping-bridge {
  margin-top: 22px;
}

.yuhua-717 .private-benefits,
.yuhua-717 .mini-program-more,
.yuhua-717 .platform-trust,
.yuhua-717 .official-white-section,
.yuhua-717 .founder-trust,
.yuhua-717 .cooperation-panel,
.yuhua-717 .contact-panel,
.yuhua-717 .feedback-panel {
  margin-top: 30px;
}

.yuhua-717 .official-white-section,
.yuhua-717 .official-profile-block {
  padding: clamp(24px, 3.6vw, 46px);
}

.yuhua-717 .section-title span,
.yuhua-717 .profile-section-head > span {
  max-width: 760px;
}

.yuhua-717 .why-grid,
.yuhua-717 .audience-grid,
.yuhua-717 .profile-feature-grid {
  gap: 14px;
}

.yuhua-717 .founder-grid.photo-grid article {
  min-height: auto;
}

.yuhua-717 .founder-card-body {
  min-height: 210px;
}

.yuhua-717 .feedback-clean-card {
  background: linear-gradient(135deg, #123f31, #0f4a35);
}

.yuhua-717 .cart-drawer-panel > p:not(.eyebrow) {
  color: #5b6d64;
}

.yuhua-717 .cart-drawer-summary {
  background: #fff8f1;
  border: 1px solid rgba(229, 75, 50, 0.10);
  border-radius: 16px;
  margin-top: 12px;
  padding: 14px;
}

@media (max-width: 1080px) {
  .yuhua-717 .mall-hero {
    grid-template-columns: 1fr;
  }

  .conversion-shortcuts,
  .yuhua-717 .curated-products .product-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .yuhua-717 {
    scroll-padding-top: 80px;
  }

  .yuhua-717 .official-header.site-header {
    max-height: none;
    padding: 8px 12px;
  }

  .yuhua-717 .official-header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 52px;
    width: 100%;
  }

  .yuhua-717 .brand .logo-badge {
    width: 54px;
  }

  .yuhua-717 .official-header .brand-word,
  .yuhua-717 .official-header .nav-private,
  .yuhua-717 .official-header .mini-program-button,
  .yuhua-717 .official-header .app-download-button,
  .yuhua-717 .official-header .cart-link {
    display: none;
  }

  .yuhua-717 .official-nav-row {
    display: none;
  }

  .yuhua-717 .official-mobile-menu {
    display: block;
    position: relative;
  }

  .yuhua-717 .official-mobile-menu:not([open]) nav {
    display: none;
  }

  .yuhua-717 .official-mobile-menu summary {
    min-height: 38px;
    min-width: 58px;
  }

  .yuhua-717 .mall-page {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
  }

  .yuhua-717 .mall-hero {
    border-radius: 22px;
    gap: 14px;
    padding: 20px 16px;
  }

  .yuhua-717 .mall-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .yuhua-717 .hero-subtitle {
    font-size: 17px;
  }

  .yuhua-717 .hero-slogan,
  .yuhua-717 .mall-hero .lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .yuhua-717 .mall-hero .lead {
    display: none;
  }

  .yuhua-717 .profile-color-line,
  .yuhua-717 .hero-mini-qr,
  .yuhua-717 .hero-platform-entrances,
  .yuhua-717 .hero-recent-buyer,
  .yuhua-717 .hero-profile-metrics {
    display: none !important;
  }

  .yuhua-717 .trust-mini-list {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 8px;
    grid-template-columns: none !important;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .yuhua-717 .trust-mini-list li {
    flex: 0 0 auto;
    font-size: 12px;
    min-height: 30px;
    white-space: nowrap;
    width: auto !important;
  }

  .yuhua-717 .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
  }

  .yuhua-717 .hero-actions .secondary-action {
    display: none;
  }

  .yuhua-717 .hero-commerce-panel {
    padding: 12px;
  }

  .yuhua-717 .hero-product-stack {
    gap: 8px;
  }

  .yuhua-717 .hero-product-mini {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 82px;
    padding: 8px;
  }

  .yuhua-717 .hero-product-mini:nth-child(n+2) {
    display: none;
  }

  .yuhua-717 .hero-product-mini img {
    height: 64px;
    width: 76px;
  }

  .yuhua-717 .hero-product-mini b {
    font-size: 20px;
  }

  .yuhua-717 .hero-coupon-card {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 8px;
    padding: 12px;
  }

  .yuhua-717 .hero-coupon-card span {
    display: none;
  }

  .yuhua-717 .hero-coupon-card button {
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .conversion-shortcuts {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .conversion-shortcuts a,
  .conversion-shortcuts button {
    min-height: 74px;
    padding: 12px;
  }

  .conversion-shortcuts strong {
    font-size: 16px;
  }

  .conversion-shortcuts span {
    font-size: 12px;
  }

  .yuhua-717 .home-shop-section {
    border-radius: 20px;
    margin: 14px auto 0;
    padding: 16px;
    width: 100%;
  }

  .yuhua-717 .home-shop-browser {
    display: block;
  }

  .yuhua-717 .home-shop-primary {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
  }

  .yuhua-717 .home-shop-primary button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
  }

  .yuhua-717 .home-shop-filter-head {
    align-items: flex-start;
    display: grid;
    gap: 10px;
  }

  .yuhua-717 .home-shop-filter-head .secondary-action {
    width: 100%;
  }

  .yuhua-717 .home-shop-products,
  .yuhua-717 .curated-products .product-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .yuhua-717 .product-card h3 {
    font-size: 14px;
    min-height: 38px;
  }

  .yuhua-717 .product-card .price {
    font-size: 20px;
  }

  .yuhua-717 .product-card .sales-line,
  .yuhua-717 .product-card .shipping-line,
  .yuhua-717 .product-card .flower-friend-price {
    font-size: 11px;
  }

  .yuhua-717 .shopping-bridge,
  .yuhua-717 .private-benefits,
  .yuhua-717 .curated-products,
  .yuhua-717 .mini-program-more,
  .yuhua-717 .platform-trust,
  .yuhua-717 .official-white-section,
  .yuhua-717 .founder-trust,
  .yuhua-717 .cooperation-panel,
  .yuhua-717 .contact-panel,
  .yuhua-717 .feedback-panel {
    margin: 18px 0 0;
    width: 100%;
  }

  .yuhua-717 .curated-products .product-lane:nth-of-type(n+3) {
    display: none;
  }

  .yuhua-717 .private-benefit-grid,
  .yuhua-717 .why-grid,
  .yuhua-717 .audience-grid,
  .yuhua-717 .profile-feature-grid,
  .yuhua-717 .contact-grid,
  .yuhua-717 .cooperation-types,
  .yuhua-717 .founder-grid {
    grid-template-columns: 1fr;
  }

  .yuhua-717 .official-white-section,
  .yuhua-717 .official-profile-block {
    padding: 20px 16px;
  }
}
