/** Shopify CDN: Minification failed

Line 23:26 Unexpected "{"
Line 23:35 Expected ":"
Line 23:42 Unexpected "{"
Line 31:26 Unexpected "{"
Line 31:35 Expected ":"
Line 40:26 Unexpected "{"
Line 40:35 Expected ":"
Line 49:26 Unexpected "{"
Line 49:35 Expected ":"
Line 55:28 Unexpected "{"
... and 8 more hidden warnings

**/
.featured-collection .sf-product-action:after{background:#000;content:"";height:10px;position:absolute;right:-3px;top:9px;transform:rotate(45deg);width:10px}.featured-collection .sf-product-colors input:checked+span{display:block}.featured-collection .sf-fl-product:hover .sf-product-actions,.featured-collection .sf-fl-product:hover .sf-product-sizes{opacity:1}.sf__featured-collection .sf__ms--slider{margin:0 calc(var(--column-gap)/-2)}@media screen and (max-width:1279px){.sf__featured-collection .sf__ms--slider{margin:0 calc(var(--column-gap)/2/-2)}}@media screen and (max-width:767px){.sf__featured-collection .sf__ms--slider{margin:0 calc(var(--column-gap-mobile, var(--column-gap))/-2);width:130vw}}.sf__featured-collection .sf__featured-collection-button{margin-top:60px}.sf__featured-collection .sf__featured-collection-button .sf__btn.hidden{display:none!important}@media screen and (max-width:1279px){.sf__featured-collection .sf__featured-collection-button{margin-top:40px}}@media screen and (max-width:767px){.sf__featured-collection .sf__featured-collection-button{margin-top:30px}}.sf__featured-collection .sf-slider__controls .swiper-pagination{margin-top:40px}@media screen and (max-width:767px){.sf__featured-collection .sf-slider__controls .swiper-pagination{margin-top:20px}}@media(max-width:767px){.sf__ms--mb-grid:not(.sf__ms--slider){--mobile-column-width:100%;margin:0 calc(var(--column-gap-mobile, var(--column-gap))/-2) calc(var(--row-gap-mobile, var(--column-gap))/-1)!important;overflow:hidden;padding-left:0}.sf__ms--mb-grid:not(.sf__ms--slider) .sf-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));margin:0!important;width:100%}.sf__ms--mb-grid:not(.sf__ms--slider) .sf-grid .sf-column{width:100%!important}.sf__ms--mb-grid:not(.sf__ms--slider) .collection-card{padding-bottom:12px}}[data-flashsale-countdown]{align-items:center;background:var(--color-flash-sale);color:#fff;display:inline-flex;font-size:26px;font-weight:500;height:50px;padding:0 10px;position:relative}[data-flashsale-countdown]:before{border-bottom:50px solid var(--color-flash-sale);border-left:25px solid transparent;content:"";height:0;position:absolute;right:100%;width:0}[data-flashsale-countdown] .time-block{min-width:50px;padding:0 5px;position:relative}[data-flashsale-countdown] .time-block:after{content:":";position:absolute;right:-5px}[data-flashsale-countdown] .time-block:last-child:after{display:none}[data-enable-flashsale=true][data-enable-countdown=true]{--color-flash-sale:#c02c30}[data-enable-flashsale=true][data-enable-countdown=true].bg-light{--color-flash-sale:#fff}[data-enable-flashsale=true][data-enable-countdown=true].bg-light .time-block{color:#000}[data-enable-flashsale=true][data-enable-countdown=true] .section__header{border-bottom:2px solid var(--color-flash-sale);margin-left:calc(var(--column-gap, 30px)/-2);margin-right:calc(var(--column-gap, 30px)/-2)}[data-enable-flashsale=true][data-enable-countdown=true] .section__header h2{color:var(--color-flash-sale);font-weight:700}@media(max-width:767px){[data-enable-flashsale=true][data-enable-countdown=true] .section__heading{padding-bottom:5px;padding-left:15px}[data-enable-flashsale=true][data-enable-countdown=true] [data-flashsale-countdown]:before{display:none}[data-enable-flashsale=true][data-enable-countdown=true] [data-flashsale-countdown]{height:40px;padding:0 5px}[data-enable-flashsale=true][data-enable-countdown=true] .time-block{font-size:18px;min-width:34px;text-align:center}}

/* ================================
   FEATURED COLLECTION RESPONSIVE FIX
   Works on all screen sizes
   ================================ */

#sf__featured-collection-{{ section.id }} {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip; /* prevents right-side space */
  box-sizing: border-box;
}

/* Fix container-fluid overflow */
#sf__featured-collection-{{ section.id }} .container-fluid {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

/* Grid always fits viewport */
#sf__featured-collection-{{ section.id }} .sf-grid {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Fix swiper causing overflow */
#sf__featured-collection-{{ section.id }} .swiper-container {
  overflow: hidden;
}

/* Desktop / Large screens */
@media (min-width: 1280px) {
  #sf__featured-collection-{{ section.id }} .sf-grid {
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  #sf__featured-collection-{{ section.id }} .sf-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #sf__featured-collection-{{ section.id }} {
    overflow-x: hidden;
  }

  #sf__featured-collection-{{ section.id }} .sf-grid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Safety net (prevents any accidental overflow) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/*# sourceMappingURL=featured-collection.css.map */