.collection-promo .collection-promo__inner {
  border-radius: 6px;
  overflow: hidden;
  height: 100%;

  .collection-promo__bg-desktop {
    display: block;
  }
  .collection-promo__bg-mobile {
    display: none;
  }
  @media (max-width: 768px) {
    .collection-promo__bg-desktop {
      display: none;
    }
    .collection-promo__bg-mobile {
      display: block;
    }
  }
}

.collection-promo__heading {
  margin: 0;
  margin-bottom: 12px;
  .text-highlight__break {
    font-weight: 400;
    font-style: Italic;
    // font-size: 32px;
    letter-spacing: -1px;
    @media (max-width: 768px) {
      // font-size: 24px;
    }
  }
}

.collection-promo__text {
  font-family: Volte;
  font-weight: 500;
  // font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0px;
  margin: 0;
  margin-bottom: 12px;
  @media (max-width: 768px) {
    // font-size: 12px;
    display: none;
  }
}

.collection-promo__button {
  margin: 0;
  .btn {
    font-family: Volte;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0px;
  }
}

.collection-promo--one-column .collection-promo__bg {
  height: 100%;
}

.collection-promo--two-columns .collection-promo__content {
  padding: 40px;
}
.collection-promo--one-column .collection-promo__content {
  padding: 32px;
}

@media (max-width: 768px) {
  .collection-promo__content .collection-promo__body {
    width: 100% !important;
  }
  .collection-promo--two-columns .collection-promo__content {
    padding: 16px;
  }
  .collection-promo--one-column .collection-promo__content {
    padding: 16px;
  }
}

.collection__products {
  .pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    .page,
    .next,
    .prev {
      width: 40px;
      height: 40px;
      background: #f0efec;
      border-radius: 100%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
      padding-top: 3px;
      a {
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0;
        text-align: center;
        .pagination__button {
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }
    }
    .page.current {
      background: #cab4aa;
      color: #f7f8f5;
    }
  }
}

.collection__pills {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-right: 24px;
  border-radius: 8px;
  padding-bottom: 8px;
  scrollbar-width: thin;
  &::-webkit-scrollbar {
    height: 6px;
  }
  &::-webkit-scrollbar-track {
    background: transparent;
  }
  &::-webkit-scrollbar-thumb {
    background: #cab4aa;
    border-radius: 3px;
    &:hover {
      background: #b8a095;
    }
  }
  @media (max-width: 768px) {
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    padding-left: var(--gutter-mobile);
    padding-bottom: 0;
    &::-webkit-scrollbar {
      display: none;
    }
  }
}

.collection__pill {
  display: inline-block;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.collection__pills__inner {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.collection__pill:hover {
  opacity: 0.5;
}

.collection__filters {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  &.is-visible {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }
}

.collection__filters-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 40px;
  @media (max-width: 768px) {
    padding: 24px;
    max-width: 320px;
  }

  .is-visible & {
    transform: translateX(0);
  }
}

.collection__filters__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1;
}

.collection__filters__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #cbccc7;

  .collection__filters__close {
    display: flex;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    right: 0;
    top: 0;
  }
}

.collection__filters__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #4a4a4a;
  font-style: normal;
  margin-bottom: 0;
  font-family: Volte;
}

.collection__filters__reset {
  font-size: 14px;
  color: #4a4a4a;
  text-decoration: underline;
}

.collection__filters-toggle {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  white-space: nowrap;
}

.collection__filters-toggle:hover {
  opacity: 0.5;
}

.collection__products-count {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  white-space: nowrap;
  @media (max-width: 768px) {
    display: block;
    text-align: left;
  }
}

.wrapper--filter-count {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  @media (max-width: 768px) {
    width: 100%;
    height: 80px;
  }
}

.collection--breadcrumbs-disabled .collection__sticky-bar {
  justify-content: space-between;
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
  }
}

.collection__filter__title,
.collection__sort__label {
  padding: 24px 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  color: #4a4a4a;
}
.collection__filter {
  border-bottom: 1px solid #cbccc7;
}
.collection__filter:last-of-type {
  padding: 0;
  .collection__filter__title {
    border-bottom: none;
  }
}

.collection__filter-tags {
  background-color: transparent;
  gap: 12px;
  padding: 0;
}

.collection__filter-tag--default .filter__button,
.collection__sort__button {
  padding-left: 24px;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 140%;
  color: #797a79;
}

.collection__filter-tag--swatch .filter_value_label {
  padding-left: 8px;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 140%;
  color: #797a79;
}

#CollectionFilter--colour .collection__filter-tag--swatch .filter_value_label {
  margin-top: 3px;
  @media (max-width: 768px) {
    margin-top: 6px;
  }
}

[data-collapsible-container].is-expanded {
  padding-bottom: 24px;
}

.is-expanded .collection__filter-tags {
  display: flex;
  flex-direction: column;
}

.collection__filter-tag--swatch {
  margin-bottom: 0;
}

.collection__filters-list__inner .collection__sort {
  display: block;
  border-bottom: 1px solid #cbccc7;
}

.collection__filter-tag {
  margin: 0;
  display: flex;
  align-items: center;
}

.collection__sort__button:before {
  margin: 3px 0;
}
.collection__sort__button:after {
  margin: 6px 3px;
}
.collection__filters__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;

  .results-button {
    padding: 16px 0;
    gap: 12px;
    border-radius: 100px;
    background-color: #adb0a8;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
    color: #f7f8f5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .collection__filters__reset {
    padding: 16px 24px;
    border: 1px solid #797a79;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #4a4a4a;
    text-decoration: none;
  }
}

.collection__filters-list {
  width: 100%;
}