/** Shopify CDN: Minification failed

Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 30:18 Unexpected "{"
Line 30:27 Expected ":"
Line 40:18 Unexpected "{"
Line 40:27 Expected ":"
Line 49:18 Unexpected "{"
Line 49:27 Expected ":"
Line 57:18 Unexpected "{"
Line 57:27 Expected ":"
... and 196 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ===========================
   Best Sellers — 高级玻璃橱窗版（iPhone 点击修复 + 标题干净）
   =========================== */

#shopify-section-{{ section.id }} .bs-section{
  padding: 60px 0;
  text-align: center;
  background: #f8fafc;
}

/* 外层容器 */
#shopify-section-{{ section.id }} .bs-wrap{
  max-width: var(--bs-max, 1800px);
  margin: 0 auto;
  padding: 0 var(--bs-gutter, 32px);
  padding-left: var(--bs-side, 32px) !important;
  padding-right: var(--bs-side, 32px) !important;
  box-sizing: border-box;
}

/* 标题样式 */
#shopify-section-{{ section.id }} .bs-title{
  font-size: var(--bs-title-size, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #111;
}

/* Grid布局（默认4列） */
#shopify-section-{{ section.id }} .bs-grid{
  display: grid;
  gap: var(--bs-gap, 28px) !important;
  grid-template-columns: repeat(4, minmax(0,1fr));
  align-items: stretch;
}

/* 🧊 产品卡片整体 */
#shopify-section-{{ section.id }} .product-card{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all .35s ease;
  padding: var(--bs-card-pad, 16px) !important;
  text-align: center;
  overflow: hidden;
  position: relative;
  cursor: default;
  --bs-card-padding: {{ section.settings.bs_card_padding }};
}

/* 玻璃反光动画层 — 禁止拦截触摸（修复 iPhone 点击） */
#shopify-section-{{ section.id }} .product-card::before{
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none; /* 关键：不拦点击 */
}

/* 悬停动画仅限桌面设备 */
@media (hover: hover) {
  #shopify-section-{{ section.id }} .product-card:hover::before { left: 125%; opacity: 1; }
  #shopify-section-{{ section.id }} .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.95);
  }
  #shopify-section-{{ section.id }} .product-card:hover img { transform: scale(1.05); }
}

/* 图片链接层级更高 */
#shopify-section-{{ section.id }} .product-card a{
  position: relative;
  z-index: 1;
  display: block;
}
#shopify-section-{{ section.id }} .product-card img{
  width: 100%;
  aspect-ratio: var(--bs-aspect-ratio, 1 / 1);
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

/* 产品标题 */
#shopify-section-{{ section.id }} .product-card h3{
  font-size: var(--bs-card-title-size, 20px);
  font-weight: 700;
  color: #111;
  margin: 10px 0 14px;
}

/* ===== 标题“超干净”链接类（双保险，若主题仍有全局样式） ===== */
#shopify-section-{{ section.id }} .title-clean,
#shopify-section-{{ section.id }} .title-clean:link,
#shopify-section-{{ section.id }} .title-clean:visited,
#shopify-section-{{ section.id }} .title-clean:hover,
#shopify-section-{{ section.id }} .title-clean:active,
#shopify-section-{{ section.id }} .title-clean:focus {
  color: #111 !important;
  text-decoration: none !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: none !important;
  -webkit-text-fill-color: #111 !important;        /* iOS/Safari */
  text-decoration-thickness: 0 !important;
  text-underline-offset: 0 !important;
  -webkit-tap-highlight-color: rgba(0,0,0,0);      /* iOS 点击高亮 */
}

