/** Shopify CDN: Minification failed

Line 2233:3 Unexpected "{"
Line 2233:4 Expected identifier but found "%"
Line 2233:32 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article (INDEX:1) */
.henk-section-blog-article {
    width: min(1208px, 100% - 3rem);
    margin-inline: auto;
  }
  .post-detail__back:link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:2) */
.blog-featured {
    margin-bottom: 6rem;
    .blog-featured__inner {
      margin-inline: auto;
      width: min(1208px, 100% - 3rem);
    }
    .blog-featured__title {
      margin-top: 0;
    }

    .blog-featured__article-title-link {
      text-decoration-line: unset;
    }

    .blog-featured__article-title {
      font-weight: 700;
    }
    .blog-featured__article-image {
      width: 100%;
    }
  }

  .grid-blog {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
    margin-inline: auto;
    width: min(1208px, 100% - 3rem);
  }
  @media (min-width: 1159px) {
    .grid-blog {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .grid-blog__item-link:link {
    color: black;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;

    .post__title {
      margin-bottom: 0;
    }
  }
  .grid-blog__item-image {
    margin: 0;
  }
  .post__links--item {
    align-items: center;
    display: flex;
    margin: auto 0 0 0;
    --color-ui-text-action: var(--color-ui-text-default, #000);
  }
  .post__text {
    max-width: 33em;
  }

  .grid-blog .post__text {
    font-size: 13px;
  }
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:3) */
.henk-cart-section {
    width: min(var(--size-width-content, 1140px), 100% - 3rem);
    margin-inline: auto;
  }

  .henk-cart-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 auto;
  }

  .henk-cart-section__list {
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .henk-cart-section__list__item {
    display: grid;
    justify-items: start;
  }

  .henk-cart-section__item-title {
    margin-block-start: 0;
    margin-block-end: 24px;
    font-size: 31px;
    font-weight: 500;
  }

  .henk-cart-section__item-variant {
    margin-block-start: 0;
  }

  .henk-cart-section__item-config {
    display: flex;
    flex-direction: column;
  }

  .henk-cart-section__item-image {
    width: 100%;
    height: auto;
    box-shadow: inset 0 0 0 1px black;
    border-radius: 0px;
    margin-bottom: 1.5rem;
  }

  .henk-cart-section__item-image + .henk-tag {
    position: absolute;
    top: 24px;
    left: 24px;
  }

  .henk-cart-section__item-controls {
    padding: 24px 0;
    gap: 8px;
    display: grid;
    grid-template-columns: 117px 1fr 1fr;
    padding-block: 0;
    align-items: center;
    justify-items: start;
  }

  @media screen and (min-width: 768px) {
    .henk-cart-section__grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .henk-cart-section__grid .henk-cart-section__grid-item:first-child {
      grid-column: 1 / span 2;
    }

    .henk-cart-section__list-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-items: stretch;
      gap: 24px;
    }

    .henk-cart-section__item-image {
      margin: 0;
    }
  }

  .henk-cart-section__item-update-button {
    grid-column: 2;
    grid-row: 1;
  }

  .henk-icon,
  ::part(henk-icon) {
    align-items: flex-start;
    display: inline-flex;
    place-content: center;
    pointer-events: none;
    transition: transform 0.3s ease;
  }

  .henk-cart-section__item-quantity {
    width: 116px;
    height: 44px;
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    border: 1px solid var(--color-border-muted);
    border-radius: var(--radius-1);
    position: relative;
    z-index: 0;
  }

  .henk-cart-section__item-quantity {
    opacity: 1;
    transition: all 0.25s ease;
    transition-behavior: allow-discrete;
  }

  henk-quantity-stepper:defined ~ .henk-cart-section__item-quantity {
    opacity: 0;
    visibility: hidden;
    /* display: none;*/
    grid-column: 1;
    grid-row: 1;
  }

  henk-quantity-stepper {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: scale(0.98);
    min-width: 116px;
    position: relative;
    z-index: 1;
  }

  henk-quantity-stepper:defined {
    opacity: 1;
  }

  .js-enable blink {
    animation: blink 1s step-start infinite;
  }

  .js-enabled .henk-cart-section__item-update-button {
    display: none;
  }

  js-enabled .henk-cart-section__item-remove-button {
    grid-column: 2;
    grid-row: 1;
  }

  @keyframes blink {
    50% {
      opacity: 0;
    }
  }

  .henk-cart-section__summary-wrapper {
    border: 1px solid var(--color-border-base, #d1d1d1);
    border-radius: 0px;
    padding: 1.5rem;
  }

  @media screen and (min-width: 768px) {
    .henk-cart-section__summary-wrapper {
      position: sticky;
      top: var(--size-height-header, 72px);
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
.henk-grid-options-bar {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: var(--space-4);
    width: min(var(--size-width-content), 100% - 3rem);
    margin-inline: auto;
    margin-bottom: var(--space-4);
    position: relative;
  }

  @media screen and (max-width: 767px) {
    .henk-grid-options-bar {
      .henk-grid-options-bar__filters {
        width: 100%;
      }

      details#filters-widget {
        .filters-widget__active-num {
          font-size: 13px;

          + .henk-button {
            right: 8px;
          }
        }
      }

      .henk-grid-options-bar__sort {
        margin-top: 72px;
        width: 100%;
      }
    }
  }

  .henk-grid-options-bar__filters {
    min-width: 200px;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
  }

  .henk-grid-options-bar__sort {
    .henk-labeled-select {
      margin-bottom: 0;
      min-width: 200px;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:custom-section (INDEX:6) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:header (INDEX:7) */
/*
  header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
  }
  header a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  header svg {
    width: 2rem;
  }
  header .header__menu,
  header .header__icons {
    display: flex;
    gap: 1rem;
  }
  */
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:8) */
.lt-loadercontainer {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1;
}

.lt-loader {
    z-index: 901;
    width: 35px;
    height: 35px;
    position: absolute;
    left: calc(50% - 17.5px);
    top: calc(50% - 17.5px);
    transform: translate(-50%, -50%);
    opacity: 1;
    background-repeat: no-repeat;
    background-image: url(Images/loader.svg);
    background-size: 35px 35px;
    animation: spin 0.9s linear infinite;
}

.lt-loader-text {
    display: none;
}

.lt-fieldlabel {
    width: 150px;
    padding-right: 5px;
}

.lt-fieldinput .lt-inputtext {
    width: 500px;
}

.lt-selectcontainer {
    border: 1px solid #c7ced6 !important;
    box-shadow: none;
    outline: none;
    padding: 0 5px 0 5px;
}

.lt-dropdown {
    width: 100%;
}

.lt-select-option, .lt-selected-option {
    display: flex;
    width: 100%;
    min-height: 20px;
    flex-wrap: nowrap;
}

.lt-selected-option {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.lt-select-option-image, .lt-selected-option-image {
    width: 30px;
}

.lt-select-option-image img, .lt-selected-option-image img {
    max-width: 30px;
    max-height: 25px;
}
/* END_SECTION:hello-world */

/* START_SECTION:henk-footer (INDEX:10) */
.henk-footer {
    background-color: var(--color-background-base-invert, #000);
    color: var(--color-text-base-invert, #fff);
    color-scheme: light;
    border-top: 1px solid var(--color-border-base, #000);

    --color-text-link: var(--color-text-base-invert, #fff);

    a {
      text-decoration: none;
      color: var(--color-text-base-invert, #fff);
    }

    a:hover {
      text-decoration: underline;
    }

    .henk-footer__container {
      width: min(var(--size-width-content, 1140px), 100% - 3rem);
      margin-inline: auto;
      display: flex;
      flex-direction: column;
      padding: 160px 0 0;
    }

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

    .henk-footer__grid {
      padding-bottom: 160px;
      align-items: flex-start;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 24px;
    }

    .henk-footer__grid-column .henk-footer__heading {
      margin-block: 0 24px;
      font-size: var(--size-font-x-small, 10px);
      line-height: 24px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .henk-footer__grid-column .henk-footer__heading a:hover {
      /*text-decoration: none;*/
    }

    .henk-footer__row--social-rating {
      padding-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
    }

    .henk-footer__social-media {
      gap: 4px;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
    }

    .henk-footer__social-media-link {
      display: block;
    }

    .henk-footer__social-media-item {
      line-height: 1;
    }

    .henk-footer__row--payment-terms {
      display: flex;
      gap: 1.5rem;
      padding: 2.5rem 0;
      border-top: 1px solid var(--color-border-static, #000);
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .henk-footer__payment-logos {
      display: flex;
      gap: 1rem;
    }

    .henk-footer__payment-logos,
    .henk-footer__small-print {
      margin: 0;
      padding: 0;
    }

    .henk-footer__small-print {
      display: flex;
      gap: 8px 24px;
      flex-wrap: wrap;
    }

    .henk-footer__small-print-item {
      display: inline-flex;
    }

    .henk-footer__small-print-item .henk-footer__link {
      display: inline-flex;
      line-height: 24px;

      small {
        font-size: var(--size-font-x-small, 10px);
        color: var(--color-text-base-invert, #fff);
      }
    }

    /* b-corp and rating */
    .henk-footer__certificates-rating {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .henk-footer__bcorp-logo {
      display: inline-flex;

      svg {
        height: 118px;
        width: auto;
      }
    }

    .henk-footer__rating-widget {
      display: flex;
      align-items: center;
      flex: 1 1 193px;
    }

    .henk-footer__payment-logo-item {
      display: flex;
      align-items: center;
    }

    .henk-footer__payment-logo-item svg {
      width: auto;
      height: 16px;
    }

    #visa-logo svg path {
      fill: var(--color-text-base-invert, #fff);
    }

    .henk-logo {
      padding: 0;
      svg {
        height: 14px;
        width: auto;
      }
    }
  }

  @media (pointer: coarse) {
    .henk-footer__social-media-link .henk-icon svg {
      width: 44px;
      height: 44px;
    }
  }

  .henk-footer .trustpilot-widget {
    max-height: 118px;
  }
/* END_SECTION:henk-footer */

/* START_SECTION:henk-header (INDEX:11) */
.henk-header {
    summary,
    .dh__link {
      position: relative;
    }
  }
  .highlight {
    color: var(--color-danger);
    position: absolute;
    left: 100%;
    color: red;
    top: -8px;
  }
/* END_SECTION:henk-header */

/* START_SECTION:henk-section-faq (INDEX:14) */
.henk-faq-section {
    padding-block: 0;

    .henk-section__inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(375px, 100%), 1fr));
      width: min(var(--size-width-content), 100%);

      .henk-faq-section__title {
        margin-top: 24px;
        padding: 1rem 2rem;
      }
      .henk-details-group {
        box-shadow: inset 1px 0 0 0 black;
        .henk-details {
          padding: 2rem;

          @media (min-width: 768px) {
            padding: 2rem 4rem;
          }
        }

        :last-child {
          border-bottom: none;
        }
      }
    }
  }
/* END_SECTION:henk-section-faq */

/* START_SECTION:henk-section-stores-map (INDEX:20) */
.henk-section--stores-map {
    width: 100%;
    border-top: 1px solid var(--color-border-base);
    padding-block: 0;

    .henk-section__inner {
      width: min(var(--size-width-content), 100%);
    }
  }
/* END_SECTION:henk-section-stores-map */

/* START_SECTION:henk-section-stores-overview (INDEX:21) */
body > main > section:not(.hero) {
    margin-block: var(--size-spacing-block-margins);
  }
  @media only screen and (min-width: 1271px) {
    .henk-section--stores {
      margin-inline: auto;
    }
  }
/* END_SECTION:henk-section-stores-overview */

/* START_SECTION:henk-section-video (INDEX:23) */
.henk-video-section {
    border-top: 1px solid var(--color-border-base);
  }
/* END_SECTION:henk-section-video */

/* START_SECTION:henk-three-column-block (INDEX:24) */
.henk-three-column-block {
    padding-block: 96px;
    border-top: 1px solid var(--color-border-base);
  }

  .henk-three-column-block__inner {
    display: flex;
    flex-direction: column;
    width: min(var(--size-width-content, 1140px), 100% - 3rem);
    margin-inline: auto;
    container-type: inline-size;
    container-name: three-columns-grid;
  }

  .henk-three-column-block__title {
    text-align: center;
    margin-block-start: 0;
  }

  .henk-three-column-block__columns {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }

  @container three-columns-grid (min-width: 560px) {
    .henk-three-column-block__columns {
      grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
      column-gap: 1.5rem;
    }
  }

  .henk-three-column-block__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }

  .henk-three-column-block__column > * {
    margin-block: 0;
  }

  .henk-three-column-block__image {
    display: block;
    aspect-ratio: 2/3;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: var(--radius-0, 8px);
  }

  .henk-three-column-block__image-link {
    display: block;
  }

  .henk-three-column-block__heading {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.3em * 2);
  }

  .henk-three-column-block__text {
    flex-grow: 1;
  }

  .henk-three-column-block__button {
    margin-top: auto;
  }

  /* center aligned columns */
  .henk-three-column-block--align-center .henk-three-column-block__column {
    align-items: center;
    text-align: center;
  }
/* END_SECTION:henk-three-column-block */

/* START_SECTION:logictrade-configurator-cabinet (INDEX:25) */
.logictrade-configurator__layout {
    /*display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;*/
    width: min(var(--size-width-content), 100%);
    margin-inline: auto;
    border-top: 1px solid var(--color-border-base);
  }

  @media (min-width: 900px) {
    .logictrade-configurator__layout {
      /*grid-template-columns: 1fr 420px;
      align-items: start;*/
    }
  }

  .logictrade-configurator__visual-wrap {
    /*position: sticky;
    top: 72px;
    aspect-ratio: 4 / 3;
    background: #eeeae4;
    overflow: hidden;*/
  }

  @media (min-width: 900px) {
    .logictrade-configurator__layout {
      /*top: 0;*/
    }
  }

  [hidden] {
    display: none;
  }

  .logictrade-configurator__element {
    box-shadow: 1px 0 0 var(--color-border-base);
    scroll-margin-top: 15rem;

    @media screen and (min-width: 1180px) {
      display: grid;
      grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr);
      grid-template-rows: auto auto auto auto;
    }

    .configurator__visual {
      grid-column: 1;
      grid-row: 1/-1;
      box-shadow:
        1px 0 0 var(--color-border-base),
        -1px 0 0 var(--color-border-base);

      img {
        aspect-ratio: 1/1;
        object-fit: cover;
        margin: 0;
      }

      .configurator__modes {
        display: none;
      }
    }

    .configurator__steps-title {
      margin-block: 0;
      grid-column: 2;
      grid-row: 1;
      padding-inline: min(3.7vw, 64px);
      padding-block: 0.75rem;
    }

    .configurator__steps {
      grid-column: 2;
      grid-row: 2;
      margin-top: 0;
      overflow: clip;

      @media screen and (min-width: 768px) {
        max-height: 62cqh;
      }

      .configurator__step {
        padding: 0 min(3.7vw, 64px);
        box-shadow: 0px -1px 0px black;

        .henk-details__summary {
          padding-block: 10px;
          line-height: 44px;
          font-weight: 500;
          font-size: var(--size-font-small);

          &::before,
          &::after {
            font-weight: 400;
          }
        }

        &:has([open]) {
          /*height: 57cqh;*/
          overflow-y: scroll;
        }

        .configurator__step-group {
          padding-bottom: 2rem;
        }

        .configurator__step-options {
          padding-bottom: 2rem;
        }
      
        .configurator__step-group-title {
          line-height: 44px;
          font-weight: 500;
          font-size: var(--size-font-small);
          grid-column: span 2;
          margin: 0;

          &::before,
          &::after {
            font-weight: 400;
          }
        }
      }
    }

    .configurator__summary {
      grid-column: 2;
      grid-row: 3;
      box-shadow:
        0px -1px 0px black,
        0px 1px 0 black;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-left: 64px;

      > * {
        flex: 1;
      }

      > p {
        margin: 0;
        box-shadow: 1px 0 0 black;
        padding-block: 20px;
        line-height: 24px;
      }

      > .henk-button {
        justify-content: flex-end;
      }
    }
  }

  .logictrade-configurator__viewer {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
  }

  .viewer__canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  .viewer__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .viewer__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.875rem;
    pointer-events: none;
  }

  .configurator__visual {
    position: relative;
  }

  .configurator__modes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.625rem;
  }

  .configurator__mode {
    padding: 0.25rem 0.625rem;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .configurator__mode.is-active {
    font-weight: 500;
  }

  .configurator__steps {
    display: flex;
    flex-direction: column;
  }

  .configurator__step {
    /*padding: 24px 4rem;
    box-shadow: 0px -1px 0px black;*/
  }

  .configurator__step h3 {
    margin: 0 0 0.375rem;
    font-size: var(--size-font-small);
    font-weight: 500;
  }

  .configurator__step-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 48px;

    @media screen and (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }

    > .henk-button {
      justify-content: space-between;
      border-color: var(--color-border-muted);
      font-weight: var(--font-weight-regular);
      font-size: var(--size-font-small);
    }
  }

  .configurator__option {
    padding: 0.3125rem 0.625rem;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .configurator__option-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.375rem;
    justify-content: space-between;
    width: 100%;
  }

  .configurator__option-image {
    width: 32px;
    height: 32px;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0;
  }

  .configurator__option-label {
    /*font-size: 0.8125rem;*/
    white-space: nowrap;
  }

  .configurator__option.is-selected,
  .configurator__option[aria-pressed='true'] {
    background-color: var(--color-background-emphasis);
    border-color: var(--color-border-base);
  }

  .configurator__option.is-disabled,
  .configurator__option:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .configurator__step-more {
    margin-top: 0.5rem;
  }

  .configurator__step-more summary.configurator__more-toggle {
    padding: 0.25rem 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    list-style: none;
    border: none;
    display: inline;
  }

  .configurator__step-more summary.configurator__more-toggle::-webkit-details-marker {
    display: none;
  }

  .configurator__more-options {
    margin-top: 0.375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
  }

  .configurator__price {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
  }

  .logictrade-configurator__element.is-loading .configurator__steps {
    opacity: 0.5;
    pointer-events: none;
  }

  .configurator__preview-output {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border: 1px solid currentColor;
    font-size: 0.75rem;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 300px;
    overflow: auto;
  }

  .configurator__step .henk-details.henk-details--plusmin {
    border-bottom: 0;
    margin-bottom: 0;

    .henk-details__summary {
    }
  }
/* END_SECTION:logictrade-configurator-cabinet */

/* START_SECTION:logictrade-configurator (INDEX:26) */
.logictrade-configurator {
    .logictrade-configurator__layout {
      width: min(var(--size-width-content), 100%);
      margin-inline: auto;

      .logictrade-configurator__element {
        scroll-margin-top: 15rem;

        @media screen and (min-width: 1180px) {
          display: grid;
          grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr);
        }

        .configurator__visual {
          grid-column: 1;
          grid-row: 1/-1;
          box-shadow: 1px 0 0 var(--color-border-base);

          img {
            aspect-ratio: 1/1;
            object-fit: cover;
            margin: 0;
          }

          .configurator__modes {
            display: none;
          }
        }

        .configurator__options {
          display: flex;
          flex-direction: column;

          .configurator__summary {
            grid-column: 2;
            grid-row: 3;
            /*box-shadow: inset 0px 1px 0 0 black;*/
            border-top: 1px solid black;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: min(3.7vw, 64px);
            margin-bottom: 0;
            margin-top: auto;

            > * {
              flex: 1;
            }

            > p {
              margin: 0;
              box-shadow: 1px 0 0 black;
              padding-block: 20px;
              line-height: 24px;
            }

            > .henk-button {
              justify-content: flex-end;
            }
          }
        }

        .configurator__steps-title {
          margin-block: 0;
          grid-column: 2;
          grid-row: 1;
          padding-inline: min(3.7vw, 64px);
          padding-block: 0.75rem;
        }

        .configurator__steps {
          grid-column: 2;
          grid-row: 2;
          margin-top: 0;
          overflow: clip;

          @media screen and (min-width: 768px) {
            max-height: 62cqh;
          }

          /*
          &:has(details[open]) {
            background-color: red;
          }

          &:has(details:not([open])) {
            box-shadow: inset 0 -1px 0 0 black;
          }
          &:not(:has(details[open])) {
          box-shadow: inset 0 -1px 0 0 black;
          }
          &:has(details:first-of-type:not([open])) {
            box-shadow: inset 0 -1px 0 0 black;
          }
          */

          /* Target the container ONLY if the FIRST child block contains a CLOSED details tag */
          &:has(> :first-child details:not([open])) {
            /*box-shadow: inset 0 -1px 0 0 black;*/
            border-bottom: 1px solid black;
          }

          .configurator__step {
            padding: 0 min(3.7vw, 64px);
            /*box-shadow: inset 0 1px 0 0 black;*/
            border-top: 1px solid black;

            &:last-child {
              /*box-shadow: inset 0 1px 0 0 black;*/
              border-bottom: none;
            }

            .henk-details__summary {
              padding-block: 10px;
              line-height: 44px;
              font-weight: 500;
              font-size: var(--size-font-small);

              &::before,
              &::after {
                font-weight: 400;
              }

              &::after {
                /*right: -15px;*/
              }
            }

            &:has([open]) {
              overflow-y: scroll;
            }

            .configurator__step-group {
              padding-bottom: 2rem;
            }

            .configurator__step-options {
              padding-bottom: 2rem;
            }

            .configurator__step-group-title {
              line-height: 44px;
              font-weight: 500;
              font-size: var(--size-font-small);
              grid-column: span 2;
              margin: 0;

              &::before,
              &::after {
                font-weight: 400;
              }
            }
          }
        }
      }
    }

    [hidden] {
      display: none;
    }
  }

  .logictrade-configurator__viewer {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
  }

  .viewer__canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  .viewer__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .viewer__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.875rem;
    pointer-events: none;
  }

  .viewer__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .viewer__loading[hidden] {
    display: none;
  }

  .viewer__toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.75rem min(3.7vw, 64px);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: var(--size-font-small);
    font-weight: 500;
    user-select: none;
    -webkit-tap-highlight-color: transparent;

    @media screen and (min-width: 1180px) {
      display: none;
    }
  }

  .viewer__toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }

  .viewer__toggle-track {
    width: 36px;
    height: 20px;
    border: 1px solid black;
    border-radius: 10px;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s ease;

    .viewer__toggle:has(.viewer__toggle-input:checked) & {
      background: black;
    }
  }

  .viewer__toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: black;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;

    .viewer__toggle:has(.viewer__toggle-input:checked) & {
      transform: translateX(16px);
      background: white;
    }
  }

  .viewer__loading::after {
    content: '';
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-top-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    animation: viewer-spin 0.65s linear infinite;
  }

  @keyframes viewer-spin {
    to {
      transform: rotate(360deg);
    }
  }

  .configurator__visual {
    position: relative;
  }

  .configurator__modes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.625rem;
  }

  .configurator__mode {
    padding: 0.25rem 0.625rem;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .configurator__mode.is-active {
    font-weight: 500;
  }

  .configurator__steps {
    display: flex;
    flex-direction: column;
  }

  .configurator__step h3 {
    margin: 0 0 0.375rem;
    font-size: var(--size-font-small);
    font-weight: 500;
  }

  .configurator__step-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 48px;

    @media screen and (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }

    > .henk-button {
      justify-content: space-between;
      border-color: var(--color-border-muted);
      font-weight: var(--font-weight-regular);
      font-size: var(--size-font-small);
    }
  }

  .configurator__option {
    padding: 0.3125rem 0.625rem;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .configurator__option-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.375rem;
    justify-content: space-between;
    width: 100%;
  }

  .configurator__option-image {
    width: 32px;
    height: 32px;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0;
  }

  .configurator__option-label {
    /*font-size: 0.8125rem;*/
    white-space: nowrap;
  }

  .configurator__option.is-selected,
  .configurator__option[aria-pressed='true'] {
    background-color: var(--color-background-emphasis);
    border-color: var(--color-border-base);
  }

  .configurator__option.is-disabled,
  .configurator__option:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .configurator__step-more {
    margin-top: 0.5rem;
  }

  .configurator__step-more summary.configurator__more-toggle {
    padding: 0.25rem 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    list-style: none;
    border: none;
    display: inline;
  }

  .configurator__step-more summary.configurator__more-toggle::-webkit-details-marker {
    display: none;
  }

  .configurator__more-options {
    margin-top: 0.375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
  }

  .configurator__price {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
  }

  .logictrade-configurator__element.is-loading .configurator__steps {
    opacity: 0.5;
    pointer-events: none;
  }

  .configurator__preview-output {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border: 1px solid currentColor;
    font-size: 0.75rem;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 300px;
    overflow: auto;
  }

  .configurator__step .henk-details.henk-details--plusmin {
    border-bottom: 0;
    margin-bottom: 0;
  }
/* END_SECTION:logictrade-configurator */

/* START_SECTION:main-configurator (INDEX:27) */
.lt-loadercontainer {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1;
}

.lt-loader {
    z-index: 901;
    width: 35px;
    height: 35px;
    position: absolute;
    left: calc(50% - 17.5px);
    top: calc(50% - 17.5px);
    transform: translate(-50%, -50%);
    opacity: 1;
    background-repeat: no-repeat;
    background-image: url(Images/loader.svg);
    background-size: 35px 35px;
    animation: spin 0.9s linear infinite;
}

.lt-loader-text {
    display: none;
}

.lt-fieldlabel {
    width: 150px;
    padding-right: 5px;
}

.lt-fieldinput .lt-inputtext {
    width: 500px;
}

.lt-selectcontainer {
    border: 1px solid #c7ced6 !important;
    box-shadow: none;
    outline: none;
    padding: 0 5px 0 5px;
}

.lt-dropdown {
    width: 100%;
}

.lt-select-option, .lt-selected-option {
    display: flex;
    width: 100%;
    min-height: 20px;
    flex-wrap: nowrap;
}

.lt-selected-option {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.lt-select-option-image, .lt-selected-option-image {
    width: 30px;
}

.lt-select-option-image img, .lt-selected-option-image img {
    max-width: 30px;
    max-height: 25px;
}
/* END_SECTION:main-configurator */

/* START_SECTION:product (INDEX:33) */
.henk-grid-pdp .product-gallery {
    padding-bottom: 1px;

    swiper-slide {
      padding: 0 0 0 1px;
    }
  }

  .product-gallery .henk-image img {
    max-height: calc(99svh - var(--size-height-header, 72px));
    margin-inline: auto;
    object-fit: cover;
  }

  .henk-grid-pdp {
    grid-template-columns: 1fr;
    width: min(var(--size-width-content), 100%);

    .product-details {
      display: grid;
      grid-template-rows: 1fr auto;
    }

    .product-info {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding-inline: min(3.7vw, 64px);
      min-height: 175px;

      .product__price {
        margin-bottom: 0;
        color: var(--color-text-muted);
      }

      .product__title {
        margin-block: 0;
      }

      .product-variant__title {
        margin-block: 0;
      }

      .product__description {
        margin-top: auto;
      }
    }

    .product-actions {
      box-shadow: inset 0 1px 0 black;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;

      form {
        display: contents;
      }

      .henk-button {
        --btn-bg: transparent;
        text-align: left;
        justify-content: space-between;
        padding: 32px 32px 32px min(3.7vw, 64px);
        font-size: var(--size-font-small);
        line-height: 24px;
        flex: 1;
        border: 0;

        + .henk-button,
        + .product__price {
          box-shadow: -1px 0 0 black;
        }
      }

      .product__price {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: var(--size-font-small);
        padding: 0;
        line-height: 24px;
        flex: 0 1;

        .henk-button {
          border-right: 0;
          padding-inline: 2em;
        }
      }
    }
  }

  @media (min-width: 768px) {
    .henk-grid-pdp {
      display: grid;
      column-gap: 0;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

      .product-details {
        box-shadow: inset 1px 0 0 black;
      }
    }
  }

  .henk-image img {
    margin-bottom: 0;
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:34) */
.henk-page-search {
    padding-bottom: 0;

    .henk-labeled-input {
      margin-bottom: 0;
    }
  }

  .henk-page-search-results {
    padding-top: 0;
  }
/* END_SECTION:search */

/* START_SECTION:sofa-configurator-fallback (INDEX:35) */
.sofa-configurator-fallback {
    padding: 0;

    .henk-section--boxed {
      box-shadow:
        inset 1px 0 0 0 black,
        inset -1px 0 0 0 black,
        inset 0 -1px 0 0 black;
    }

    .sofa-grid {
      scroll-margin-top: 15rem;
    }

    .sofa-config__options {
      box-shadow: inset 1px 0 0 0 black;
      display: flex;
      flex-direction: column;

      .configurator__step {
        padding: 0 min(3.7vw, 64px) 24px min(3.7vw, 64px);
        border-top: 1px solid black;

        .henk-label {
          font-weight: 500;
          font-size: var(--size-font-small);
          padding-block: 10px;
          line-height: 44px;
          min-height: 44px;
          display: flex;
        }

        .henk-labeled-select {
          margin: 0;
        }

        .configurator__step-options {
          display: grid;
          grid-template-columns: 1fr;
          gap: 24px 48px;
          padding-bottom: 2rem;

          @media screen and (min-width: 768px) {
            grid-template-columns: 1fr 1fr;
          }
        }

        .configurator__option {
          padding: 0.3125rem 0.625rem;
          border: 1px solid currentColor;
          background: transparent;
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          gap: 0.375rem;
          font-size: 0.8125rem;
          line-height: 1.4;

          .configurator__option-input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            pointer-events: none;
          }

          .configurator__option-inner {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 0.375rem;
            justify-content: space-between;
            width: 100%;
          }

          .configurator__option-image {
            width: 32px;
            height: 32px;
            object-fit: cover;
            flex-shrink: 0;
            margin: 0;
          }

          .configurator__option-label {
            white-space: nowrap;
          }

          &:has(input:checked) {
            background-color: var(--color-background-emphasis);
            border-color: var(--color-border-base);
          }
        }

        .configurator__options {
          display: flex;
          flex-direction: column;

          .configurator__summary {
            grid-column: 2;
            grid-row: 3;
            /*box-shadow: inset 0px 1px 0 0 black;*/
            border-top: 1px solid black;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: min(3.7vw, 64px);
            margin-bottom: 0;
            margin-top: auto;

            > * {
              flex: 1;
            }

            > p {
              margin: 0;
              box-shadow: 1px 0 0 black;
              padding-block: 20px;
              line-height: 24px;
            }

            > .henk-button {
              justify-content: flex-end;
            }

            > .henk-button:checked {
              border-color: red;
            }
          }
        }

        @media screen and (min-width: 768px) {
          border-bottom: 1px solid black;
        }
      }

      .sofa-config-title {
        margin-block: 0px;
        padding-inline: min(3.7vw, 64px);
        padding-block: 0.75rem;
      }

      .configurator__summary {
        border-top: 1px solid black;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: min(3.7vw, 64px);
        margin-bottom: 0;
        margin-top: auto;

        .shopify-product-form {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;

          p {
            margin: 0;
            box-shadow: 1px 0 0 black;
            padding-block: 20px;
            line-height: 24px;
            flex: 1;
          }

          .henk-button {
            justify-content: flex-end;
            flex: 1;
          }
        }
      }
    }
  }
/* END_SECTION:sofa-configurator-fallback */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:39) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:40) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:henk-breadcrumbs (INDEX:48) */
.henk-breadcrumbs {
    font-size: var(--size-font-small);
    line-height: 24px;
    width: min(var(--size-width-content), 100% - 3rem);
    margin-inline: auto;
    text-box: trim-end ex alphabetic;
    padding-block-start: 7px;
    margin-block-end: 24px;
  }

  .henk-breadcrumbs__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
  }

  .henk-breadcrumbs__item {
    display: inline-block;
    margin-right: 8px;
  }

  .henk-breadcrumbs__name {
    text-transform: capitalize;
  }

  /* Add the ">" separator between breadcrumb items */
  .henk-breadcrumbs__item:not(:last-child)::after {
    content: '\003E'; /* Unicode for the > symbol */
    margin-left: 8px;
    color: var(--color-text-muted);
  }

  .henk-breadcrumbs__item:last-child .henk-breadcrumbs__name {
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .henk-breadcrumbs__item:nth-child(2) {
      display: block; /* Ensure it's still present in the DOM */
      visibility: hidden; /* Hides the content visually */
      position: absolute; /* Removes it from the layout flow */
      width: 0; /* Optional: remove any space it might take */
      height: 0;
    }
  }
