.hs-pf {
  --pf-accent: #aa8977;
  --pf-accent-dark: #967562;
  --pf-blue: #3498c4;
  --pf-blue-soft: #eaf5fa;
  --pf-text: #222;
  --pf-muted: #666;
  --pf-border: #e2e2e2;
  --pf-surface: #fff;
  width: 100%;
  margin: 32px auto;
  color: var(--pf-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.hs-pf,
.hs-pf * {
  box-sizing: border-box;
}

.hs-pf [hidden] {
  display: none !important;
}

.hs-pf button,
.hs-pf input,
.hs-pf select {
  font: inherit;
}

.hs-pf button,
.hs-pf select,
.hs-pf input[type="checkbox"] {
  cursor: pointer;
}

.hs-pf a {
  color: inherit;
  text-decoration: none;
}

.hs-pf .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hs-pf :where(button, a, input, select):focus-visible {
  outline: 3px solid rgba(48, 152, 198, .45);
  outline-offset: 2px;
}

.hs-pf__intro {
  margin: 0 0 42px;
}

.hs-pf__intro h2 {
  margin: 0 0 4px;
  color: var(--pf-text);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.hs-pf__intro p {
  margin: 0;
}

.hs-pf__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  margin-bottom: 20px;
  padding: 16px 24px;
  background: var(--pf-surface);
  border: 1px solid var(--pf-border);
  border-radius: 16px;
}

.hs-pf__result-count {
  font-size: 1.08rem;
}

.hs-pf__toolbar-controls {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hs-pf__toolbar-controls > label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #444;
  white-space: nowrap;
}

.hs-pf__mobile-sort-label {
  display: none;
}

.hs-pf__toolbar select {
  width: auto;
  min-width: 185px;
  height: 44px;
  margin: 0;
  padding: 0 42px 0 15px;
  color: var(--pf-accent-dark);
  font-weight: 700;
  background-color: #fff;
  border: 2px solid var(--pf-accent);
  border-radius: 14px;
}

.hs-pf__views {
  display: inline-flex;
  overflow: visible;
  position: relative;
  margin-left: 52px;
  border: 2px solid var(--pf-accent);
  border-radius: 14px;
}

.hs-pf__views::before {
  content: "Ansicht";
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  color: #444;
  font-size: .9rem;
  white-space: nowrap;
  transform: translateY(-50%);
}

.hs-pf__views button {
  display: grid;
  width: 42px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: var(--pf-accent);
  line-height: 1;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.hs-pf__views button:first-child {
  border-radius: 11px 0 0 11px;
}

.hs-pf__views button:last-child {
  border-radius: 0 11px 11px 0;
}

.hs-pf__views button + button {
  border-left: 1px solid var(--pf-accent);
}

.hs-pf__views button[aria-pressed="true"] {
  color: #fff;
  background: var(--pf-accent);
}

.hs-pf__mobile-filter,
.hs-pf__mobile-head,
.hs-pf__backdrop {
  display: none;
}

.hs-pf__layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.hs-pf__sidebar {
  position: sticky;
  top: 20px;
  z-index: 2;
  overflow: hidden;
  background: var(--pf-surface);
  border: 1px solid var(--pf-border);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.hs-pf__sidebar form,
.hs-pf__facet,
.hs-pf__facet legend {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hs-pf__selected {
  min-height: 88px;
  padding: 16px;
  background: var(--pf-blue-soft);
}

.hs-pf__selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--pf-blue);
  font-size: .75rem;
  letter-spacing: .04em;
}

.hs-pf__selected-head button {
  padding: 0;
  color: var(--pf-accent);
  font-size: .8rem;
  background: transparent;
  border: 0;
}

.hs-pf__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.hs-pf__chips button {
  min-height: 27px;
  padding: 3px 9px;
  color: var(--pf-accent-dark);
  font-size: .77rem;
  line-height: 1.2;
  background: #fff;
  border: 1px solid #b8d9e8;
  border-radius: 999px;
}

.hs-pf__facet {
  border-bottom: 1px solid var(--pf-border);
}

.hs-pf__facet legend {
  display: block;
  width: 100%;
  max-width: none;
}

.hs-pf__facet legend button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--pf-text);
  font-size: .92rem;
  font-weight: 700;
  text-align: left;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.hs-pf__facet legend button span:last-child {
  color: var(--pf-accent);
  font-size: 1.1rem;
  transition: transform .18s ease;
}

.hs-pf__facet.is-open legend button span:last-child {
  transform: rotate(180deg);
}

.hs-pf__facet-body {
  display: none;
  padding: 0 16px 16px;
}

.hs-pf__facet.is-open .hs-pf__facet-body {
  display: block;
}

.hs-pf__choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  margin: 0 0 8px;
  color: #444;
  font-size: .93rem;
  line-height: 1.25;
}

.hs-pf__choice:last-child {
  margin-bottom: 0;
}

.hs-pf__choice input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  background: #fff;
  border: 2px solid var(--pf-accent);
  border-radius: 4px;
}