/* 按钮样式 */
#shopify-section-{{ section.id }} .product-card .btn-primary{
  background: linear-gradient(135deg, #0d7eea 0%, #0cb0ec 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 17px;
  min-width: 150px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all .3s ease;
}
#shopify-section-{{ section.id }} .product-card .btn-primary:hover{
  background: linear-gradient(135deg, #0975d9 0%, #0897da 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* 响应式 */
@media (max-width: 1200px){
  #shopify-section-{{ section.id }} .bs-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 1024px){
  #shopify-section-{{ section.id }} .bs-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 768px){
  #shopify-section-{{ section.id }} .bs-grid{ grid-template-columns: 1fr; }
  #shopify-section-{{ section.id }} .bs-title{ font-size: calc(var(--bs-title-size, 34px) * .85); }
}
/* 统一按钮 */
.btn-primary{
  display:inline-block;padding:5px 9px;background:#1976d2;color:#fff;text-decoration:none;border-radius:6px;font-weight:700;font-size:15px;box-shadow:0 2px 5px rgba(0,0,0,.15);transition:all .3s;margin:5px
}
.btn-primary:hover{background:#125aa0;transform:translateY(-2px);box-shadow:0 4px 10px rgba(0,0,0,.2)}
.btn-secondary{
  display:inline-block;padding:5px 9px;background:#fff;border:2px solid #1976d2;color:#1976d2;border-radius:6px;font-weight:700;font-size:15px;transition:all .3s;margin:5px
}
.btn-secondary:hover{background:#1976d2;color:#fff;transform:translateY(-2px);box-shadow:0 4px 10px rgba(0,0,0,.2)}

/* 卡片：产品/评价/卖点/步骤 统一质感 */
.card{border:1px solid #eee;border-radius:8px;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.05);transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:0 4px 10px rgba(0,0,0,.15)}
.card--pad{padding:20px}

/* 只作用于 product 卡片里的按钮 */
.product-card .btn-primary {
  --product-btn-bg:rgb(12, 135, 236);
  --product-btn-color: #fff;
  --product-btn-border:rgb(12, 135, 236);
  --product-btn-width: 130px;
  --product-btn-height: 45px;
  --product-btn-padding-y: 10px;
  --product-btn-padding-x: 15px;
  --product-btn-radius: 8px;
  --product-btn-font-size: 16px;

  display: inline-block;
  padding: var(--product-btn-padding-y) var(--product-btn-padding-x);
  background: var(--product-btn-bg);
  color: var(--product-btn-color);
  border: 2px solid var(--product-btn-border);
  border-radius: var(--product-btn-radius);
  font-weight: 700;
  font-size: var(--product-btn-font-size);
  text-decoration: none;
  text-align: center;
  width: var(--product-btn-width);
  height: var(--product-btn-height);
  line-height: normal;
  box-shadow: 0 2px 5px rgba(0,0,0,.15);
  transition: all .3s;
  margin: 15px auto 12px;
}
.product-card .btn-primary:hover {
  background: #125aa0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
/* 产品网格布局 */
.grid{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.flex-220 {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 220px; /* 设置最小宽度 */
}

@media (max-width: 768px) {
  .flex-220 {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

/* Reviews 专用网格 */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
}
.reviews-grid > .review-card {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  box-sizing: border-box;
}
.reviews-grid > a {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  display: flex;
  text-decoration: none;
  color: inherit;
}
.reviews-grid > a .review-card { width: 100%; }
@media (max-width: 768px) {
  .reviews-grid > .review-card,
  .reviews-grid > a {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Reviews 卡片 */
.review-card { text-align: left; }
.review-header { display: flex; align-items: center; margin-bottom: 12px; }
.review-avatar {
  border-radius: 50%; width: 50px; height: 50px;
  object-fit: cover; margin-right: 12px; flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review-stars { font-size: 14px; font-weight: bold; }
.star { color: #f5a623; }
.star.empty { color: #ddd; }
.review-rating { font-size: 13px; color: #444; margin-left: 5px; }
.review-author { font-size: 14px; color: #000; margin-top: 2px; }
.review-text { font-size: 14px; line-height: 1.6; color: #444; }

/* 汇总评分 */
.reviews-summary {
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
}
.reviews-summary .star { font-size: 16px; }
.reviews-summary .checkmark {
  display:inline-block;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#28a745;
  color:#fff;
  font-size:12px;
  line-height:16px;
  text-align:center;
  margin-left:6px;
  vertical-align:middle;
}

/* 卖点与步骤卡片 */
.icon-64{width:64px;height:64px;object-fit:contain;margin-bottom:10px}
.grid{display:flex;flex-wrap:wrap;column-gap: 20px; row-gap: 20px; justify-content:center}
.flex-220{flex:1 1 220px}
.flex-200{flex:1 1 200px}

/* 容器内边距 */
.section-pad{padding:60px 20px}
.section-pad-sm{padding:40px 20px}

/* Hero Banner */
.hero-section{padding:1% 0}
.hero-container{
  max-width:1200px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;
  gap:var(--hero-gap,0px);
  flex-wrap:wrap
}
.hero-copy{flex:1 1 80px;min-width:300px}
.hero-media{flex:1 1 80px;min-width:300px;text-align:right}
.hero-media img{max-width:100%;height:auto;border-radius:10px}
@media (max-width:992px){
  .hero-container{flex-direction:column;gap:24px;text-align:center}
  .hero-media{text-align:center}
}
/* ===== HeroBaner — 修复移动端错位 + 更稳的反转 ===== */

#shopify-section-{{ section.id }} .hero-section{
  padding: var(--hero-pad-y, 28px) 0;
  background: {{ section.settings.bg_color | default: '#ffffff' }};
}
#shopify-section-{{ section.id }} .page-width{
  max-width: {{ section.settings.content_max_width | default: '1140px' }};
  margin: 0 auto;
}

/* 桌面：两列，用 grid areas 明确区域，避免被主题覆盖 */
#shopify-section-{{ section.id }} .hero-container{
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  grid-template-areas: "copy media";
  gap: var(--hb-gap) 24px !important;
  column-gap: var(--hb-gap) !important;
  align-items: center;
  box-sizing: border-box;
}

/* 反转（图片在左）只改 areas，不再用 order */
#shopify-section-{{ section.id }}.is-reversed .hero-container{
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  grid-template-areas: "media copy";
}

/* 区域归属 */
#shopify-section-{{ section.id }} .hero-copy{ 
  grid-area: copy;
  text-align: {{ section.settings.text_align_desktop | default: 'left' }};
  max-width: 720px; justify-self: start;
  padding-right: calc(var(--hb-gap) / 2) !important;
  padding-left: 0 !important;
}
#shopify-section-{{ section.id }} .hero-media{
  grid-area: media;
  text-align: right; justify-self: end;
  padding-left:  calc(var(--hb-gap) / 2) !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* 文案排版细节 */
#shopify-section-{{ section.id }} .hero-heading{
  font-size: clamp(28px, 3.2vw, {{ section.settings.title_size | default: '42px' }});
  line-height:1.15;margin:0 0 16px;font-weight:800;
  overflow-wrap:anywhere;  /* 避免极端词长挤出容器 */
}
#shopify-section-{{ section.id }} .hero-sub{
  font-size: clamp(15px, 1.35vw, {{ section.settings.subtitle_size | default: '18px' }});
  line-height:1.7;margin:0 0 22px;color:#444;max-width: 52ch;
}
#shopify-section-{{ section.id }} .hero-media img{
  width: 100%;
  max-width: {{ section.settings.image_max_width | default: '520px' }};
  height: auto;
  border-radius: {{ section.settings.image_radius | default: '12px' }};
  display: inline-block;
}

/* 按钮样式（提高优先级，防止主题覆盖） */
#shopify-section-{{ section.id }} .hero-actions a.btn-primary{
  display:inline-block;padding:10px 18px;background:#1976d2 !important;color:#fff !important;
  text-decoration:none !important;border-radius:8px;font-weight:700;font-size:16px;
  border:2px solid #1976d2 !important;box-shadow:0 2px 5px rgba(0,0,0,.12);
  transition:all .25s ease;margin:6px 10px 0 0;
}
#shopify-section-{{ section.id }} .hero-actions a.btn-primary:hover{
  background:#125aa0 !important;border-color:#125aa0 !important;transform:translateY(-2px);
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}
#shopify-section-{{ section.id }} .hero-actions a.btn-secondary{
  display:inline-block;padding:10px 18px;background:#fff !important;border:2px solid #1976d2 !important;
  color:#1976d2 !important;border-radius:8px;font-weight:700;font-size:16px;text-decoration:none !important;
  transition:all .25s ease;margin:6px 0 0 0;
}
#shopify-section-{{ section.id }} .hero-actions a.btn-secondary:hover{
  background:#1976d2 !important;color:#fff !important;transform:translateY(-2px);
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}

/* ===== Mobile ultimate fix：未反转/反转都单列，图片完整显示，不被裁切 ===== */
@media (max-width: 992px){

  /* 取消父级可能的裁切与溢出 */
  #shopify-section-{{ section.id }} .hero-section,
  #shopify-section-{{ section.id }} .page-width{
    overflow: visible !important;
  }

  /* 统一用 block 堆叠，彻底关闭 grid/flex 残留 */
  #shopify-section-{{ section.id }} .hero-container{
    display: block !important;
    grid-template: none !important;
    gap: 0 !important;
    column-gap: 0 !important;
    padding: 0 16px !important;
    text-align: center !important;
  }

  /* 文案块：100% 宽，居中 */
  #shopify-section-{{ section.id }} .hero-copy{
    display: block !important;
    float: none !important;
    position: static !important;
    width: 100% !important;
    max-width: 700px !important;
    margin: 0 auto 14px !important;
    padding: 0 !important;
    text-align: center !important;
    order: 1 !important;              /* ✅ 未反转：文字在上 */
  }

  /* 图片块：100% 宽，居中；清除对齐/自对齐遗留 */
  #shopify-section-{{ section.id }} .hero-media{
    display: block !important;
    float: none !important;
    position: static !important;
    width: 100% !important;
    max-width: 700px !important;
    margin: 10px auto 0 !important;   /* 与按钮拉开 */
    padding: 0 !important;
    text-align: center !important;
    justify-self: auto !important;
    align-self: auto !important;
    order: 2 !important;              /* ✅ 未反转：图片在下 */
  }

  /* 图片本体：绝不裁切、占满容器 */
  #shopify-section-{{ section.id }} .hero-media img{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  /* 反转布局：手机端仍然保持“文上图下”的阅读顺序 */
  #shopify-section-{{ section.id }}.is-reversed .hero-copy{ order: 1 !important; }
  #shopify-section-{{ section.id }}.is-reversed .hero-media{ order: 2 !important; }

  /* 按钮与图片间距 */
  #shopify-section-{{ section.id }} .hero-actions{
    text-align: center !important;
    margin-bottom: 12px !important;
  }
}
/* ===========================
   How It Works (作用域隔离)
   =========================== */
