/** Shopify CDN: Minification failed

Line 575:0 Unexpected "}"

**/
/* ==========================================================================
   FIT Custom Collection Section & Product Card Styling
   ========================================================================== */

.fit-custom-collection,
.fit-custom-collection * {
  font-family: "Barlow", sans-serif !important;
}

/* Scoped Section Wrapper */
.fit-custom-collection-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

/* Collection Layout Wrapper */
.fit-custom-collection .collection-wrapper {
  display: grid !important;
  row-gap: var(--grid-gap-vertical, 24px) !important;
  column-gap: var(--grid-gap-horizontal, 16px) !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media screen and (min-width: 750px) {
  .fit-custom-collection .collection-wrapper {
    grid-template-columns: 240px 1fr !important;
    column-gap: 32px !important;
    align-items: flex-start !important;
  }
}

@media screen and (min-width: 990px) {
  .fit-custom-collection .collection-wrapper {
    grid-template-columns: 280px 1fr !important;
    column-gap: 48px !important;
    /* Shifts product grid to the right */
  }
}

/* Force Shopify Block wrappers to use display: contents so their children are direct grid items */
.fit-custom-collection .collection-wrapper>shopify-block,
.fit-custom-collection .collection-wrapper>.shopify-block,
.fit-custom-collection .collection-wrapper>[id^="shopify-block-"] {
  display: contents !important;
}

/* Position Grid Children explicitly */

/* 1. Filters sidebar starts on the left (col 1), spanning from the top (row 1) to bottom */
.fit-custom-collection .facets-block-wrapper--vertical {
  grid-column: 1 / 2 !important;
  grid-row: 1 / 3 !important;
  width: 100% !important;
  padding-top: 28px;
}

/* 2. Top sorting controls bar sits on the right (col 2), top row (row 1) */
.fit-custom-collection .facets-controls-wrapper {
  grid-column: 2 / 3 !important;
  grid-row: 1 !important;
  width: 100% !important;
}

/* 3. Main collection product cards grid sits on the right (col 2), bottom row (row 2) */
.fit-custom-collection .main-collection-grid {
  grid-column: 2 / 3 !important;
  grid-row: 2 !important;
  width: 100% !important;
}

@media screen and (max-width: 749px) {
  .fit-custom-collection .facets--horizontal.facets-controls-wrapper {
    display: none !important;
  }

  .fit-custom-collection .facets-controls-wrapper,
  .fit-custom-collection .facets-block-wrapper--vertical,
  .fit-custom-collection .main-collection-grid {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .fit-custom-collection .facets-block-wrapper--vertical {
    padding-top: 0 !important;
  }

  .fit-custom-collection .product-grid--grid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Grid density adjustments */
.fit-custom-collection .product-grid--grid {
  display: grid !important;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--grid-gap-vertical, 24px) var(--grid-gap-horizontal, 16px);
  grid-template-columns: repeat(var(--grid-columns-mobile, 2), minmax(0, 1fr)) !important;
}

@media screen and (min-width: 750px) {
  .fit-custom-collection .product-grid--grid {
    grid-template-columns: repeat(var(--grid-columns-tablet, 2), minmax(0, 1fr)) !important;
  }
}

@media screen and (min-width: 990px) {
  .fit-custom-collection .product-grid--grid {
    grid-template-columns: repeat(var(--grid-columns-desktop, 4), minmax(0, 1fr)) !important;
  }
}

.fit-custom-collection .product-grid__item {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* --- Top Controls Bar (Sort & Count) --- */
.fit-custom-collection .facets-controls-wrapper {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: none !important;
  background: transparent !important;
  padding-block: 16px !important;
  margin-bottom: 24px !important;
  width: 100%;
  box-sizing: border-box;
}

.fit-custom-collection .products-count-wrapper {
  display: flex !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  color: #767676 !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.fit-custom-collection .sorting-filter__container--vertical-desktop {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.fit-custom-collection .sorting-filter__container--vertical-desktop .facets__label {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #767676 !important;
  margin: 0 !important;
  text-transform: none !important;
}

.fit-custom-collection .sorting-filter__select-wrapper {
  border: 1px solid rgba(205, 205, 205, 0.8) !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  background-color: #fff !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.fit-custom-collection .sorting-filter__select {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 16px 0 0 !important;
  cursor: pointer !important;
  color: #121212 !important;
  outline: none !important;
}

.fit-custom-collection .sorting-filter__select-wrapper .icon-caret {
  position: absolute !important;
  right: 10px !important;
  pointer-events: none !important;
  width: 10px !important;
  height: 6px !important;
}

/* --- Vertical Sidebar & Drawer Filters --- */
.fit-custom-collection .facets-block-wrapper--vertical,
.fit-custom-collection .facets-block-wrapper--drawer {
  width: 100%;
}

/* Remove default top border dividers from filter groups */
.fit-custom-collection :is(.facets--vertical, .facets--drawer) :is(.facets__item, .sorting-filter)::before {
  content: none !important;
  display: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__item {
  display: block !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 0 32px 0 !important;
  border-bottom: 1px solid rgba(220, 220, 220, 0.4) !important;
  padding-bottom: 24px !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__item:last-child {
  border-bottom: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__summary {
  padding: 0 0 12px 0 !important;
  cursor: default !important;
  pointer-events: none !important;
  /* Keep accordion sections open */
  border: none !important;
  background: transparent !important;
  opacity: 1 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__label {
  font-family: "Barlow", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 11px !important;
  color: #121212 !important;
  margin: 0 !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .icon-caret,
.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__status-wrapper {
  display: none !important;
}

/* Checklist options list style */
.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__inputs-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__inputs-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove standard checkbox box/checkmark from list options */
.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox {
  padding: 4px 0 !important;
  display: flex !important;
  align-items: center !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox__input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox__label {
  padding-left: 0 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox__label svg,
.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox__label::before {
  display: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox__label-text {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #555555 !important;
  text-transform: none !important;
  transition: color 0.2s ease, text-decoration 0.2s ease, font-weight 0.2s ease !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox:hover .checkbox__label-text {
  color: #121212 !important;
  text-decoration: underline !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .checkbox__input:checked+.checkbox__label .checkbox__label-text {
  color: #121212 !important;
  font-weight: 700 !important;
}

/* Price Filter overrides to inline text */
.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet {
  display: flex !important;
  flex-direction: column !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__highest-price {
  display: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__inputs-wrapper {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 8px 0 0 0 !important;
  border: none !important;
  background: transparent !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__field {
  position: relative !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  height: auto !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  color: #121212 !important;
  font-weight: 500 !important;
  text-align: left !important;
  outline: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__field:first-of-type .price-facet__input {
  width: 35px !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__field:last-of-type .price-facet__input {
  width: 70px !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__label {
  display: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .price-facet__separator {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  color: #767676 !important;
  margin: 0 4px !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .clear-filter {
  margin-top: 12px !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__clear.facets__clear--active {
  font-family: "Barlow", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: underline !important;
  color: #121212 !important;
  cursor: pointer !important;
}

/* Swatches in vertical filter sidebar & drawer */
.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__inputs-list--swatches-grid {
  gap: 10px !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .variant-option__button-label--has-swatch {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  cursor: pointer !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .facets__swatch-label {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  color: #555555 !important;
  font-weight: 400 !important;
  transition: color 0.2s ease, font-weight 0.2s ease !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) .variant-option__button-label--has-swatch:hover .facets__swatch-label {
  color: #121212 !important;
}

.fit-custom-collection :is(.facets--vertical, .facets--drawer) input[type="checkbox"]:checked+.variant-option__button-label--has-swatch .facets__swatch-label {
  color: #121212 !important;
  font-weight: 700 !important;
}

/* Mobile controls row */
.fit-custom-collection .facets-toggle {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(220, 220, 220, 0.5) !important;
  padding: 16px !important;
  margin-bottom: 16px !important;
  height: auto !important;
  background: transparent !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

@media screen and (min-width: 786px) {
  .fit-custom-collection .facets-toggle {
    display: none !important;
  }
}

.fit-custom-collection .facets-toggle__wrapper {
  margin: 0 !important;
}

/* Mobile FILTER Button (bordered square box) */
.fit-custom-collection .facets-toggle__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid #121212 !important;
  border-radius: 0 !important;
  /* Square corners */
  background-color: #ffffff !important;
  color: #121212 !important;
  font-family: "Barlow", sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 10px 18px !important;
  height: 42px !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.fit-custom-collection .facets-toggle__button .svg-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
}

.fit-custom-collection .facets-toggle__button .svg-wrapper svg {
  width: 100% !important;
  height: 100% !important;
  fill: currentColor !important;
}

/* Hide filter bubble count or style it cleanly */
.fit-custom-collection .filter-count-bubble {
  display: none !important;
  /* Keep it clean like mockup */
}

/* Mobile Sorting component container */
.fit-custom-collection .facets-mobile-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-grow: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
}

.fit-custom-collection .facets-mobile-wrapper facets-form-component {
  margin-left: auto !important;
  display: inline-block !important;
  width: auto !important;
}

.fit-custom-collection .sorting-filter {
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important;
}

.fit-custom-collection .sorting-filter__container {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.fit-custom-collection .sorting-filter__container .facets__label {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #767676 !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.fit-custom-collection .sorting-filter__select-wrapper {
  border: 1px solid rgba(205, 205, 205, 0.8) !important;
  border-radius: 0 !important;
  /* Square corners */
  padding: 8px 12px !important;
  background-color: #ffffff !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 42px !important;
  box-sizing: border-box !important;
}

.fit-custom-collection .sorting-filter__select {
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 16px 0 0 !important;
  /* Space for chevron */
  cursor: pointer !important;
  color: #121212 !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  text-align: left !important;
  text-align-last: left !important;
}

.fit-custom-collection .sorting-filter__select-wrapper .icon-caret {
  position: absolute !important;
  right: 8px !important;
  pointer-events: none !important;
  width: 8px !important;
  height: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #121212 !important;
}
}

/* Mobile Filter Drawer dialog styles */
.fit-custom-collection dialog-component#filters-drawer {
  z-index: var(--layer-modal, 9999) !important;
}

.fit-custom-collection dialog-component .facets--drawer {
  background-color: #ffffff !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  max-height: 100% !important;
  width: 85vw !important;
  max-width: 360px !important;
  box-sizing: border-box !important;
}

/* Drawer Header */
.fit-custom-collection .facets__title-wrapper {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(220, 220, 220, 0.5) !important;
  padding: 16px 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 10 !important;
}

.fit-custom-collection .facets-drawer__title {
  font-family: "Barlow", sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #121212 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Hide count bubble inside drawer title for cleaner look */
.fit-custom-collection .facets__bubble {
  display: none !important;
}

.fit-custom-collection .facets-drawer__close {
  color: #121212 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
}

.fit-custom-collection .facets-drawer__close svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
}

/* Drawer Content Body */
.fit-custom-collection .facets--drawer .facets__filters-wrapper {
  padding: 24px 20px !important;
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

/* Hide sorting component inside the drawer to match mockup */
.fit-custom-collection .facets--drawer sorting-filter-component {
  display: none !important;
}

/* Drawer sticky action footer */
.fit-custom-collection .facets--drawer .facets__actions {
  position: sticky !important;
  bottom: 0 !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border-top: 1px solid rgba(220, 220, 220, 0.5) !important;
  padding: 16px 20px !important;
  margin-top: auto !important;
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 10 !important;
}

/* Clear all button in drawer */
.fit-custom-collection .facets--drawer .facets__clear-all {
  background-color: #ffffff !important;
  color: #121212 !important;
  border: 1px solid #121212 !important;
  border-radius: 0 !important;
  /* Square corners */
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 20px !important;
  min-width: 100px !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transform: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* View Results button in drawer */
.fit-custom-collection .facets--drawer .facets__see-results {
  background-color: #db1f2d !important;
  /* Vibrant Red background */
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  /* Square corners */
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 20px !important;
  flex-grow: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: none !important;
  margin: 0 !important;
  transition: background-color 0.2s ease !important;
}

.fit-custom-collection .facets--drawer .facets__see-results:hover {
  background-color: #be1824 !important;
  /* Darker red on hover */
}