.bp-htl {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
  padding: 50px 0 70px;
}

.bp-htl-filters {
  background: #fff;
  color: #01275b;
  border: 2px solid #01275b;
  border-radius: 8px;
  padding: 30px;
  position: sticky;
  top: 140px;
  max-height: 75vh;
  overflow: auto;
}

.bp-htl-filters h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #01275b;
  margin: 26px 0 12px;
}

.bp-htl-filters > div:first-child h4 {
  margin-top: 0;
}

.bp-htl-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-htl-filter-list ul {
  list-style: none;
  margin: 8px 0 8px 24px;
  padding: 0;
}

.bp-htl-filter-list li {
  list-style: none !important;
  padding-left: 0 !important;
  position: static;
}

.bp-htl-filter-list li:before {
  display: none !important;
  content: none !important;
}

.bp-htl-filter-list label {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 2.2;
  color: #01275b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.bp-htl-filter-list input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.bp-htl-box {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1.5px solid #01275b;
  background: #fff;
  flex-shrink: 0;
  box-shadow: none;
}

.bp-htl-box:before,
.bp-htl-box:after {
  content: none !important;
  display: none !important;
}

.bp-htl-filter-list input:checked + .bp-htl-box {
  background: #01275b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.5 4.7 9 10 3.5' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.bp-htl-filter-list span {
  opacity: 0.75;
  font-size: 14px;
}

.bp-htl-clear {
  margin-top: 30px;
}

.bp-htl-clear > button {
  width: 100%;
  min-width: 0;
}

.bp-htl-results h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #01275b;
  text-align: center;
  margin: 0 0 10px;
}

.bp-htl-intro {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 17px;
  color: #000;
  margin: 0 0 40px;
}

.bp-htl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-htl-grid li,
.bp-htl li {
  list-style: none !important;
  padding-left: 0 !important;
}

.bp-htl-grid li:before,
.bp-htl-grid li:after,
.bp-htl li:before,
.bp-htl li:after {
  content: none !important;
  display: none !important;
}

#bp-htl-products.is-loading {
  opacity: 0.4;
  transition: opacity 0.2s;
}

.bp-htl-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.bp-htl-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: contain;
  transition: transform 0.3s;
}

.bp-htl-card a:hover img {
  transform: scale(1.03);
}

.bp-htl-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #01275b;
  text-align: center;
  margin: 8px 0 6px;
}

.bp-htl-card-meta {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-align: center;
  color: #000;
  margin: 0 0 8px;
  line-height: 1.5;
}

.bp-htl-card-stats {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-align: center;
  color: #000;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.bp-htl-sep {
  color: #ee076f;
}

.bp-htl-empty {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 17px;
  padding: 40px 0;
}

.bp-htl-load-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.bp-htl-load-more .ssp-button-1 > button:after {
  content: none !important;
  display: none !important;
}

.bp-htl-load-more .ssp-button-1 > button {
  padding-right: 20px;
}

@media (max-width: 900px) {
  .bp-htl {
    grid-template-columns: 1fr;
  }

  .bp-htl-filters {
    position: static;
    max-height: none;
  }

  .bp-htl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .bp-htl-grid {
    grid-template-columns: 1fr;
  }
}