#shopify-section-{{ section.id }} .hiw-section {
  padding: 40px 0;
  text-align: center;
  background: #fafafa;
}
#shopify-section-{{ section.id }} .hiw-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* 独立网格 */
#shopify-section-{{ section.id }} .hiw-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

/* 卡片 */
#shopify-section-{{ section.id }} .hiw-card {
  flex: 0 1 calc(25% - 20px);
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  padding: 24px 18px;
}
#shopify-section-{{ section.id }} .hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* 图标可点击样式 */
#shopify-section-{{ section.id }} .hiw-link {
  display: inline-block;
  text-decoration: none;
}
#shopify-section-{{ section.id }} .hiw-link img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform .2s;
}
#shopify-section-{{ section.id }} .hiw-link:hover img {
  transform: scale(1.08);
}

/* 标题 */
#shopify-section-{{ section.id }} .hiw-card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

/* 正文 */
#shopify-section-{{ section.id }} .hiw-card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* 响应式 */
@media (max-width: 1024px) {
  #shopify-section-{{ section.id }} .hiw-card { flex: 0 1 calc(50% - 20px); }
}
@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .hiw-card { flex: 0 1 100%; }
}

/* 统一图标尺寸 */
#shopify-section-{{ section.id }} .hiw-icon{
  width: 100px;              /* 你也可以改回 64px */
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  transition: transform .2s;
}

