/**
 * Canonical Homepage Product Showcase.
 * Section shell and responsive rail are module-owned; Product Card visuals are
 * always inherited from the global Shop Product Card contract.
 */
.stm-home-product-showcases{
  --stm-hps-custom-max-width:1250px;
  --stm-hps-top-gap:16px;
  --stm-hps-bottom-gap:16px;
  --stm-hps-section-gap:16px;
  --stm-hps-pad-x:16px;
  --stm-hps-pad-y:14px;
  --stm-hps-border-width:1px;
  --stm-hps-radius:14px;
  --stm-hps-header-gap:12px;
  --stm-hps-header-pad-bottom:10px;
  --stm-hps-title-size-desktop:16px;
  --stm-hps-title-size-tablet:14px;
  --stm-hps-title-size-mobile:13px;
  --stm-hps-view-size-desktop:12px;
  --stm-hps-view-size-tablet:11px;
  --stm-hps-view-size-mobile:10px;
  --stm-hps-bg:var(--stm-color-surface,#fff);
  --stm-hps-border:var(--stm-color-border,#e5e7eb);
  --stm-hps-divider:var(--stm-color-success,#16a34a);
  --stm-hps-title:var(--stm-color-heading,#111827);
  --stm-hps-view:var(--stm-color-primary-deep,#e65300);
  --stm-hps-view-hover:var(--stm-color-primary,#ff6a00);
  --stm-engine-width-max:var(--stm-header-content-max-width,var(--stm-container-wide,1440px));
  margin:var(--stm-hps-top-gap) auto var(--stm-hps-bottom-gap);
  padding:0;
}
.stm-home-product-showcases--custom-width{--stm-engine-width-max:var(--stm-hps-custom-max-width)}
.stm-home-product-showcases,.stm-home-product-showcases *{box-sizing:border-box}
.stm-home-product-showcase{
  width:100%;
  margin:0 0 var(--stm-hps-section-gap);
  padding:var(--stm-hps-pad-y) var(--stm-hps-pad-x);
  border:var(--stm-hps-border-width) solid var(--stm-hps-border);
  border-radius:var(--stm-hps-radius);
  background:var(--stm-hps-bg);
  overflow:hidden;
}
.stm-home-product-showcase:last-child{margin-bottom:0}
.stm-hps-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--stm-hps-header-gap);
  width:100%;
  min-width:0;
  margin:0 0 var(--stm-hps-header-pad-bottom);
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.stm-home-product-showcase--heading-raised .stm-hps-head{
  padding:8px 10px;
  border:1px solid var(--stm-commerce-raised-edge-line,var(--stm-raised-edge-line,#cbd5e1));
  border-top-color:var(--stm-commerce-raised-edge-highlight,var(--stm-raised-edge-highlight,#fff));
  border-radius:var(--stm-commerce-raised-radius,var(--stm-radius-md,8px));
  background:var(--stm-commerce-raised-heading-bg,var(--stm-raised-heading-bg,#f3f4f6));
}
.stm-hps-title{
  min-width:0;
  margin:0;
  overflow:hidden;
  color:var(--stm-hps-title);
  font-size:var(--stm-hps-title-size-desktop);
  font-weight:var(--stm-weight-bold,700);
  line-height:1.2;
  letter-spacing:var(--stm-letter-wide,.02em);
  text-overflow:ellipsis;
  text-transform:uppercase;
  white-space:nowrap;
}
.stm-hps-viewall{
  flex:0 0 auto;
  color:var(--stm-hps-view);
  font-size:var(--stm-hps-view-size-desktop);
  font-weight:var(--stm-weight-bold,700);
  line-height:1.2;
  text-decoration:none;
  white-space:nowrap;
}
.stm-hps-viewall:hover{color:var(--stm-hps-view-hover);text-decoration:underline;text-underline-offset:3px}
.stm-hps-loop{width:100%;min-width:0;max-width:100%;overflow:visible}
.stm-hps-products{
  display:grid;
  grid-template-columns:repeat(var(--stm-hps-columns,6),minmax(0,1fr));
  align-items:stretch;
  gap:var(--stm-hps-product-gap,12px);
  width:100%;
  min-width:0;
  margin:0;
  padding:0;
  list-style:none;
}
.woocommerce ul.products.stm-hps-products>li.product.stm-product-card{float:none;clear:none;width:100%;max-width:none;min-width:0;margin:0}
html[data-stm-layout="tablet"] .stm-hps-title{font-size:var(--stm-hps-title-size-tablet)}
html[data-stm-layout="tablet"] .stm-hps-viewall{font-size:var(--stm-hps-view-size-tablet)}
html[data-stm-layout="mobile"] .stm-home-product-showcase{padding:clamp(8px,var(--stm-hps-pad-y),18px) clamp(8px,var(--stm-hps-pad-x),16px)}
html[data-stm-layout="mobile"] .stm-hps-head{gap:8px}
html[data-stm-layout="mobile"] .stm-hps-title{font-size:var(--stm-hps-title-size-mobile)}
html[data-stm-layout="mobile"] .stm-hps-viewall{font-size:var(--stm-hps-view-size-mobile)}
html[data-stm-layout="tablet"] .stm-hps-loop,
html[data-stm-layout="mobile"] .stm-hps-loop{
  overflow-x:auto;
  overflow-y:hidden;
  overscroll-behavior-x:contain;
  overscroll-behavior-y:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x proximity;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-x pan-y;
}
html[data-stm-layout="tablet"] .stm-hps-loop::-webkit-scrollbar,
html[data-stm-layout="mobile"] .stm-hps-loop::-webkit-scrollbar{display:none}
html[data-stm-layout="tablet"] .stm-hps-products,
html[data-stm-layout="mobile"] .stm-hps-products{
  display:flex;
  flex-wrap:nowrap;
  gap:var(--stm-hps-product-gap,12px);
  width:100%;
  min-width:100%;
  max-width:none;
}
html[data-stm-layout="tablet"] .woocommerce ul.products.stm-hps-products>li.product.stm-product-card{
  flex:0 0 calc((100% - (var(--stm-hps-product-gap,12px) * var(--stm-hps-tablet-gap-count,2))) / var(--stm-hps-tablet-visible,2.5));
  width:calc((100% - (var(--stm-hps-product-gap,12px) * var(--stm-hps-tablet-gap-count,2))) / var(--stm-hps-tablet-visible,2.5));
  max-width:none;
  scroll-snap-align:start;
}
html[data-stm-layout="mobile"] .woocommerce ul.products.stm-hps-products>li.product.stm-product-card{
  flex:0 0 calc((100% - (var(--stm-hps-product-gap,12px) * var(--stm-hps-mobile-gap-count,1))) / var(--stm-hps-mobile-visible,1.5));
  width:calc((100% - (var(--stm-hps-product-gap,12px) * var(--stm-hps-mobile-gap-count,1))) / var(--stm-hps-mobile-visible,1.5));
  max-width:none;
  scroll-snap-align:start;
}