.hs-pf__choice input:checked {
  background-color: var(--pf-blue);
  border-color: var(--pf-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

.hs-pf__choice input:disabled {
  cursor: not-allowed;
  opacity: .38;
}

.hs-pf__choice small {
  color: var(--pf-accent);
  font-size: .8rem;
}

.hs-pf__range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
}

.hs-pf__range label {
  display: block;
  margin: 0;
}

.hs-pf__range input {
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 7px 12px;
  color: var(--pf-text);
  background: #fff;
  border: 1.5px solid var(--pf-accent);
  border-radius: 13px;
}

.hs-pf__range input::-webkit-inner-spin-button {
  appearance: none;
}

.hs-pf__apply {
  padding: 14px 16px 16px;
}

.hs-pf__apply button,
.hs-pf__pagination button,
.hs-pf__compare-bar button {
  min-height: 43px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 700;
  background: var(--pf-accent);
  border: 0;
  border-radius: 14px;
}

.hs-pf__apply button {
  width: 100%;
}

.hs-pf__apply button:hover,
.hs-pf__pagination button:hover,
.hs-pf__compare-bar button:hover,
.hs-pf-card__shop:hover {
  background: var(--pf-accent-dark);
}

.hs-pf__main {
  min-width: 0;
}

.hs-pf__results {
  display: grid;
  gap: 20px;
  transition: opacity .15s ease;
}

.hs-pf.is-loading .hs-pf__results {
  opacity: .5;
  pointer-events: none;
}

.hs-pf-card {
  position: relative;
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr) 185px;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pf-border);
}

.hs-pf-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 265px;
  padding: 35px 24px 24px;
  border-right: 1px solid var(--pf-border);
}

.hs-pf-card__media > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.hs-pf-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 200px;
  margin: auto;
  object-fit: contain;
}

.hs-pf-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 7px 13px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .025em;
  background: var(--pf-blue);
  border-radius: 0 0 14px;
}

.hs-pf-card__content {
  display: flex;
  min-width: 0;
  padding: 25px 28px;
  flex-direction: column;
}

.hs-pf-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hs-pf-card h3 {
  margin: 0;
  color: var(--pf-accent);
  font-size: 1.35rem;
  line-height: 1.25;
}

.hs-pf-card h3 a:hover {
  color: var(--pf-accent-dark);
}

.hs-pf-card__summary {
  margin: 20px 0 12px;
  color: #4d4d4d;
  font-size: 16px;
}

.hs-pf-card__highlights {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}

.hs-pf-card__highlights li {
  position: relative;
  margin: 4px 0;
  padding-left: 25px;
}

.hs-pf-card__highlights li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 1px;
  width: 9px;
  height: 9px;
  background: var(--pf-blue);
  border-radius: 50%;
}

.hs-pf-card__compare {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  font-size: .72rem;
  white-space: nowrap;
}

.hs-pf-card__compare input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.hs-pf-card__compare span {
  display: block;
  width: 23px;
  height: 23px;
  background: #fff;
  border: 2px solid var(--pf-blue);
  border-radius: 50%;
}

.hs-pf-card__compare input:checked + span {
  background: var(--pf-blue);
  box-shadow: inset 0 0 0 4px #fff;
}

.hs-pf-card__actions {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.hs-pf-card__actions a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  font-weight: 700;
  border: 2px solid var(--pf-accent);
  border-radius: 14px;
  transition: color .15s, background-color .15s;
}

.hs-pf-card__details {
  min-width: 190px;
  color: var(--pf-accent) !important;
  background: #fff;
}

.hs-pf-card__details:hover {
  color: #fff !important;
  background: var(--pf-accent);
}

.hs-pf-card__shop {
  min-width: 125px;
  color: #fff !important;
  background: var(--pf-accent);
}

