/** Shopify CDN: Minification failed

Line 15:12 Expected identifier but found whitespace
Line 15:14 Unexpected "{"
Line 15:23 Expected ":"
Line 15:47 Expected ":"
Line 18:13 Expected identifier but found whitespace
Line 18:15 Unexpected "{"
Line 18:24 Expected ":"

**/
.collection-hero__title {
  margin: 0px 0px;
  padding: 20px 0px;
  font-size: {{ section.settings.font_size }}px;
  font-weight: 800;
  color: rgba(var(--color-foreground), .85);
  text-align: {{ section.settings.text_alignment }};
}

.sorting-wrapper {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 30px;
  margin-bottom: 5px;
}

.child-sorting-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 350px;
}

.product-grid-container {
  width: 100%;
}

.facet-filters__label {
    display: block;
    color: rgba(var(--color-foreground), .85);
    font-size: 14px;
    margin: 0 20px 0 0;
    font-weight: 400;
    width: max-content;
    font-family: var(--font-body-family);
}

.facet-filters__field {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.collection-filters-wrapper summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

.collection-filters-wrapper summary:hover {
  text-decoration: underline;
  color: rgba(var(--color-foreground), 1);
}

.collection-filters-wrapper summary span{
  font-size: 14px;
}

.facets__label:hover,
.facets__label:has(:focus-visible) {
  color: rgba(var(--color-foreground), 1);
}

.facet-filters__sort {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  height: auto;
  margin: 0;
  padding-left: 0;
  padding-right: 17px;
  cursor: pointer;
  color: rgba(var(--color-foreground),.75);
  max-width: 130px;
}

.facet-filters__sort:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

.reset-button {
  text-transform: capitalize;
  color: rgba(var(--color-foreground),.75);
  margin-left: 10px;
}

.active-filter-item {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.active-filter-item span {
  font-size: 12px;
  margin-right: 10px;
  pointer-events: none
}

.item-counts-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 80px;
  min-height: 25px;
  position: relative;
}

.results-count {
  width: max-content;
  font-size: 14px;
}

.active-filter-group__item-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.active-filter-group__item-wrapper .active-filter-item {
  margin-top: 12px;
  margin-right: 12px;
}

.filter-close .icon-close {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.filter-close {
  display: flex;
}

.active-filter-item.active-filter-clear-all {
  background: none;
  text-decoration: underline;
}

.horizontal-filters__parent-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.filter-type-horizontal .filter-close .icon-close {
  width: 10px;
  height: 10px;
}

.filter-type-horizontal .active-filter-group__item-wrapper {
  gap: 15px;
}

.filter-type-horizontal .active-filter-group__item-wrapper .active-filter-item {
  margin: 0px;
}

.filter-type-horizontal .filter.active-filter-item.active-filter-clear-all {
  border: none;
}

.loading-overlay__spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(var(--color-foreground), 0.1);
  border-top-color: rgb(var(--color-foreground));
  border-radius: 100%;
  animation: spin 0.6s infinite linear;
  display: none;
  position: absolute;
}

.product-grid-wrapper{
  margin-top: 13px;
}

.mobile-filters-drawer {
  width: 100%;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 750px) {
  .product-grid {
    gap: 5px;
    row-gap: var(--grid-mobile-horizontal-spacing);
    column-gap: var(--grid-mobile-vertical-spacing);
  }

  .sorting-wrapper {
    margin-bottom: 0px;
  }

  .results-count{
    font-size: 14px;
  }

  .filter-type-horizontal .active-filter-group__item-wrapper {
    gap: 0px;
  }

  .filter-type-horizontal .active-filter-group__item-wrapper .active-filter-item {
    margin-top: 12px;
    margin-right: 12px;
  }
}

/* START - Filters checkbox styles for all filter types */
  .facet-checkbox {
    padding: 10px 20px 10px 0;
    flex-grow: 1;
    position: relative;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    word-break: break-word;
    cursor: pointer;
    line-height: 1;
  }

  .facet-checkbox:hover {
    color: rgba(var(--color-foreground), 1);
    text-decoration: underline;
  }

  .facet-checkbox input[type='checkbox'] {
    margin-right: 12px;
    position: absolute;
    opacity: 0;
    width: 16px;
    height: 16px;
    top: 7px;
    left: -4px;
  }

  .facet-checkbox > svg,
  .facet-checkbox > .svg-wrapper {
    background-color: rgb(var(--color-background));
    margin-right: 12px;
    flex-shrink: 0;
  }

  .facet-checkbox .svg-wrapper {
    visibility: hidden;
    position: absolute;
    left: 3px;
    z-index: 5;
    top: 14px;
    width: 11px;
    height: 7px;
  }

  .facet-checkbox > input[type='checkbox']:checked ~ .svg-wrapper > .icon-checkmark {
    visibility: visible;
  }

  .facet-checkbox:has(input:disabled) {
    opacity: 0.4;
    pointer-events: none;
  }

/* END - Filters checkbox styles for all filter types */