:root {
  --brand: #2f8f5b;
  --brand-dark: #1f6f45;
  --brand-light: #eaf7ef;
  --price: #e6452e;
  --text-main: #1f2a24;
  --text-sub: #66736b;
  --text-weak: #9aa39d;
  --bg-page: #f7f8f5;
  --bg-card: #ffffff;
  --border: #edf0ec;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 8px 24px rgba(31, 42, 36, 0.06);
  --shadow-float: 0 14px 40px rgba(31, 42, 36, 0.10);
}

/* 7.20 上线前体验修复：图片兜底、购物车、结算、购买氛围 */
.yuhua-719.yuhua-720 .conversion-shortcuts a,
.yuhua-719.yuhua-720 .conversion-shortcuts button {
  position: relative;
  overflow: hidden;
}

.yuhua-719.yuhua-720 .conversion-shortcuts a::after,
.yuhua-719.yuhua-720 .conversion-shortcuts button::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 63, 45, .82), rgba(8, 122, 99, .32));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .22s ease;
}

.yuhua-719.yuhua-720 .conversion-shortcuts a:hover::after,
.yuhua-719.yuhua-720 .conversion-shortcuts button:hover::after {
  transform: scaleX(1);
}

.yuhua-719.yuhua-720 .recent-orders-strip {
  align-items: center;
  background:
    radial-gradient(circle at 4% 4%, rgba(232, 63, 45, .12), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(8, 122, 99, .12), transparent 24%),
    linear-gradient(135deg, #fffdf8 0%, #f6fbf7 100%);
  border: 1px solid rgba(8, 122, 99, .16);
  box-shadow: 0 24px 70px rgba(13, 48, 35, .08);
  gap: 22px;
  min-height: 186px;
  overflow: hidden;
  padding: 28px 0 28px 32px;
}

.yuhua-719.yuhua-720 .recent-orders-strip > div:first-child {
  flex: 0 0 260px;
  padding-right: 18px;
}

.yuhua-719.yuhua-720 .recent-orders-strip h2 {
  font-size: 38px;
  line-height: 1.05;
}

.yuhua-719.yuhua-720 .recent-order-list {
  align-items: stretch;
  display: flex;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.yuhua-719.yuhua-720 .recent-order-card {
  animation: yuhuaOrderPop 4.8s ease-in-out infinite;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(8, 122, 99, .14);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(13, 48, 35, .08);
  flex: 0 0 360px;
  min-height: 108px;
  padding: 18px;
  position: relative;
}

.yuhua-719.yuhua-720 .recent-order-card::after {
  background: rgba(232, 63, 45, .1);
  border-radius: 999px;
  color: #e83f2d;
  content: "刚刚下单";
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  position: absolute;
  right: 16px;
  top: 14px;
}

.yuhua-719.yuhua-720 .recent-order-card img {
  border: 3px solid rgba(8, 122, 99, .1);
  box-shadow: 0 10px 24px rgba(13, 48, 35, .1);
  height: 58px;
  width: 58px;
}

@keyframes yuhuaOrderPop {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-6px); }
}

