/** Shopify CDN: Minification failed

Line 21:20 Unexpected "{"
Line 21:29 Expected ":"
Line 32:20 Unexpected "{"
Line 32:29 Expected ":"
Line 40:20 Unexpected "{"
Line 40:29 Expected ":"
Line 46:20 Unexpected "{"
Line 46:29 Expected ":"
Line 52:20 Unexpected "{"
Line 52:29 Expected ":"
... and 44 more hidden warnings

**/
/* 产品推荐区域 - 滑动显示5个产品 */

/* 桌面端：滑动显示，一屏显示5个产品 */
@media screen and (min-width: 769px) {
  /* 滑动容器设置 */
  #shopify-section-{{ section.id }} .slider_grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 0 20px !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* 每个产品占据20%宽度减去间距，确保一屏显示5个 */
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(20% - 12.8px) !important;
    min-width: calc(20% - 12.8px) !important;
    max-width: calc(20% - 12.8px) !important;
    scroll-snap-align: start !important;
  }

  /* 确保容器宽度足够 */
  #shopify-section-{{ section.id }} .slider_viewport {
    max-width: 100% !important;
    overflow: visible !important;
  }

  /* 调整产品卡片间距 */
  #shopify-section-{{ section.id }} .product-card-wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 确保图片比例一致 */
  #shopify-section-{{ section.id }} .card_product-image {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
  }

  #shopify-section-{{ section.id }} .card_product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 调整标题高度以适应5个产品 */
  #shopify-section-{{ section.id }} .card_information .card_heading {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
  }

  #shopify-section-{{ section.id }} .card_information .card_heading h3,
  #shopify-section-{{ section.id }} .card_information .card_heading a {
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  /* 调整价格字体大小 */
  #shopify-section-{{ section.id }} .price {
    font-size: 13px !important;
    min-height: 24px !important;
  }

  /* 调整评分大小 */
  #shopify-section-{{ section.id }} .product-rating-stars {
    font-size: 14px !important;
  }

  /* 确保网格布局正确 */
  #shopify-section-{{ section.id }} .slider_grid[data-count="5"] {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

/* 中等屏幕：显示4个产品 */
@media screen and (max-width: 1200px) and (min-width: 769px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(25% - 12px) !important;
    min-width: calc(25% - 12px) !important;
    max-width: calc(25% - 12px) !important;
  }
}

/* 小屏幕：显示3个产品 */
@media screen and (max-width: 992px) and (min-width: 769px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(33.333% - 10.667px) !important;
    min-width: calc(33.333% - 10.667px) !important;
    max-width: calc(33.333% - 10.667px) !important;
  }
}

/* 移动端：保持2个产品 */
@media screen and (max-width: 768px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(50% - 6px) !important;
    min-width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
}

/* 强制覆盖所有可能的冲突样式 */
#shopify-section-{{ section.id }} .slider_grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}

#shopify-section-{{ section.id }} .slider_grid-item {
  display: block !important;
  box-sizing: border-box !important;
}

/* 确保容器不会溢出 */
#shopify-section-{{ section.id }} .slider {
  max-width: 100% !important;
  overflow: hidden !important;
}

/* 修复可能的间距问题 */
#shopify-section-{{ section.id }} .slider_grid {
  margin: 0 !important;
  padding: 0 !important;
}

/* 确保产品卡片填满可用空间 */
#shopify-section-{{ section.id }} .product-card-wrapper,
#shopify-section-{{ section.id }} .card {
  width: 100% !important;
  height: 100% !important;
}

/* 响应式布局优化 */

/* 大屏幕：显示5个产品 */
@media screen and (min-width: 1201px) {
  #shopify-section-{{ section.id }} .slider_grid {
    gap: 20px !important;
  }
  
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(20% - 16px) !important;
    min-width: calc(20% - 16px) !important;
    max-width: calc(20% - 16px) !important;
  }
}

/* 中等屏幕：显示4个产品 */
@media screen and (max-width: 1200px) and (min-width: 992px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(25% - 15px) !important;
    min-width: calc(25% - 15px) !important;
    max-width: calc(25% - 15px) !important;
  }
}

/* 小屏幕：显示3个产品 */
@media screen and (max-width: 991px) and (min-width: 768px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(33.333% - 13.333px) !important;
    min-width: calc(33.333% - 13.333px) !important;
    max-width: calc(33.333% - 13.333px) !important;
  }
}

/* 平板：显示2个产品 */
@media screen and (max-width: 767px) and (min-width: 481px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 calc(50% - 8px) !important;
    min-width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
}

/* 手机：显示1个产品 */
@media screen and (max-width: 480px) {
  #shopify-section-{{ section.id }} .slider_grid-item {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}