body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", ui-sans-serif, system-ui, sans-serif;
}

.wbm-page-shell {
  padding-top: 5rem;
}

.wbm-section {
  padding: 5rem 0;
}

.wbm-hero {
  --wbm-hero-height: 25rem;
  position: relative;
  min-height: var(--wbm-hero-height);
  overflow: hidden;
}

.wbm-slider {
  position: relative;
  width: 100%;
  min-height: inherit;
  height: 100%;
}

.wbm-slide {
  position: absolute;
  inset: 0;
  min-height: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.wbm-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.wbm-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wbm-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.12) 100%);
}

.wbm-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.wbm-slider-control:hover {
  background: rgba(255, 255, 255, 0.4);
}

.wbm-slider-control.prev {
  left: 1rem;
}

.wbm-slider-control.next {
  right: 1rem;
}

.wbm-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.wbm-slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wbm-slider-dot.is-active {
  width: 2rem;
  background: #fff;
}

.wbm-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.wbm-prose {
  color: #364153;
  line-height: 1.85;
}

.wbm-prose h2,
.wbm-prose h3,
.wbm-prose h4 {
  color: #101828;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.wbm-prose p,
.wbm-prose ul,
.wbm-prose ol {
  margin-bottom: 1rem;
}

.wbm-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem auto;
}

.wbm-article-shell {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.wbm-article-cover {
  width: min(100%, 46rem);
  margin-left: auto;
  margin-right: auto;
}

.wbm-article-cover-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34rem;
  object-fit: cover;
}

.wbm-article-content {
  width: min(100%, 46rem);
  margin: 0 auto;
}

.wbm-about-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.wbm-about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.wbm-about-copy p {
  margin: 0;
}

.wbm-about-highlights {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.wbm-about-highlight {
  padding: 1.5rem;
  border: 1px solid #fed7aa;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.wbm-about-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #ffedd5 0%, #ffe4e6 100%);
  color: #ea580c;
}

.wbm-about-highlight-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.wbm-about-highlight h3 {
  margin: 0 0 0.5rem;
  color: #101828;
  font-size: 1.05rem;
  font-weight: 700;
}

.wbm-about-highlight p {
  margin: 0;
  color: #6a7282;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.wbm-about-media-wrap {
  min-width: 0;
}

.wbm-about-media {
  width: min(100%, 34rem);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #ffedd5 0%, #fce7f3 55%, #fed7aa 100%);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
}

.wbm-about-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wbm-home-products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.wbm-home-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wbm-home-product-media {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.wbm-home-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wbm-home-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
}

.wbm-home-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.wbm-home-product-price {
  flex-shrink: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
}

.wbm-home-product-title {
  margin: 0;
  color: #111827;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 700;
}

.wbm-home-product-summary {
  margin: 0;
  color: #6a7282;
  line-height: 1.6;
  font-size: 0.9375rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.wbm-home-product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  background: #111827;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.wbm-home-product-cta:hover {
  background: #ea580c;
}

.wbm-product-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.wbm-product-media,
.wbm-product-info {
  min-width: 0;
}

.wbm-product-main-image {
  width: min(100%, 32rem);
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
}

.wbm-product-main-image__img {
  display: block;
  width: 100%;
  max-height: 32rem;
  margin: 0 auto;
  object-fit: contain;
}

.wbm-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.wbm-kicker.orange {
  background: #ffedd5;
  color: #c53c00;
}

.wbm-kicker.green {
  background: #dcfce7;
  color: #0f7a3f;
}

.wbm-stat {
  text-align: center;
}

.wbm-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.wbm-empty {
  padding: 2rem;
  border-radius: 1rem;
  background: #f9fafb;
  color: #6a7282;
  text-align: center;
}

.wbm-section-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.wbm-section-intro h2 {
  margin: 1rem 0;
  color: #101828;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.wbm-section-intro p {
  color: #6a7282;
  line-height: 1.75;
}

.wbm-static-grid {
  display: grid;
  gap: 1.5rem;
}

.wbm-values-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.wbm-categories-grid,
.wbm-global-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.wbm-value-card,
.wbm-category-card,
.wbm-global-card,
.wbm-brand-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.wbm-value-card {
  padding: 2rem;
  border: 1px solid #fed7aa;
}

.wbm-value-card h3,
.wbm-category-card h3,
.wbm-global-card h3,
.wbm-brand-card h3 {
  margin: 0 0 0.75rem;
  color: #101828;
  font-size: 1.25rem;
  font-weight: 700;
}

.wbm-value-card p,
.wbm-category-card p,
.wbm-global-card p,
.wbm-brand-card p {
  margin: 0;
  color: #6a7282;
  line-height: 1.75;
}

.wbm-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: 9999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 0.875rem;
  font-weight: 700;
}

.wbm-category-card,
.wbm-global-card,
.wbm-brand-card {
  padding: 2rem;
}

.wbm-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.wbm-chip,
.wbm-location-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 9999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 0.875rem;
  font-weight: 600;
}

.wbm-location-pill {
  margin-bottom: 1rem;
}

.wbm-brand-card {
  text-align: center;
}

.wbm-brand-card.logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.5rem;
  padding: 1.5rem;
}

.wbm-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  margin-bottom: 1rem;
}

.wbm-brand-card.logo-only .wbm-brand-logo {
  width: 100%;
  height: 4.75rem;
  margin-bottom: 0;
}

.wbm-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wbm-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.wbm-partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 0.9rem;
  background: #f9fafb;
  color: #374151;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .wbm-hero {
    --wbm-hero-height: 31.25rem;
  }

  .wbm-about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .wbm-categories-grid,
  .wbm-global-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wbm-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .wbm-hero {
    --wbm-hero-height: 37.5rem;
  }

  .wbm-about-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wbm-product-layout {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }
}

@media (min-width: 1280px) {
  .wbm-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wbm-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wbm-global-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .wbm-slider-control {
    display: none;
  }

  .wbm-hero {
    --wbm-hero-height: 25rem;
    min-height: var(--wbm-hero-height);
  }
}
