/** Shopify CDN: Minification failed

Line 1654:1 Expected "}" to go with "{"

**/
/* base */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  background-color: var(--color-body);
  color: var(--color-text);
}

#MainContent {
  background: var(--color-dark-grey-2);
}

html {
  box-sizing: border-box;
  font-size: calc(1 * 62.5%);
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.6rem;
  line-height: var(--line-height);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-light-body-weight);
  overflow-y: scroll;
}

b, strong {
  font-weight: var(--font-strong-weight);
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

/* Body Shadow */
body:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--body-shadow);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-long) ease-in-out;
  z-index: var(--z-index-shadow);
}

body.shadow {
  overflow: hidden;
}

body.shadow:after {
  opacity: 1;
  visibility: visible;
  z-index: var(--z-index-shadow-body);
}

body.shadow--body:after {
  opacity: 1;
  visibility: visible;
  z-index: var(--z-index-shadow-body);
}

body.shadow--body {
  overflow: hidden;
}

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

.page-width {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-width-padding);
}

.page-width--paddingless {
  padding: 0;
}

@media screen and (min-width: 990px) {
  .page-width--narrow {
    max-width: calc(var(--page-width) - 20rem);
  }

  .page-width--article {
    max-width: 78rem;
  }
}

@media screen and (min-width: 750px) {
  .page-width--extra-narrow {
    max-width: calc(var(--page-width) - 100rem);
  }
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

.hidden {
  display: none !important;
}

.visibility-hidden {
  visibility: hidden;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .medium-up-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) and (max-width: 1200px) {
  .large-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .x-large-up-hide {
    display: none !important;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden-mobile,
.overflow-hidden-tablet {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

/* Drawer */
.drawer {
  display: none;
}

/* Button styles */
.shopify-payment-button__button--branded {
  z-index: auto;
}

.button,
.shopify-challenge__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0;
  border-radius: 0.8rem;
  gap: 1rem;
  padding: 0.8rem 2.4rem;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition: all var(--duration-default) ease;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  background-color: var(--color-secondary-darken-10);
  color: var(--color-white);
  position: relative;
  border: solid 0.1rem var(--color-secondary-darken-10);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
  font-weight: var(--font-body-weight);
  line-height: 1.25;
}

.button svg {
  width: 1em;
  min-width: 1em;
  height: auto;
}

.button:hover,
.shopify-challenge__button:hover {
  background-color: var(--color-grey-dark-lighten-20);
}

.button--small {
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
}

.button--large {
  padding: 0.8rem 3.2rem;
  gap: 1.2rem;
}

.button--full-width {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .button--full-width-mobile {
    display: flex;
    width: 100%;
  }

  .button--small-mobile {
    padding: 0.8rem 1.6rem;
    gap: 0.8rem;
  }
  
  .button--large-mobile {
    padding: 0.8rem 3.2rem;
    gap: 1.2rem;
  }
}

.button--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.button--outline:hover {
  background-color: var(--color-grey-dark-lighten-50);
  color: var(--color-secondary-darken-10);
  border-color: var(--color-white);
}

.button--white {
  background-color: var(--color-white);
  color: var(--color-secondary-darken-10);
  border-color: var(--color-white);
}

.button--white:hover {
  background-color: var(--color-grey-dark-lighten-60);
  color: var(--color-secondary-darken-10);
  border-color: var(--color-white);
}

.button .loader {
  position: absolute;
  top: calc(50% - 1.5rem);
  left: calc(50% - 1.5rem);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Button - other */
.button:disabled,
.button[aria-disabled="true"],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled="true"],
.customer button.disabled,
.quantity__button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button.loading {
  color: transparent;
  pointer-events: none;
  cursor: not-allowed;
}

.button.loading svg {
  opacity: 0;
}

.button.loading > .loader {
  visibility: visible;
  opacity: 1;
}

.button.loading > .loader {
  border-color: var(--color-button-primary-accent);
}

.button.button--link {
  background: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  text-decoration: underline;
  padding: 0;
}


/* Headings and typography */
a:not([href]) {
  cursor: not-allowed;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  color: var(--color-text);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break: break-word;
  outline: none;
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 2.5rem);
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 2.9rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2.2rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.6rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 2.3rem);
  }
}