.yuhua-719.yuhua-720 .compact-growth {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yuhua-719.yuhua-720 .compact-growth article:last-child {
  background: linear-gradient(135deg, rgba(255, 248, 235, .98), rgba(234, 248, 240, .98));
  border-color: rgba(197, 139, 49, .24);
}

.yuhua-719.yuhua-720 .cooperation-action-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.yuhua-719.yuhua-720 .cooperation-action-row .primary-action,
.yuhua-719.yuhua-720 .cooperation-action-row .secondary-action {
  margin-top: 0;
}

.yuhua-719.yuhua-720 .cooperation-owner-action {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.cart-fly-dot {
  animation: yuhuaCartFly .72s cubic-bezier(.2,.72,.2,1) forwards;
  background: linear-gradient(135deg, #e83f2d, #0f8a63);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(232, 63, 45, .25);
  height: 18px;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(0, 0, 0);
  width: 18px;
  z-index: 9999;
}

.cart-pulse {
  animation: yuhuaCartPulse .84s ease;
}

@keyframes yuhuaCartFly {
  20% { transform: translate3d(0, -24px, 0) scale(1.12); opacity: 1; }
  100% { transform: translate3d(var(--tx), var(--ty), 0) scale(.28); opacity: 0; }
}

@keyframes yuhuaCartPulse {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(232, 63, 45, .1); }
}

.yuhua-719.yuhua-720 .product-card.is-missing-image .product-photo {
  background: linear-gradient(135deg, #fbfaf5, #edf6ef);
}

.yuhua-719.yuhua-720 .product-card.is-missing-image .product-photo::before {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(13, 48, 35, .08);
  color: #0d5f4e;
  content: "实拍图同步中 · 小程序可看更多";
  font-size: 13px;
  font-weight: 800;
  inset: auto 18px 18px 18px;
  padding: 9px 12px;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-page {
  background: linear-gradient(180deg, #fffdf8, #f8fbf6);
}

.cart-page-body.yuhua-719.yuhua-720 .cart-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 380px;
  max-width: 1440px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-page h1 {
  font-size: clamp(44px, 7vw, 88px);
  margin-bottom: 18px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-toolbar {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(13, 48, 35, .06);
  margin-bottom: 18px;
  padding: 16px 18px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-list {
  display: grid;
  gap: 16px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-line-item,
.checkout-page-body.yuhua-719.yuhua-720 .checkout-line-item {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(13, 48, 35, .06);
  display: grid;
  gap: 18px;
  grid-template-columns: 86px 150px minmax(0, 1fr);
  min-height: auto;
  padding: 18px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-product-media,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-media {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #fbfaf5, #edf6ef);
  border-radius: 22px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-product-media img,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-product-fallback,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-fallback {
  align-items: center;
  color: #0f6f5d;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  text-align: center;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-product-fallback b,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-fallback b {
  font-size: 14px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-product-fallback span,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-fallback span {
  color: #748178;
  font-size: 12px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-product-media.is-fallback .cart-product-fallback,
.cart-page-body.yuhua-719.yuhua-720 .cart-product-media:not(:has(img)) .cart-product-fallback,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-media.is-fallback .cart-product-fallback,
.checkout-page-body.yuhua-719.yuhua-720 .cart-product-media:not(:has(img)) .cart-product-fallback {
  display: flex;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-item-info {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-item-info h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-item-info p,
.cart-page-body.yuhua-719.yuhua-720 .cart-item-info small {
  color: #6c7a70;
  display: block;
  line-height: 1.5;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-line-price {
  text-align: right;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-line-price strong {
  color: #e83f2d;
  display: block;
  font-size: 28px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-line-price span {
  color: #8c968f;
  font-size: 13px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-item-ops {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-qty-stepper {
  align-items: center;
  background: #f7fbf7;
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 999px;
  display: inline-flex;
  gap: 12px;
  padding: 6px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-qty-stepper button {
  border-radius: 999px;
  height: 34px;
  min-width: 34px;
}

.cart-page-body.yuhua-719.yuhua-720 .cart-line-checkout {
  background: #0f6f5d;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 13px 18px;
}

.cart-page-body.yuhua-719.yuhua-720 .checkout-summary {
  position: sticky;
  top: 112px;
}

.cart-summary-note {
  background: #fff8ef;
  border: 1px solid rgba(232, 63, 45, .12);
  border-radius: 18px;
  color: #6b776f;
  font-size: 14px;
  line-height: 1.65;
  padding: 14px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-shell {
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 390px;
  max-width: 1440px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-product,
.checkout-page-body.yuhua-719.yuhua-720 .checkout-login-panel,
.checkout-page-body.yuhua-719.yuhua-720 .logistics-panel,
.checkout-page-body.yuhua-719.yuhua-720 .order-form,
.checkout-page-body.yuhua-719.yuhua-720 .checkout-summary {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(13, 48, 35, .06);
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-login-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-mini-card {
  align-items: center;
  background: linear-gradient(135deg, #f4fbf5, #fff8ef);
  border: 1px solid rgba(8, 122, 99, .14);
  border-radius: 24px;
  display: flex;
  gap: 16px;
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 14px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-mini-card img {
  background: #fff;
  border-radius: 18px;
  height: 108px;
  object-fit: contain;
  padding: 8px;
  width: 108px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-mini-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-mini-card span {
  color: #6c7a70;
  display: block;
  line-height: 1.6;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-mini-card button,
.checkout-page-body.yuhua-719.yuhua-720 .checkout-address-actions button {
  background: #0f6f5d;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  margin-top: 10px;
  padding: 11px 16px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-address-actions button:nth-child(2),
.checkout-page-body.yuhua-719.yuhua-720 .checkout-address-actions button:nth-child(3) {
  background: #eef8f0;
  color: #0f6f5d;
}

.checkout-page-body.yuhua-719.yuhua-720 .logistics-rule-card {
  background: #fff8ef;
  border: 1px solid rgba(197, 139, 49, .18);
  border-radius: 18px;
  color: #6b776f;
  line-height: 1.65;
  margin-top: 14px;
  padding: 14px;
}

.checkout-page-body.yuhua-719.yuhua-720 .logistics-rule-card strong {
  color: #1b2b23;
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-summary-mini {
  align-items: center;
  background: #f4fbf5;
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 20px;
  display: flex;
  gap: 12px;
  margin: 18px 0 12px;
  padding: 12px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-summary-mini img {
  background: #fff;
  border-radius: 14px;
  height: 86px;
  object-fit: contain;
  padding: 6px;
  width: 86px;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-summary-mini strong,
.checkout-page-body.yuhua-719.yuhua-720 .checkout-summary-mini span {
  display: block;
}

.checkout-page-body.yuhua-719.yuhua-720 .checkout-summary-mini span {
  color: #6c7a70;
  font-size: 13px;
  line-height: 1.55;
}

.yuhua-719.yuhua-720 .why-grid article,
.yuhua-719.yuhua-720 .source-delivery-card,
.yuhua-719.yuhua-720 .vision-metrics article {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,252,248,.96)),
    radial-gradient(circle at 88% 0, rgba(8, 122, 99, .08), transparent 30%);
}

.yuhua-719.yuhua-720 .why-grid article::after,
.yuhua-719.yuhua-720 .vision-metrics article::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px 22px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,122,99,.7), rgba(232,63,45,.35));
  opacity: .55;
}

@media (max-width: 980px) {
  .yuhua-719.yuhua-720 .recent-orders-strip {
    display: block;
    padding: 22px;
  }

  .yuhua-719.yuhua-720 .recent-orders-strip > div:first-child {
    padding: 0 0 16px;
  }

  .yuhua-719.yuhua-720 .recent-order-card {
    flex-basis: 280px;
  }

  .yuhua-719.yuhua-720 .compact-growth,
  .cart-page-body.yuhua-719.yuhua-720 .cart-shell,
  .checkout-page-body.yuhua-719.yuhua-720 .checkout-shell,
  .checkout-page-body.yuhua-719.yuhua-720 .checkout-login-panel {
    grid-template-columns: 1fr;
  }

  .cart-page-body.yuhua-719.yuhua-720 .checkout-summary {
    position: static;
  }

  .cart-page-body.yuhua-719.yuhua-720 .cart-line-item,
  .checkout-page-body.yuhua-719.yuhua-720 .checkout-line-item {
    grid-template-columns: 44px 112px minmax(0, 1fr);
  }

  .cart-page-body.yuhua-719.yuhua-720 .cart-item-info {
    grid-template-columns: 1fr;
  }

  .cart-page-body.yuhua-719.yuhua-720 .cart-line-price {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .yuhua-719.yuhua-720 .cooperation-action-row,
  .checkout-page-body.yuhua-719.yuhua-720 .checkout-mini-card,
  .checkout-page-body.yuhua-719.yuhua-720 .checkout-summary-mini {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-page-body.yuhua-719.yuhua-720 .cart-line-item,
  .checkout-page-body.yuhua-719.yuhua-720 .checkout-line-item {
    grid-template-columns: 34px 96px minmax(0, 1fr);
    padding: 14px;
  }

  .cart-page-body.yuhua-719.yuhua-720 .cart-item-ops {
    align-items: flex-start;
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
}

body.yuhua-76,
body.yuhua-76.product-page-body,
body.yuhua-76.checkout-page-body,
body.yuhua-76.pay-page-body,
body.yuhua-76.cart-page-body,
body.yuhua-76.order-page-body {
  min-height: 100vh;
  background: var(--bg-page);
  color: var(--text-main);
  letter-spacing: 0;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.yuhua-76 .site-header {
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(31, 42, 36, 0.06);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(260px, 520px) auto auto;
  align-items: center;
  gap: 18px;
}

.yuhua-76 .brand,
.yuhua-76 .mall-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.yuhua-76 .brand img,
.yuhua-76 .mall-logo img {
  max-width: 100%;
  display: block;
}

.yuhua-76 .logo-badge {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(47, 143, 91, 0.12);
  box-shadow: var(--shadow-card);
  padding: 6px;
  display: grid;
  place-items: center;
}

.yuhua-76 .brand-word {
  display: grid;
  line-height: 1.1;
}

.yuhua-76 .brand-word b {
  color: var(--text-main);
  font-size: 20px;
}

.yuhua-76 .brand-word small {
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yuhua-76 .mall-search,
.yuhua-76 .search {
  height: 44px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(47, 143, 91, 0.02);
  display: flex;
  align-items: center;
}

.yuhua-76 .mall-search input,
.yuhua-76 .search input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-main);
  background: transparent;
}

.yuhua-76 .mall-search button,
.yuhua-76 .search button {
  height: 36px;
  min-width: 74px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.yuhua-76 .mall-nav,
.yuhua-76 .nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.yuhua-76 .mall-nav a,
.yuhua-76 .nav a {
  color: var(--text-sub);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.yuhua-76 .mall-nav a:hover,
.yuhua-76 .nav a:hover,
.yuhua-76 .mall-nav a.active,
.yuhua-76 .nav a.active {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.yuhua-76 .header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.yuhua-76 .cart-link {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.yuhua-76 button,
.yuhua-76 a {
  -webkit-tap-highlight-color: transparent;
}

.yuhua-76 .primary-action,
.yuhua-76 .buy-button,
.yuhua-76 .detail-primary,
.yuhua-76 .mini-program-button,
.yuhua-76 .feedback-form button[type="submit"],
.yuhua-76 #payBtn,
.yuhua-76 #loadMoreBtn {
  border: 0;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 111, 69, 0.14);
}

.yuhua-76 .secondary-action,
.yuhua-76 .detail-secondary,
.yuhua-76 .detail-mini,
.yuhua-76 .weak-button,
.yuhua-76 .clear-filter,
.yuhua-76 .filter-drawer-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.yuhua-76 .mall-page,
.yuhua-76 .category-page,
.yuhua-76 .product-detail-page,
.yuhua-76 .checkout-page,
.yuhua-76 .pay-page,
.yuhua-76 .cart-page,
.yuhua-76 .order-page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.yuhua-76 .mall-hero {
  margin-top: 26px;
  min-height: 560px;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.96) 0%, rgba(247, 248, 245, 0.82) 48%, rgba(247, 248, 245, 0.28) 100%),
    url("../yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-float);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
}

.yuhua-76 .mall-hero-copy {
  max-width: 690px;
}

.yuhua-76 .eyebrow {
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: 0;
}

.yuhua-76 .mall-hero h1 {
  margin: 16px 0;
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--text-main);
}

.yuhua-76 .lead {
  max-width: 640px;
  color: var(--text-sub);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.8;
}

.yuhua-76 .trust-mini-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.yuhua-76 .trust-mini-list li {
  padding: 15px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-main);
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.yuhua-76 .hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yuhua-76 .hero-actions a,
.yuhua-76 .hero-actions button,
.yuhua-76 .mini-program-actions a,
.yuhua-76 .mini-program-actions button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.yuhua-76 .hero-commerce-panel,
.yuhua-76 .mini-program-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-float);
  padding: 22px;
}

.yuhua-76 .hero-hot-card {
  display: grid;
  gap: 16px;
}

.yuhua-76 .hero-hot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
}

.yuhua-76 .hero-hot-card strong {
  font-size: 24px;
  color: var(--text-main);
}

.yuhua-76 .hero-hot-card span,
.yuhua-76 .hero-hot-card p {
  color: var(--text-sub);
  line-height: 1.6;
}

.yuhua-76 .hero-hot-card .hero-price {
  color: var(--price);
  font-size: 28px;
  font-weight: 900;
}

.yuhua-76 .mini-program-card img {
  width: min(220px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  margin: 0 auto 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.yuhua-76 .choice-guide,
.yuhua-76 .curated-products,
.yuhua-76 .platform-trust,
.yuhua-76 .founder-trust,
.yuhua-76 .cooperation-panel,
.yuhua-76 .mini-program-more,
.yuhua-76 .category-title-block,
.yuhua-76 .category-browser,
.yuhua-76 .checkout-shell,
.yuhua-76 .pay-card,
.yuhua-76 .cart-shell,
.yuhua-76 .order-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.yuhua-76 .choice-guide,
.yuhua-76 .curated-products,
.yuhua-76 .platform-trust,
.yuhua-76 .founder-trust,
.yuhua-76 .cooperation-panel,
.yuhua-76 .mini-program-more {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
}

.yuhua-76 .founder-trust {
  display: block;
}

.yuhua-76 .section-title,
.yuhua-76 .lane-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.yuhua-76 .section-title p,
.yuhua-76 .lane-head p,
.yuhua-76 .platform-copy p,
.yuhua-76 .cooperation-copy p {
  color: var(--brand-dark);
  font-weight: 900;
  margin: 0 0 8px;
}

.yuhua-76 .section-title h2,
.yuhua-76 .lane-head h3,
.yuhua-76 .platform-copy h2,
.yuhua-76 .founder-copy h2,
.yuhua-76 .cooperation-copy h2 {
  margin: 0;
  color: var(--text-main);
  letter-spacing: 0;
}

.yuhua-76 .section-title a,
.yuhua-76 .lane-head a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.yuhua-76 .guide-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.yuhua-76 .guide-chips button {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
  text-align: left;
  display: grid;
  gap: 6px;
  cursor: pointer;
}

.yuhua-76 .guide-chips button span {
  font-size: 18px;
  font-weight: 900;
}

.yuhua-76 .guide-chips button small {
  color: var(--text-sub);
  font-weight: 700;
}

.yuhua-76 .guide-chips button.active,
.yuhua-76 .guide-chips button:hover {
  border-color: rgba(47, 143, 91, 0.32);
  background: var(--brand-light);
}

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

.yuhua-76 .product-lane {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.yuhua-76 .product-lane:first-of-type {
  border-top: 0;
  padding-top: 0;
}

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

.yuhua-76 .product-card {
  overflow: hidden;
  min-height: 100%;
  grid-column: auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.yuhua-76 .product-card.compact-card {
  grid-column: auto;
}

.yuhua-76 .product-card .product-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--brand-light);
  display: block;
}

.yuhua-76 .product-card .product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.yuhua-76 .product-card:hover .product-photo img {
  transform: scale(1.04);
}

.yuhua-76 .product-card .content {
  padding: 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.yuhua-76 .tag-row {
  min-height: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.yuhua-76 .tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.yuhua-76 .product-card h3 {
  min-height: 44px;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yuhua-76 .spec-line,
.yuhua-76 .sales-line,
.yuhua-76 .shipping-line {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.45;
}

.yuhua-76 .sales-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.yuhua-76 .price {
  color: var(--price);
  font-weight: 950;
  font-size: 22px;
}

.yuhua-76 .price small {
  margin-left: 8px;
  color: var(--text-weak);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.yuhua-76 .price-extra {
  min-height: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.yuhua-76 .price-chip,
.yuhua-76 .price-extra span {
  color: var(--price);
  background: #fff2ef;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 900;
}

.yuhua-76 .buy-button {
  margin-top: auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.yuhua-76 .mini-program-more {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

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

.yuhua-76 .mini-benefits li {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 900;
}

.yuhua-76 .platform-trust {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.yuhua-76 .platform-copy span,
.yuhua-76 .cooperation-copy span,
.yuhua-76 .founder-copy p,
.yuhua-76 .mini-program-more span {
  color: var(--text-sub);
  line-height: 1.8;
}

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

.yuhua-76 .platform-grid article,
.yuhua-76 .cooperation-types button {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.yuhua-76 .platform-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 18px;
}

.yuhua-76 .platform-grid span {
  color: var(--text-sub);
  line-height: 1.65;
}

.yuhua-76 .founder-grid {
  margin-top: 22px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.yuhua-76 .founder-grid article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.yuhua-76 .founder-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--brand-light);
}

.yuhua-76 .founder-grid article div {
  padding: 18px;
}

.yuhua-76 .founder-grid h3 {
  margin: 0 0 8px;
  color: var(--text-main);
}

.yuhua-76 .founder-grid p {
  margin: 0;
  color: var(--text-sub);
  line-height: 1.7;
}

.yuhua-76 .cooperation-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
}

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

.yuhua-76 .cooperation-types button {
  text-align: left;
  color: var(--text-main);
  font-weight: 900;
  cursor: pointer;
}

.yuhua-76 .cooperation-types button small {
  display: block;
  margin-top: 6px;
  color: var(--text-sub);
  font-weight: 700;
  line-height: 1.5;
}

.yuhua-76 .cooperation-types button.active,
.yuhua-76 .cooperation-types button:hover {
  border-color: rgba(47, 143, 91, 0.36);
  background: var(--brand-light);
  color: var(--brand-dark);
}

.yuhua-76 .feedback-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.yuhua-76 .feedback-form select,
.yuhua-76 .feedback-form input,
.yuhua-76 .feedback-form textarea,
.yuhua-76 .order-form input,
.yuhua-76 .order-form textarea,
.yuhua-76 .checkout-login-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-main);
  padding: 14px;
  outline: 0;
  font-size: 14px;
}

.yuhua-76 .feedback-form textarea,
.yuhua-76 .feedback-form button[type="submit"],
.yuhua-76 .feedback-form .form-tip {
  grid-column: 1 / -1;
}

.yuhua-76 .feedback-form textarea {
  min-height: 112px;
  resize: vertical;
}

.yuhua-76 .feedback-form button[type="submit"] {
  min-height: 46px;
}

.yuhua-76 .form-tip {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.yuhua-76 .category-title-block {
  margin-top: 24px;
  padding: 28px;
}

.yuhua-76 .category-title-block h1 {
  margin: 8px 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
}

.yuhua-76 .category-title-block span {
  color: var(--text-sub);
  line-height: 1.7;
}

.yuhua-76 .category-top-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.yuhua-76 .filter-drawer-toggle {
  display: none;
  min-height: 40px;
  padding: 0 16px;
}

.yuhua-76 .category-browser {
  margin-top: 20px;
  padding: 18px;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px;
}

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

.yuhua-76 .category-primary button,
.yuhua-76 .category-secondary button,
.yuhua-76 .sort-tabs button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-sub);
  font-weight: 900;
  cursor: pointer;
}

.yuhua-76 .category-primary button {
  min-height: 44px;
}

.yuhua-76 .category-primary button.active,
.yuhua-76 .category-secondary button.active,
.yuhua-76 .sort-tabs button.active {
  border-color: rgba(47, 143, 91, 0.28);
  background: var(--brand-light);
  color: var(--brand-dark);
}

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

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

.yuhua-76 .category-secondary button,
.yuhua-76 .sort-tabs button {
  min-height: 38px;
  padding: 0 14px;
}

.yuhua-76 .category-tools {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.yuhua-76 .category-tools strong {
  display: block;
  color: var(--text-main);
  font-size: 20px;
}

.yuhua-76 .category-tools span {
  color: var(--text-sub);
  font-size: 13px;
}

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

.yuhua-76 .clear-filter {
  min-height: 38px;
  padding: 0 14px;
}

.yuhua-76 .category-load-more {
  margin-top: 24px;
  display: grid;
  place-items: center;
  gap: 10px;
}

.yuhua-76 #loadMoreBtn {
  min-height: 44px;
  padding: 0 28px;
}

.yuhua-76 .category-filter-backdrop {
  display: none;
}

.yuhua-76 .category-filter-head {
  display: none;
}

.yuhua-76 .detail-shell {
  margin: 24px 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.yuhua-76 .detail-gallery,
.yuhua-76 .detail-info,
.yuhua-76 .product-detail-images,
.yuhua-76 .detail-recommend-section,
.yuhua-76 .service-promise-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.yuhua-76 .detail-gallery,
.yuhua-76 .detail-info {
  padding: 18px;
}

.yuhua-76 .main-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  background: var(--brand-light);
}

.yuhua-76 .main-photo img,
.yuhua-76 .thumb-row img,
.yuhua-76 .line-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yuhua-76 .thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.yuhua-76 .thumb-row button {
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--brand-light);
  padding: 0;
  cursor: pointer;
}

.yuhua-76 .thumb-row button.active {
  border-color: var(--brand);
}

.yuhua-76 .detail-info h1 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.yuhua-76 .detail-meta,
.yuhua-76 .detail-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yuhua-76 .detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.yuhua-76 .detail-info .desc {
  color: var(--text-sub);
  line-height: 1.8;
}

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

.yuhua-76 .detail-spec-grid div,
.yuhua-76 .product-logistics-grid div,
.yuhua-76 .service-promise-grid div,
.yuhua-76 .logistics-summary div {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.yuhua-76 .detail-spec-grid span,
.yuhua-76 .product-logistics-grid span,
.yuhua-76 .service-promise-grid span,
.yuhua-76 .logistics-summary span {
  display: block;
  color: var(--text-weak);
  font-size: 12px;
}

.yuhua-76 .detail-spec-grid b,
.yuhua-76 .product-logistics-grid b,
.yuhua-76 .service-promise-grid b,
.yuhua-76 .logistics-summary b {
  color: var(--text-main);
}

.yuhua-76 .sku-panel,
.yuhua-76 .quantity-panel,
.yuhua-76 .product-logistics-card,
.yuhua-76 .service-promise-card {
  margin-top: 18px;
}

.yuhua-76 .sku-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.yuhua-76 .sku-list button {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.yuhua-76 .sku-list button.active {
  border-color: var(--brand);
  background: var(--brand-light);
}

.yuhua-76 .quantity-stepper {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: 42px 70px 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.yuhua-76 .quantity-stepper button,
.yuhua-76 .quantity-stepper input {
  height: 42px;
  border: 0;
  background: #fff;
  text-align: center;
}

.yuhua-76 .product-logistics-card,
.yuhua-76 .service-promise-card,
.yuhua-76 .detail-recommend-section,
.yuhua-76 .product-detail-images {
  padding: 18px;
}

.yuhua-76 .product-logistics-card > div:first-child p:last-child {
  color: var(--text-sub);
  line-height: 1.7;
}

.yuhua-76 .detail-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.yuhua-76 .detail-actions a,
.yuhua-76 .detail-actions button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.yuhua-76 .detail-share {
  border: 1px solid #ffe1d8;
  border-radius: 999px;
  background: #fff4ef;
  color: var(--price);
  font-weight: 900;
  cursor: pointer;
}

.yuhua-76 .product-detail-images,
.yuhua-76 .detail-recommend-section {
  grid-column: 1 / -1;
}

.yuhua-76 .product-detail-images img {
  width: 100%;
  border-radius: 18px;
  margin-top: 14px;
  display: block;
}

.yuhua-76 .detail-buybar {
  display: none;
}

.yuhua-76 .checkout-shell {
  margin: 24px 0;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
}

.yuhua-76 .checkout-main h1 {
  margin-top: 0;
}

.yuhua-76 .checkout-product,
.yuhua-76 .checkout-login-panel,
.yuhua-76 .logistics-panel,
.yuhua-76 .order-form,
.yuhua-76 .checkout-summary {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.yuhua-76 .checkout-product,
.yuhua-76 .checkout-login-panel,
.yuhua-76 .logistics-panel,
.yuhua-76 .order-form {
  margin-top: 16px;
}

.yuhua-76 .line-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.yuhua-76 .line-item img {
  width: 92px;
  height: 92px;
  border-radius: 16px;
}

.yuhua-76 .checkout-login-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: 18px;
  align-items: start;
}

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

.yuhua-76 .checkout-login-form button,
.yuhua-76 .order-form button[type="submit"] {
  min-height: 44px;
  border-radius: 999px;
}

.yuhua-76 .order-form textarea,
.yuhua-76 .order-form button[type="submit"],
.yuhua-76 .order-form .checkout-hint,
.yuhua-76 .order-form .form-tip {
  grid-column: 1 / -1;
}

.yuhua-76 .checkout-summary {
  position: sticky;
  top: 94px;
  align-self: start;
}

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

.yuhua-76 .summary-total {
  margin-top: 16px;
  color: var(--price);
  font-size: 28px;
  font-weight: 950;
  text-align: right;
}

.yuhua-76 .checkout-paybar {
  display: none;
}

.yuhua-76 .pay-page,
.yuhua-76 .cart-page,
.yuhua-76 .order-page {
  padding: 28px 0;
}

.yuhua-76 .pay-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 30px;
}

.yuhua-76 .pay-fallback {
  margin: 18px 0;
  padding: 18px;
  border-radius: 22px;
  background: var(--brand-light);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: center;
}

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

.yuhua-76 #payBtn {
  min-height: 48px;
  width: 100%;
}

.yuhua-76 .mini-program-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
}

.yuhua-76 .mini-program-modal.open {
  display: grid;
}

.yuhua-76 .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 36, 0.46);
  backdrop-filter: blur(6px);
}

.yuhua-76 .modal-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(234, 247, 239, 0.94), rgba(255, 255, 255, 0.98)),
    url("../yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
  box-shadow: var(--shadow-float);
  text-align: center;
}

.yuhua-76 .modal-panel img {
  width: min(220px, 72vw);
  aspect-ratio: 1;
  object-fit: contain;
  border: 10px solid #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.yuhua-76 .modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-main);
  font-weight: 900;
  padding: 8px 10px;
}

.yuhua-76 .mini-tabbar {
  display: none;
}

@media (max-width: 1180px) {
  .yuhua-76 .site-header {
    grid-template-columns: minmax(180px, 230px) minmax(220px, 1fr) auto;
  }

  .yuhua-76 .mall-nav,
  .yuhua-76 .nav {
    display: none;
  }

  .yuhua-76 .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  body.yuhua-76 {
    padding-bottom: 80px;
  }

  .yuhua-76 .site-header {
    min-height: auto;
    padding: 10px 12px;
    grid-template-columns: minmax(114px, 148px) minmax(0, 1fr) auto;
    gap: 8px;
  }

  .yuhua-76 .logo-badge {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
    padding: 4px;
  }

  .yuhua-76 .brand,
  .yuhua-76 .mall-logo {
    grid-column: 1;
    order: 0;
  }

  .yuhua-76 .brand-word b {
    font-size: 15px;
  }

  .yuhua-76 .brand-word small {
    display: none;
  }

  .yuhua-76 .mall-search,
  .yuhua-76 .search {
    height: 40px;
    grid-column: 2;
    order: 0;
  }

  .yuhua-76 .mall-search input,
  .yuhua-76 .search input {
    padding: 0 10px;
    font-size: 13px;
  }

  .yuhua-76 .mall-search button,
  .yuhua-76 .search button {
    min-width: 56px;
    height: 32px;
    font-size: 12px;
  }

  .yuhua-76 .header-actions {
    gap: 0;
    grid-column: 3;
    order: 0;
  }

  .yuhua-76 .cart-link {
    width: 42px;
    height: 40px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .yuhua-76 .cart-link::before {
    content: "购";
    font-size: 14px;
    color: var(--brand-dark);
  }

  .yuhua-76 .cart-link b {
    position: absolute;
    transform: translate(15px, -12px);
  }

  .yuhua-76 .mini-program-button {
    display: none;
  }

  .yuhua-76 .mall-page,
  .yuhua-76 .category-page,
  .yuhua-76 .product-detail-page,
  .yuhua-76 .checkout-page,
  .yuhua-76 .pay-page,
  .yuhua-76 .cart-page,
  .yuhua-76 .order-page {
    width: min(100% - 20px, 780px);
  }

  .yuhua-76 .mall-hero {
    min-height: auto;
    margin-top: 14px;
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
  }

  .yuhua-76 .mall-hero h1 {
    font-size: 40px;
  }

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

  .yuhua-76 .hero-commerce-panel,
  .yuhua-76 .mini-program-card {
    padding: 16px;
  }

  .yuhua-76 .choice-guide,
  .yuhua-76 .curated-products,
  .yuhua-76 .platform-trust,
  .yuhua-76 .founder-trust,
  .yuhua-76 .cooperation-panel,
  .yuhua-76 .mini-program-more {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .yuhua-76 .section-title,
  .yuhua-76 .lane-head,
  .yuhua-76 .category-top-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .yuhua-76 .guide-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .yuhua-76 .guide-chips button {
    min-height: 72px;
  }

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

  .yuhua-76 .product-card {
    border-radius: 18px;
  }

  .yuhua-76 .product-card .content {
    padding: 10px;
  }

  .yuhua-76 .product-card h3 {
    min-height: 40px;
    font-size: 14px;
  }

  .yuhua-76 .price {
    font-size: 19px;
  }

  .yuhua-76 .mini-program-more,
  .yuhua-76 .platform-trust,
  .yuhua-76 .cooperation-panel,
  .yuhua-76 .checkout-shell {
    grid-template-columns: 1fr;
  }

  .yuhua-76 .mini-benefits,
  .yuhua-76 .platform-grid,
  .yuhua-76 .founder-grid,
  .yuhua-76 .cooperation-types {
    grid-template-columns: 1fr;
  }

  .yuhua-76 .category-title-block {
    margin-top: 14px;
    padding: 22px;
  }

  .yuhua-76 .filter-drawer-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .yuhua-76 .category-browser {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .yuhua-76 .category-primary {
    position: sticky;
    top: 62px;
    z-index: 8;
    margin: -2px -2px 4px;
    padding: 6px;
    display: flex;
    overflow-x: auto;
    background: rgba(247, 248, 245, 0.94);
    border-radius: 999px;
  }

  .yuhua-76 .category-primary button {
    min-width: max-content;
    padding: 0 16px;
  }

  .yuhua-76 .category-filter-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(31, 42, 36, 0.44);
    z-index: 59;
  }

  .yuhua-76 .category-filter-backdrop.open {
    display: block;
  }

  .yuhua-76 .category-main {
    display: contents;
  }

  .yuhua-76 .category-filter-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    max-height: 74vh;
    overflow-y: auto;
    padding: 18px;
    border-radius: 26px 26px 0 0;
    background: #fff;
    box-shadow: 0 -18px 42px rgba(31, 42, 36, 0.18);
    transform: translateY(105%);
    transition: transform 0.22s ease;
  }

  .yuhua-76 .category-filter-drawer.open {
    transform: translateY(0);
  }

  .yuhua-76 .category-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }

  .yuhua-76 .category-filter-close {
    border: 0;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-weight: 900;
    padding: 8px 12px;
  }

  .yuhua-76 .category-tools {
    grid-template-columns: 1fr;
  }

  .yuhua-76 .sort-tabs {
    justify-content: flex-start;
  }

  .yuhua-76 .detail-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 14px 0 96px;
  }

  .yuhua-76 .detail-spec-grid,
  .yuhua-76 .product-logistics-grid,
  .yuhua-76 .service-promise-grid,
  .yuhua-76 .sku-list {
    grid-template-columns: 1fr;
  }

  .yuhua-76 .detail-actions {
    display: none;
  }

  .yuhua-76 .detail-buybar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 72px;
    z-index: 55;
    min-height: 62px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-float);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
    align-items: center;
  }

  .yuhua-76 .detail-buybar strong {
    color: var(--price);
    font-size: 20px;
  }

  .yuhua-76 .detail-buybar small {
    display: block;
    color: var(--text-sub);
  }

  .yuhua-76 .detail-buybar button {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    font-weight: 900;
  }

  .yuhua-76 .checkout-shell {
    margin: 14px 0 92px;
    padding: 12px;
  }

  .yuhua-76 .checkout-login-panel,
  .yuhua-76 .checkout-login-form,
  .yuhua-76 .form-grid {
    grid-template-columns: 1fr;
  }

  .yuhua-76 .checkout-summary {
    position: static;
  }

  .yuhua-76 .order-form button[type="submit"] {
    display: none;
  }

  .yuhua-76 .checkout-paybar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 72px;
    z-index: 55;
    min-height: 62px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-float);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 126px;
    gap: 10px;
    align-items: center;
  }

  .yuhua-76 .checkout-paybar span {
    color: var(--text-sub);
    font-size: 12px;
  }

  .yuhua-76 .checkout-paybar strong {
    display: block;
    color: var(--price);
    font-size: 20px;
  }

  .yuhua-76 .checkout-paybar button {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    font-weight: 900;
  }

  .yuhua-76 .pay-card {
    padding: 22px;
  }

  .yuhua-76 .pay-fallback {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .yuhua-76 .pay-fallback img {
    margin: 0 auto;
  }

  .yuhua-76 .mini-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 56;
    height: 62px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .yuhua-76 .mini-tabbar a,
  .yuhua-76 .mini-tabbar button {
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--text-sub);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    display: grid;
    place-items: center;
  }

  .yuhua-76 .mini-tabbar a:hover,
  .yuhua-76 .mini-tabbar button:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
  }
}

@media (max-width: 420px) {
  .yuhua-76 .site-header {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
  }

  .yuhua-76 .brand {
    gap: 8px;
  }

  .yuhua-76 .logo-badge {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .yuhua-76 .brand-word b {
    display: none;
  }

  .yuhua-76 .mall-search button,
  .yuhua-76 .search button {
    min-width: 46px;
  }

  .yuhua-76 .mall-search input,
  .yuhua-76 .search input {
    font-size: 12px;
  }

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

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

  .yuhua-76 .guide-chips {
    grid-template-columns: 1fr;
  }

  .yuhua-76 .hero-hot-card img {
    display: none;
  }

  .yuhua-76 .hero-hot-card {
    gap: 10px;
  }

  .yuhua-76 .hero-hot-card strong {
    font-size: 20px;
  }

  .yuhua-76 .product-grid {
    gap: 8px;
  }

  .yuhua-76 .product-card .content {
    gap: 7px;
  }

  .yuhua-76 .sales-line {
    flex-direction: column;
    gap: 2px;
  }
}

/* 7.7 mature mall overrides */
.yuhua-77 .image-fallback {
  object-fit: contain !important;
  padding: 14px;
  background: var(--brand-light);
}

.yuhua-77 .mall-hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 143, 91, 0.10), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6fbf7 54%, #eef7f1 100%);
}

.yuhua-77 .hero-commerce-panel {
  padding: 20px;
}

.yuhua-77 .hero-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.yuhua-77 .hero-panel-head span {
  display: block;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 950;
}

.yuhua-77 .hero-panel-head strong {
  display: block;
  margin-top: 6px;
  color: var(--text-main);
  font-size: 22px;
}

.yuhua-77 .hero-panel-head a,
.yuhua-77 .hero-product-empty a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.yuhua-77 .hero-product-stack {
  display: grid;
  gap: 12px;
}

.yuhua-77 .hero-product-skeleton,
.yuhua-77 .hero-product-empty {
  min-height: 180px;
  padding: 18px;
  border: 1px dashed rgba(47, 143, 91, 0.30);
  border-radius: 22px;
  background: var(--brand-light);
  color: var(--text-sub);
  display: grid;
  align-content: center;
  gap: 8px;
}

.yuhua-77 .hero-product-mini {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  color: var(--text-main);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  grid-template-areas:
    "img tag"
    "img title"
    "img price";
  gap: 6px 12px;
  align-items: center;
}

.yuhua-77 .hero-product-mini.featured {
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 12px;
  border-color: rgba(47, 143, 91, 0.24);
}

.yuhua-77 .hero-product-mini img {
  grid-area: img;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  background: var(--brand-light);
}

.yuhua-77 .hero-product-mini span {
  grid-area: tag;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.yuhua-77 .hero-product-mini strong {
  grid-area: title;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yuhua-77 .hero-product-mini b {
  grid-area: price;
  color: var(--price);
  font-size: 22px;
  font-weight: 950;
}

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

.yuhua-77 .guide-primary-grid button,
.yuhua-77 .guide-shortcuts button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.yuhua-77 .guide-primary-grid button {
  min-height: 96px;
  padding: 18px;
  border-radius: 22px;
  text-align: left;
  display: grid;
  align-content: center;
  gap: 8px;
}

.yuhua-77 .guide-primary-grid span {
  font-size: 20px;
  font-weight: 950;
}

.yuhua-77 .guide-primary-grid small {
  color: var(--text-sub);
  font-weight: 750;
  line-height: 1.5;
}

.yuhua-77 .guide-shortcuts {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.yuhua-77 .guide-shortcuts button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-sub);
  font-weight: 900;
}

.yuhua-77 .guide-primary-grid button:hover,
.yuhua-77 .guide-shortcuts button:hover {
  border-color: rgba(47, 143, 91, 0.34);
  background: var(--brand-light);
  color: var(--brand-dark);
}

.yuhua-77 .platform-grid article {
  position: relative;
  padding-top: 54px;
}

.yuhua-77 .ability-icon {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand-dark) !important;
  font-size: 14px;
  font-weight: 950;
  display: grid;
  place-items: center;
}

.yuhua-77 .founder-grid article div > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 14px;
}

.yuhua-77 .active-filter-summary {
  display: block;
  margin-top: 6px;
  color: var(--brand-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.yuhua-77 .cooperation-modal {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: none;
  place-items: center;
  padding: 20px;
}

.yuhua-77 .cooperation-modal.open {
  display: grid;
}

.yuhua-77 .cooperation-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 36, 0.48);
  backdrop-filter: blur(8px);
}

.yuhua-77 .cooperation-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-float);
}

.yuhua-77 .cooperation-modal-panel > h2 {
  margin: 8px 0;
}

.yuhua-77 .cooperation-modal-panel > p:not(.eyebrow) {
  color: var(--text-sub);
  line-height: 1.75;
}

.yuhua-77 .cooperation-modal .feedback-form {
  margin-top: 18px;
}

.yuhua-77 .modal-panel {
  background:
    linear-gradient(180deg, rgba(234, 247, 239, 0.94), rgba(255, 255, 255, 0.98)),
    url("../yunshe-facility-exterior-20260613.webp") center / cover no-repeat;
}

.yuhua-77 .pay-fallback.show {
  outline: 2px solid rgba(47, 143, 91, 0.28);
}

@media (max-width: 860px) {
  .yuhua-77 .mall-hero {
    min-height: auto;
  }

  .yuhua-77 .hero-product-mini,
  .yuhua-77 .hero-product-mini.featured {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .yuhua-77 .guide-primary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yuhua-77 .cooperation-modal {
    align-items: end;
    padding: 0;
  }

  .yuhua-77 .cooperation-modal-panel {
    width: 100%;
    max-height: 86vh;
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 420px) {
  .yuhua-77 .guide-primary-grid {
    grid-template-columns: 1fr;
  }

  .yuhua-77 .hero-product-mini b {
    font-size: 19px;
  }
}
/* 与花同行 7.14 | final visual overrides after design-system */
.yuhua-714 .site-header {
  max-height: 118px;
}

.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 {
  font-size: clamp(48px, 6.2vw, 82px);
  letter-spacing: 0;
  max-width: 900px;
}

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

.yuhua-714 .hero-slogan {
  color: #0f4a35;
  font-weight: 900;
}

.yuhua-714 .trust-mini-list li,
.yuhua-714 .hero-profile-metrics article,
.yuhua-714 .hero-commerce-panel {
  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-commerce-panel {
  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-recent-buyer {
  border-top: 1px solid rgba(15, 74, 53, 0.10);
  color: #51675d;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
}

.yuhua-714 .mini-program-modal,
.yuhua-714 .private-domain-modal,
.yuhua-714 .cooperation-modal {
  align-items: center;
  background: rgba(10, 32, 24, 0.48);
  justify-content: center;
  padding: 24px;
}

.yuhua-714 .mini-program-modal .modal-panel,
.yuhua-714 .private-domain-panel,
.yuhua-714 .cooperation-modal-panel {
  border-radius: 24px;
  max-width: 760px;
  width: min(760px, calc(100vw - 48px));
}

@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 .mini-program-modal,
  .yuhua-714 .private-domain-modal,
  .yuhua-714 .cooperation-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .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);
    width: calc(100vw - 24px);
  }
}

/* 与花同行 7.15 | official launch overrides after historical styles */
.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: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 30px;
  padding: clamp(34px, 5vw, 76px);
}

.yuhua-715 .mall-hero h1 {
  font-size: clamp(46px, 5.2vw, 76px);
  letter-spacing: 0;
  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 .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-feature-compact,
.yuhua-715 .official-card-grid.four,
.yuhua-715 .fulfillment-data-row,
.yuhua-715 .growth-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.yuhua-715 .profile-intro-box,
.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 .profile-intro-box,
.yuhua-715 .official-card-grid article,
.yuhua-715 .growth-timeline article,
.yuhua-715 .fulfillment-data-row article {
  padding: 24px;
}

.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,
.yuhua-715 .official-card-grid span,
.yuhua-715 .audience-grid span,
.yuhua-715 .growth-timeline span {
  color: #5b6d64;
  font-size: 16px;
  line-height: 1.85;
}

.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 .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 .fulfillment-data-row strong {
  color: #0f4a35;
  display: block;
  font-size: clamp(28px, 3.6vw, 42px);
}

.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 .channel-table {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.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 .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 .feedback-panel {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  color: #173c2e;
}

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

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

@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,
  .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 h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

/* 7.17 launch audit overrides: loaded after yuhua.css, keep conversion above the fold. */
.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);
  line-height: 1.06;
  margin-bottom: 12px;
  max-width: 780px;
}

.yuhua-717 .mall-hero .lead {
  color: #52645c;
  font-size: 15px;
  line-height: 1.58;
  max-width: 760px;
}

.yuhua-717 .hero-profile-metrics {
  display: none;
  margin-top: 16px;
}

.yuhua-717 .hero-profile-metrics article {
  min-height: 68px;
  padding: 9px 10px;
}

.yuhua-717 .hero-profile-metrics strong {
  font-size: clamp(19px, 2.2vw, 26px);
}

.yuhua-717 .hero-profile-metrics span {
  font-size: 13px;
}

.yuhua-717 .hero-profile-metrics small,
.yuhua-717 .hero-mini-qr,
.yuhua-717 .hero-platform-entrances,
.yuhua-717 .hero-recent-buyer {
  display: none !important;
}

.yuhua-717 .profile-color-line,
.yuhua-717 .app-download-button {
  display: none !important;
}

.yuhua-717 .trust-mini-list {
  gap: 8px;
  margin-top: 14px;
}

.yuhua-717 .trust-mini-list li {
  min-height: 32px;
  padding: 0 10px;
}

.yuhua-717 .hero-commerce-panel {
  align-self: center;
  border-radius: 22px;
  padding: 18px;
}

.yuhua-717 .hero-product-mini:nth-child(n+3) {
  display: none;
}

.yuhua-717 .hero-coupon-card {
  margin-top: 12px;
  padding: 14px;
}

.yuhua-717 .conversion-shortcuts {
  margin-top: 16px;
}

@media (max-width: 720px) {
  .yuhua-717 .mall-hero {
    border-radius: 22px;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .yuhua-717 .mall-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .yuhua-717 .mall-hero .lead,
  .yuhua-717 .profile-color-line,
  .yuhua-717 .hero-profile-metrics {
    display: none !important;
  }

  .yuhua-717 .hero-product-mini:nth-child(n+2) {
    display: none;
  }

  .yuhua-717 .conversion-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .yuhua-717 .unified-modal {
    align-items: center;
    padding: 10px;
  }

  .yuhua-717 .unified-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 18px 16px;
    width: calc(100vw - 20px);
  }

  .yuhua-717 .unified-modal-close {
    font-size: 12px;
    height: 32px;
    right: 10px;
    top: 10px;
    width: 48px;
  }

  .yuhua-717 .unified-qr-layout {
    gap: 12px;
  }

  .yuhua-717 .unified-qr-card {
    padding: 12px;
  }

  .yuhua-717 .unified-qr-card img {
    border-width: 8px;
    height: 160px;
    width: 160px;
  }

  .yuhua-717 .unified-qr-card span {
    font-size: 12px;
    margin-top: 8px;
  }

  .yuhua-717 .unified-modal-copy .eyebrow {
    display: none;
  }

  .yuhua-717 .unified-modal-copy h2 {
    font-size: 22px;
    margin: 0 0 8px;
  }

  .yuhua-717 .unified-modal-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .yuhua-717 .unified-benefit-list {
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .yuhua-717 .unified-benefit-list li {
    font-size: 12px;
    padding: 7px 8px;
    text-align: center;
  }

  .yuhua-717 .unified-modal-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .yuhua-717 .unified-modal-actions button {
    min-height: 40px;
  }
}

/* 7.18 final polish: faster perceived product loading and calmer official-site sections. */
.yuhua-718 .product-grid,
.yuhua-718 .home-shop-products,
.yuhua-718 .product-grid-compact {
  align-items: stretch;
}

.yuhua-718 .product-card {
  background: #fff;
  border-color: rgba(20, 60, 45, 0.09);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(31, 56, 43, 0.065);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.yuhua-718 .product-card:hover {
  border-color: rgba(233, 89, 58, 0.22);
  box-shadow: 0 18px 44px rgba(31, 56, 43, 0.095);
  transform: translateY(-2px);
}

.yuhua-718 .product-card .product-photo {
  aspect-ratio: 1 / 1;
  background: #f5f7f1;
  display: block;
  overflow: hidden;
  position: relative;
}

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

.yuhua-718 .product-card .product-image-loading {
  background: linear-gradient(90deg, #eef3eb 0%, #f9faf4 45%, #eef3eb 90%);
  background-size: 220% 100%;
  color: transparent;
  inset: 0;
  position: absolute;
  animation: yuhuaCardPulse 1.05s ease-in-out infinite;
}

.yuhua-718 .product-card .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.yuhua-718 .product-card .tag-row {
  display: flex;
  gap: 6px;
  min-height: 24px;
  overflow: hidden;
}

.yuhua-718 .product-card .tag {
  background: #fff3eb;
  border: 1px solid rgba(229, 75, 50, 0.12);
  color: #bd4b30;
  font-size: 12px;
  font-weight: 900;
  max-width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yuhua-718 .product-card h3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #1b2f25;
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  min-height: 43px;
  overflow: hidden;
}

.yuhua-718 .product-card .spec-line,
.yuhua-718 .product-card .sales-line,
.yuhua-718 .product-card .shipping-line {
  color: #68766f;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.yuhua-718 .product-card .price {
  align-items: baseline;
  color: #e54b32;
  display: flex;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 950;
  gap: 6px;
  letter-spacing: 0;
  line-height: 1;
  margin-top: auto;
}

.yuhua-718 .product-card .price small {
  color: #a8b1aa;
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
}

.yuhua-718 .product-card .flower-friend-price {
  background: #fff6ef;
  border-color: rgba(229, 75, 50, 0.14);
  color: #a8482c;
  width: fit-content;
}

.yuhua-718 .product-card .buy-button {
  background: #123f31;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(18, 63, 49, 0.16);
  margin-top: 2px;
  min-height: 42px;
}

.yuhua-718 .product-card.product-card-skeleton {
  pointer-events: none;
}

.yuhua-718 .product-card.product-card-skeleton .product-photo,
.yuhua-718 .product-card.product-card-skeleton .content span,
.yuhua-718 .product-card.product-card-skeleton .content strong,
.yuhua-718 .product-card.product-card-skeleton .content em,
.yuhua-718 .product-card.product-card-skeleton .content i,
.yuhua-718 .product-card.product-card-skeleton .content button {
  background: linear-gradient(90deg, #eef3eb 0%, #fbfaf3 48%, #eef3eb 96%);
  background-size: 220% 100%;
  border: 0;
  border-radius: 12px;
  display: block;
  min-height: 16px;
  animation: yuhuaCardPulse 1.05s ease-in-out infinite;
}

.yuhua-718 .product-card.product-card-skeleton .content strong {
  min-height: 42px;
}

.yuhua-718 .product-card.product-card-skeleton .content em {
  width: 54%;
}

.yuhua-718 .product-card.product-card-skeleton .content i {
  height: 30px;
  width: 46%;
}

.yuhua-718 .product-card.product-card-skeleton .content button {
  height: 42px;
}

@keyframes yuhuaCardPulse {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.yuhua-718 .platform-story-718 {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(31, 56, 43, 0.06);
  margin: clamp(26px, 4vw, 54px) auto 0;
  padding: clamp(24px, 4vw, 52px);
}

.yuhua-718 .platform-story-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
}

.yuhua-718 .platform-story-copy,
.yuhua-718 .platform-story-brand {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.09);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(31, 56, 43, 0.045);
  padding: clamp(22px, 3.2vw, 36px);
}

.yuhua-718 .platform-story-copy .eyebrow,
.yuhua-718 .section-title p,
.yuhua-718 .feedback-panel .eyebrow,
.yuhua-718 .founder-copy .eyebrow {
  color: #17845d;
  font-weight: 950;
  letter-spacing: 0;
}

.yuhua-718 .platform-story-copy h2 {
  color: #143c2d;
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 10px 0 18px;
}

.yuhua-718 .platform-story-copy strong {
  color: #1b2f25;
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.36;
  max-width: 760px;
}

.yuhua-718 .platform-story-copy > span,
.yuhua-718 .platform-story-brand span {
  color: #5f6e66;
  display: block;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 16px;
}

.yuhua-718 .platform-proof-strip-718 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.yuhua-718 .platform-proof-strip-718 article {
  background: #f7f8f1;
  border: 1px solid rgba(15, 74, 53, 0.08);
  border-radius: 18px;
  padding: 14px;
}

.yuhua-718 .platform-proof-strip-718 b {
  color: #e54b32;
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.yuhua-718 .platform-proof-strip-718 span {
  color: #1b2f25;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.yuhua-718 .platform-story-brand {
  align-content: center;
  display: grid;
  gap: 26px;
}

.yuhua-718 .platform-story-brand img {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(15, 74, 53, 0.07);
  max-height: 130px;
  object-fit: contain;
  padding: 18px;
  width: min(100%, 360px);
}

.yuhua-718 .platform-story-brand p {
  color: #17845d;
  font-weight: 950;
  margin: 0 0 8px;
}

.yuhua-718 .platform-story-brand h3 {
  color: #143c2d;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.22;
  margin: 0;
}

.yuhua-718 .platform-capability-grid-718 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.yuhua-718 .platform-capability-grid-718 article,
.yuhua-718 .why-grid article,
.yuhua-718 .audience-grid article,
.yuhua-718 .delivery-panel article,
.yuhua-718 .platform-system-cards article,
.yuhua-718 .contact-grid article,
.yuhua-718 .growth-timeline article,
.yuhua-718 .vision-metrics article {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.09);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(31, 56, 43, 0.045);
  padding: 20px;
}

.yuhua-718 .platform-capability-grid-718 span {
  align-items: center;
  background: #eaf8ef;
  border-radius: 999px;
  color: #17845d;
  display: inline-flex;
  font-weight: 950;
  height: 36px;
  justify-content: center;
  margin-bottom: 16px;
  width: 52px;
}

.yuhua-718 .platform-capability-grid-718 strong {
  color: #143c2d;
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
}

.yuhua-718 .platform-capability-grid-718 p {
  color: #617169;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.yuhua-718 .official-white-section,
.yuhua-718 .founder-trust,
.yuhua-718 .cooperation-panel,
.yuhua-718 .contact-panel,
.yuhua-718 .feedback-panel,
.yuhua-718 .mini-program-more,
.yuhua-718 .private-benefits {
  border-radius: 28px;
  margin-top: clamp(22px, 3.5vw, 44px);
}

.yuhua-718 .section-title h2,
.yuhua-718 .feedback-panel h2,
.yuhua-718 .founder-copy h2 {
  letter-spacing: 0;
}

.yuhua-718 .section-title span,
.yuhua-718 .official-note,
.yuhua-718 .vision-statement,
.yuhua-718 .founder-copy p {
  color: #5f6e66;
  line-height: 1.8;
}

.yuhua-718 .source-flow-line span,
.yuhua-718 .platform-flow-line span,
.yuhua-718 .channel-table span {
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 56, 43, 0.035);
}

.yuhua-718 .feedback-clean-card {
  background: #fffefa;
  border: 1px solid rgba(15, 74, 53, 0.10);
  color: #143c2d;
}

.yuhua-718 .feedback-panel .standalone-feedback {
  background: #f7f5ee;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(31, 56, 43, 0.04);
}

.yuhua-718 .feedback-panel .feedback-mini-list span {
  background: #fff;
  border: 1px solid rgba(15, 74, 53, 0.10);
  color: #143c2d;
}

@media (max-width: 1080px) {
  .yuhua-718 .platform-story-layout {
    grid-template-columns: 1fr;
  }

  .yuhua-718 .platform-proof-strip-718,
  .yuhua-718 .platform-capability-grid-718 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .yuhua-718 .product-card .content {
    gap: 5px;
    padding: 10px;
  }

  .yuhua-718 .product-card h3 {
    font-size: 14px;
    min-height: 38px;
  }

  .yuhua-718 .product-card .sales-line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .yuhua-718 .product-card .spec-line,
  .yuhua-718 .product-card .price-extra,
  .yuhua-718 .product-card .shipping-line,
  .yuhua-718 .product-card .flower-friend-price {
    display: none;
  }

  .yuhua-718 .product-card .tag {
    font-size: 11px;
    padding: 5px 7px;
  }

  .yuhua-718 .product-card .price {
    font-size: 21px;
  }

  .yuhua-718 .product-card .buy-button {
    min-height: 38px;
  }

  .yuhua-718 .platform-story-718 {
    border-radius: 22px;
    padding: 18px 14px;
  }

  .yuhua-718 .platform-story-copy,
  .yuhua-718 .platform-story-brand {
    border-radius: 20px;
    padding: 18px;
  }

  .yuhua-718 .platform-proof-strip-718,
  .yuhua-718 .platform-capability-grid-718 {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yuhua-718 .platform-capability-grid-718 article {
    padding: 14px;
  }

  .yuhua-718 .platform-capability-grid-718 span {
    height: 32px;
    margin-bottom: 10px;
    width: 42px;
  }

  .yuhua-718 .platform-capability-grid-718 strong {
    font-size: 16px;
  }

  .yuhua-718 .platform-capability-grid-718 p {
    font-size: 13px;
    line-height: 1.58;
  }

  .yuhua-718 .platform-story-brand img {
    max-height: 112px;
    width: 100%;
  }

  .yuhua-718 .official-white-section,
  .yuhua-718 .founder-trust,
  .yuhua-718 .cooperation-panel,
  .yuhua-718 .contact-panel,
  .yuhua-718 .feedback-panel,
  .yuhua-718 .mini-program-more,
  .yuhua-718 .private-benefits {
    border-radius: 22px;
  }
}

/* 7.19 launch polish: trust, conversion, mobile rhythm */
.yuhua-719 .site-header {
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(31, 56, 43, 0.06);
}

.yuhua-719 .mall-logo .logo-badge {
  min-width: 58px;
}

.yuhua-719 .mall-logo img {
  transform: scale(1.08);
}

.yuhua-719 .mall-hero {
  background:
    linear-gradient(112deg, rgba(255, 255, 250, 0.94) 0%, rgba(255, 255, 250, 0.78) 48%, rgba(235, 248, 239, 0.86) 100%),
    url("../yunshe-facility-exterior-20260613.webp") center/cover;
}

.yuhua-719 .mall-hero-copy,
.yuhua-719 .mall-hero-copy > * {
  min-width: 0;
}

.yuhua-719 .mall-hero h1,
.yuhua-719 .hero-subtitle,
.yuhua-719 .hero-slogan,
.yuhua-719 .lead {
  overflow-wrap: anywhere;
}

.yuhua-719 .hero-commerce-panel {
  box-shadow: 0 24px 70px rgba(31, 56, 43, 0.10);
}

.yuhua-719 .hero-product-mini {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.yuhua-719 .hero-product-mini:hover {
  border-color: rgba(17, 120, 78, 0.28);
  box-shadow: 0 16px 36px rgba(31, 56, 43, 0.09);
  transform: translateY(-2px);
}

.yuhua-719 .hero-recent-buyer {
  background: #f7fbf4;
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 16px;
  color: #53655b;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
}

.yuhua-719 .recent-orders-strip {
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 226, 180, 0.36), transparent 28%),
    linear-gradient(135deg, #fffdfa, #f4fbf3);
  border-color: rgba(15, 74, 53, 0.10);
  box-shadow: 0 18px 48px rgba(24, 43, 35, 0.08);
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1.55fr);
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 28px);
  position: relative;
}

.yuhua-719 .recent-orders-strip::after {
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.92));
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 110px;
}

.yuhua-719 .recent-orders-strip .eyebrow {
  color: #177a53;
}

.yuhua-719 .recent-orders-strip h2 {
  font-size: clamp(28px, 3.8vw, 54px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 12px 0 0;
}

.yuhua-719 .recent-order-list {
  align-items: stretch;
  display: flex;
  gap: 14px;
  overflow: visible;
  padding: 0;
  width: max-content;
}

.yuhua-719 .recent-order-list.is-looping {
  animation: yuhuaRecentFlow 26s linear infinite;
}

.yuhua-719 .recent-orders-strip:hover .recent-order-list.is-looping {
  animation-play-state: paused;
}

.yuhua-719 .recent-order-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(24, 43, 35, 0.06);
  min-height: 92px;
  min-width: 320px;
  transform: translateY(calc((var(--i) % 2) * 8px));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yuhua-719 .recent-order-card:hover {
  box-shadow: 0 18px 42px rgba(24, 43, 35, 0.10);
  transform: translateY(-2px);
}

.yuhua-719 .recent-order-card img {
  animation: yuhuaAvatarBounce 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.24s);
  border: 3px solid #ecf9e8;
  height: 54px;
  width: 54px;
}

.yuhua-719 .recent-order-card strong {
  font-size: 16px;
}

.yuhua-719 .recent-order-card span {
  font-size: 14px;
}

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

@keyframes yuhuaRecentFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes yuhuaAvatarBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
  }
}

.yuhua-719 .product-card {
  isolation: isolate;
}

.yuhua-719 .product-card .product-photo {
  background: linear-gradient(135deg, #f5f7ef, #edf6ef);
}

.yuhua-719 .product-card .product-image-loading {
  color: transparent;
  font-size: 0;
  inset: 0;
}

.yuhua-719 .product-card.is-missing-image .product-photo::after {
  background: rgba(255, 255, 250, 0.88);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 999px;
  bottom: 10px;
  color: #53655b;
  content: "实拍图见小程序";
  font-size: 12px;
  font-weight: 800;
  left: 50%;
  padding: 6px 10px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.yuhua-719 .product-card .price {
  color: #e4432f;
}

.yuhua-719 .product-card .buy-button {
  background: linear-gradient(135deg, #166f4c, #103c2e);
}

.yuhua-719 .product-card .buy-button:hover {
  filter: brightness(1.04);
}

.yuhua-719 .mini-commerce-bridge {
  align-items: stretch;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 222, 171, 0.34), transparent 26%),
    linear-gradient(135deg, #123d2d 0%, #0f6c56 52%, #f6fbf5 52%, #f6fbf5 100%);
  border: 1px solid rgba(15, 74, 53, 0.12);
  box-shadow: 0 24px 70px rgba(15, 74, 53, 0.14);
  color: #fff;
  display: grid !important;
  gap: clamp(18px, 4vw, 44px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr) !important;
  overflow: hidden;
  padding: clamp(26px, 4vw, 52px) !important;
  scroll-margin-top: 110px;
}

.yuhua-719 .mini-commerce-copy {
  max-width: 720px;
}

.yuhua-719 .mini-commerce-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.yuhua-719 .mini-commerce-copy h2 {
  color: #fff;
  font-size: clamp(30px, 4.2vw, 58px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 16px;
}

.yuhua-719 .mini-commerce-copy > span {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.8;
  max-width: 620px;
}

.yuhua-719 .mini-commerce-bridge .mini-benefits {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 0;
  padding: 0;
}

.yuhua-719 .mini-commerce-bridge .mini-benefits li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 16px;
}

.yuhua-719 .mini-commerce-bridge .mini-benefits b {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.yuhua-719 .mini-commerce-bridge .mini-benefits small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.yuhua-719 .mini-commerce-panel {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(9, 45, 32, 0.12);
  color: #123d2d;
  display: grid;
  gap: 14px;
  justify-self: end;
  max-width: 380px;
  padding: 18px;
  width: 100%;
}

.yuhua-719 .mini-qr-card {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f3faf5);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 22px;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 18px;
  text-align: center;
}

.yuhua-719 .mini-qr-card img {
  aspect-ratio: 1;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(15, 74, 53, 0.12);
  max-width: 192px;
  width: min(58vw, 192px);
}

.yuhua-719 .mini-qr-card span {
  color: #52645c;
  font-size: 13px;
  font-weight: 800;
}

.yuhua-719 .mini-commerce-panel .mini-program-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.yuhua-719 .mini-commerce-panel .secondary-action {
  background: #fff7f2;
  border: 1px solid rgba(207, 93, 77, 0.18);
  color: #b94d41;
}

.yuhua-719 .private-benefits {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 226, 211, 0.58), transparent 28%),
    linear-gradient(135deg, #fffefa, #f5fbf0);
  border: 1px solid rgba(229, 75, 50, 0.10);
}

.yuhua-719 .private-benefit-copy h2 {
  color: #143c2d;
}

.yuhua-719 .private-benefit-grid article {
  background: #fff;
  border: 1px solid rgba(229, 75, 50, 0.10);
  box-shadow: 0 12px 34px rgba(31, 56, 43, 0.045);
}

.yuhua-719 .platform-story-statement {
  background: #123f31;
  border-radius: 22px;
  color: #fffefa;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.55;
  margin: 18px 0 0;
  padding: 22px 26px;
}

.yuhua-719 .why-grid article,
.yuhua-719 .platform-capability-grid-718 article,
.yuhua-719 .audience-grid article {
  min-height: auto;
}

.yuhua-719 .why-grid article p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.yuhua-719 .detail-actions {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
}

.yuhua-719 .detail-actions .detail-primary {
  background: linear-gradient(135deg, #166f4c, #103c2e);
}

.yuhua-719 .detail-private {
  border-color: rgba(229, 75, 50, 0.22);
  color: #b74730;
}

.yuhua-719 .sku-list button.disabled,
.yuhua-719 .sku-list button:disabled {
  background: #f4f2ec;
  border-color: rgba(20, 60, 45, 0.08);
  color: #9aa49e;
  cursor: not-allowed;
  opacity: .62;
}

.yuhua-719 .product-logistics-card h3,
.yuhua-719 .service-promise-card h3 {
  color: #143c2d;
}

.yuhua-719 .detail-buybar {
  box-shadow: 0 -18px 44px rgba(31, 56, 43, 0.12);
}

.yuhua-719 .cooperation-panel {
  align-items: start;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 222, 171, 0.35), transparent 26%),
    linear-gradient(135deg, #fbfdf7 0%, #ffffff 58%, #f2faf4 100%);
  border: 1px solid rgba(15, 74, 53, 0.10);
  box-shadow: 0 22px 70px rgba(31, 56, 43, 0.07);
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  margin-inline: auto;
  max-width: calc(100% - 32px);
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  width: min(1360px, calc(100% - 32px));
}

.yuhua-719 .cooperation-copy {
  background: #123d2f;
  border-radius: 26px;
  color: #fff;
  min-height: 100%;
  padding: clamp(22px, 2.6vw, 34px);
  position: relative;
}

.yuhua-719 .cooperation-copy::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 18%, transparent 19%),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 14%, transparent 15%);
  background-position: 0 0, 24px 22px;
  background-size: 52px 52px;
  bottom: -60px;
  content: "";
  height: 180px;
  opacity: 0.36;
  position: absolute;
  right: -40px;
  width: 220px;
}

.yuhua-719 .cooperation-copy p {
  color: #9ee8be;
  margin-bottom: 12px;
}

.yuhua-719 .cooperation-copy h2 {
  color: #fff;
  font-size: clamp(32px, 3.2vw, 50px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 360px;
}

.yuhua-719 .cooperation-copy span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 15px;
  line-height: 1.75;
  max-width: 360px;
}

.yuhua-719 .cooperation-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.yuhua-719 .cooperation-chip-row span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 10px 13px;
  width: auto;
}

.yuhua-719 .cooperation-copy .primary-action {
  background: #fff;
  color: #123d2f;
  margin-top: 22px;
  min-height: 48px;
  position: relative;
  z-index: 1;
}

.yuhua-719 .cooperation-types {
  align-content: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yuhua-719 .cooperation-types button {
  align-content: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 74, 53, 0.10);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 56, 43, 0.05);
  display: grid;
  gap: 8px;
  min-height: 162px;
  padding: 16px;
  position: relative;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.yuhua-719 .cooperation-types button:hover {
  border-color: rgba(23, 122, 83, 0.28);
  box-shadow: 0 20px 46px rgba(31, 56, 43, 0.09);
  transform: translateY(-2px);
}

.yuhua-719 .cooperation-types button i {
  align-items: center;
  background: #e9f8ee;
  border-radius: 14px;
  color: #177a53;
  display: inline-flex;
  font-style: normal;
  font-weight: 950;
  height: 30px;
  justify-content: center;
  width: 40px;
}

.yuhua-719 .cooperation-types button strong {
  color: #17251f;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.2;
}

.yuhua-719 .cooperation-types button small {
  color: #66756e;
  font-size: 12px;
  line-height: 1.55;
}

.yuhua-719 .cooperation-types button em {
  color: #33413b;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.55;
}

.yuhua-719 .cooperation-types button b {
  align-self: end;
  color: #e94f45;
  font-size: 13px;
  margin-top: 4px;
}

.yuhua-719 .cooperation-types button.active,
.yuhua-719 .cooperation-types button:focus-visible {
  background: #f2fbf4;
  border-color: rgba(23, 122, 83, 0.30);
}

@media (max-width: 1100px) {
  .yuhua-719 .cooperation-panel {
    grid-template-columns: 1fr;
  }

  .yuhua-719 .cooperation-copy {
    min-height: auto;
  }

  .yuhua-719 .cooperation-copy h2,
  .yuhua-719 .cooperation-copy span {
    max-width: 760px;
  }

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

@media (max-width: 720px) {
  .yuhua-719 .mall-hero {
    min-height: auto;
  }

  .yuhua-719 .mall-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.05;
  }

  .yuhua-719 .hero-slogan,
  .yuhua-719 .lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .yuhua-719 .trust-mini-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    overflow: visible !important;
  }

  .yuhua-719 .trust-mini-list li {
    flex: initial !important;
    width: auto !important;
    min-width: 0 !important;
    justify-content: center;
    text-align: center;
  }

  .yuhua-719 .hero-commerce-panel {
    border-radius: 22px;
    padding: 14px;
  }

  .yuhua-719 .hero-mini-qr,
  .yuhua-719 .hero-platform-entrances {
    display: none;
  }

  .yuhua-719 .hero-product-mini img {
    width: 78px;
  }

  .yuhua-719 .home-shop-section .section-title h2 {
    font-size: 27px;
  }

  .yuhua-719 .mini-commerce-bridge {
    background:
      linear-gradient(180deg, rgba(18, 61, 45, 0.96), rgba(15, 108, 86, 0.92)),
      url("../yunshe-facility-exterior-20260613.webp") center / cover;
    grid-template-columns: 1fr !important;
    padding: 22px !important;
  }

  .yuhua-719 .mini-commerce-copy h2 {
    font-size: 29px;
  }

  .yuhua-719 .mini-commerce-copy > span {
    font-size: 14px;
  }

  .yuhua-719 .mini-commerce-bridge .mini-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
  }

  .yuhua-719 .mini-commerce-bridge .mini-benefits li {
    min-height: auto;
    padding: 12px;
  }

  .yuhua-719 .mini-commerce-bridge .mini-benefits b {
    font-size: 15px;
  }

  .yuhua-719 .mini-commerce-bridge .mini-benefits small {
    font-size: 11px;
  }

  .yuhua-719 .mini-commerce-panel {
    border-radius: 22px;
    max-width: none;
    padding: 14px;
  }

  .yuhua-719 .mini-qr-card {
    grid-template-columns: 96px 1fr;
    justify-items: start;
    text-align: left;
  }

  .yuhua-719 .mini-qr-card img {
    border-radius: 14px;
    width: 96px;
  }

  .yuhua-719 .private-benefits {
    padding: 20px 16px;
  }

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

  .yuhua-719 .private-benefit-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yuhua-719 .private-benefit-grid article {
    padding: 14px;
  }

  .yuhua-719 .private-benefit-grid article span {
    display: none;
  }

  .yuhua-719 .private-benefit-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .yuhua-719 .platform-story-copy h2 {
    font-size: 32px;
  }

  .yuhua-719 .platform-story-copy > span,
  .yuhua-719 .platform-story-brand span {
    font-size: 14px;
    line-height: 1.7;
  }

  .yuhua-719 .platform-story-statement {
    border-radius: 18px;
    font-size: 16px;
    padding: 16px;
  }

  .yuhua-719 .recent-orders-strip {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-inline: 0;
    padding: 16px;
  }

  .yuhua-719 .recent-orders-strip h2 {
    font-size: 30px;
  }

  .yuhua-719 .recent-order-card {
    min-width: 292px;
  }

  .yuhua-719 .cooperation-panel {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .yuhua-719 .cooperation-copy {
    border-radius: 22px;
    min-height: auto;
    padding: 22px;
  }

  .yuhua-719 .cooperation-copy h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .yuhua-719 .cooperation-copy span {
    font-size: 14px;
    line-height: 1.7;
  }

  .yuhua-719 .cooperation-chip-row {
    gap: 8px;
    margin-top: 16px;
  }

  .yuhua-719 .cooperation-chip-row span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .yuhua-719 .cooperation-copy .primary-action {
    margin-top: 18px;
    width: 100%;
  }

  .yuhua-719 .cooperation-types {
    display: flex;
    gap: 10px;
    grid-template-columns: none;
    margin-inline: -2px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .yuhua-719 .cooperation-types button {
    gap: 7px;
    max-width: 260px;
    min-width: 260px;
    min-height: auto;
    padding: 18px;
    scroll-snap-align: start;
  }

  .yuhua-719 .detail-actions {
    grid-template-columns: 1fr;
  }

  .yuhua-719 .product-logistics-grid,
  .yuhua-719 .service-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yuhua-719 .detail-buybar {
    align-items: stretch;
    gap: 10px;
  }

  .yuhua-719 .detail-buybar button {
    min-width: 0;
  }

  .yuhua-719 .product-card.is-missing-image .product-photo::after {
    content: "小程序看图";
    font-size: 11px;
  }
}

/* 7.21 上线前购物车视觉收口：成交链路不允许出现竖排、裁切和信息拥挤 */
body.cart-page-body.yuhua-721 {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 247, 226, .72), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(226, 246, 235, .84), transparent 32%),
    #fffdf8;
}

body.cart-page-body.yuhua-721 .cart-page {
  padding: clamp(28px, 4vw, 54px) clamp(18px, 3vw, 42px) 96px;
}

body.cart-page-body.yuhua-721 .cart-shell {
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid !important;
  gap: clamp(22px, 2.4vw, 34px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  margin: 0 auto;
  max-width: min(1480px, calc(100vw - 44px));
  padding: 0;
}

body.cart-page-body.yuhua-721 .cart-page h1 {
  font-size: clamp(44px, 6.4vw, 92px);
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 24px;
}

body.cart-page-body.yuhua-721 .cart-toolbar {
  align-items: center;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(13, 48, 35, .06);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 16px 18px;
}

body.cart-page-body.yuhua-721 .cart-list {
  display: grid;
  gap: 18px;
}

body.cart-page-body.yuhua-721 .cart-line-item {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(13, 48, 35, .07);
  display: grid !important;
  gap: 18px;
  grid-template-columns: 48px 156px minmax(0, 1fr);
  min-height: 194px;
  overflow: hidden;
  padding: 20px;
}

body.cart-page-body.yuhua-721 .cart-line-check {
  align-items: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

body.cart-page-body.yuhua-721 .cart-line-check span {
  color: #143c2d;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  writing-mode: horizontal-tb;
}

body.cart-page-body.yuhua-721 .cart-product-media {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  height: 156px;
  max-width: 156px;
  min-width: 156px;
  width: 156px;
}

body.cart-page-body.yuhua-721 .cart-item-info {
  align-items: center;
  display: grid !important;
  gap: 14px 22px;
  grid-template-areas:
    "copy price"
    "copy ops";
  grid-template-columns: minmax(260px, 1fr) minmax(178px, 210px);
  min-width: 0;
}

body.cart-page-body.yuhua-721 .cart-item-copy {
  grid-area: copy;
  min-width: 0;
}

body.cart-page-body.yuhua-721 .cart-item-copy h3 {
  color: #17251f;
  font-size: clamp(21px, 1.65vw, 28px);
  letter-spacing: 0;
  line-height: 1.26;
  margin: 0 0 10px;
  max-width: 620px;
  overflow-wrap: break-word;
  white-space: normal;
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

body.cart-page-body.yuhua-721 .cart-sku-line {
  color: #66756e;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 10px;
  max-width: 620px;
  writing-mode: horizontal-tb !important;
}

body.cart-page-body.yuhua-721 .cart-item-copy small,
body.cart-page-body.yuhua-721 .cart-item-copy em {
  background: #fff8ef;
  border: 1px solid rgba(232, 63, 45, .12);
  border-radius: 999px;
  color: #6c7a70;
  display: inline-flex;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.45;
  max-width: 100%;
  padding: 8px 12px;
  writing-mode: horizontal-tb !important;
}

body.cart-page-body.yuhua-721 .cart-line-price {
  grid-area: price;
  justify-self: end;
  min-width: 0;
  text-align: right;
}

body.cart-page-body.yuhua-721 .cart-line-price strong {
  color: #e83f2d;
  display: block;
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

body.cart-page-body.yuhua-721 .cart-line-price span {
  color: #8c968f;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  white-space: nowrap;
}

body.cart-page-body.yuhua-721 .cart-item-ops {
  align-items: stretch;
  display: grid !important;
  gap: 10px;
  grid-area: ops;
  grid-template-columns: 1fr 1fr;
  justify-self: stretch;
  margin-top: 0;
  min-width: 0;
}

body.cart-page-body.yuhua-721 .cart-qty-stepper {
  grid-column: 1 / -1;
  justify-content: space-between;
  min-width: 0;
  width: 100%;
}

body.cart-page-body.yuhua-721 .cart-item-ops > button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  white-space: nowrap;
}

body.cart-page-body.yuhua-721 .cart-line-checkout {
  background: linear-gradient(135deg, #0f6f5d, #0b5f4f);
  box-shadow: 0 12px 28px rgba(15, 111, 93, .18);
}

body.cart-page-body.yuhua-721 .checkout-summary {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(8, 122, 99, .12);
  border-radius: 30px;
  box-shadow: 0 22px 62px rgba(13, 48, 35, .09);
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  position: sticky;
  top: 104px;
}

body.cart-page-body.yuhua-721 .checkout-summary h2 {
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
  margin-bottom: 22px;
}

body.cart-page-body.yuhua-721 .summary-row {
  align-items: center;
  border-bottom: 1px solid rgba(8, 122, 99, .1);
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
}

body.cart-page-body.yuhua-721 .summary-total {
  color: #e83f2d;
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1;
  margin: 24px 0 14px;
  text-align: right;
  white-space: nowrap;
}

body.cart-page-body.yuhua-721 .cart-summary-note {
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.7;
  margin: 18px 0;
  padding: 16px;
}

body.cart-page-body.yuhua-721 .checkout-summary .detail-primary,
body.cart-page-body.yuhua-721 .checkout-summary .secondary-action {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 12px;
  min-height: 54px;
  text-align: center;
  width: 100%;
}

body.cart-page-body.yuhua-721 .checkout-summary .detail-primary[href] {
  background: #fff;
  border: 1px solid rgba(8, 122, 99, .14);
  color: #0f6f5d;
}

@media (max-width: 1180px) {
  body.cart-page-body.yuhua-721 .cart-shell {
    grid-template-columns: 1fr;
    max-width: min(980px, calc(100vw - 36px));
  }

  body.cart-page-body.yuhua-721 .checkout-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  body.cart-page-body.yuhua-721 .cart-page {
    padding-inline: 12px;
  }

  body.cart-page-body.yuhua-721 .cart-page h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  body.cart-page-body.yuhua-721 .cart-toolbar {
    border-radius: 20px;
    padding: 12px;
  }

  body.cart-page-body.yuhua-721 .cart-line-item {
    gap: 12px;
    grid-template-columns: 34px 98px minmax(0, 1fr);
    min-height: auto;
    padding: 14px;
  }

  body.cart-page-body.yuhua-721 .cart-product-media {
    border-radius: 18px;
    height: 98px;
    min-width: 98px;
    width: 98px;
  }

  body.cart-page-body.yuhua-721 .cart-item-info {
    gap: 10px;
    grid-template-areas:
      "copy"
      "price"
      "ops";
    grid-template-columns: 1fr;
  }

  body.cart-page-body.yuhua-721 .cart-item-copy h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  body.cart-page-body.yuhua-721 .cart-sku-line {
    font-size: 13px;
    margin-bottom: 6px;
  }

  body.cart-page-body.yuhua-721 .cart-item-copy small,
  body.cart-page-body.yuhua-721 .cart-item-copy em {
    border-radius: 14px;
    font-size: 12px;
    padding: 7px 9px;
  }

  body.cart-page-body.yuhua-721 .cart-line-price {
    justify-self: start;
    text-align: left;
  }

  body.cart-page-body.yuhua-721 .cart-line-price strong {
    font-size: 28px;
  }

  body.cart-page-body.yuhua-721 .cart-item-ops {
    grid-template-columns: 1fr;
  }

  body.cart-page-body.yuhua-721 .cart-qty-stepper {
    grid-column: auto;
  }
}

/* 7.22 成交链路终检：购物车、确认订单、支付承接统一为上线级电商体验 */
body.yuhua-722.cart-page-body,
body.yuhua-722.checkout-page-body,
body.yuhua-722.pay-page-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 232, 188, .34), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7fbf6 54%, #fff 100%);
  color: #17251f;
}

body.cart-page-body.yuhua-722 .cart-status-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

body.cart-page-body.yuhua-722 .cart-status-row > span {
  background: #eaf7ee;
  border-radius: 999px;
  color: #0f7d58;
  display: inline-flex;
  font-size: 13px;
  font-weight: 820;
  line-height: 1;
  padding: 8px 10px;
}

body.cart-page-body.yuhua-722 .cart-status-row small,
body.cart-page-body.yuhua-722 .cart-status-row em {
  margin: 0;
}

@media (max-width: 760px) {
  body.cart-page-body.yuhua-722 .cart-page {
    padding-bottom: 112px;
  }

  body.cart-page-body.yuhua-722 .checkout-summary {
    bottom: 58px;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 42px rgba(13, 48, 35, .12);
    left: 0;
    padding: 14px 16px;
    position: fixed;
    right: 0;
    top: auto;
    z-index: 88;
  }

  body.cart-page-body.yuhua-722 .checkout-summary h2,
  body.cart-page-body.yuhua-722 .checkout-summary .summary-row,
  body.cart-page-body.yuhua-722 .checkout-summary .cart-summary-note,
  body.cart-page-body.yuhua-722 .checkout-summary .secondary-action {
    display: none;
  }

  body.cart-page-body.yuhua-722 .checkout-summary .summary-total {
    font-size: 24px;
    margin: 0;
    text-align: left;
  }

  body.cart-page-body.yuhua-722 .checkout-summary .detail-primary {
    margin-top: 10px;
    min-height: 48px;
  }
}

body.checkout-page-body.yuhua-722 .checkout-page {
  padding: 42px 24px 120px;
}

body.checkout-page-body.yuhua-722 .checkout-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  margin: 0 auto;
  max-width: min(1480px, calc(100vw - 44px));
}

body.checkout-page-body.yuhua-722 .checkout-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

body.checkout-page-body.yuhua-722 .checkout-title-block,
body.checkout-page-body.yuhua-722 .checkout-login-panel,
body.checkout-page-body.yuhua-722 .order-form,
body.checkout-page-body.yuhua-722 .checkout-product-panel,
body.checkout-page-body.yuhua-722 .logistics-panel,
body.checkout-page-body.yuhua-722 .checkout-benefit-panel,
body.checkout-page-body.yuhua-722 .checkout-summary {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(13, 87, 63, .11);
  border-radius: 30px;
  box-shadow: 0 22px 58px rgba(13, 48, 35, .07);
  overflow: hidden;
}

body.checkout-page-body.yuhua-722 .checkout-title-block {
  padding: clamp(26px, 4vw, 46px);
}

body.checkout-page-body.yuhua-722 .checkout-title-block h1 {
  font-size: clamp(46px, 7vw, 96px);
  letter-spacing: 0;
  line-height: .96;
  margin: 0 0 12px;
}

body.checkout-page-body.yuhua-722 .checkout-title-block p:last-child {
  color: #64736b;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.65;
  margin: 0;
}

body.checkout-page-body.yuhua-722 .checkout-section-heading {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

body.checkout-page-body.yuhua-722 .checkout-section-heading > span {
  align-items: center;
  background: #eaf7ee;
  border-radius: 18px;
  color: #0f7d58;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

body.checkout-page-body.yuhua-722 .checkout-section-heading h2,
body.checkout-page-body.yuhua-722 .logistics-panel h2,
body.checkout-page-body.yuhua-722 .checkout-summary h2 {
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 0 6px;
}

body.checkout-page-body.yuhua-722 .checkout-section-heading p {
  color: #6a776f;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

body.checkout-page-body.yuhua-722 .checkout-login-panel,
body.checkout-page-body.yuhua-722 .order-form,
body.checkout-page-body.yuhua-722 .checkout-product-panel,
body.checkout-page-body.yuhua-722 .logistics-panel,
body.checkout-page-body.yuhua-722 .checkout-benefit-panel {
  padding: clamp(20px, 3vw, 32px);
}

body.checkout-page-body.yuhua-722 .checkout-login-panel {
  align-items: stretch;
  grid-template-columns: minmax(240px, 1.2fr) minmax(260px, .9fr);
}

body.checkout-page-body.yuhua-722 .checkout-private-tip {
  background: #fff7ee;
  border: 1px solid rgba(232, 63, 45, .16);
  border-radius: 22px;
  margin-top: 18px;
  padding: 16px;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip strong,
body.checkout-page-body.yuhua-722 .checkout-private-tip span {
  display: block;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip strong {
  color: #b84231;
  font-size: 17px;
  margin-bottom: 6px;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip span {
  color: #6a776f;
  line-height: 1.7;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip button,
body.checkout-page-body.yuhua-722 .checkout-login-form button,
body.checkout-page-body.yuhua-722 .checkout-mini-card button,
body.checkout-page-body.yuhua-722 .checkout-address-actions button,
body.checkout-page-body.yuhua-722 .benefit-actions button,
body.checkout-page-body.yuhua-722 .checkout-summary-actions button {
  border-radius: 999px;
  min-height: 46px;
}

body.checkout-page-body.yuhua-722 .checkout-login-form {
  background: rgba(242, 248, 243, .78);
  border-radius: 24px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

body.checkout-page-body.yuhua-722 .checkout-login-form input,
body.checkout-page-body.yuhua-722 .order-form input,
body.checkout-page-body.yuhua-722 .order-form textarea {
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .11);
  border-radius: 16px;
  min-height: 50px;
}

body.checkout-page-body.yuhua-722 .checkout-mini-card {
  background: linear-gradient(135deg, #f3fbf4, #fff);
  border: 1px solid rgba(13, 87, 63, .1);
  border-radius: 24px;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: 108px minmax(0, 1fr);
  margin-top: 0;
  padding: 16px;
}

body.checkout-page-body.yuhua-722 .checkout-mini-card img,
body.checkout-page-body.yuhua-722 .checkout-summary-mini img {
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(13, 48, 35, .1);
  height: 108px;
  object-fit: contain;
  width: 108px;
}

body.checkout-page-body.yuhua-722 .checkout-address-actions,
body.checkout-page-body.yuhua-722 .benefit-actions,
body.checkout-page-body.yuhua-722 .checkout-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.checkout-page-body.yuhua-722 .form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

body.checkout-page-body.yuhua-722 .order-form textarea {
  min-height: 96px;
  resize: vertical;
}

body.checkout-page-body.yuhua-722 #submitOrderBtn {
  min-height: 54px;
  width: 100%;
}

body.checkout-page-body.yuhua-722 .checkout-product {
  display: grid;
  gap: 14px;
}

body.checkout-page-body.yuhua-722 .checkout-line-item {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 118px minmax(0, 1fr) minmax(128px, auto);
  padding: 16px;
}

body.checkout-page-body.yuhua-722 .checkout-line-item .cart-product-media {
  border-radius: 22px;
  height: 118px;
  min-width: 118px;
  width: 118px;
}

body.checkout-page-body.yuhua-722 .checkout-item-copy h3 {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.28;
  margin: 0 0 8px;
  word-break: normal;
}

body.checkout-page-body.yuhua-722 .checkout-item-copy p {
  color: #65746c;
  margin: 0 0 10px;
}

body.checkout-page-body.yuhua-722 .checkout-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.checkout-page-body.yuhua-722 .checkout-item-tags span,
body.checkout-page-body.yuhua-722 .benefit-strip span {
  background: #eaf7ee;
  border-radius: 999px;
  color: #0f7d58;
  display: inline-flex;
  font-size: 13px;
  font-weight: 820;
  padding: 7px 10px;
}

body.checkout-page-body.yuhua-722 .checkout-item-price {
  text-align: right;
}

body.checkout-page-body.yuhua-722 .checkout-item-price span {
  color: #7b8780;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

body.checkout-page-body.yuhua-722 .checkout-item-price strong {
  color: #e83f2d;
  font-size: clamp(24px, 2vw, 34px);
}

body.checkout-page-body.yuhua-722 .logistics-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.checkout-page-body.yuhua-722 .logistics-summary div,
body.checkout-page-body.yuhua-722 .logistics-empty,
body.checkout-page-body.yuhua-722 .logistics-rule-card {
  background: #f6faf4;
  border: 1px solid rgba(13, 87, 63, .1);
  border-radius: 18px;
  padding: 14px;
}

body.checkout-page-body.yuhua-722 .logistics-summary span,
body.checkout-page-body.yuhua-722 .logistics-rule-card span {
  color: #6a776f;
  display: block;
  line-height: 1.6;
}

body.checkout-page-body.yuhua-722 .logistics-summary b,
body.checkout-page-body.yuhua-722 .logistics-rule-card strong {
  color: #17251f;
  display: block;
  margin-top: 4px;
}

body.checkout-page-body.yuhua-722 .logistics-options {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

body.checkout-page-body.yuhua-722 .logistics-options button {
  border-radius: 18px;
  text-align: left;
}

body.checkout-page-body.yuhua-722 .logistics-note,
body.checkout-page-body.yuhua-722 .logistics-flags {
  color: #6a776f;
  line-height: 1.7;
}

body.checkout-page-body.yuhua-722 .benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

body.checkout-page-body.yuhua-722 .checkout-summary {
  overflow: visible;
  padding: 28px;
  position: sticky;
  top: 104px;
}

body.checkout-page-body.yuhua-722 .summary-row {
  align-items: center;
  border-bottom: 1px solid rgba(13, 87, 63, .09);
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}

body.checkout-page-body.yuhua-722 .summary-total {
  color: #e83f2d;
  font-size: clamp(38px, 3vw, 56px);
  line-height: 1;
  margin: 24px 0;
  text-align: right;
}

body.checkout-page-body.yuhua-722 .checkout-summary-mini {
  align-items: center;
  background: #f5fbf4;
  border: 1px solid rgba(13, 87, 63, .1);
  border-radius: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: 96px minmax(0, 1fr);
  margin: 16px 0;
  padding: 14px;
}

body.checkout-page-body.yuhua-722 .checkout-summary-mini img {
  height: 96px;
  width: 96px;
}

body.checkout-page-body.yuhua-722 .checkout-summary-mini strong,
body.checkout-page-body.yuhua-722 .checkout-summary-mini span {
  display: block;
}

body.checkout-page-body.yuhua-722 .checkout-summary-mini span {
  color: #6a776f;
  line-height: 1.55;
}

body.checkout-page-body.yuhua-722 .checkout-summary-actions {
  display: grid;
  grid-template-columns: 1fr;
}

body.checkout-page-body.yuhua-722 .checkout-paybar {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid rgba(13, 87, 63, .1);
  bottom: 0;
  box-shadow: 0 -14px 38px rgba(13, 48, 35, .09);
  display: none;
  gap: 12px;
  left: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 90;
}

body.checkout-page-body.yuhua-722 .checkout-paybar div {
  flex: 1;
  min-width: 0;
}

body.checkout-page-body.yuhua-722 .checkout-paybar span,
body.checkout-page-body.yuhua-722 .checkout-paybar strong {
  display: block;
}

body.checkout-page-body.yuhua-722 .checkout-paybar strong {
  color: #e83f2d;
  font-size: 22px;
}

body.checkout-page-body.yuhua-722 .checkout-paybar button {
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 16px;
  white-space: nowrap;
}

body.pay-page-body.yuhua-722 .pay-page {
  padding: 48px 24px 110px;
}

body.pay-page-body.yuhua-722 .pay-card.pay-bridge-card {
  align-items: stretch;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(13, 87, 63, .12);
  border-radius: 34px;
  box-shadow: 0 26px 68px rgba(13, 48, 35, .08);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  margin: 0 auto;
  max-width: min(1180px, calc(100vw - 44px));
  padding: clamp(24px, 4vw, 44px);
}

body.pay-page-body.yuhua-722 .pay-copy h1 {
  font-size: clamp(46px, 6.8vw, 86px);
  line-height: .98;
  margin: 0 0 16px;
}

body.pay-page-body.yuhua-722 .pay-copy .desc,
body.pay-page-body.yuhua-722 .pay-env {
  color: #64736b;
  font-size: 17px;
  line-height: 1.75;
}

body.pay-page-body.yuhua-722 .pay-honest-note {
  background: #fff7ee;
  border: 1px solid rgba(232, 63, 45, .16);
  border-radius: 22px;
  margin: 22px 0;
  padding: 18px;
}

body.pay-page-body.yuhua-722 .pay-honest-note strong,
body.pay-page-body.yuhua-722 .pay-honest-note span {
  display: block;
}

body.pay-page-body.yuhua-722 .pay-honest-note span {
  color: #6a776f;
  line-height: 1.65;
  margin-top: 6px;
}

body.pay-page-body.yuhua-722 .pay-actions,
body.pay-page-body.yuhua-722 .pay-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.pay-page-body.yuhua-722 .pay-actions button,
body.pay-page-body.yuhua-722 .pay-actions a,
body.pay-page-body.yuhua-722 .pay-fallback-actions button,
body.pay-page-body.yuhua-722 .pay-fallback-actions a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  text-decoration: none;
}

body.pay-page-body.yuhua-722 .pay-fallback {
  background: linear-gradient(180deg, #f3fbf4, #fff);
  border: 1px solid rgba(13, 87, 63, .12);
  border-radius: 28px;
  box-shadow: none;
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 22px;
  text-align: center;
}

body.pay-page-body.yuhua-722 .pay-fallback strong {
  font-size: 24px;
}

body.pay-page-body.yuhua-722 .pay-fallback p {
  color: #66756e;
  line-height: 1.7;
}

body.pay-page-body.yuhua-722 .pay-fallback img {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(13, 48, 35, .12);
  height: min(280px, 60vw);
  margin: 16px 0;
  object-fit: contain;
  padding: 12px;
  width: min(280px, 60vw);
}

@media (max-width: 980px) {
  body.checkout-page-body.yuhua-722 .checkout-shell,
  body.pay-page-body.yuhua-722 .pay-card.pay-bridge-card {
    grid-template-columns: 1fr;
    max-width: min(760px, calc(100vw - 28px));
  }

  body.checkout-page-body.yuhua-722 .checkout-summary {
    position: static;
  }

  body.checkout-page-body.yuhua-722 .checkout-login-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.checkout-page-body.yuhua-722 .checkout-page,
  body.pay-page-body.yuhua-722 .pay-page {
    padding: 18px 12px 138px;
  }

  body.checkout-page-body.yuhua-722 .checkout-title-block,
  body.checkout-page-body.yuhua-722 .checkout-login-panel,
  body.checkout-page-body.yuhua-722 .order-form,
  body.checkout-page-body.yuhua-722 .checkout-product-panel,
  body.checkout-page-body.yuhua-722 .logistics-panel,
  body.checkout-page-body.yuhua-722 .checkout-benefit-panel,
  body.checkout-page-body.yuhua-722 .checkout-summary,
  body.pay-page-body.yuhua-722 .pay-card.pay-bridge-card {
    border-radius: 24px;
    padding: 18px;
  }

  body.checkout-page-body.yuhua-722 .checkout-title-block h1,
  body.pay-page-body.yuhua-722 .pay-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  body.checkout-page-body.yuhua-722 .form-grid,
  body.checkout-page-body.yuhua-722 .logistics-summary,
  body.checkout-page-body.yuhua-722 .checkout-line-item,
  body.checkout-page-body.yuhua-722 .checkout-mini-card,
  body.checkout-page-body.yuhua-722 .checkout-summary-mini {
    grid-template-columns: 1fr;
  }

  body.checkout-page-body.yuhua-722 .checkout-line-item {
    align-items: start;
  }

  body.checkout-page-body.yuhua-722 .checkout-line-item .cart-product-media {
    height: auto;
    min-width: 0;
    width: 100%;
  }

  body.checkout-page-body.yuhua-722 .checkout-line-item .cart-product-media::before {
    content: "";
    display: block;
    padding-top: 72%;
  }

  body.checkout-page-body.yuhua-722 .checkout-line-item .cart-product-media img,
  body.checkout-page-body.yuhua-722 .checkout-line-item .cart-product-fallback {
    inset: 0;
    position: absolute;
  }

  body.checkout-page-body.yuhua-722 .checkout-item-price {
    text-align: left;
  }

  body.checkout-page-body.yuhua-722 .checkout-paybar {
    display: flex;
  }

  body.checkout-page-body.yuhua-722 .checkout-paybar button:last-child {
    display: none;
  }

  body.pay-page-body.yuhua-722 .pay-actions,
  body.pay-page-body.yuhua-722 .pay-fallback-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* 7.22 cache-bust final: mobile checkout should behave like a mini-program order sheet. */
@media (max-width: 760px) {
  body.cart-page-body.yuhua-722 {
    padding-bottom: 168px;
  }

  body.cart-page-body.yuhua-722 #cartSummary.checkout-summary {
    background: rgba(255, 255, 255, .98);
    border-radius: 22px 22px 0 0;
    bottom: 0 !important;
    box-shadow: 0 -18px 46px rgba(13, 48, 35, .13);
    left: 0 !important;
    max-width: none;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    position: fixed !important;
    right: 0 !important;
    top: auto !important;
    width: auto;
    z-index: 120;
  }

  body.cart-page-body.yuhua-722 #cartSummary.checkout-summary .summary-total {
    color: #e83f2d;
    font-size: 24px;
    line-height: 1;
    margin: 0 0 10px;
    text-align: left;
  }

  body.cart-page-body.yuhua-722 #cartSummary.checkout-summary .detail-primary {
    margin: 0;
    min-height: 48px;
  }

  body.checkout-page-body.yuhua-722 .checkout-product,
  body.checkout-page-body.yuhua-722 .checkout-line-item,
  body.checkout-page-body.yuhua-722 .checkout-item-copy,
  body.checkout-page-body.yuhua-722 .checkout-item-price {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  body.checkout-page-body.yuhua-722 .checkout-shell,
  body.checkout-page-body.yuhua-722 .checkout-main {
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 !important;
    width: 100%;
  }

  body.checkout-page-body.yuhua-722 .checkout-product {
    padding: 0 !important;
  }

  body.checkout-page-body.yuhua-722 .checkout-title-block,
  body.checkout-page-body.yuhua-722 .checkout-login-panel,
  body.checkout-page-body.yuhua-722 .order-form,
  body.checkout-page-body.yuhua-722 .checkout-product-panel,
  body.checkout-page-body.yuhua-722 .logistics-panel,
  body.checkout-page-body.yuhua-722 .checkout-benefit-panel,
  body.checkout-page-body.yuhua-722 .checkout-summary {
    width: 100%;
  }

  body.checkout-page-body.yuhua-722 .checkout-line-item {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.checkout-page-body.yuhua-722 .checkout-item-copy h3,
  body.checkout-page-body.yuhua-722 .checkout-item-copy p,
  body.checkout-page-body.yuhua-722 .checkout-item-price span,
  body.checkout-page-body.yuhua-722 .checkout-item-price strong {
    white-space: normal;
    word-break: normal;
    writing-mode: horizontal-tb !important;
  }

  body.checkout-page-body.yuhua-722 .checkout-item-price strong {
    align-items: baseline;
    display: inline-flex;
    gap: 6px;
  }

  body.checkout-page-body.yuhua-722 .checkout-item-price small {
    color: #7b8780;
    font-size: 13px;
  }
}

/* 7.22.1 购物车小商品卡片：防止桌面宽度下商品信息被挤成竖排 */
body.cart-page-body.yuhua-722 .cart-line-item.cart-product-card {
  align-items: center;
  display: grid !important;
  gap: 16px;
  grid-template-columns: 42px minmax(128px, 156px) minmax(0, 1fr) minmax(190px, 230px);
  min-height: 176px;
  overflow: visible;
  padding: 18px;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-line-check {
  min-width: 42px;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-product-media {
  border-radius: 22px;
  height: 140px;
  min-width: 140px;
  width: 140px;
}

body.cart-page-body.yuhua-722 .cart-card-detail.cart-item-info {
  display: block !important;
  min-width: 0;
}

body.cart-page-body.yuhua-722 .cart-card-purchase {
  align-self: stretch;
  display: grid;
  gap: 12px;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-item-copy,
body.cart-page-body.yuhua-722 .cart-product-card .cart-item-copy h3,
body.cart-page-body.yuhua-722 .cart-product-card .cart-sku-line,
body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row,
body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row > span,
body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row small,
body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row em,
body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price,
body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price strong,
body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price span,
body.cart-page-body.yuhua-722 .cart-product-card .cart-item-ops,
body.cart-page-body.yuhua-722 .cart-product-card .cart-item-ops button {
  letter-spacing: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-item-copy h3 {
  display: -webkit-box;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.28;
  margin: 0 0 8px;
  max-width: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-sku-line {
  color: #64736b;
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 10px;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row {
  gap: 8px;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row small,
body.cart-page-body.yuhua-722 .cart-product-card .cart-status-row em {
  border-radius: 14px;
  line-height: 1.45;
  max-width: 100%;
  padding: 7px 10px;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price {
  justify-self: stretch;
  text-align: right;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price strong {
  color: #e83f2d;
  display: block;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price span {
  color: #87938d;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  white-space: nowrap;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-item-ops {
  align-content: end;
  display: grid !important;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-qty-stepper {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-item-ops > button {
  min-height: 44px;
  padding-inline: 12px;
}

body.cart-page-body.yuhua-722 .cart-product-card .cart-line-checkout {
  background: linear-gradient(135deg, #0f7d58, #0a5d4e);
  color: #fff;
}

body.cart-page-body.yuhua-722 .cart-summary-note {
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

/* 7.22.1 确认订单：商品清单、登录、地址识别按正式订单页重新排版 */
body.checkout-page-body.yuhua-722 .checkout-login-panel {
  align-items: start;
  display: grid !important;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

body.checkout-page-body.yuhua-722 .checkout-login-form {
  align-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.checkout-page-body.yuhua-722 .checkout-login-form input,
body.checkout-page-body.yuhua-722 .checkout-login-form button {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

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

body.checkout-page-body.yuhua-722 .checkout-address-parser {
  background: linear-gradient(135deg, rgba(232, 248, 238, .88), rgba(255, 252, 244, .92));
  border: 1px solid rgba(13, 87, 63, .1);
  border-radius: 22px;
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
}

body.checkout-page-body.yuhua-722 .address-parser-copy {
  display: grid;
  gap: 4px;
}

body.checkout-page-body.yuhua-722 .address-parser-copy strong {
  color: #143c2d;
  font-size: 18px;
}

body.checkout-page-body.yuhua-722 .address-parser-copy span {
  color: #65746c;
  font-size: 14px;
  line-height: 1.6;
}

body.checkout-page-body.yuhua-722 #addressPasteInput {
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .12);
  border-radius: 18px;
  box-sizing: border-box;
  min-height: 94px;
  padding: 14px 16px;
  resize: vertical;
  width: 100%;
}

body.checkout-page-body.yuhua-722 .address-parser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.checkout-page-body.yuhua-722 .address-parser-actions button,
body.checkout-page-body.yuhua-722 .address-parser-actions label {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .12);
  border-radius: 999px;
  color: #0f6f5d;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

body.checkout-page-body.yuhua-722 .address-parser-actions button {
  background: linear-gradient(135deg, #0f7d58, #0a5d4e);
  border-color: transparent;
  color: #fff;
}

body.checkout-page-body.yuhua-722 .address-parser-actions input[type="file"] {
  display: none;
}

body.checkout-page-body.yuhua-722 .form-tip[data-state="success"] {
  color: #0f7d58;
}

body.checkout-page-body.yuhua-722 .form-tip[data-state="warn"] {
  color: #b84231;
}

body.checkout-page-body.yuhua-722 .form-tip[data-state="info"] {
  color: #53645b;
}

body.checkout-page-body.yuhua-722 .checkout-line-item.checkout-order-product-card {
  align-items: center;
  background: linear-gradient(135deg, #fff, #fbfdf8);
  border: 1px solid rgba(13, 87, 63, .1);
  border-radius: 24px;
  display: grid !important;
  gap: 14px;
  grid-template-columns: 96px minmax(0, 1fr) minmax(118px, 148px);
  padding: 14px;
}

body.checkout-page-body.yuhua-722 .checkout-order-product-card .cart-product-media {
  border-radius: 18px;
  height: 96px;
  min-width: 96px;
  width: 96px;
}

body.checkout-page-body.yuhua-722 .checkout-product-copy {
  min-width: 0;
}

body.checkout-page-body.yuhua-722 .checkout-product-title-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-width: 0;
}

body.checkout-page-body.yuhua-722 .checkout-product-title-row h3 {
  display: -webkit-box;
  flex: 1;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body.checkout-page-body.yuhua-722 .checkout-product-title-row > span {
  background: #eaf7ee;
  border-radius: 999px;
  color: #0f7d58;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 7px 9px;
  white-space: nowrap;
}

body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-price {
  text-align: right;
}

body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-price strong {
  align-items: baseline;
  display: inline-flex;
  gap: 6px;
  justify-content: flex-end;
  white-space: nowrap;
}

body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-copy,
body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-copy h3,
body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-copy p,
body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-tags span,
body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-price,
body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-price span,
body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-price strong {
  letter-spacing: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

@media (max-width: 1280px) {
  body.checkout-page-body.yuhua-722 .checkout-shell {
    grid-template-columns: 1fr;
    max-width: min(900px, calc(100vw - 32px));
  }

  body.checkout-page-body.yuhua-722 .checkout-summary {
    position: static;
  }
}

@media (max-width: 1180px) {
  body.cart-page-body.yuhua-722 .cart-line-item.cart-product-card {
    grid-template-columns: 42px minmax(124px, 144px) minmax(0, 1fr);
  }

  body.cart-page-body.yuhua-722 .cart-card-purchase {
    align-items: center;
    grid-column: 2 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
    grid-template-rows: auto;
  }

  body.cart-page-body.yuhua-722 .cart-product-card .cart-item-ops {
    align-content: center;
  }

  body.checkout-page-body.yuhua-722 .checkout-login-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.cart-page-body.yuhua-722 .cart-line-item.cart-product-card {
    border-radius: 22px;
    gap: 12px;
    grid-template-columns: 34px 96px minmax(0, 1fr);
    padding: 14px;
  }

  body.cart-page-body.yuhua-722 .cart-product-card .cart-product-media {
    border-radius: 18px;
    height: 96px;
    min-width: 96px;
    width: 96px;
  }

  body.cart-page-body.yuhua-722 .cart-card-purchase {
    align-items: stretch;
    grid-column: 3 / -1;
    grid-template-columns: 1fr;
  }

  body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price {
    text-align: left;
  }

  body.cart-page-body.yuhua-722 .cart-product-card .cart-line-price strong {
    font-size: 28px;
  }

  body.cart-page-body.yuhua-722 .cart-product-card .cart-item-ops {
    grid-template-columns: 1fr;
  }

  body.checkout-page-body.yuhua-722 .checkout-login-form,
  body.checkout-page-body.yuhua-722 .checkout-line-item.checkout-order-product-card {
    grid-template-columns: 1fr;
  }

  body.checkout-page-body.yuhua-722 .checkout-order-product-card .cart-product-media {
    aspect-ratio: 4 / 3;
    height: auto;
    min-width: 0;
    width: 100%;
  }

  body.checkout-page-body.yuhua-722 .checkout-product-title-row {
    display: grid;
    gap: 8px;
  }

  body.checkout-page-body.yuhua-722 .checkout-order-product-card .checkout-item-price {
    text-align: left;
  }

  body.checkout-page-body.yuhua-722 .address-parser-actions,
  body.checkout-page-body.yuhua-722 .checkout-address-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* 7.22.1 订单页最终断点：默认舒适单列，超宽屏再启用右侧金额卡 */
body.checkout-page-body.yuhua-722 .checkout-shell {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: min(900px, calc(100vw - 32px)) !important;
}

body.checkout-page-body.yuhua-722 .checkout-summary {
  position: static !important;
}

@media (min-width: 1281px) {
  body.checkout-page-body.yuhua-722 .checkout-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px) !important;
    max-width: min(1480px, calc(100vw - 44px)) !important;
  }

body.checkout-page-body.yuhua-722 .checkout-summary {
    position: sticky !important;
    top: 104px;
  }
}

/* 7.22.4 上线前 UI 收口：理由卡、服务对象、合作联系和结算福利组件 */
.yuhua-722 .why-grid {
  align-items: stretch;
}

.yuhua-722 .why-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 253, 247, .94)),
    radial-gradient(circle at 88% 12%, rgba(244, 204, 118, .22), transparent 30%);
  border: 1px solid rgba(13, 87, 63, .12);
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(13, 48, 35, .065);
  display: grid;
  gap: 12px;
  min-height: 260px;
  overflow: hidden;
  padding: clamp(22px, 2vw, 30px);
  position: relative;
}

.yuhua-722 .why-grid article::before {
  background: linear-gradient(180deg, rgba(17, 122, 82, .18), transparent);
  border-radius: 999px;
  content: "";
  height: 120px;
  opacity: .7;
  position: absolute;
  right: -44px;
  top: -54px;
  width: 120px;
}

.yuhua-722 .why-grid article span {
  align-items: center;
  background: #e9f8ee;
  border: 1px solid rgba(20, 128, 84, .14);
  border-radius: 18px;
  color: #128052;
  display: inline-flex;
  font-size: 18px;
  font-weight: 950;
  height: 50px;
  justify-content: center;
  position: relative;
  width: 58px;
  z-index: 1;
}

.yuhua-722 .why-grid article em {
  color: #b98732;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 28px;
  z-index: 1;
}

.yuhua-722 .why-grid article strong {
  color: #113328;
  font-size: clamp(23px, 1.9vw, 31px);
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.yuhua-722 .why-grid article p {
  -webkit-line-clamp: unset !important;
  color: #627168;
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
  max-width: 28em;
  position: relative;
  z-index: 1;
}

.yuhua-722 .why-grid article small {
  align-self: end;
  background: rgba(18, 128, 82, .08);
  border: 1px solid rgba(18, 128, 82, .10);
  border-radius: 999px;
  color: #126f4b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  line-height: 1;
  padding: 10px 13px;
  position: relative;
  z-index: 1;
}

.yuhua-722 .audience-grid {
  gap: clamp(16px, 1.7vw, 22px);
}

.yuhua-722 .audience-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(250, 253, 248, .95));
  border: 1px solid rgba(13, 87, 63, .12);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(13, 48, 35, .06);
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto 1fr auto;
  min-height: 238px;
  overflow: hidden;
  padding: clamp(22px, 2vw, 30px);
  position: relative;
}

.yuhua-722 .audience-grid article::after {
  background: linear-gradient(135deg, rgba(15, 126, 83, .12), transparent 62%);
  content: "";
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .18s ease;
  width: 42%;
}

.yuhua-722 .audience-grid article:hover::after {
  opacity: 1;
}

.yuhua-722 .audience-grid article > small {
  background: #edf9f0;
  border-radius: 999px;
  color: #148153;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  justify-self: start;
  line-height: 1;
  padding: 9px 12px;
}

.yuhua-722 .audience-grid strong {
  color: #112f26;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
}

.yuhua-722 .audience-grid span {
  color: #63736a;
  font-size: 16px;
  line-height: 1.72;
}

.yuhua-722 .audience-card-foot {
  align-items: center;
  border-top: 1px solid rgba(13, 87, 63, .09);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.yuhua-722 .audience-card-foot em {
  color: #87928b;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.yuhua-722 .audience-card-foot a,
.yuhua-722 .audience-card-foot button {
  align-items: center;
  background: #123d2f;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  white-space: nowrap;
}

.yuhua-722 .audience-card-foot button[data-open-private] {
  background: #fff4ee;
  color: #c54d35;
}

.yuhua-722 .cooperation-contact-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.yuhua-722 .cooperation-contact-card small {
  color: #9ee8be;
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 6px;
}

.yuhua-722 .cooperation-contact-card strong {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.yuhua-722 .cooperation-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yuhua-722 .cooperation-contact-meta span {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 10px;
  width: auto;
}

.yuhua-722 .cooperation-action-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.yuhua-722 .cooperation-copy .cooperation-action-row .primary-action,
.yuhua-722 .cooperation-action-row .secondary-action {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 0;
  min-height: 48px;
  width: 100%;
}

.yuhua-722 .cooperation-action-row .secondary-action {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip {
  align-items: center;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 222, 171, .38), transparent 34%),
    linear-gradient(135deg, #fff8ee, #f4fbf1);
  border: 1px solid rgba(232, 63, 45, .13);
  border-radius: 24px;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-top: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip::after {
  background: linear-gradient(135deg, rgba(232, 63, 45, .12), rgba(18, 128, 82, .12));
  border-radius: 999px;
  content: "";
  height: 120px;
  position: absolute;
  right: -46px;
  top: -62px;
  width: 120px;
}

body.checkout-page-body.yuhua-722 .private-tip-copy {
  min-width: 0;
  position: relative;
  z-index: 1;
}

body.checkout-page-body.yuhua-722 .private-tip-copy small {
  color: #c54d35;
  display: block;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip strong {
  color: #9f3529;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.25;
  margin-bottom: 8px;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip span {
  color: #69766e;
  font-size: 15px;
  line-height: 1.65;
}

body.checkout-page-body.yuhua-722 .private-tip-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

body.checkout-page-body.yuhua-722 .private-tip-benefits span {
  background: #fff;
  border: 1px solid rgba(232, 63, 45, .12);
  border-radius: 999px;
  color: #c54d35;
  display: inline-flex !important;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  padding: 9px 12px;
}

body.checkout-page-body.yuhua-722 .checkout-private-tip button {
  background: #123d2f;
  color: #fff;
  min-width: 160px;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  body.checkout-page-body.yuhua-722 .checkout-private-tip {
    grid-template-columns: 1fr;
  }

  body.checkout-page-body.yuhua-722 .private-tip-benefits {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .yuhua-722 .why-grid article,
  .yuhua-722 .audience-grid article {
    border-radius: 22px;
    min-height: auto;
    padding: 20px;
  }

  .yuhua-722 .audience-card-foot {
    align-items: stretch;
    display: grid;
  }

  .yuhua-722 .audience-card-foot a,
  .yuhua-722 .audience-card-foot button {
    width: 100%;
  }

  .yuhua-722 .cooperation-contact-card {
    border-radius: 20px;
  }
}

/* 7.23 小程序订单清单承接：固定码不再孤立展示，先把本页商品清单整理给用户。 */
body.checkout-page-body.yuhua-723 .checkout-handoff-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 225, 188, .55), transparent 26%),
    linear-gradient(135deg, #f4fbf4 0%, #fffaf1 100%);
  border-color: rgba(13, 87, 63, .16);
  box-shadow: 0 18px 42px rgba(13, 48, 35, .08);
  gap: 16px;
  grid-template-columns: 102px minmax(0, 1fr);
  padding: 16px;
}

body.checkout-page-body.yuhua-723 .checkout-handoff-card img {
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .08);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(13, 48, 35, .12);
  height: 102px;
  object-fit: contain;
  padding: 8px;
  width: 102px;
}

body.checkout-page-body.yuhua-723 .handoff-copy {
  min-width: 0;
}

body.checkout-page-body.yuhua-723 .handoff-copy small,
body.checkout-page-body.yuhua-723 .handoff-copy strong,
body.checkout-page-body.yuhua-723 .handoff-copy span,
body.checkout-page-body.yuhua-723 .handoff-copy em {
  display: block;
  letter-spacing: 0;
  white-space: normal;
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

body.checkout-page-body.yuhua-723 .handoff-copy small {
  color: #0f7d58;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 4px;
}

body.checkout-page-body.yuhua-723 .handoff-copy strong {
  color: #143c2d;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
}

body.checkout-page-body.yuhua-723 .handoff-copy span {
  color: #64736b;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 7px;
}

body.checkout-page-body.yuhua-723 .handoff-copy em,
body.checkout-page-body.yuhua-723 .mini-handoff-code {
  background: rgba(15, 125, 88, .1);
  border-radius: 999px;
  color: #0f7d58;
  display: inline-flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-top: 8px;
  padding: 6px 9px;
  width: fit-content;
}

body.checkout-page-body.yuhua-723 .checkout-handoff-list,
body.checkout-page-body.yuhua-723 .mini-handoff-list {
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .09);
  border-radius: 18px;
  display: grid;
  gap: 0;
  margin: 10px 0 14px;
  overflow: hidden;
}

body.checkout-page-body.yuhua-723 .handoff-list-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 12px;
}

body.checkout-page-body.yuhua-723 .handoff-list-row + .handoff-list-row {
  border-top: 1px solid rgba(13, 87, 63, .07);
}

body.checkout-page-body.yuhua-723 .handoff-list-row span,
body.checkout-page-body.yuhua-723 .handoff-list-row b {
  letter-spacing: 0;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

body.checkout-page-body.yuhua-723 .handoff-list-row span {
  color: #35453d;
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.checkout-page-body.yuhua-723 .handoff-list-row b {
  color: #143c2d;
  flex: 0 0 auto;
  font-size: 13px;
}

body.checkout-page-body.yuhua-723 .handoff-list-row.is-more {
  background: #f8fbf6;
}

body.checkout-page-body.yuhua-723 .checkout-summary-actions {
  gap: 10px;
}

body.checkout-page-body.yuhua-723 .checkout-summary-actions .secondary-action {
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .14);
  color: #0f7d58;
}

body.checkout-page-body.yuhua-723 .mini-program-modal .modal-panel {
  max-width: min(420px, calc(100vw - 32px));
}

body.checkout-page-body.yuhua-723 .mini-handoff-detail {
  background: linear-gradient(135deg, #f4fbf4, #fff);
  border: 1px solid rgba(13, 87, 63, .1);
  border-radius: 20px;
  margin-top: 14px;
  padding: 14px;
  text-align: left;
  width: 100%;
}

body.checkout-page-body.yuhua-723 .mini-handoff-header small,
body.checkout-page-body.yuhua-723 .mini-handoff-header strong {
  display: block;
  letter-spacing: 0;
  word-break: normal;
  writing-mode: horizontal-tb !important;
}

body.checkout-page-body.yuhua-723 .mini-handoff-header small {
  color: #0f7d58;
  font-weight: 950;
}

body.checkout-page-body.yuhua-723 .mini-handoff-header strong {
  color: #143c2d;
  font-size: 20px;
  margin-top: 4px;
}

body.checkout-page-body.yuhua-723 .modal-secondary {
  background: #fff;
  border: 1px solid rgba(13, 87, 63, .14);
  border-radius: 999px;
  color: #0f7d58;
  font-weight: 950;
  margin-top: 12px;
  min-height: 46px;
  padding: 12px 18px;
  width: 100%;
}

@media (max-width: 760px) {
  body.checkout-page-body.yuhua-723 .checkout-handoff-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  body.checkout-page-body.yuhua-723 .checkout-handoff-card img {
    height: 88px;
    width: 88px;
  }

  body.checkout-page-body.yuhua-723 .handoff-list-row {
    padding: 9px 10px;
  }
}