.hs-pf-card__offer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 64px 24px 28px 18px;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.hs-pf-card__offer img {
  display: block;
  width: auto;
  max-width: 110px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.hs-pf-card__offer > span {
  font-size: 1.05rem;
  font-weight: 700;
}

.hs-pf-card__offer .amount {
  color: inherit;
  font-weight: inherit;
}

.hs-pf__results--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hs-pf__results--grid .hs-pf-card {
  display: flex;
  flex-direction: column;
}

.hs-pf__results--grid .hs-pf-card__media {
  min-height: 240px;
  border-right: 0;
  border-bottom: 1px solid var(--pf-border);
}

.hs-pf__results--grid .hs-pf-card__content {
  padding: 20px;
  flex: 1 1 auto;
}

.hs-pf__results--grid .hs-pf-card__title-row {
  display: block;
}

.hs-pf__results--grid .hs-pf-card__compare {
  position: static;
  margin-top: 10px;
}

.hs-pf__results--grid .hs-pf-card__actions {
  flex-direction: column;
  gap: 8px;
}

.hs-pf__results--grid .hs-pf-card__actions a {
  width: 100%;
  min-width: 0;
}

.hs-pf__results--grid .hs-pf-card__offer {
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-top: 1px solid var(--pf-border);
  text-align: center;
}

.hs-pf__empty {
  min-height: 210px;
  padding: 45px 28px;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 12px;
  text-align: center;
}

.hs-pf__empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hs-pf__empty p {
  margin: 0;
}

.hs-pf__pagination {
  padding: 24px 0 0;
  text-align: center;
}

.hs-pf__compare-bar {
  position: fixed;
  right: 50%;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px 12px 22px;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  transform: translateX(50%);
}

.hs-pf__compare-bar .hs-pf__compare-clear {
  padding: 5px;
  color: var(--pf-muted);
  font-size: .85rem;
  font-weight: 400;
  background: transparent;
}

.hs-pf__compare-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--pf-text);
  background: var(--pf-surface);
  border: 1px solid rgba(170, 137, 119, .3);
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(34, 34, 34, .28);
}

.hs-pf__compare-dialog::backdrop {
  background: rgba(26, 31, 34, .58);
  backdrop-filter: blur(2px);
}

.hs-pf__compare-dialog [data-hs-pf-compare-content] {
  display: flex;
  max-height: calc(100vh - 42px);
  min-height: 0;
  flex-direction: column;
}

.hs-pf__compare-dialog [data-hs-pf-compare-content] > p {
  margin: 0;
  padding: 32px 30px;
  color: var(--pf-muted);
}

.hs-pf__compare-dialog h2 {
  flex: 0 0 auto;
  margin: 0;
  padding: 25px 72px 21px 30px;
  color: var(--pf-text);
  font-size: 1.55rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--pf-blue-soft), #f7fbfd);
  border-bottom: 1px solid #d7eaf2;
}

.hs-pf__dialog-close {
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 5;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 0 3px;
  color: var(--pf-accent-dark);
  font-size: 1.7rem;
  line-height: 1;
  background: #fff;
  border: 1px solid rgba(170, 137, 119, .55);
  border-radius: 50%;
  transition: color .15s ease, background-color .15s ease, transform .15s ease;
}

.hs-pf__dialog-close:hover {
  color: #fff;
  background: var(--pf-accent);
  transform: rotate(4deg);
}

.hs-pf-compare-table-wrap {
  min-height: 0;
  padding: 26px 30px 30px;
  overflow-x: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.hs-pf-compare-table {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  table-layout: fixed;
}

.hs-pf-compare-table th,
.hs-pf-compare-table td {
  min-width: 155px;
  padding: 17px 18px;
  color: var(--pf-text);
  font-size: .94rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--pf-border);
  border-bottom: 1px solid var(--pf-border);
}

.hs-pf-compare-table tr > :last-child {
  border-right: 0;
}

.hs-pf-compare-table tbody tr:last-child > * {
  border-bottom: 0;
}

.hs-pf-compare-table thead th {
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: bottom;
  background: #fbfcfc;
}

.hs-pf-compare-table thead th:first-child,
.hs-pf-compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 155px;
  min-width: 155px;
  color: #4b4542;
  font-weight: 700;
  text-align: left;
  background: #f8f4f1;
  box-shadow: 5px 0 12px -12px rgba(0, 0, 0, .65);
}