h4,
.h4 {
  font-size: calc(var(--font-heading-scale) * 1.8rem);
}

@media only screen and (min-width: 750px) {
  h4,
  .h4 {
    font-size: calc(var(--font-heading-scale) * 2rem);
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

blockquote {
  font-style: italic;
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.text-small {
  font-size: 1.4rem;
  line-height: var(--line-height);
  letter-spacing: -0.2px;
}

.field__input,
.form__label,
.select__select {
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .field__input,
  .form__label,
  .select__select {
    font-size: 1.4rem;
  }
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.no-border {
  border: none !important;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: var(--color-grey-light);
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

.break {
  word-break: break-word;
}

.underlined-link {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.underlined-link:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

/* Table styling */

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: 0.2rem solid var(--color-grey-light);
  outline-offset: 0.3rem;
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused,
.no-js *:focus {
  outline: 0.2rem solid var(--color-grey-light);
  outline-offset: 0.3rem;
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid var(--color-grey-light);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 var(--color-grey-light);
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid var(--color-grey-light);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 var(--color-grey-light);
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid var(--color-grey-light);
  outline-offset: 1rem;
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid var(--color-grey-light);
  outline-offset: 1rem;
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.no-js .predictive-search {
  display: none;
}

/* outline and border styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .button,
  .shopify-challenge__button {
    border: transparent solid 0.1rem;
  }

  .button:focus-visible,
  .button:focus,
  .button.focused,
  .shopify-payment-button__button--unbranded:focus-visible,
  .shopify-payment-button [role="button"]:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button [role="button"]:focus {
    outline: solid transparent 0.1rem;
  }

  .field__input:focus,
  .select__select:focus,
  .localization-form__select:focus.localization-form__select:after {
    outline: transparent solid 0.1rem;
  }

  .localization-form__select:focus {
    outline: transparent solid 0.1rem;
  }
}

.loader {
  width: 3rem;
  height: 3rem;
  border: 0.3rem solid var(--color-primary);
  border-bottom-color: transparent !important;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Payment Icons */
.list-payment {
  padding-inline-start: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}

.list-payment .list-payment__item {
  display: flex;
  align-items: center;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
}

/* All sections */
.section-title {
  text-align: center;
  margin: 0 auto 2.4rem;
  max-width: calc(100% - 14rem);
}

@media screen and (min-width: 750px) {
  .section-title {
    margin: 0 auto 4.8rem;
  }
}

.section-button {
  margin-top: 4rem;
}

@media screen and (min-width: 750px) {
  .section-button {
    margin-top: 7rem;
  }
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-mobile-spacing);
  row-gap: var(--grid-mobile-spacing);
}

@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-spacing);
    row-gap: var(--grid-desktop-spacing);
  }
}

.grid__item {
  width: calc(25% - var(--grid-mobile-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-spacing) / 2);
  }
}

.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-spacing) / 2);
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-spacing) * 2 / 3);
}

.grid--4-col .grid__item {
  width: calc(25% - var(--grid-mobile-spacing) * 3 / 4);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item,
  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-spacing) / 2);
  }

  .grid--3-col .grid__item,
  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-spacing) * 2 / 3);
  }

  .grid--4-col .grid__item,
  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-spacing) * 3 / 4);
  }
}

@media screen and (min-width: 990px) {
  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-spacing) / 2);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-spacing) * 2 / 3);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-spacing) * 3 / 4);
  }
}

/* Form styling */

/* Field */
.field {
  position: relative;
}

@media screen and (min-width: 750px) {
  .field-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .field--half {
    width: calc(50% - 0.8rem);
  }

  .field--half + .field--half {
    margin-left: auto;
  }
}

.field__input,
.select__select {
  font-size: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  height: 4rem;
  position: relative;
  border: solid 0.1rem #727272;
  padding: 1.5rem 1.5rem 0;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-light-body-weight);
  color: var(--color-grey);
}

@media screen and (min-width: 750px) {
  .field--top .field__input,
  .customer .field--top input {
    height: 4.9rem;
  }
}