/* END_SNIPPET:henk-breadcrumbs */

/* START_SNIPPET:henk-button (INDEX:49) */
.henk-button,
    .henk-button:link,
    .henk-button:visited {
      --btn-bg: var(--color-background-primary);
      --btn-bg-hover: var(--color-background-secondary);
      --btn-text: var(--color-text-base);
      --btn-text-hover: var(--color-text-base-invert);
      --btn-border: var(--color-border-base);
      --btn-border-hover: var(--color-border-base);
      --btn-border-radius: 0;
      --btn-outline-width: 0;
      --btn-outline-color: var(--color-text-link);
      --btn-outline-offset: 0;

      background-color: var(--btn-bg);
      color: var(--btn-text);
      border: 1px solid var(--btn-border);
      border-radius: var(--btn-border-radius, 4px);
      outline: var(--btn-outline-width) solid var(--btn-outline-color);
      outline-offset: var(--btn-outline-offset, 0);
      cursor: pointer;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 0.5em;
      line-height: 1.5;
      padding: 0.5625em 1em;
      text-decoration: none;
      text-underline-offset: 0;
      font-family: var(--font-body, sans-serif), sans-serif;
      font-size: 1rem;
      font-weight: var(--font-weight-regular, 400);
      text-align: center;
      hyphens: none;
      max-height: 44px;
      transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
    }

    @media screen and (max-width: 321px) {
      .henk-button,
      .henk-button:link {
        padding-inline: 16px;
      }
    }

    .henk-button:hover,
    a:hover span.henk-button {
      background-color: var(--btn-bg-hover);
      color: var(--btn-text-hover);
      border-color: var(--btn-border-hover);
      text-underline-offset: 0;
    }

    /* focus visible */
    .henk-button:focus-visible,
    a:focus-visible span.henk-button {
      --btn-text: var(--color-text-link-hover);
      outline-width: 2px;
      outline-color: var(--btn-outline-color);
      outline-offset: var(--btn-outline-offset, 2px);
    }

    /* Variants */
    .henk-button--primary,
    .henk-button--primary:link {
      --btn-bg: var(--color-background-primary);
      --btn-text: var(--color-text-base);
    }

    .henk-button--secondary,
    .henk-button--secondary:link {
      --btn-bg: var(--color-background-secondary);
      --btn-text: var(--color-text-base-invert);

      &:hover {
        --btn-bg-hover: var(--color-background-secondary-light);
      }
    }

    .henk-button.henk-button--transparent {
      --btn-bg: transparent;
      --btn-text: currentColor;
      --btn-border: currentColor;
    }

    .henk-button--danger,
    .henk-button--danger:link {
      --btn-bg: var(--color-background-danger);
      --btn-bg-hover: var(--color-background-danger);
      --btn-text: var(--color-text-on-danger);
      --btn-border: var(--color-border-danger);
      --btn-border-hover: var(--color-border-danger);
      --btn-outline-width: 2px;
      --btn-outline-color: var(--color-border-danger);
      --btn-outline-offset: 2px;

      &:hover {
        animation: pulse-outline 1s infinite;
      }
    }

    .henk-button--success,
    .henk-button--success:link {
      --btn-bg: var(--color-background-success);
      --btn-bg-hover: var(--color-background-success);
      --btn-text: var(--color-text-on-success);
      --btn-border: var(--color-border-success);
      --btn-border-hover: var(--color-border-success);
      --btn-outline-width: 2px;
      --btn-outline-color: var(--color-border-success);
      --btn-outline-offset: 2px;
    }

    /* Disabled state */
    .henk-button[disabled],
    .henk-button[aria-disabled='true'] {
      --btn-bg: var(--color-background-disabled);
      --btn-bg-hover: var(--color-background-disabled);
      --btn-text: var(--color-text-on-disabled);
      --btn-text-hover: var(--color-text-on-disabled);
      --btn-border: var(--color-border-disabled);
      --btn-border-hover: var(--color-border-disabled);

      cursor: not-allowed;
    }

    .henk-button[disabled]:hover,
    .henk-button[aria-disabled='true']:hover {
      --btn-border-hover: var(--color-border-disabled);
    }

    /* Size modifiers */
    .henk-button--small,
    .henk-button--small:link {
      font-size: 0.8125rem;
      line-height: 1.84615385em;
      padding: 3px 16px;
    }

    /* Ghost variant (minimal styling) */
    .henk-button.henk-button--ghost {
      --btn-bg: transparent;
      --btn-border: transparent;
      --btn-bg-hover: transparent;
      --btn-text-hover: var(--color-text-link-hover, orange);
      --btn-border-hover: transparent;

      padding-inline: 0.25em;
      border-width: 0;

      &:has(.icon--only) {
        padding-inline: 10px;
        padding-block: 10px;
      }
    }

    .henk-button .henk-icon {
      font-size: 12px;
    }

    .henk-button .henk-icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .henk-button--small .henk-icon svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .henk-button:has(.icon--only) {
      padding-inline: 9px;
      padding-block: 9px;
    }

    .henk-button.henk-button--small:has(.icon--only) {
      padding-block: 7px;
      padding-inline: 7px;
    }

    .henk-button .henk-icon:has(#chevron-down) {
      transform: translateY(1px);
    }

    /* state */
    .henk-button[data-state='open'] #chevron-down {
      transform: rotate(180deg);
    }

    .henk-button:popover-open .henk-icon #chevron-down {
      transform: rotate(180deg);
    }

    /* Pulsating animation */
    @keyframes pulse-outline {
      0% {
        outline-offset: 2px;
      }

      50% {
        outline-offset: 6px;
        outline-width: 4px;
      }

      100% {
        outline-offset: 2px;
      }
    }
   {%- comment -%}button group {%- endcomment -%}

  .henk-button-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    margin: 1.5rem 0;
  }

  .henk-button-group:last-child {
    margin-bottom: 0;
  }

  .henk-button-group--left {
    justify-content: flex-start;
  }

  .henk-button-group--center {
    justify-content: center;
  }

  .henk-button-group--right {
    justify-content: flex-end;
  }

  .henk-button-group--space-between {
    justify-content: space-between;
  }

  .henk-button-group--fill > * {
    flex: 1;
  }

  .henk-button-group--stacked {
    flex-direction: column;
    align-items: stretch;
  }

  @media only screen and (max-width: 767px) {
    .henk-button-group--mobile-stacked {
      flex-direction: column-reverse;
      align-items: stretch;
    }
  }

  @media only screen and (max-width: 767px) {
    .henk-button-group--mobile-reverse {
      flex-direction: column-reverse;
    }
  }

  /* stylelint-disable-next-line selector-class-pattern */
  .henk-tag--gtmLister {
    margin: 0 !important;
  }
