.section-product-list {
  display: flex;
  flex-direction: column;
  gap: 32px; /* PC端标题和网格间距32px，接近Figma设计 */
}

.product-list-title {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(var(--color-foreground));
}

/* 移动端样式 */
@media (--mobile) {
  .section-product-list {
    gap: 20px; /* 移动端标题和网格间距20px */
  }
}

