/** Shopify CDN: Minification failed

Line 111:5 Expected ":"

**/
/* =====================
   Collection Banner
   ===================== */

.tp-collection-banner {
  position: relative;
  overflow: hidden;
}

.tp-collection-banner__image {
  display: block;
  width: 100%;
}

.tp-collection-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-collection-banner:not(:has(.tp-collection-banner__img)) .tp-collection-banner__content {
  position:initial;

  .tp-wrapper {
    padding-block:0;
  }
}

.tp-collection-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.tp-collection-banner__content .tp-wrapper {
  width: 100%;
}

.tp-collection-banner__inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.tp-collection-banner__bar {
  display: block;
  width: 90px;
  height: 6px;
  margin-bottom: var(--tp-space-2, 8px);
}

@media (min-width:768px) {
  facet-filters-form {
    display: flex !important;
    justify-content: space-between;
    align-items: center;

    #FacetSortForm {
      padding-left: calc(234px + 3rem) !important;
    }
  }
}

#FacetsWrapperDesktop {
  margin-top: -40px;

  .icon.icon-caret {
    color: #59240E;
    width: 20px;
    height: auto;
  }

  summary .facets__summary-label {
color: var(--Gray-600, #000);
font-family: "Inter";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
  }

}
.facets__summary  {
  span{
color: var(--Gray-600, #000);
font-family: "Inter";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
  }
}


#verticalTitle {
font-family: "SFPro";
font-weight: 590;
font-style: Semibold;
font-size: 32px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: 0%;
color#2B2B2B;
  @media (max-width:547px) {
    font-size: 15px;
  }
}


#ProductCountDesktop,
.facet-filters__label.caption-large.text-body,
.product-count.light.medium-hide.large-up-hide .product-count__text  {
  display: none;
}

.user-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;

  button {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
  }
}

#product-grid.opt1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 3rem;

  li {
    width: 100%;
    max-width: 100%;

    .card__inner {
      max-width: 200px;
      max-height: 200px;
    }

    .card.card--standard.card--media {
      flex-direction: row;
      gap: 2rem;
      align-items: center;
    }
  }
}

#product-grid.opt2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  li {
    width: 100%;
    max-width: 100%;

  }
}

#product-grid.opt3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  li {
    width: 100%;
    max-width: 100%;

    .card__inner {
      max-width: 250px;
      max-height: 250px;
    }
  }
}

#product-grid.opt4 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  li {
    width: 100%;
    max-width: 100%;

    .card__inner {
      max-width: 190px;
      max-height: 190px;
    }

  }
}

.tp-collection-banner__title, 
.tp-collection-banner__title *:not(p) {
color: #FFFFFF
text-align: center;
font-family: "SFPro";
font-weight: 700;
font-style: Bold;
font-size: 56px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: 8%;
text-transform:uppercase;
  margin: 0;

}

@media screen and (max-width: 767px) {
  .tp-collection-banner__title, 
  .tp-collection-banner__title *:not(p) {
    font-size:32px;
  }
}

/* =====================
   Product Grid
   ===================== */

.tp-main-collection-product-grid {
  .tp-wrapper {

    @media (max-width:547px) {
      padding-top: 2rem !important;
    }
    .tp-main-collection-product-grid__wrapper {
      .tp-product-grid-container {
        .tp-product-grid {
          display: flex;
          flex-direction: column;
          gap: clamp(1.6000rem, calc(1.0057rem + 1.5238vw), 3.2000rem);
          align-items: center;

          .tp-product-list {
            display: grid;
            grid-template-columns: repeat(var(--tp-cols-mobile, 1), minmax(0, 1fr));
            width: 100%;
            padding: 0;
            column-gap: var(--tp-column-gap-mobile, 16px);
            row-gap: var(--tp-row-gap-mobile, 16px);

            @media screen and (min-width: 768px) {
              grid-template-columns: repeat(var(--tp-cols-tablet, 2), minmax(0, 1fr));
            }

            @media screen and (min-width: 1024px) {
              grid-template-columns: repeat(var(--tp-cols-desktop, 3), minmax(0, 1fr));
              column-gap: var(--tp-column-gap-desktop, 32px);
              row-gap: var(--tp-row-gap-desktop, 32px);
            }

            .tp-product-list-item {
              width: 100%;
              list-style: none;
            }
          }
        }

        .tp-product-grid--empty {
          .title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;

            h2 {
              font-family: Inter;
              text-align: center;
            }
          }
        }
      }
    }
  }
}