@layer block {
  :root {
    --quick-view-bg-clr: var(--clr-brand-primary);

    --plp-product-title-font: var(--fw-medium) var(--body-font-size-m) var(--body-font-family);
    --plp-product-title-fs: var(--body-font-size-m);
    --plp-product-title-lh: 1.3;
    --plp-product-price-font: var(--fw-semibold) var(--body-font-size-m) var(--body-font-family);

    --plp-label-abovePrice-font: var(--fw-bold) var(--body-font-size-s) / 1.4 var(--body-font-family);
    --plp-label-abovePrice-color: var(--clr-promo-green);

    --plp-label-aboveName-font: var(--fw-black) var(--body-font-size-s) / 1.6 var(--body-font-family);
    --plp-label-aboveName-color: var(--text-color);
  }

  /* PLP content banners */
  /* ========================================================== */
  .product-list-page-container > .html-snippet-wrapper {
    width: 100vw;
    max-width: unset;
    margin: -2rem 0 3rem -1.6rem;
  }

  @media (min-width: 600px) {
    .product-list-page-container > .html-snippet-wrapper {
      margin: -2rem 0 3rem -3.2rem;
    }
  }

  main .section.product-list-page-container > .default-content-wrapper h1:first-child {
    display: none;
  }

  .product-list-page {
    display: flex !important;
    gap: 2rem;
  }

  .product-list-page:has(.facets.active)::after,
  &:has(.overlay.active)::after {
    content: '';
    background: var(--background-color);
    backdrop-filter: blur(2px);
    width: 101vw;
    left: 50%;
    top: 0;
    height: 100vh;
    translate: -50% 0;
    position: fixed;
    display: block;

    @media (min-width: 900px) {
      display: none;
    }
  }

  @media (min-width: 900px) {
    .product-list-page:has(.facets.active)::after,
    &:has(.overlay.active)::after {
      display: none;
    }
  }

  .product-list-page .facets.active,
  & .overlay.active {
    top: 0;
    z-index: 2147483647;
  }

  .product-list-page .facets.active,
  & .overlay.active .facet-list {
    padding-bottom: 5rem;
  }

  .product-list-page .facets.active::after,
  & .overlay.active::after {
    content: '';
    display: block;
    position: fixed;
    max-width: 100%;
    bottom: 48px;
    left: 0;
    right: 0;
    padding: 4rem 0 1rem;
    background: linear-gradient(to bottom, #fff3 0%, #fffc 25%, #fff) 50%;
    text-decoration: none;

    @media (min-width: 900px) {
      display: none;
    }
  }

  .product-list-page .facets {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 48px;
    z-index: 2;
    overflow: auto;
    background: var(--clr-white);
    box-sizing: content-box;
  }

  .product-list-page .facets.active {
    display: block;
  }

  .product-list-page .facets h2 {
    display: none;
  }

  .product-list-page .facets .close,
  .product-list-page .products .title .sort > .overlay .close {
    display: block;
    background: url('../../icons/x-lg.svg') center/55%;
    background-repeat: no-repeat;
    font-size: 0;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    margin: 5px;
    border-radius: 0;
    margin-left: auto;
    border: 0;
  }

  .product-list-page .products .title .sort > .overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 48px;
    overflow: auto;
    background: var(--clr-white);
    font-size: 1.6rem;
  }

  .product-list-page .products .title .sort > .overlay.active {
    display: block;
  }

  .product-list-page .products .title .sort .overlay ul {
    padding: 0 25px;
    margin: 0;
    list-style: none;
  }

  .product-list-page .products .title .sort .overlay ul > li {
    padding: 5px 0;
  }

  .product-list-page .products .title .sort .overlay a {
    color: var(--clr-black);
    text-decoration: none;
  }

  .product-list-page .products .title .sort .overlay a:hover,
  .product-list-page .products .title .sort .overlay a.active {
    text-decoration: none;
    font-family: var(--body-font-family);
    font-weight: var(--fw-semibold);
  }

  .product-list-page .facets .facet-list .facet {
    border-bottom: 1px solid #000;
    font-size: 1.6rem;
    font-family: var(--body-font-family);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-heading);
    padding: 20px;
  }

  .product-list-page .facets .facet-list .facet:first-child {
    border-top: 1px solid #000;
  }

  .product-list-page .facets .facet-list .facet > label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .product-list-page .facets .facet-list .facet > label::after {
    display: inline-block;
    content: '';
    width: 12px;
    height: 8px;
    background: url('../../icons/chevron-down-bold-small.svg') no-repeat center/contain;
    transition: all .2s ease;
  }

  .product-list-page .facets .facet-list .facet .facet-content {
    transition: all .2s ease;
    overflow: hidden;
    padding-top: 6px;
  }

  .product-list-page .facets .facet-list .facet .facet-content ol {
    list-style-type: none;
    margin: 0;
    padding: 16px 0 0;
    font-weight: var(--fw-normal);
  }

  .product-list-page .facets .facet-list .facet > input {
    display: none;
  }

  .product-list-page .facets .facet-list .facet > input ~ .facet-content {
    max-height: 0;
  }

  .product-list-page .facets .facet-list .facet > input:checked ~ .facet-content {
    max-height: 1000px;
  }

  .product-list-page .facets .facet-list .facet > input:checked ~ label::after {
    transform: rotate(180deg);
  }

  /* Radio/Checkbox Facet */
  .product-list-page .facets .facet-list .facet.radio .facet-content ol li,
  .product-list-page .facets .facet-list .facet.checkbox .facet-content ol li {
    margin-bottom: var(--gutter-m);
    display: flex;
    align-items: center;
    gap: var(--gutter-xs);
  }

  .product-list-page .facets .facet-list .facet.radio .facet-content ol input[type=radio] {
    vertical-align: middle;
    position: relative;
    bottom: 2px;
    margin: var(--gutter-xs);
  }

  .product-list-page .facets .facet-list .facet.checkbox .facet-content ol input[type=checkbox] {
    vertical-align: middle;
    margin: 0;
  }

  .product-list-page .facets .facet-list .facet.radio .facet-content ol label,
  .product-list-page .facets .facet-list .facet.checkbox .facet-content ol label {
    font-family: var(--body-font-family);
    font-weight: var(--fw-normal);
    font-size: var(--body-font-size-s);
    text-transform: none;
    letter-spacing: normal;
    line-height: 1;
  }

  .product-list-page .facets .facet-list .facet.radio .facet-content ol label .count,
  .product-list-page .facets .facet-list .facet.checkbox .facet-content ol label .count {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size-s);
    text-transform: none;
    color: var(--text-color-gray);
  }

  .product-list-page .facets .facet-list .facet.radio .facet-content ol label .count::before,
  .product-list-page .facets .facet-list .facet.checkbox .facet-content ol label .count::before {
    content: '(';
  }

  .product-list-page .facets .facet-list .facet.radio .facet-content ol label .count::after,
  .product-list-page .facets .facet-list .facet.checkbox .facet-content ol label .count::after {
    content: ')'
  }

  /* Swatch Size Facet */

  .product-list-page .facets .facet-list .facet.swatch.facet-size .facet-content ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-size .facet-content ol li {
    flex: 0 0 calc((100%/3) - 8px);
    display: inline-flex;
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-size .facet-content ol li button {
    border: 1px solid var(--clr-neutral-60);
    background: var(--clr-white);
    color: var(--clr-neutral);
    border-radius: 4px;
    min-width: 65px;
    min-height: 40px;
    padding: 0 0 3px;
    margin: 0;
    font-weight: var(--fw-normal);
    font-size: var(--body-font-size-xs);
    line-height: 40px;
    width: 100%;
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-size .facet-content ol li button.active {
    background: var(--clr-black);
    color: var(--clr-white);
  }

  /* Swatch Color Facet */

  .product-list-page .facets .facet-list .facet.swatch.facet-color .facet-content ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-color .facet-content ol li button {
    color: transparent;
    border: 1px solid var(--base-border-color);
    background-size: cover;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    padding: 0;
    margin: 0;
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-color .facet-content ol li button.active {
    box-shadow: 0 0 0 2px var(--clr-white) inset;
    border-color: var(--clr-pink);
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-color .facet-content ol li button:hover {
    box-shadow: inset 0 0 0 18px rgba(255 255 255 / 30%);
  }

  .product-list-page .facets .facet-list .facet.swatch.facet-color .facet-content ol li button.active:hover {
    box-shadow: inset 0 0 0 18px rgba(255 255 255 / 30%), 0 0 0 2px var(--clr-white) inset;
  }

  /* Price Facet */

  .product-list-page .facets .facet-list .facet .price-facet {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .product-list-page .facets .facet-list .facet .price-facet .price-slider {
    width: 100%;
    display: grid;
    height: 15px;
    margin-bottom: 10px;
    flex-basis: 100%;
  }

  .product-list-page .facets .facet-list .facet .price-facet .price-slider input[type=range] {
    grid-area: 1 / 1 / 1 / 1;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    position: relative;
    margin: 0;
    outline: none;
    pointer-events: none;
  }

  .product-list-page .facets .facet-list .facet .price-facet .price-slider input[type=range]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--clr-brand-primary);
    position: relative;
    cursor: pointer;
    appearance: none;
    pointer-events: all;
    border: 0;
    outline: none;
  }

  .product-list-page .facets .facet-list .facet .price-facet .price-slider input[type=range]::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--clr-brand-primary);
    position: relative;
    cursor: pointer;
    appearance: none;
    pointer-events: all;
    border: 0;
    outline: none;
    z-index: 1;
    margin-top: -5px;
  }

  .product-list-page .facets .facet-list .facet .price-facet .price-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: var(--text-color-gray);
    border-radius: 3px;
    border: none;
  }

  .product-list-page .facets .facet-list .facet .price-facet .price-slider input[type=range]:first-of-type::-moz-range-track {
    width: 100%;
    height: 5px;
    background: var(--text-color-gray);
    border-radius: 3px;
    border: none;
  }

  .product-list-page .products {
    flex: 82;
    display: flex;
    gap: 25px;
    flex-direction: column;
  }

  /* Category Title */
  .product-list-page .products .title {
    align-items: last baseline;
  }

  @media (min-width: 900px) {
    .product-list-page .products .title {
      display: flex;
      align-items: last baseline;
    }

  }

  .product-list-page .products .title h1 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-family: var(--body-font-family);
    letter-spacing: var(--ls-heading);
    font-weight: var(--fw-light);
    font-size: var(--heading-font-size-m);
    line-height: 1;

    @media (min-width: 900px) {
      font-size: 3rem;
      padding: 0;
    }
  }

  .product-list-page .products .title h1 ~ span {
    display: none;
    font-family: var(--body-font-family-cond);
    font-size: 1.6rem;
    color: var(--text-color-gray);
    margin-inline: 1rem 3rem;
    white-space: nowrap;
  }

  .product-list-page .products .title h1 .total-search {
    display: inline;
    font-family: var(--body-font-family-cond);
    font-size: 1.6rem;
    color: var(--text-color-gray);
    margin-inline: 1rem 3rem;
    white-space: nowrap;
  }



  /* sort by */
  .product-list-page .products .title .sort {
    display: block;
    margin-left: auto;
    min-width: 20rem;
  }

  .product-list-page .products .title .sort > * {
    display: none;
  }

  .product-list-page .products .title .sort > button {
    width: 100%;
    border: 1px solid var(--clr-brand-black);
    background: var(--clr-white);
    color: var(--clr-brand-black);
    font-family: var(--body-font-family);
    font-weight: var(--fw-normal);
    font-size: 1.2rem;
    padding: 1rem;
    margin: 0;
  }

  .product-list-page .products .mobile-menu {
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }

  .product-list-page .products .mobile-menu > button {
    width: max-content;
    border: 1px solid var(--clr-black);
    border-radius: 4px;
    background: var(--clr-white);
    color: var(--clr-brand-black);
    font-family: var(--body-font-family);
    font-weight: var(--fw-normal);
    font-size: 1.4rem;
    line-height: 1;
    padding: .7rem 1.5rem 1rem .9rem;
    margin: 0;
    height: 3.1rem;
    min-width: 10rem;
  }

  .product-list-page .products .mobile-menu > button#toggle-filters::before {
    content: '';
    background: url('../../icons/icon-filter-sliders.svg') center/contain no-repeat;
    width: 1.4rem;
    height: 1.4rem;
    display: inline-block;
    margin: 0 .8rem 0 0;
  }

  .product-list-page .products .list > .empty {
    text-align: center;
    padding: 25px 0;
  }

  .product-list-page .products .list > ol {
    list-style-type: none;
    display: grid;
    margin: 0;
    padding: 0;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;

    @media (min-width: 900px) {
      gap: 20px;
    }
  }

  .product-list-page .products .list > ol > li {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .product-list-page .products .list > ol > li .picture {
    display: block;
    width: 100%;
    aspect-ratio: var(--product-image-aspect-ratio);
    position: relative;
    overflow: hidden;
  }

  .product-list-page .products .list > ol > li .picture a {
    display: grid;
    text-decoration: none;
  }

  .product-list-page .products .list > ol > li .picture a:hover {
    text-decoration: none;
  }

  .product-list-page .products .list > ol > li .picture:is(:hover,:focus-within) .find-inventory {
    display: initial;
  }

  .product-list-page .products .list > ol > li .picture .find-inventory {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    display: none;
  }

  .product-list-page .products .list > ol > li .picture .find-inventory a.button {
    margin: 0 auto;
    width: max-content;
    font-size: 14px;
    padding: 8px;
    height: auto;
  }

  .product-list-page .products .list > ol > li .picture .find-inventory a.button:is(:hover,:focus-within) {
    color: white;
  }

    /* amasty labels */
  /* ====================================================================== */

/* product image label wrapper */
.product-list-page .products .list > ol > li .picture a > .amasty-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}