/* 有链接时的悬停效果 */
#shopify-section-{{ section.id }} .hiw-link:hover .hiw-icon{
  transform: scale(1.08);
}
/* 统一按钮 */
.btn-primary{
  display:inline-block;padding:5px 9px;background:#1976d2;color:#fff;text-decoration:none;border-radius:6px;font-weight:700;font-size:15px;box-shadow:0 2px 5px rgba(0,0,0,.15);transition:all .3s;margin:5px
}
.btn-primary:hover{background:#125aa0;transform:translateY(-2px);box-shadow:0 4px 10px rgba(0,0,0,.2)}
.btn-secondary{
  display:inline-block;padding:5px 9px;background:#fff;border:2px solid #1976d2;color:#1976d2;border-radius:6px;font-weight:700;font-size:15px;transition:all .3s;margin:5px
}
.btn-secondary:hover{background:#1976d2;color:#fff;transform:translateY(-2px);box-shadow:0 4px 10px rgba(0,0,0,.2)}

/* 卡片：产品/评价/卖点/步骤 统一质感 */
.card{border:1px solid #eee;border-radius:8px;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.05);transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:0 4px 10px rgba(0,0,0,.15)}
.card--pad{padding:20px}

/* 只作用于 product 卡片里的按钮 */
.product-card .btn-primary {
  --product-btn-bg:rgb(12, 135, 236);
  --product-btn-color: #fff;
  --product-btn-border:rgb(12, 135, 236);
  --product-btn-width: 130px;
  --product-btn-height: 45px;
  --product-btn-padding-y: 10px;
  --product-btn-padding-x: 15px;
  --product-btn-radius: 8px;
  --product-btn-font-size: 16px;

  display: inline-block;
  padding: var(--product-btn-padding-y) var(--product-btn-padding-x);
  background: var(--product-btn-bg);
  color: var(--product-btn-color);
  border: 2px solid var(--product-btn-border);
  border-radius: var(--product-btn-radius);
  font-weight: 700;
  font-size: var(--product-btn-font-size);
  text-decoration: none;
  text-align: center;
  width: var(--product-btn-width);
  height: var(--product-btn-height);
  line-height: normal;
  box-shadow: 0 2px 5px rgba(0,0,0,.15);
  transition: all .3s;
  margin: 15px auto 12px;
}
.product-card .btn-primary:hover {
  background: #125aa0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
/* 产品网格布局 */
.grid{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.flex-220 {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 220px; /* 设置最小宽度 */
}

@media (max-width: 768px) {
  .flex-220 {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

/* Reviews 专用网格 */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
}
.reviews-grid > .review-card {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  box-sizing: border-box;
}
.reviews-grid > a {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  display: flex;
  text-decoration: none;
  color: inherit;
}
.reviews-grid > a .review-card { width: 100%; }
@media (max-width: 768px) {
  .reviews-grid > .review-card,
  .reviews-grid > a {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Reviews 卡片 */
.review-card { text-align: left; }
.review-header { display: flex; align-items: center; margin-bottom: 12px; }
.review-avatar {
  border-radius: 50%; width: 50px; height: 50px;
  object-fit: cover; margin-right: 12px; flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review-stars { font-size: 14px; font-weight: bold; }
.star { color: #f5a623; }
.star.empty { color: #ddd; }
.review-rating { font-size: 13px; color: #444; margin-left: 5px; }
.review-author { font-size: 14px; color: #000; margin-top: 2px; }
.review-text { font-size: 14px; line-height: 1.6; color: #444; }

/* 汇总评分 */
.reviews-summary {
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
}
.reviews-summary .star { font-size: 16px; }
.reviews-summary .checkmark {
  display:inline-block;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#28a745;
  color:#fff;
  font-size:12px;
  line-height:16px;
  text-align:center;
  margin-left:6px;
  vertical-align:middle;
}

/* 卖点与步骤卡片 */
.icon-64{width:64px;height:64px;object-fit:contain;margin-bottom:10px}
.grid{display:flex;flex-wrap:wrap;column-gap: 20px; row-gap: 20px; justify-content:center}
.flex-220{flex:1 1 220px}
.flex-200{flex:1 1 200px}

/* 容器内边距 */
.section-pad{padding:60px 20px}
.section-pad-sm{padding:40px 20px}

/* Hero Banner */
.hero-section{padding:1% 0}
.hero-container{
  max-width:1200px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;
  gap:var(--hero-gap,0px);
  flex-wrap:wrap
}
.hero-copy{flex:1 1 80px;min-width:300px}
.hero-media{flex:1 1 80px;min-width:300px;text-align:right}
.hero-media img{max-width:100%;height:auto;border-radius:10px}
@media (max-width:992px){
  .hero-container{flex-direction:column;gap:24px;text-align:center}
  .hero-media{text-align:center}
}
/* ==================================
   Reviews (作用域隔离 + 新布局 + 响应式)
   ================================== */
#shopify-section-{{ section.id }} .rev-section {
  padding: 40px 0;
  text-align: center;
  background: #fafafa;
}
#shopify-section-{{ section.id }} .rev-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

#shopify-section-{{ section.id }} .rev-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  align-items: center;
  margin: 6px 0 24px;
}
#shopify-section-{{ section.id }} .rev-summary .summary-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}
#shopify-section-{{ section.id }} .rev-summary .summary-right a,
#shopify-section-{{ section.id }} .rev-summary .summary-right span {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
#shopify-section-{{ section.id }} .rev-summary .summary-right a:hover { text-decoration: underline; }

/* 星星评分 */
#shopify-section-{{ section.id }} .stars {
  --rating: 5;
  --size: 18px;
  --star-empty: #d8e5e4;
  --star-fill: #0ea5a3;
  font-size: var(--size);
  line-height: 1;
  letter-spacing: 3px;
  display: inline-block;
  font-family: "Arial", "Helvetica", sans-serif;
}
#shopify-section-{{ section.id }} .stars::before {
  content: "★★★★★";
  background: linear-gradient(90deg,
    var(--star-fill) calc(var(--rating) / 5 * 100%),
    var(--star-empty) calc(var(--rating) / 5 * 100%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 评论网格 */
#shopify-section-{{ section.id }} .rev-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* 单卡片 */
#shopify-section-{{ section.id }} .rev-card {
  flex: 0 1 calc(25% - 20px);
  display: flex;
  gap: 14px;
  text-align: left;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  padding: 16px;
  box-sizing: border-box;
  transition: transform .2s, box-shadow .2s;
}
#shopify-section-{{ section.id }} .rev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

/* 链接样式（头像/名字/评论文字可点） */
#shopify-section-{{ section.id }} .rev-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
#shopify-section-{{ section.id }} .rev-link:hover .rev-name {
  text-decoration: underline;
}
#shopify-section-{{ section.id }} .rev-link:hover .rev-text {
  color: #0ea5a3;
}

/* 头像 */
#shopify-section-{{ section.id }} .rev-avatar {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* 文本区域 */
#shopify-section-{{ section.id }} .rev-body {
  flex: 1 1 auto;
  min-width: 0;
}
#shopify-section-{{ section.id }} .rev-head{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  align-items: start;
  justify-items: start;
  margin-bottom: 8px;
}
#shopify-section-{{ section.id }} .rev-name{
  font-weight: 700;
  font-size: 15px;
}
#shopify-section-{{ section.id }} .rev-stars .stars { --size: 16px; }
#shopify-section-{{ section.id }} .rev-score {
  font-size: 13px;
  color: #111;
  font-weight: 600;
  margin-left: 6px;
  white-space: nowrap;
}
#shopify-section-{{ section.id }} .rev-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* 响应式 */
@media (max-width: 1024px) {
  #shopify-section-{{ section.id }} .rev-card { flex: 0 1 calc(50% - 20px); }
}
@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .rev-card { flex: 0 1 100%; }
}
/* ===========================
   Why Choose Us（作用域隔离）
   =========================== */
#shopify-section-{{ section.id }} .wcu-section {
  padding: 40px 0;
  text-align: center;
  background: #fafafa;
}
#shopify-section-{{ section.id }} .wcu-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* 网格（桌面 5 列） */
#shopify-section-{{ section.id }} .wcu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

/* 卡片：桌面 5 列 */
#shopify-section-{{ section.id }} .wcu-card {
  flex: 0 1 calc(20% - 20px);   /* ✅ 固定 5 列 */
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  padding: 24px 18px;
}
#shopify-section-{{ section.id }} .wcu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* 图标（可选） */
#shopify-section-{{ section.id }} .wcu-icon-64 {
  width: 64px; height: 64px; object-fit: contain; margin-bottom: 12px;
}

/* 标题/正文 */
#shopify-section-{{ section.id }} .wcu-card-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
}
#shopify-section-{{ section.id }} .wcu-card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap; /* 支持多行换行 */
}

/* 响应式：平板 2 列、手机 1 列 */
@media (max-width: 1024px) {
  #shopify-section-{{ section.id }} .wcu-card { flex: 0 1 calc(50% - 20px); }
}
@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .wcu-card { flex: 0 1 100%; }
}