.hs-pf-compare-table thead th:first-child {
  z-index: 3;
  color: var(--pf-accent-dark);
  font-size: .8rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hs-pf-compare-table thead img {
  display: block;
  width: auto;
  max-width: 130px;
  height: 120px;
  margin: 0 auto 13px;
  object-fit: contain;
}

.hs-pf-compare-table thead th > span {
  display: block;
  color: var(--pf-accent-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.hs-pf-compare-table tbody tr:nth-child(1) td {
  color: var(--pf-text);
  font-size: 1.04rem;
  font-weight: 700;
}

.hs-pf-compare-table tbody tr:nth-child(2) td {
  color: #247fa8;
  font-weight: 700;
  background: #f3fafe;
}

.hs-pf-compare-table tbody tr:last-child td {
  padding-top: 13px;
  padding-bottom: 13px;
}

.hs-pf-compare-table tbody tr:last-child a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  background: var(--pf-accent);
  border: 2px solid var(--pf-accent);
  border-radius: 12px;
  transition: background-color .15s ease, border-color .15s ease;
}

.hs-pf-compare-table tbody tr:last-child a:hover {
  background: var(--pf-accent-dark);
  border-color: var(--pf-accent-dark);
}

@media (max-width: 1200px) {
  .hs-pf-card {
    grid-template-columns: 220px minmax(0, 1fr) 145px;
  }

  .hs-pf__results--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-pf-card__content {
    padding: 20px;
  }

  .hs-pf__layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .hs-pf-card__details {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .hs-pf__intro {
    margin-bottom: 24px;
  }

  .hs-pf__toolbar {
    padding: 12px 15px;
    flex-wrap: wrap;
  }

  .hs-pf__mobile-filter {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    color: var(--pf-text);
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 7px;
  }

  .hs-pf__toolbar-controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
  }

  .hs-pf__toolbar-controls > label {
    font-size: .85rem;
  }

  .hs-pf__toolbar select {
    min-width: 145px;
    max-width: 190px;
  }

  .hs-pf__views::before {
    display: none;
  }

  .hs-pf__views {
    margin-left: 0;
  }

  .hs-pf__layout {
    display: block;
  }

  .hs-pf__sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1002;
    width: min(370px, 90vw);
    overflow: auto;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform .25s;
  }

  .hs-pf.filters-open .hs-pf__sidebar {
    transform: translateX(0);
  }

  .hs-pf__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--pf-border);
  }

  .hs-pf__mobile-head button {
    padding: 0;
    font-size: 2rem;
    background: none;
    border: 0;
  }

  .hs-pf__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1001;
    padding: 0;
    background: rgba(0, 0, 0, .45);
    border: 0;
  }

  .hs-pf.filters-open .hs-pf__backdrop {
    display: block;
  }

  .hs-pf-no-scroll {
    overflow: hidden;
  }

  .hs-pf-card {
    grid-template-columns: 210px minmax(0, 1fr) 140px;
  }
}