.field .field__input[type="date"] {
  appearance: none;
  background-color: white;
  border: solid 0.1rem #727272;
  font-size: 1.4rem;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .field .field__input[type="date"]::after {
    color: #7b7b7b;
    content: attr(placeholder);
    left: 1.1rem;
    opacity: 0.7;
    position: absolute;
  }

  .field .field__input[type="date"]:focus::after,
  .field .field__input[type="date"]:valid::after {
    content: "";
  }
}

.field__input[type="date"]:invalid::-webkit-datetime-edit {
  color: #777777;
}

.field__input.no-label {
  padding: 0 1.5rem;
}

.select__select {
  height: 4.6rem;
  padding: 0 1rem !important;
}

.select__dropdown {
  background-color: var(--color-grey);
  border-radius: 0.4rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0 0.8rem 2.4rem;
  cursor: pointer;
  left: 0;
  min-width: 8rem;
  opacity: 0;
  padding: 2rem;
  position: absolute;
  transition: opacity var(--duration-default) ease, z-index 0.1s var(--duration-default) ease;
  top: 3rem;
  width: 100%;
  z-index: -1;
}

.select__dropdown--active {
  transition: opacity var(--duration-default) ease 0.1s, z-index;
  opacity: 1;
  z-index: 1;
}

.select__dropdown .select__item {
  color: var(--color-text);
  display: block;
  font-size: 1.5rem;
  padding-bottom: 1.6rem;
  text-decoration: none;
  padding-left: 4rem;
  position: relative;
  padding-top: 0.2rem;
}

.select__dropdown .select__item:before,
.facets__checkbox-check {
  content: '';
  position: absolute;
  border: 0.1rem solid var(--color-white);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.3rem;
  left: 0;
  top: 0;
  background-color: var(--color-white);
}

.facets__checkbox-tick {
  width: 2.4rem;
  height: 2.4rem;
  z-index: 1;
  display: none;
  position: absolute;
  color: var(--color-grey);
  align-items: center;
  justify-content: center;
  pointer-events: none;
  top: 0;
}

.product-samples__label .facets__checkbox-tick {
  top: 0;
  left: 0;
}

.facets__checkbox-tick svg {
  width: 2rem;
  height: 2rem;
}

.product-samples__label input:checked ~ .facets__checkbox-tick,
.filters__label input:checked ~ .facets__checkbox-tick {
  display: flex;
}

.facets__checkbox-text {
  margin-left: 3.5rem;
}

.select__dropdown .select__item:last-of-type {
  padding-bottom: 0;
}

.select__dropdown .select__item--active:before {
  background-color: var(--color-white);
}

.select__dropdown .select__item--active:after {
  content: '';
  position: absolute;
  background-image: url('icon-tick.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  left: 0.4rem;
  top: 0.5rem;
}

@media screen and (min-width: 750px) {
  .field__input,
  .select__select {
    font-size: 1.6rem;
  }
}

.customer .field {
  margin: 2rem 0 0 0;
}

.field--top,
.customer .field--top {
  margin-top: 4.5rem;
}

@media screen and (min-width: 768px) {
  .field--top,
  .customer .field--top {
    margin-top: 5.7rem;
  }
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  transition: box-shadow var(--duration-short) ease;
}

.field--top .field__input,
.customer .field--top input {
  padding: 1.1rem;
}

@media screen and (min-width: 768px) {
  .field--top .field__input,
  .customer .field--top input {
    padding: 1.6rem;
  }
}

.field__label,
.customer .field label {
  font-size: 1.3rem;
  left: calc(var(--inputs-border-width) + 1rem);
  top: calc(1rem + var(--inputs-border-width));
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--duration-short) ease,
    font-size var(--duration-short) ease;
  color: var(--color-text);
  line-height: var(--line-height);
}

.field--top .field__label,
.customer .field--top label {
  font-size: 1.4rem;
  left: 0;
  text-transform: lowercase;
  top: -0.4rem;
  transform: translateY(-100%);
}

.field--top .field__label span,
.customer .field--top label span {
  color: var(--color-primary);
}