/* bottom-center position is repurpoused to inject above price */
.product-list-page .products .list > ol > li .picture a > .amasty-wrapper > .bottom-center {
  display: none;
}

/* top-left position */

.product-list-page .products .list > ol > li .picture a > .amasty-wrapper .top-left {
  display: inline-block;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.product-list-page .products .list > ol > li .picture a > .amasty-wrapper .top-left.amasty-image-label {
  top: 0;
  left: 0;
}

.product-list-page .products .list > ol > li .picture a > .amasty-wrapper .amasty-text-label {
  color: var(--clr-white);
  font: var(--font-body);
  font-size: var(--body-font-size-xs);
  border-radius: 3px;
  background: var(--clr-black);
  padding: .5rem 1rem;
}

  .product-list-page .products .list > ol > li .price > .amasty-wrapper {
    width: 100%;
  }

  .product-list-page .products .list > ol > li .price > .amasty-wrapper .bottom-center {
    font: var(--plp-label-abovePrice-font);
    color: var(--clr-promo-green);
  }

  /* top-center position is repurpoused to inject above name */
  .product-list-page .products .list > ol > li .picture a > .amasty-wrapper > .top-center {
    display: none;
  }

  .product-list-page .products .list > ol > li .name > .amasty-wrapper {
    width: 100%;
  }

  .product-list-page .products .list > ol > li .name > .amasty-wrapper .top-center {
    font: var(--plp-label-aboveName-font);
    color: var(--plp-label-aboveName-color);
    margin-block-end: var(--gutter-xs);
  }


  /* add to bag - quick view button */
  /* ====================================================================== */
  .product-list-page .products .list > ol > li .picture button {
    display: none;
    width: 42px;
    height: 42px;
    background-color: var(--quick-view-bg-clr);
    border: 1px solid var(--quick-view-bg-clr);
    border-radius: 50%;
    margin: 0;
    padding: 0;
    color: transparent;
    position: absolute;
    bottom: 12%;
    right: 3%;
    font-size: 0;
  }

  .product-list-page .products .list > ol > li .picture button:hover {
    background: var(--clr-white);
  }

  .product-list-page .products .list > ol > li .picture button::after {
    content: '';
    display: block;
    width: 45%;
    height: 100%;
    background: url('../../icons/icon-quick-view.svg') no-repeat center/contain;
    filter: invert(1);
    margin: auto;
  }

  .product-list-page .products .list > ol > li .picture button:hover::after {
    filter: invert(26%) sepia(97%) saturate(1910%) hue-rotate(305deg) brightness(85%) contrast(99%);
  }

  .product-list-page .products .list > ol > li .picture picture {
    display: block;
    width: 100%;
    height: 100%;
    grid-area: 1 / 1 / 1 / 1;
  }

.product-list-page .products .list > ol > li .picture img {
  display: block;
  aspect-ratio: var(--product-image-aspect-ratio);
  width: 100%;
  object-fit: cover;
  font-size: 1.2rem;
  position: relative;
}

.product-list-page .products .list > ol > li .picture .amasty-wrapper img {
  aspect-ratio: unset;
}

  .product-list-page .products .list > ol > li .picture picture::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    box-shadow: var(--product-image-box-shadow);
    inset: 0;
  }

  .product-list-page .products .list > ol > li .disruptor {
    height: 0;
    /** Yes, this actually works and prohibits grid blowout **/
  }

  .product-list-page .products .list > ol > li .disruptor img {
    display: block;
    width: 100%;
    height: auto;
  }

  .product-list-page .products .list > ol > li .variants {
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 1rem 0;
    align-items: center;
    height: 26px;
  }

  .product-list-page .products .list > ol > li .variants .swatches {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 18px;
    margin: 0 10px;
    max-width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-list-page .products .list > ol > li .variants.scrollable .swatches {
    padding: 0 50px 0 4px;
    mask-image: linear-gradient(90deg, transparent 0, #fff 8px, #fff calc(100% - 8px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #fff 8px, #fff calc(100% - 8px), transparent 100%);
  }

  .product-list-page .products .list > ol > li .variants .swatches::-webkit-scrollbar {
    display: none;
  }

  .product-list-page .products .list > ol > li .variants .swatch {
    display: block;
    width: 26px;
    height: 26px;
    min-width: 26px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: transparent;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0 0 2px var(--clr-white) inset;
  }

  .product-list-page .products .list > ol > li .variants ol li:has(.previous),
  .product-list-page .products .list > ol > li .variants ol li:has(.next) {
    padding: 9px 0;
  }

  .product-list-page .products .list > ol > li .variants button.previous,
  .product-list-page .products .list > ol > li .variants button.next {
    display: none;
  }

  .product-list-page .products .list > ol > li .variants.scrollable button.previous,
  .product-list-page .products .list > ol > li .variants.scrollable button.next {
    display: block;
    background: url('../../icons/arrow-thick.svg') no-repeat center/contain;
    color: transparent;
    width: 16px;
    min-width: 16px;
    box-sizing: border-box;
    height: 24px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    opacity: 0.3;
    transition: all .2s ease;
  }

  .product-list-page .products .list > ol > li .variants button.previous:hover,
  .product-list-page .products .list > ol > li .variants button.next:hover {
    opacity: 1;
  }

  .product-list-page .products .list > ol > li .variants button.previous {
    transform: rotate(180deg);
  }

  .product-list-page .products .list > ol > li .variants .swatch.active {
    border: 1px solid var(--clr-black);
  }

  .product-list-page .products .list > ol > li .name {
    line-height: 1;
    padding: 0 var(--gutter-s);
    margin-block-end: var(--gutter-12);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  .product-list-page .products .list > ol > li .name .product-meta {
    color: var(--text-color);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size-xs);
    font-weight: var(--fw-normal);
    line-height: 1.3;
    margin-block-end: 0.3rem;
  }

  .product-list-page .products .list > ol > li .name a {
    text-decoration: none;
    /* stylelint-disable-next-line value-no-vendor-prefix */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font: var(--plp-product-title-font);
    line-height: var(--plp-product-title-lh);
    color: var(--text-color);
  }

  .product-list-page .products .list > ol > li .name a sup {
    font-size: 70%;
  }

  .product-list-page .products .list > ol > li .name a:hover {
    color: var(--link-hover-color);
  }

  .product-list-page .products .list > ol > li .amasty-wrapper .product-details,
  .product-list-page .products .list > ol > li .amasty-wrapper .bottom-center {
    color: var(--clr-promo-green);
    font-size: var(--body-font-size-s);
    font-weight: var(--fw-semibold);
    padding: 0 var(--gutter-s);

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  .product-list-page .products .list > ol > li .amasty-wrapper .top-center {
    color: var(--text-color);
    font-size: var(--body-font-size-s);
    font-weight: var(--fw-bold);
    padding: 0 var(--gutter-s);

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  .product-list-page .products .list > ol > li .price {
    font: var(--plp-product-price-font);
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 0.3em;
    padding: 0 var(--gutter-s);

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  .product-list-page .products .list > ol > li .price .price-regular {
    font-size: 1.2rem;
    color: var(--text-color-gray);
    text-decoration: line-through;
  }

  .product-list-page .products .list > ol > li .price .price-final,
  .product-list-page .products .list > ol > li .price .price-from {
    font-weight: var(--fw-medium);
  }

  .product-list-page .products .list > ol > li .price .price-range {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--gutter-xs);
  }

  .product-list-page .products .list > ol > li .price .price-range .price-from:first-child::after {
    content: "-";
    padding: 0 .5rem;
  }

  .product-list-page .products .list > ol > li .rating {
    display: flex;
    gap: 2px;
    align-items: baseline;
    line-height: 1;
    min-height: 1.8rem;
    padding: 0 var(--gutter-s);
    margin-block-start: var(--gutter-s);

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  .product-list-page .products .list > ol > li .rating > div {
    --percent: calc(var(--rating) / 5 * 100%);

    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    font-family: 'Times New Roman', Times, serif;
  }

  .product-list-page .products .list > ol > li .rating > div[style="--rating: 0;"],
  .product-list-page .products .list > ol > li .rating > div[style="--rating: 0;"] + span {
    display: none;
  }

  .product-list-page .products .list > ol > li .rating > span {
    color: var(--text-color);
    font-size: var(--body-font-size-xxs);
  }

  .product-list-page .products .list > ol > li .rating > div::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--stars-filled), var(--percent), var(--stars-unfilled) var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .product-list-page .products > div:last-child {
    margin-top: auto;
  }

  .product-list-page .products .pagination {
    display: flex;
    height: 3.6rem;
    justify-content: space-between;
    padding-bottom: 3rem;
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
    margin-block-end: var(--spacing-3xl);

    @media (min-width: 900px) {
      padding-left: unset;
      padding-right: 14px;
    }

    @media (max-width: 390px) {
      padding-left: unset;
      padding-right: 14px;
    }
  }

  @media (min-width: 1024px) {
    .product-list-page .products .pagination {
      padding-top: 3rem;
    }
  }

  .product-list-page .products .pagination > div:nth-child(2) {
    display: none;
  }

  .product-list-page .products .pagination select#select-page {
    padding: 0 2.5rem 2px 1rem;
  }

  .product-list-page .products .pagination select#select-pagesize {
    width: 10rem;
    padding: 0 0 0 0.2rem;
  }

  .product-list-page .products .pagination label,
  .product-list-page .products .pagination span {
    text-transform: uppercase;
    font-size: 1.4rem;
  }

  .product-list-page .products .pagination button {
    text-transform: uppercase;
    font-family: var(--body-font-family);
    font-size: 1.6rem;
    letter-spacing: var(--ls-heading);
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0 0 0 2rem;
    color: var(--clr-brand-black);
    border-radius: 0;
    position: relative;
    overflow: visible;
  }

  .product-list-page .products .pagination button.previous::before,
  .product-list-page .products .pagination button.next::after {
    display: inline-block;
    content: '';
    width: 12px;
    height: 12px;
    background: url('../../icons/rounded-triangle.svg') no-repeat center/contain;
    transform: rotate(90deg);
    position: absolute;
    left: -14px;
    top: 2px;
    margin: 0;
  }

  .product-list-page .products .pagination button.next::after {
    background: url('../../icons/rounded-triangle.svg') no-repeat center/contain;
    transform: rotate(270deg);
    left: unset;
    right: -14px;
  }

  @media (min-width: 900px) {
    .product-list-page {
      display: flex;
    }

    main .section > div.product-list-page-wrapper {
      max-width: 1920px;
    }

    .product-list-page .facets {
      display: block;
      flex: 18;
      max-width: 430px;
      padding: 0 20px 30px 12px;
      position: unset;
      z-index: unset;
      overflow: unset;
    }

    .product-list-page .facets .close {
      display: none;
    }

    .product-list-page .facets h2 {
      display: block;
      margin: 0;
      padding: 20px 5px;
      font-size: 1.8rem;
      font-family: var(--body-font-family);
      font-weight: var(--fw-semibold);
      text-transform: uppercase;
      letter-spacing: var(--ls-heading);
    }

    .product-list-page .facets .facet-list .facet {
      padding: 20px 0;
    }

    .product-list-page .products {
      gap: 10px;
    }

    .product-list-page .products .mobile-menu {
      display: none;
    }

    .product-list-page .products .list > ol {
      grid-template-columns: repeat(4, 1fr);
    }

    .product-list-page .products .pagination > div:nth-child(2) {
      display: block;
    }

    .product-list-page .products .title h1 ~ span {
      display: inline;
    }

    .product-list-page .products .title .sort {
      position: relative;
    }

    .product-list-page .products .title .sort > * {
      display: unset;
    }

    .product-list-page .products .title .sort > button {
      height: 3.8rem;
      text-transform: uppercase;
    }

    .product-list-page .products .title .sort > button::after {
      display: inline-block;
      content: '';
      width: 12px;
      height: 12px;
      margin-left: 10px;
      background: url('../../icons/rounded-triangle.svg') no-repeat center/contain;
      transition: all .2s ease;
    }

    .product-list-page .products .title .sort:not([disabled]):hover > button::after {
      transform: rotate(180deg);
    }

    .product-list-page .products .title .sort:not([disabled]):hover > .overlay {
      display: block;
    }

    .product-list-page .products .title .sort > .overlay {
      display: none;
      position: absolute;
      width: 100%;
      z-index: 2;
      box-shadow: 0 36px 51px 0 rgb(0 0 0 / 30%);
      border-radius: 6px;
      font-family: var(--body-font-family);
      font-size: 1.4rem;
      left: unset;
      top: unset;
      bottom: unset;
      overflow: unset;
    }

    .product-list-page .products .title .sort .overlay .close {
      display: none;
    }

    .product-list-page .products .title .sort > .overlay.active {
      display: none;
    }

    .product-list-page .products .title .sort .overlay a {
      color: var(--text-color-gray);
    }

    .product-list-page .products .title .sort .overlay a:hover,
    .product-list-page .products .title .sort .overlay a.active {
      color: var(--clr-black);
      text-decoration: none;
      font-family: unset;
    }

    .product-list-page .products .title .sort .overlay ul {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .product-list-page .products .title .sort .overlay ul > li {
      padding: 10px 20px;
      text-align: right;
    }
  }

  .product-list-page .shimmer {
    background: var(--neutral-40);
    border-radius: 4px;
  }

  .product-list-page .shimmer-text {
    border-radius: 8px;
    min-height: 1.5rem;
    margin-bottom: 4px;
  }

  body.plp main .section .breadcrumb-wrapper {
    max-width: 1920px;
  }

  body.plp main .section .default-content-wrapper {
    font-size: 1.6rem;
    font-family: var(--body-font-family);
    font-weight: var(--fw-normal);
  }

  body.plp main .section .default-content-wrapper h2 {
    color: var(--clr-brand-black);
    font-size: 2.8rem;
    font-family: var(--body-font-family);
    font-weight: var(--fw-light);
    letter-spacing: var(--ls-heading);
    margin-bottom: 0;
    padding: 0 var(--gutter-m);

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  body.plp main .section .default-content-wrapper p {
    padding: 0 var(--gutter-m);

    @media (min-width: 900px) {
      padding: unset;
    }
  }

  body.plp main .section .default-content-wrapper h1 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 3rem;
    font-family: var(--body-font-family);
    letter-spacing: var(--ls-heading);
  }

  /* Active filters */

  .filters-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-flow: wrap;
  }

  .active-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  button.button-active-filter {
    background-image: url('../../icons/close-black.svg');
    background-position: calc(100% - 1rem) center;
    background-size: 1rem;
    background-repeat: no-repeat;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem 3rem 1rem 1.5rem;
    margin: 0;
    align-items: center;
    color: var(--link-color);
  }

  button.button-clear-all {
    background: none;
    font-weight: 600;
    text-decoration: underline;
    margin: 0;
    font-size: 1.3rem;
    padding: 1rem 3rem 1rem 1.5rem;
    color: var(--link-color);
  }
}
