.junhua-goods-category-section-container-background {
  background-color: var(--bg-color-white);
  padding: var(--spacing-2xl);
  display: flex;
  gap: var(--spacing-xs);
}

/* ============================================
   左侧自定义配置区域
============================================ */
.junhua-goods-category-left {
  flex-shrink: 0;
  height: -webkit-fill-available;
  min-height: 100%;
}

.junhua-left-background {
  background-color: var(--bg-color-page);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.junhua-left-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.junhua-left-section-border {
  border-bottom: var(--border-width-medium) solid var(--bg-color-white);
}

.junhua-left-content {
  width: 100%;
  max-width: 231px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* How to buy 部分 */
.junhua-left-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1px;
}

.junhua-left-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h5);
  line-height: 1.15;
  text-align: center;
  color: var(--text-color-strong);
  margin: 0;
}

.junhua-left-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5px;
}

.junhua-left-description {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-tiny);
  line-height: 1.15;
  text-align: center;
  color: var(--text-color-gray-400);
  margin: 0;
  width: 100%;
}

.junhua-left-link-wrapper {
  margin-top: 0;
}

.junhua-left-link {
  display: block;
  background-color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

.junhua-left-link:hover {
  background-color: var(--primary-active-color);
  text-decoration: none;
}

.junhua-left-link-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0px;
}

.junhua-left-link-icon {
  width: max(1.5rem, 20px) !important;
  height: max(1.5rem, 20px) !important;
  object-fit: contain;
  flex-shrink: 0;
}

.junhua-left-link-text {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-small);
  line-height: 1.15;
  text-align: center;
  color: var(--text-color-white);
}

/* Video browsing 部分 */
.junhua-left-video-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
  width: 100%;
}

.junhua-left-video-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.junhua-left-video-title-wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 1px;
}

.junhua-left-video-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-btn-primary);
  line-height: 1.15;
  text-align: left;
  color: var(--text-color-strong);
  margin: 0;
}

.junhua-left-video-title-highlight {
  color: var(--primary-color);
}

.junhua-left-video-description-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.junhua-left-video-description {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: 0.65rem;
  line-height: 1.38;
  text-align: left;
  color: var(--text-color-gray-500);
  margin: 0;
}

.junhua-left-video-background {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.junhua-left-video-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  cursor: pointer;
}

.junhua-left-video-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   右侧商品分类区域
============================================ */
.junhua-goods-category-right {
  flex: 1;
  min-width: 0;
  height: -webkit-fill-available;
  min-height: 100%;
}

.junhua-right-background {
  background-color: var(--bg-color-page);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2xl);
  padding: var(--spacing-2xl) 1.75rem;
  min-height: 100%;
}

.junhua-right-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.junhua-right-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h2);
  line-height: 1.15;
  text-align: center;
  color: var(--text-color-strong);
  margin: 0;
}

.junhua-right-subtitle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 715.69px;
}

.junhua-right-subtitle {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-small);
  line-height: 1.15;
  text-align: center;
  color: var(--text-color-gray-600);
  margin: 0;
}

.junhua-right-categories {
  /* display: grid; */
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: var(--spacing-4xl);
  justify-content: space-evenly;
  width: 100%;
}

.junhua-category-item {
  display: flex;
  flex-direction: column;
}

.junhua-category-link {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
  text-decoration: none;
  transition: all var(--transition-base);
}

.junhua-category-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--bg-color-white);
  overflow: hidden;
  aspect-ratio: 9 / 5.2;
  max-height: 206px;
  max-width: 360px;
}

.junhua-category-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.junhua-category-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.junhua-category-name {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-tiny);
  line-height: 1.15;
  text-align: center;
  color: var(--text-color-strong);
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .junhua-goods-category-section-container-background {
    flex-direction: column;
  }
  .junhua-left-content {
    max-width: 100%;
  }

  .junhua-left-video-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .junhua-left-video-content {
    width: 50%;
    flex-shrink: 0;
  }
  .junhua-left-video-background {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .junhua-right-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .junhua-left-video-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .junhua-left-video-content {
    width: 100%;
  }
  .junhua-left-video-background {
    width: 100%;
  }
  .junhua-right-background {
    padding: var(--spacing-xl);
  }
}