@media (max-width: 700px) {
  .hs-pf {
    margin: 20px auto;
  }

  .hs-pf__intro {
    margin-bottom: 18px;
  }

  .hs-pf__intro h2 {
    margin-bottom: 8px;
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .hs-pf__intro p,
  .hs-pf__intro div {
    font-size: .78rem;
    line-height: 1.35;
  }

  .hs-pf__toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    min-height: 0;
    margin-bottom: 8px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 9px;
  }

  .hs-pf__result-count,
  .hs-pf__views {
    display: none;
  }

  .hs-pf__mobile-filter {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    padding: 7px 8px;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    background: var(--pf-accent);
    border: 0;
    border-radius: 0;
  }

  .hs-pf__mobile-filter svg,
  .hs-pf__mobile-sort-label svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  .hs-pf__toolbar-controls {
    display: block;
    width: 100%;
    margin: 0;
  }

  .hs-pf__toolbar-controls > .hs-pf__sort-control {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    background: var(--pf-accent);
  }

  .hs-pf__sort-label {
    display: none;
  }

  .hs-pf__mobile-sort-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .hs-pf__toolbar .hs-pf__sort-control select {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    max-width: none;
    height: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }

  .hs-pf-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .hs-pf-card__media {
    grid-column: 1;
    grid-row: 1;
    min-height: 210px;
    padding: 35px 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--pf-border);
  }

  .hs-pf-card__image {
    max-height: 155px;
  }

  .hs-pf-card__content {
    display: contents;
  }

  .hs-pf-card__offer {
    grid-column: 1;
    grid-row: 5;
    align-items: center;
    min-height: 0;
    padding: 9px 14px 6px;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    text-align: right;
  }

  .hs-pf-card__offer img {
    max-width: 76px;
    max-height: 30px;
  }

  .hs-pf-card__offer > span {
    font-size: .9rem;
  }

  .hs-pf-card__title-row {
    grid-column: 1;
    grid-row: 2;
    display: block;
    padding: 16px 14px 0;
  }

  .hs-pf-card__compare {
    position: absolute;
    top: 7px;
    right: 7px;
    margin: 0;
    font-size: .58rem;
  }

  .hs-pf-card__compare span {
    width: 16px;
    height: 16px;
    border-width: 1.5px;
  }

  .hs-pf-card h3 {
    font-size: 1rem;
  }

  .hs-pf-card__summary {
    grid-column: 1;
    grid-row: 3;
    margin: 9px 0 0;
    padding: 0 14px;
    font-size: .72rem;
    line-height: 1.4;
  }

  .hs-pf-card__highlights {
    display: block;
    grid-column: 1;
    grid-row: 4;
    margin: 8px 14px 0;
    font-size: .7rem;
    line-height: 1.35;
  }

  .hs-pf-card__highlights li {
    margin: 2px 0;
    padding-left: 16px;
  }

  .hs-pf-card__highlights li::before {
    top: .45em;
    width: 6px;
    height: 6px;
  }

  .hs-pf-card__actions {
    grid-column: 1;
    grid-row: 6;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0 14px 14px;
  }

  .hs-pf-card__actions a {
    width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 4px 10px;
    font-size: .72rem;
    border-radius: 10px;
  }

  .hs-pf-card__badge {
    padding: 4px 7px;
    font-size: .62rem;
    border-radius: 0 0 8px;
  }

  .hs-pf__results--grid {
    grid-template-columns: 1fr;
  }

  .hs-pf__results--grid .hs-pf-card {
    display: grid;
  }

  .hs-pf__results--grid .hs-pf-card__media {
    min-height: 210px;
    border-bottom: 1px solid var(--pf-border);
  }

  .hs-pf__results--grid .hs-pf-card__content {
    display: contents;
    padding: 0;
  }

  .hs-pf__results--grid .hs-pf-card__title-row {
    display: block;
  }

  .hs-pf__results--grid .hs-pf-card__compare {
    position: absolute;
    margin: 0;
  }

  .hs-pf__results--grid .hs-pf-card__actions {
    padding: 0 14px 14px;
  }

  .hs-pf__results--grid .hs-pf-card__offer {
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px 6px;
    border-top: 0;
    text-align: right;
  }

  .hs-pf__compare-bar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 15px;
    transform: none;
  }

  .hs-pf__compare-bar .hs-pf__compare-clear {
    display: none;
  }

  .hs-pf__compare-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 15px;
  }

  .hs-pf__compare-dialog [data-hs-pf-compare-content] {
    max-height: calc(100vh - 22px);
  }

  .hs-pf__compare-dialog [data-hs-pf-compare-content] > p {
    padding: 24px 18px;
  }

  .hs-pf__compare-dialog h2 {
    padding: 19px 56px 16px 18px;
    font-size: 1.2rem;
  }

  .hs-pf__dialog-close {
    top: 11px;
    right: 13px;
    width: 34px;
    height: 34px;
    font-size: 1.45rem;
  }

  .hs-pf-compare-table-wrap {
    padding: 14px;
  }

  .hs-pf-compare-table {
    width: max-content;
    min-width: 100%;
    border-radius: 11px;
  }

  .hs-pf-compare-table th,
  .hs-pf-compare-table td {
    width: 145px;
    min-width: 145px;
    padding: 12px 10px;
    font-size: .78rem;
  }

  .hs-pf-compare-table thead th:first-child,
  .hs-pf-compare-table tbody th {
    width: 92px;
    min-width: 92px;
    padding-right: 8px;
    padding-left: 10px;
  }

  .hs-pf-compare-table thead img {
    max-width: 92px;
    height: 88px;
    margin-bottom: 9px;
  }

  .hs-pf-compare-table thead th > span {
    font-size: .82rem;
  }

  .hs-pf-compare-table tbody tr:nth-child(1) td {
    font-size: .86rem;
  }

  .hs-pf-compare-table tbody tr:last-child a {
    min-height: 34px;
    padding: 5px 10px;
    font-size: .75rem;
    border-radius: 9px;
  }

  .hs-pf__selected {
    min-height: 55px;
  }
}