.field__input:focus,
.field__input:focus-visible,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  border: solid 0.1rem var(--color-grey-medium);
  outline: none;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field--top .field__input::placeholder,
.field--top input::placeholder {
  font-size: 1.4rem;
  line-height: 2.4rem;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .field--top::placeholder,
  .field--top input::placeholder {
    font-size: 1.6rem;
  }
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-light-body-weight);
  min-height: 8rem;
  resize: none;
}

@media screen and (min-width: 768px) {
  .text-area {
    min-height: 18rem;
  }
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

.field__button > svg {
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

.form-status {
  display: flex;
  align-items: center;
}

.form__message {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}

.form-status svg,
.form__message svg {
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}

.localization-form {
  display: none;
}

/* Color schemes */ 

.color-background-1 {
  --color-background: var(--color-dark-grey-rgb);
  --color-foreground: var(--color-white-rgb);
}

.color-background-2 {
  --color-background: var(--color-light-grey-3-rgb);
  --color-foreground: var(--color-dark-grey-rgb);
}

.color-background-3 {
  --color-background: var(--color-light-grey-5-rgb);
  --color-foreground: var(--color-dark-grey-rgb);
}

.color-background-4 {
  --color-background: var(--color-dark-grey-2-rgb);
  --color-foreground: var(--color-white-rgb);
}

.text-icon {
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.text-icon__image {
  opacity: 0;
  display: block;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.8rem;
}

.product-card .product-card__price-bold {
  font-weight: var(--font-heading-weight);
}

.product-card__picture {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card--search .product-card__picture {
  border-radius: 0;
}

.product-card__picture--hover:hover .product-card__image--secondary {
  visibility: visible;
  opacity: 1;
}

.product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-default) ease-in-out;
}

.product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__hover-content {
  display: none;
}

@media (hover: hover) {
  .product-card:hover .product-card__hover-content {
    display: block;
  }
}

/* Quick buy */
.product-card--quickbuy {
  position: relative;
}

@media (hover: hover) {
  .product-card--quickbuy:hover {
    z-index: 1;
    background: var(--color-secondary-darken-10);
  }

  .product-card--quickbuy:hover:after,
  .product-card__hover-content {
    position: absolute;
    background: var(--color-secondary-darken-10);
  }

  .product-card--quickbuy:hover:after {
    content:"";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 2.5rem));
    height: calc(100% + 5rem + 3.2rem);
    width: calc(100% + 3.2rem);
    z-index: -1;
  }
}

.product-card__hover-content {
  width: calc(100% + 3.2rem);
  padding: 1.6rem;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  border-top: none;
}

