/**
 * Homepage Recommended Products Section Styles
 * 首页推荐商品区块样式
 * 仅在移动端显示，桌面端隐藏
 */

.section-homepage-recommended {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

/* 桌面端隐藏推荐商品区块 */
@media (min-width: 960px) {
  .homepage-recommended-products-section {
    display: none;
  }
}
