.toplist-block .toplist-product-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}

.toplist-block .toplist-more-toggle {
  display: none;
}

.toplist-block .toplist-more-toggle:not(:checked) + .toplist-product-grid .toplist-grid-col--extra {
  display: none;
}

.toplist-block .toplist-more-toggle:checked ~ .toplist-show-more {
  display: none;
}

.toplist-block .toplist-show-more {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.toplist-block .toplist-show-more__btn {
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(245, 141, 9, 0.25);
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.15s ease;
}

.toplist-block .toplist-show-more__btn:hover,
.toplist-block .toplist-show-more__btn:focus {
  box-shadow: 0 10px 22px rgba(245, 141, 9, 0.35);
  transform: translateY(-2px);
}

.toplist-block .toplist-show-more__btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 6px rgba(245, 141, 9, 0.25);
  transition-duration: 0.1s;
}

.toplist-block .toplist-show-more__btn:focus-visible {
  outline: none;
  box-shadow: 0 10px 22px rgba(245, 141, 9, 0.35), 0 0 0 4px rgba(245, 141, 9, 0.25);
}

.toplist-block .toplist-heading-wrap {
  text-align: center;
}

.toplist-block > .toplist-group:last-child {
  padding-bottom: 20px;
}

.toplist-block .toplist-banner {
  position: relative;
  display: block;
  height: 120px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #173557;
}

.toplist-block .toplist-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.toplist-block .toplist-banner__label {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 13px 15px 12px;
  text-align: center;
  min-width: 168px;
  z-index: 10;
  background: rgba(23, 53, 87, 0.7);
  font-weight: 500;
}

.toplist-block .toplist-grid-col {
  display: flex;
  float: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 8px;
}

@supports (display: grid) {
  .toplist-block .toplist-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .toplist-block .toplist-product-grid::before,
  .toplist-block .toplist-product-grid::after {
    content: none;
  }

  @media (min-width: 768px) {
    .toplist-block .toplist-product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-column-gap: 20px;
    }
  }

  @media (min-width: 992px) {
    .toplist-block .toplist-product-grid {
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
  }

  .toplist-block .toplist-grid-col {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.toplist-block .toplist-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 8px 12px !important;
  height: 100%;
}

@media (min-width: 992px) {
  .toplist-block .toplist-card {
    height: 110px !important;
    min-height: 110px !important;
  }
}

.toplist-block .toplist-card__image {
  flex: 0 0 64px;
  width: 64px;
  position: relative;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
}

.toplist-block .toplist-card__image a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}

.toplist-block .toplist-card__image img {
  height: 100%;
  width: auto;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  object-fit: contain;
}

.toplist-block .toplist-card__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  z-index: 1;
}

@media (min-width: 992px) {
  .toplist-block .toplist-card__label {
    font-size: 8px;
  }
}

.toplist-block .toplist-card__label--campaign,
.toplist-block .toplist-card__label--outlet {
  background-color: #f03a25;
}

.toplist-block .toplist-card__details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.toplist-block .toplist-card__name {
  font-size: 13px !important;
  font-weight: 700;
  font-style: italic;
  text-align: left;
  line-height: 1.25 !important;
  margin: 0 0 2px 0 !important;
  text-shadow: none !important;
  color: #000;
  text-transform: lowercase !important;
}

.toplist-block .toplist-card__name::first-letter {
  text-transform: uppercase !important;
}

.toplist-block .toplist-card__name a {
  color: #000 !important;
  display: inline-block;
  text-transform: lowercase !important;
}

.toplist-block .toplist-card__name a::first-letter {
  text-transform: uppercase !important;
}

.toplist-block .toplist-card__name a:hover {
  color: #f03a25 !important;
}

.toplist-block .toplist-card__rating {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px !important;
  margin-bottom: 2px !important;
  font-size: 11px !important;
  min-height: 15px;
}

.toplist-block .toplist-card__rating .rating {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 11px;
}

.toplist-block .toplist-card__meta,
.toplist-block .toplist-card__delivery {
  font-size: 11px !important;
  color: #444;
  margin-bottom: 1px !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px !important;
}

.toplist-block .toplist-card__meta .bhs {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.toplist-block .toplist-card__season {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.toplist-block .toplist-card__snow {
  width: 20px;
  height: auto;
  margin-left: 2px;
  vertical-align: middle;
}

.toplist-block .toplist-card__delivery .bhs-icon-freight {
  background-position: 97.17514% 64.09018%;
  background-size: 1820.83333% 3205%;
  filter:
    invert(63%)
    sepia(78%)
    saturate(420%)
    hue-rotate(38deg)
    brightness(96%)
    contrast(95%);
  width: 20px;
  height: 13px;
  flex-shrink: 0;
}

.toplist-block .toplist-card__read-more {
  font-size: 11px !important;
  margin-top: 1px;
}

.toplist-block .toplist-card__read-more a {
  color: #337ab7;
}

.toplist-block .toplist-card__price-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 90px;
}

.toplist-block .toplist-card__price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.toplist-block .toplist-card__price-from {
  display: block;
  font-size: 10px !important;
  color: #666;
  margin-bottom: 1px !important;
}

.toplist-block .toplist-card__price {
  font-size: 14px !important;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px !important;
  white-space: nowrap;
}

.toplist-block .toplist-card__price--campaign {
  color: #f03a25;
}

.toplist-block .toplist-card__btn {
  display: inline-block;
  width: auto;
  background-color: #f58d09;
  border: 1px solid #e07f08;
  border-radius: 2px;
  color: #fff;
  padding: 7px 14px;
  margin-bottom: 2px;
  min-width: 0;
  font-weight: 700;
  line-height: 17px !important;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.toplist-block .toplist-card__btn .bhg-shopping-cart {
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 4px 0 0;
}

.toplist-block .toplist-card__btn:hover {
  background-color: #e07f08;
  border-color: #e07f08;
  color: #fff;
}

@media (max-width: 767px) {
  .toplist-block .toplist-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: 0;
    padding: 10px 12px !important;
  }

  .toplist-block .toplist-card__image {
    flex: 0 0 100px;
    width: 100px;
    max-width: 100px;
    margin-right: 12px;
    margin-bottom: 0;
    text-align: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .toplist-block .toplist-card__image a {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .toplist-block .toplist-card__image img {
    max-height: 100px;
    height: auto;
    width: auto;
    max-width: 85%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }

  .toplist-block .toplist-card__details {
    flex: 1;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 8px;
  }

  .toplist-block .toplist-card__price-col {
    flex-basis: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding-top: 8px;
    border-top: 1px solid #eee;
  }

  .toplist-block .toplist-card__price-row {
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
  }

  .toplist-block .toplist-card__price-from {
    margin-bottom: 0 !important;
  }

  .toplist-block .toplist-card__price {
    margin-bottom: 0 !important;
  }

  .toplist-block .toplist-card__btn {
    max-width: 140px;
    flex: 0 0 auto;
    margin-left: auto;
    margin-bottom: 0;
  }
}