.product-card__quickbuy {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.product-card__quickbuy .product-card__form {
  width: 100%;
}

.product-card__quickbuy .button {
  text-transform: uppercase;
  border-radius: 0.4rem;
  font-weight: 300;
}

.product-card__quickbuy .quickbuy__link {
  width: 100%;
}

.product-card__quickbuy .sold-out {
  opacity: 0.5;
  pointer-events: none;
}

.product-card__quickbuy .moodboard-trigger {
  border: solid 1px var(--color-secondary-lighten-40);
  color: var(--color-secondary-lighten-40);
  background-color: unset;
  width: 3.7rem;
  height: 3.7rem;
}

/* Quick label */
.product__label {
  display: flex;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  max-width: calc(100% - 1.6rem);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
}

.product__label:has(span:empty) {
  display: none;
}

.product__label span {
  display: block;
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  color: var(--color-white);
  background-color: var(--color-utility-2);

  flex: 0;
}

.product__label span {
  white-space: wrap;
}

.product__label span.no-wrap {
  white-space: nowrap;
}

.header .product__label {
  padding: .4rem 1.6rem;
  font-size: 1.2rem;
  width: min-content;
}

.header .predictive-search__results .product__label {
  padding: 0;
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
}

.product-card__title {
  text-decoration: none;
}

.product-card.product-card--small {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 1.6rem;
  background-color: #3C4546;
}

.product-card--small .product-card__media {
  min-width: 30%;
  flex-grow: 1;
}

.product-card--small .product-card__picture {
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.product-card--small .product-card__picture img {
  position: absolute;
  left: 0;
  top: 0;
}

.product-card--small .product-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 13rem;
}

@media screen and (min-width: 350px) {
  .product-card--small .product-card__content {
    min-width: 15rem;
  }
}

.product-card--small .product-card__title,
.product-card--small .product-card__price,
.product-card--small .product-card__price-bold {
  font-size: 1.4rem;
  font-weight: var(--font-light-body-weight);
}

@media screen and (min-width: 400px) {
  .product-card--small .product-card__title,
  .product-card--small .product-card__price,
  .product-card--small .product-card__price-bold {
    font-size: 1.7rem;
  }
}

.product-card--small .product-card__title {
  line-height: 1em;
}

.product-card--small .product-card__price {
  margin-top: 0.5rem;
}

.product-card--small .product-card__form {
  margin-top: 1rem;
}

.product-card--small .product-form__submit {
  font-size: 1.2rem;
  border-radius: 0.4rem;
  padding: 0.6rem 1rem;
}

@media screen and (min-width: 750px) {
  .product-card--small .product-form__submit {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
  }
}

.moodboard-trigger {
  appearance: none;
  outline: 0;
  border: 0;
  box-shadow: none;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-grey-dark-lighten-10);
  color: var(--color-white);
  padding: 0;
  border-radius: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.moodboard-trigger__tooltip {
  display: none;
}

.moodboard-trigger--overlay {
  position: absolute;
  top: 1rem;
  right: 2.5rem;
  z-index: 10;
}

@media screen and (min-width: 750px) {
    .moodboard-trigger--overlay {
      top: .6rem;
      right: .6rem;
    }

    .moodboard-trigger:hover .moodboard-trigger__tooltip {
        opacity: .8;
        touch-action: auto;
    }

    .moodboard-trigger__tooltip {
      opacity: 0;
      position: absolute;
      display: flex;
      align-items: center;
      right: 5rem;
      width: fit-content;
      height: 100%;
      padding: 0.8rem 2rem;
      top: 0;
      background-color: var(--color-grey-dark-lighten-10);
      text-align: center;
      border-radius: .5rem;
      text-transform: uppercase;
      text-wrap: nowrap;
      font-size: 1.4rem;
      transition: .3s ease-in opacity;
      touch-action: none;
    }
    
    .moodboard-trigger__tooltip::after {
      content: "";
      position: absolute;
      top: 38%;
      right: -1.2rem;
      width: 0;
      height: 0;
      transform: rotate(-90deg);
      border-left: 0.8rem solid transparent;
      border-right: 0.8rem solid transparent;
      border-top: 0.8rem solid var(--color-grey-dark-lighten-10);
      clear: both;
    }
}

@media screen and (min-width: 751px) and (max-width: 1000px) {
  .moodboard-trigger--overlay {
    right: 2.3rem;
  }

.product-card--search .moodboard-trigger {
  background-color: var(--color-grey-dark-lighten-20);
}

.moodboard-trigger-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.product-card__price {
  display: flex;
  gap: 0.8rem;
}

.product-card__price-item--compare {
  opacity: 0.7;
}

.product-card__price-suffix {
  font-size: 1.4rem;
  align-self: center;
}

@media screen and (max-width: 989px) {
  .product-card {
    gap: 0.8rem;
    font-size: 1.4rem;
  }

  .product__label {
    top: 0.4rem;
    left: 0.4rem;
    max-width: calc(100% - 0.8rem);
    font-size: 1.2rem;
    font-weight: var(--font-light-body-weight);
  }

  .product__label span {
    padding: 0.4rem 1rem;
  }

  .moodboard-trigger-icon {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/* Product Samples */

.product-samples__label {
  align-items: center;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  line-height: inherit;
  font-size: 1.6rem;
  padding: 0;
  position: relative;
  margin-bottom: 1rem;
}

.product-samples__label input[type=checkbox] {
  appearance: none;
  cursor: pointer;
  height: 2rem;
  left: -0.4rem;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: color var(--duration-default) ease;
  width: 100%;
  -webkit-appearance: none;
  z-index: 1;
}