/* END_SNIPPET:henk-button */

/* START_SNIPPET:henk-card (INDEX:50) */
.henk-card {
    --_henk-card-radius: 0;
    --_henk-card-bg: var(--color-background-body, #fff);

    background-color: var(--_henk-card-bg);
    box-shadow: 0 0 0 1px black;

    max-width: 640px;
    display: grid;
    grid-auto-rows: 1fr auto auto;
    place-items: start center;
    position: relative;

    /* fix for when in a grid */
    min-width: 0;
    min-height: 0;

    .henk-card__image-link {
      /*background-color: var(--color-background-neutral-lightest);*/
      border-radius: var(--_henk-card-radius, 0);
      overflow: clip;

      .henk-card__image-container {
        margin: 0;

        .henk-card__img {
          height: auto;
          object-fit: cover;
          margin: 0;
          /*aspect-ratio: 2/3;*/
          aspect-ratio: 1/1;
          transition: transform 0.3s ease;
        }
      }

      &:hover,
      &:focus {
        .henk-card__img {
          transform: scale(1.05);
        }
      }
    }

    .henk-card__content {
      background-color: var(--color-background-body);
      box-shadow: 0 0px 0 1px black;
      width: 100%;
      display: grid;
      grid-template-columns: 2fr 1fr;
      padding: 8px 16px;
      place-items: center start;
      z-index: 1;

      .henk-card__link {
        color: currentColor;
        text-decoration: none;
      }
    }

    .henk-card__title,
    .henk-card__price {
      --line-clamp: 1;

      margin: 0;
      font-size: var(--size-font-root, 16px);
      font-weight: 400;
      line-height: 24px;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0;
      width: auto;
    }

    .henk-card__price {
      justify-self: end;
    }

    .henk-card__price-original {
      opacity: 0.6;
      color: var(--color-text-muted);
    }

    .henk-card__price--discounted {
      color: var(--color-text-success);
    }

    .henk-card__subtitle {
      --line-clamp: 1;

      margin: 0;
      grid-row: 2;
      grid-column: 1 / 3;
    }

    .henk-card__tags {
      position: absolute;
      display: flex;
      gap: 8px;
      justify-content: space-between;
      inset: 16px 16px auto;
      z-index: 10;
    }
  }

  .henk-card--rounded {
    --_henk-card-radius: var(--size-radius-200, 8px);
  }

  .henk-card--shadow {
    .henk-card__image-link {
      box-shadow: 0 0 4px 0 #aaa;
      z-index: 9;
      transition: box-shadow 0.3s ease-in-out;

      &:hover {
        box-shadow: 0 0 16px 0 #aaa;
      }
    }
  }

  .henk-card.henk-card--store {
    .henk-card__image-link {
      border-radius: 0;
      overflow: clip;
    }

    .henk-card__image-container {
      overflow: clip;
      border-radius: 0;
    }

    .henk-card__content {
      .henk-card__button {
        grid-row: 1 / 3;
      }

      &.henk-card__content--vertical {
        background-color: var(--color-background-body);
        /*position: absolute;*/
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9;
        overflow: clip;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        justify-content: center;
        justify-items: center;
        gap: 8px;
        padding: 1rem 8px;

        .henk-card__title {
          font-size: var(--size-font-x-large);
          line-height: 40px;
          text-transform: none;
        }

        .henk-card__subtitle {
          font-size: 13px;
          line-height: 20px;
        }

        .henk-card__subtitle,
        .henk-card__button {
          grid-column: unset;
          grid-row: unset;
        }
      }
    }

    .henk-card__link--directions {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: var(--size-font-small);

      .henk-icon {
        color: #000;

        svg {
          width: 24px;
          height: 24px;
        }
      }
    }
  }
/* END_SNIPPET:henk-card */

/* START_SNIPPET:henk-collection-sort (INDEX:51) */
[data-js-hide] {
    display: none;
  }
/* END_SNIPPET:henk-collection-sort */

/* START_SNIPPET:henk-detailscomponent (INDEX:52) */
.faq-container {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    max-width: 1256px;
    margin: 0 auto;
    transition: all 0.3s ease;
  }

  .henk-details {
    margin-bottom: 1.5rem;
  }

  .henk-details-group .henk-details {
    margin-bottom: 0;

    summary {
      &:hover {
        color: var(--color-primary-darkest);
      }
    }
  }

  .henk-details::details-content {
    overflow: clip;
    block-size: 0;
    transition:
      block-size 0.6s,
      content-visibility 0.6s;
    transition-behavior: allow-discrete;
  }

  .henk-details[open]::details-content {
    block-size: auto;
  }

  .henk-details__summary {
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
  }

  .henk-details__content {
    max-width: 60ch;
    padding-block: var(--space-4, 24px);

    p:empty {
      display: none;
    }
  }

  @supports not (margin-trim: block) {
    .henk-details__content *:first-child {
      margin-top: 0;
    }

    .henk-details__content *:last-child {
      margin-bottom: 0;
    }
  }

  .henk-details.henk-details--plusmin {
    border-bottom: 1px solid var(--color-border-muted, red);
  }

  .henk-details.henk-details--plusmin .henk-details__summary {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 0;
    padding: 10px 12px 10px 0;
    transition: all 0.3s ease;
    position: relative;
  }

  .henk-details.henk-details--plusmin[open] .henk-details__summary {
    position: relative;
  }

  .henk-details.henk-details--plusmin .henk-details__summary::before,
  .henk-details.henk-details--plusmin .henk-details__summary::after {
    /* background-color: pink; */
    width: 44px;
    height: 44px;
  }

  .henk-details.henk-details--plusmin .henk-details__summary::before {
    content: '+';
    display: inline-flex;
    font-size: 2rem;
    justify-content: center;
    line-height: 44px;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    transform-origin: center center;
    z-index: 1;
    opacity: 1;
    width: 44px;
    height: 44px;
  }

  .henk-details.henk-details--plusmin[open] .henk-details__summary::before {
    transform: rotate(90deg);
    opacity: 0;
  }

  .henk-details.henk-details--plusmin .henk-details__summary::after {
    content: '\2212';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 2rem;
    line-height: 44px;
    display: inline-flex;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .henk-details.henk-details--plusmin[open] .henk-details__summary::after {
    opacity: 1;
  }

  .henk-details.henk-details--plusmin .henk-details__summary:focus-visible {
    color: var(--color-focus-ring, #005fcc);
    padding: 4px;
  }

  .henk-details.henk-details--plusmin .henk-details__summary:focus-visible::before {
    right: 4px;
  }

  .henk-details.henk-details--plusmin .henk-details__summary:focus-visible::after {
    right: 4px;
  }

  section:has(.henk-section-header) + .henk-section {
    padding-block: 0;
  }
/* END_SNIPPET:henk-detailscomponent */

/* START_SNIPPET:henk-icon (INDEX:56) */
.henk-icon {
    display: flex;
    line-height: 1;
    pointer-events: none;
  }

  /* 24 */
  .henk-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
    transition: transform 0.3s ease;
  }

  /* icon only needs other display to align better */
  .henk-icon.icon--only {
    display: flex;
    align-items: center;
  }
/* END_SNIPPET:henk-icon */

/* START_SNIPPET:henk-info-box (INDEX:57) */
.info-box {
    --_infobox-border-color: var(--color-border-muted);

    color: currentcolor;
    padding: 1rem;
    border-radius: var(--radius-2, 8px);
    border: 1px solid var(--_infobox-border-color);
    background-color: var(--color-background-body);
    box-shadow: 0 0 8px #ebebeb;
    overflow: clip;
  }

  .info-box * {
    margin: 0;
  }

  .info-box__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .info-box__header {
    position: relative;
  }

  .info-box__header--has-icon .henk-icon {
    position: absolute;
    top: 0;
    right: 0;
  }

  .info-box__heading {
    font-weight: 500;
  }

  .info-box__header--has-icon .info-box__heading {
    max-width: calc(100% - 24px);
  }

  .info-box__body * {
    margin-block: 24px;
  }

  .info-box__body *:first-child {
    margin-block-start: 0;
  }

  .info-box__body *:last-child {
    margin-block-end: 0;
  }

  .info-box--variant-info {
    --_infobox-border-color: var(--color-info);
  }

  .info-box--variant-success {
    --_infobox-border-color: var(--color-success);
  }

  .info-box--variant-warning {
    --_infobox-border-color: var(--color-warning);
  }

  .info-box--variant-danger {
    --_infobox-border-color: var(--color-danger);
  }

  [class*='info-box--variant-'] {
    .henk-icon {
      color: var(--_infobox-border-color);
    }
  }

  .grid-info-box {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: min(var(--size-width-content, 1140px), 100% - 3rem);
    margin-inline: auto;
  }

  .grid-info-box .info-box {
    margin-block: 0;
  }
/* END_SNIPPET:henk-info-box */

/* START_SNIPPET:henk-logo (INDEX:58) */
.henk-logo {
    --color-text-logo: var(--color-neutral-0, #000);
    --color-background-logo: var(--color-neutral-100, #fff);

    color: var(--color-text-logo);
    background-color: var(--color-background-logo);
    display: inline-flex;
    margin-block: 0;
    margin-inline: 0;
    padding-block: var(--space-4, 24px);
    padding-inline: 18px;

    &:link {
      color: var(--color-text-logo);
    }

    &:visited {
      color: var(--color-text-logo);
    }

    &:hover {
      color: var(--color-text-secondary);
    }
  }

  .henk-logo svg {
    display: block;
  }

  .henk-logo--default-inverted {
    --color-text-logo: var(--color-neutral-100);
    --color-background-logo: var(--color-neutral-0);
  }

  .henk-logo--primary {
    --color-text-logo: var(--color-text-secondary);
    --color-background-logo: var(--color-background-primary);
  }

  .henk-logo--secondary {
    --color-text-logo: var(--color-text-primary);
    --color-background-logo: var(--color-background-secondary);
  }

  .henk-logo--transparent {
    --color-background-logo: transparent;
  }
/* END_SNIPPET:henk-logo */

/* START_SNIPPET:henk-newsletter (INDEX:59) */
.henk-section--newsletter {
    margin-top: 64px;
    border-top: 1px solid var(--color-border-base, #f00);
  }
  .henk-newsletter-form__container {
    display: flex;
    flex-direction: column;
    place-content: center center;
    align-items: center;
    gap: 24px;

    .henk-newsletter-form__title {
      margin: 0;
    }

    .henk-newsletter-form__description {
      margin: 0;
      max-width: 45ch;
      text-align: center;
    }

    .henk-form.newsletter-form {
      .henk-labeled-input--required {
        margin-bottom: 0;
      }
    }
  }
/* END_SNIPPET:henk-newsletter */

/* START_SNIPPET:henk-pagination (INDEX:60) */
.henk-pagination {
    width: min(var(--size-width-content, 1140px), 100%);
    margin-inline: auto;
    text-align: center;
    padding: 0;

    > .henk-button {
      margin-top: 0;
    }

    .henk-button-group {
      margin: 0;
    }

    .henk-grid + & {
      margin-block-end: var(--space-9, 64px);
    }
  }
/* END_SNIPPET:henk-pagination */

/* START_SNIPPET:henk-product-card (INDEX:61) */
.henk-card--product {
    /*border: 0.5px solid black;*/

    .henk-card__image-link {
      .henk-card__image-container {
        .henk-card__img {
          aspect-ratio: 1 / 1;
        }
      }
    }

    .henk-card__content {
      padding: 8px 16px;

      form {
        display: flex;
        justify-self: end;

        .henk-button {
          padding: 0;
        }
      }
    }

    .henk-card__title,
    .henk-card__price {
      text-transform: none;
      letter-spacing: 2%;
    }

    .henk-card__title {
    }

    .henk-card__subtitle {
    }

    .henk-card__price {
      font-weight: 400;
    }

    + .henk-card--product {
    }
  }
/* END_SNIPPET:henk-product-card */

/* START_SNIPPET:henk-snippet-double-media (INDEX:63) */
.henk-double-media-block {
    padding-block: var(--space-13, 96px);
    border-top: 1px solid var(--color-border-base);

    .henk-double-media-block__inner {
      width: min(768px, 100% - 3rem);
      margin-inline: auto;
    }

    .henk-double-media-block__grid {
      display: flex;
      row-gap: var(--space-7, 48px);
      flex-wrap: wrap;
      align-items: center;
    }

    .henk-double-media-block__grid-item svg.placeholder-svg-small {
      max-width: 80%;
    }

    .henk-image,
    .henk-video {
      margin-bottom: 0;
      border-radius: var(--radius-2, 8px);
      aspect-ratio: 2/3;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    @media only screen and (min-width: 588px) {
      .henk-double-media-block__grid-item {
        flex: 1 1 clamp(270px, 49%, 560px);

        &:last-child {
          display: flex;
          justify-content: flex-end;

          .henk-image,
          .henk-video-container {
            max-width: 80%;
          }

          a {
            max-width: 80%;

            > .henk-image {
              max-width: 100%;
            }
          }
        }

        a {
          &:hover {
            .henk-image {
              transform: scale(1.025);
            }
          }
        }
      }

      /* Flip order if root has modifier */
      &.henk-double-media-block--reverse {
        .henk-double-media-block__grid {
          flex-direction: row-reverse;
        }

        .henk-double-media-block__grid-item:last-child {
          justify-content: flex-start;
        }
      }
    }
  }
/* END_SNIPPET:henk-snippet-double-media */

/* START_SNIPPET:henk-snippet-filters-widget (INDEX:64) */
.filters-widget__reset-button {
    position: absolute;
    right: -96px;
    top: 0;
  }

  details#filters-widget {
    > summary {
      border: 1px solid black;
      border-radius: 0px;
      padding: 9px 1rem;
      position: relative;
      line-height: 1.5;
    }

    .filters-widget__active-num {
      font-size: 13px;
    }

    .henk-details-group {
      backdrop-filter: blur(24px);
      border-top: 0;
      border-left: 1px solid;
      border-right: 1px solid;
      border-bottom: 1px solid;
      border-color: var(--color-border-base);
      font-size: 13px;
      line-height: 24px;

      summary {
        padding: var(--space-2) var(--space-5) var(--space-2) var(--space-2);
      }
    }

    .henk-details__content {
      padding-block: 0;

      input[type='checkbox'] {
        margin: 0;
      }

      label {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        padding-left: 8px;
        position: relative;

        .swatch {
          position: absolute;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          display: inline-block;
          border: 1px solid #ccc;
          vertical-align: middle;
        }

        .swatch + input[type='checkbox'] {
          visibility: hidden;
        }

        &:has(input[type='checkbox']:checked) {
          font-weight: 500;

          .swatch {
            border-color: black;
            border-width: 2px;
          }
        }
      }
    }

    &[open] {
      > summary {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

      .henk-details-group {
        summary:hover {
          background-color: black;
          color: white;
        }

        .henk-details.henk-details--plusmin .henk-details__summary::before,
        .henk-details.henk-details--plusmin .henk-details__summary::after {
          top: unset;
          right: 8px;
        }

        .henk-button-group {
          margin-block-start: 0;
          padding: var(--space-2);
        }
      }
    }
  }
/* END_SNIPPET:henk-snippet-filters-widget */

/* START_SNIPPET:henk-snippet-grid (INDEX:65) */
.henk-grid {
    padding-block: 40px 64px;
    width: min(var(--size-width-content), 100%);
    margin-inline: auto;
    container-name: henk-grid;
    container-type: inline-size;

    .henk-grid__container {
      display: grid;
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 64px;
      padding-inline: 1px;
    }
    @container (min-width:600px) {
      .henk-grid__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        .henk-card {
          max-width: none;
          /*margin-left: -0.5px;
          margin-top: -0.5px;*/
        }
      }
    }
    @container (min-width:900px) {
      .henk-grid__container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    &.henk-grid--4col {
      @container (min-width:900px) {
        .henk-grid__container {
          grid-template-columns: repeat(4, minmax(0, 1fr));
        }
      }
    }
  }
/* END_SNIPPET:henk-snippet-grid */

/* START_SNIPPET:henk-snippet-hero (INDEX:66) */
.henk-hero__content > * {
    max-width: 33em;
  }

  .henk-hero {
    background-color: #000;

    .henk-hero__inner {
      position: relative;
      height: 100%;
    }

    .henk-hero__image {
      margin: 0;
      width: 100vw;
      height: 100svh;
      object-fit: cover;
    }

    .henk-hero__content {
      color: white;
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
      gap: 24px;
      backdrop-filter: brightness(0.85);

      > * {
        margin: 0;
      }
    }
  }

  body:has(.henk-header) .henk-hero .henk-hero__image {
    height: calc(100svh - 72px);
  }
/* END_SNIPPET:henk-snippet-hero */

/* START_SNIPPET:henk-snippet-splitscreen (INDEX:67) */
.henk-split-screen {
    background-color: var(--color-background-base, #fff);
    padding-block: var(--space-13, 96px);
  }

  .henk-split-screen__inner {
    width: min(var(--size-width-content), 100% - 3rem);
    margin-inline: auto;
  }

  .henk-split-screen__grid {
    display: flex;
    align-items: stretch;
    max-width: none;
    flex-wrap: wrap;
    gap: var(--space-2, 24px);
  }

  .henk-split-screen__grid-item {
    flex: 1 1 clamp(270px, 49%, 560px);
  }

  .henk-split-screen__video {
    max-width: 100%;
    border-radius: var(--radius-2, 8px);
  }

  .henk-split-screen__picture {
    display: block;
  }

  .henk-split-screen__img {
    height: auto;
    aspect-ratio: 2/3;
    border-radius: var(--radius-0, 8px);
    margin-block: 0;
    object-fit: cover;
  }

  svg.henk-split-screen__img {
    width: 1152px;
    height: 1728px;
  }

  .henk-split-screen__content {
    text-wrap: auto;
    display: grid;
    justify-content: start;
    place-items: start start;
  }

  .henk-split-screen__content > * {
    margin-block: 0;
  }

  .henk-split-screen__caption {
    font-weight: normal;
    margin-block: 0;
  }

  .henk-split-screen__title {
    word-break: break-word; /* fallback */
    overflow-wrap: anywhere; /* preferred modern */
    hyphens: auto;
  }

  .henk-split-screen__title + .henk-button {
    margin-top: var(--space-4, 24px);
  }

  @media screen and (min-width: 620px) {
    .henk-split-screen__inner[data-order='reverse'] .henk-split-screen__grid {
      flex-direction: row-reverse;
    }

    .henk-split-screen__grid-item {
      display: flex;
      align-items: center;
    }

    .henk-split-screen__grid-item:last-child {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .henk-split-screen__inner[data-order='reverse'] .henk-split-screen__grid-item:last-child {
      justify-content: flex-start;
    }

    .henk-split-screen__content {
      width: min(80%, 100%);
    }
  }
/* END_SNIPPET:henk-snippet-splitscreen */

/* START_SNIPPET:henk-snippet-swiper (INDEX:68) */
swiper-container:not(:defined) {
    visibility: hidden;
  }
  swiper-slide {
    min-height: 200px;
    padding: 1px 0;
  }

  swiper-container::part(button-next),
  swiper-container::part(button-prev) {
    color: var(--color-text-base-invert, #fff);
  }

  swiper-container:has(.swiper-slide-active .henk-image-rendered)::part(button-next),
  swiper-container:has(.swiper-slide-active .henk-image-rendered)::part(button-prev) {
    color: black;
  }

  .henk-snippet-swiper {
    padding-bottom: 1.5rem;

    .henk-section__inner {
      width: min(var(--size-width-content), 100%);
      margin-inline: auto;
    }
  }
/* END_SNIPPET:henk-snippet-swiper */

/* START_SNIPPET:henk-tag (INDEX:70) */
.henk-tag,
  .henk-tag--default {
    --tag-background: var(--color-background-primary);

    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.30769231em 1.2em;
    font-size: min(13px, 3.4cqw);
    line-height: 1.84615385em;
    background-color: var(--tag-background, pink);
    color: var(--color-text-static, #000);
    border: 1px solid var(--color-ui-border-transparent);
    border-radius: var(--radius-0);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .henk-tag--outlined {
    color: var(--color-text-base);
    border: 1px solid var(--color-border-base);
    padding-block: 0.23076923em;
  }

  /* link */
  a.henk-tag {
    text-decoration: none;
    cursor: pointer;
  }

  a.henk-tag:focus-visible,
  a.henk-tag:hover {
    background-color: var(--color-background-primary-light);
  }

  .henk-tag--dark {
    background-color: var(--color-background-neutral-darkest);
    color: var(--color-text-neutral-lightest);
    border: 1px solid var(--color-border-neutral-darkest);
    border-radius: var(--radius-0);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .henk-tag--light {
    background-color: var(--color-background-neutral-lightest);
    color: var(--color-text-neutral-darkest);
    border: 1px solid var(--color-border-neutral-darkest);
    border-radius: var(--radius-0);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-block: 0.23076923em;
  }

  .henk-tag--dark a,
  .henk-tag--light a {
    text-decoration: none;
    cursor: pointer;
  }

  .henk-tag--dark a:hover,
  .henk-tag--light a:hover {
    opacity: 0.85; /* subtle hover effect */
  }
/* END_SNIPPET:henk-tag */

/* START_SNIPPET:henk-video (INDEX:71) */
video {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .henk-video-container {
    position: relative;

    .henk-video-sound-toggle {
      position: absolute;
      bottom: 8px;
      left: 8px;
      z-index: 9;
    }

    &.henk-video-container--cover {
      background-color: #fff;
      width: 100%;
      height: 100%;

      &.henk-video-container--square .henk-video {
        aspect-ratio: 1/1;
      }
    }

    &.henk-video-container--cover .henk-video {
      width: 100%;
      height: 100%;
      /*height: calc(100svh - 72px);*/
      object-fit: cover;
      object-position: center;
      aspect-ratio: 2/3;
      max-height: calc(100svh - 72px);
    }

    &.henk-video-container--rounded {
      border-radius: var(--radius-2, 8px);
      overflow: hidden;
    }
  }

  .henk-video-sound-toggle svg {
    display: none;
  }
/* END_SNIPPET:henk-video */

/* START_SNIPPET:image (INDEX:72) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:z_henk-snippet-section-header (INDEX:76) */
.henk-section-header {
    display: flex;
    flex-direction: column;
    place-items: center;
    /*background-color: var(--color-background-base);*/
    color: var(--color-text-base);
  }

  .henk-section-header .henk-section-header__inner {
    width: min(var(--size-width-content, 1140px), 100% - 3rem);
    margin-inline: auto;
  }

  .henk-section-header__content {
    display: flex;
    flex-direction: column;
    place-items: center;
    text-align: center;
    text-wrap: balance;
    width: min(540px, 100%);
    margin-inline: auto;
  }

  .henk-section-header__content > * {
    margin-block: 0;
  }

  .henk-section-header__caption {
    margin: 0;
    font-weight: 500;
  }

  .henk-section-header__title {
    text-align: center;
    text-wrap: balance;
    margin-block-start: 0;
    word-break: break-word; /* fallback */
    overflow-wrap: anywhere; /* preferred modern */
    hyphens: auto;
    text-box: trim-end ex alphabetic;
    padding-top: 9px;
  }

  .henk-section-header--align-left {
    place-items: flex-start;
  }

  .henk-section-header--align-left .henk-section-header__content {
    align-items: flex-start;
    text-align: left;
    margin-inline: unset;
  }

  .henk-section-header--align-left .henk-section-header__title {
    text-align: left;
  }

  .henk-section-header__text {
    :last-child {
      margin-block-end: 0;
    }
  }

  .henk-section-header__button {
    margin-block-start: 24px;
  }
/* END_SNIPPET:z_henk-snippet-section-header */