/** Shopify CDN: Minification failed

Line 1426:0 Unexpected "{"
Line 1426:1 Expected identifier but found "#"

**/


/* CSS from snippet stylesheet tags */
.media {
    --size-2: 0.5rem; /* 8px */
    --size-3-5: 0.875rem; /* 14px */
    --text-size-sm: var(--size-3-5); /* 14px */

    position: relative;
    aspect-ratio: var(--aspect-ratio);

    &:has(.media__image) {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .drift-zoom-pane img {
      width: calc(var(--zoom-width) * 3px) !important;
      height: calc(var(--zoom-height) * 3px) !important;
    }
  }

  .media__image {
    max-width: var(--image-max-width);
    max-height: var(--image-max-height);
  }

  .media__image,
  .media__video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: scale-down;

    .media--image-crop & {
      object-fit: cover;
    }

    .media:not(.media--image-crop) & {
      object-position: initial !important;
    }
  }

  .media__model {
    width: 100%;
    min-height: 33vh;

    .media--aspect-ratio-set & {
      height: 100%;
    }
  }

  .media__lightbox-button {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 501;
    padding: 6px 10px 6px 9px;
    margin: 0 var(--size-3) var(--size-3) 0;
    font-size: var(--text-size-sm);
    font-weight: normal;
    color: var(--color-text);
    cursor: pointer;
    background: var(--color-background-alpha-90);
    border: 0;
    border-radius: 3px;
    box-shadow: 0 0 0 1px var(--color-border-soft);

    @media (width >= 720px) {
      &.media__lightbox-button--mobile {
        display: none;
      }
    }

    @media (width < 720px) {
      &.media__lightbox-button--desktop {
        display: none;
      }
    }
  }

  .media__lightbox-button-text {
    display: flex;
    gap: 5px;
    align-items: center;
    outline: none;
  }

  .media__lightbox-button-text--click {
    display: none;

    @media (width >= 720px) {
      display: flex;
    }
  }

  .media__lightbox-button-text--tap {
    display: flex;

    @media (width >= 720px) {
      display: none;
    }
  }

  @media (pointer: coarse) {
    .media__lightbox-button:not(.media__lightbox-button--desktop) {
      .media__lightbox-button-text--click {
        display: none;
      }

      .media__lightbox-button-text--tap {
        display: flex;
      }
    }
  }

  .drift-zoom-pane {
    &.drift-open,
    &.drift-closing {
      img {
        height: auto !important;
      }
    }
  }
.thumbnail {
    position: relative;
    display: inline-block;
    height: 64px;
    aspect-ratio: var(--aspect-ratio, initial);
    padding: 2px;
    margin: 3px;
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 0 2px transparent;

    &:focus {
      outline: none;
      box-shadow: 0 0 0 1.5px var(--color-border-soft);
    }

    &[role='button'] {
      cursor: pointer;
    }

    @media (width >= 720px) {
      .product-gallery--left & {
        height: auto;
      }
    }
  }

  .thumbnail--active,
  .swiper-slide-thumb-active .thumbnail {
    box-shadow: 0 0 0 1.5px var(--color-input-border-morph-12);

    &:focus {
      box-shadow:
        0 0 0 1.5px var(--color-input-border-morph-12),
        0 0 0 5px var(--color-border-softer, rgb(0 0 0 / 10%));
    }
  }

  .thumbnail__icon {
    position: absolute;
    top: var(--size-1-5);
    right: var(--size-1-5);
    z-index: 1;
    width: var(--size-5);
    height: var(--size-5);
    color: var(--color-headings);
    pointer-events: none;
    background: var(--color-background);
    box-shadow: 0 0 0 1px var(--color-box-shadow-shadow-headings);
  }

  .thumbnail__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    .thumbnail:not(.thumbnail--aspect-ratio-set) & {
      object-fit: contain;
      object-position: center !important;
    }
  }
/* stylelint-disable custom-property-pattern */
  product-gallery {
    --left-aligned-thumbnail-width: 64px;
    --thumbnails-height: 550px;

    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: var(--size-2);

    @media (width >= 720px) {
      gap: var(--size-4);
    }

    > * {
      box-sizing: border-box;
    }
  }

  .swiper-slide__inner--cursor-pointer--always {
    cursor: pointer;
  }

  @media (width <= 720px) {
    .swiper-slide__inner--cursor-pointer--mobile {
      cursor: pointer;
    }
  }

  @media (width > 720px) {
    .swiper-slide__inner--cursor-pointer--desktop {
      cursor: pointer;
    }
  }

  .swiper-slide__inner--cursor-crosshair {
    cursor: crosshair;
  }

  .product-gallery__navigation .swiper-slide {
    width: auto;
  }

  .product-gallery__viewer:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    height: 0;
  }

  .product-gallery__scroll-button {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 32px;
    height: 100%;
    cursor: pointer;
    outline: none;
    background: var(--color-background);
    border-top: none;
    border-bottom: none;

    &:disabled {
      display: none;
    }

    svg {
      color: var(--color-text, inherit);
    }

    &.product-gallery__scroll-button--prev {
      left: 0;
      padding: 0;
      border-right: 1px solid var(--color-border-modify);
      border-left: none;

      svg {
        transform: rotate(90deg);
      }
    }

    &.product-gallery__scroll-button--next {
      right: 0;
      padding: 0;
      border-right: none;
      border-left: 1px solid var(--color-border-modify);

      svg {
        transform: rotate(270deg);
      }
    }
  }

  .product-gallery__placeholder {
    width: 100%;
  }

  .product-gallery__placeholder-image {
    display: block;
    width: 100%;
    background-color: var(--color-placeholder-background);
    fill: var(--color-placeholder-fill);
  }

  .product-gallery__zoom-container {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
  }

  /* vertical */

  @media (width >= 720px) {
    .product-gallery--left .product-gallery__scroll-button {
      width: 100%;
      height: 32px;

      &.product-gallery__scroll-button--prev {
        border-right: none;
        border-bottom: 1px solid var(--color-border-modify);

        svg {
          transform: rotate(180deg);
        }
      }

      &.product-gallery__scroll-button--next {
        top: auto;
        bottom: 0;
        border-top: 1px solid var(--color-border-modify);
        border-left: none;

        svg {
          transform: none;
        }
      }
    }

    .product-gallery--left {
      flex-flow: row-reverse;
      flex-wrap: nowrap;

      .product-gallery__viewer {
        flex: 1;
      }

      .product-gallery__navigation {
        flex: 1 0 auto;
        align-self: flex-start;
        max-width: calc(var(--left-aligned-thumbnail-width) + var(--size-2));
        max-height: var(--thumbnails-height);

        .swiper-slide {
          height: auto;
        }

        .thumbnail {
          width: var(--left-aligned-thumbnail-width);
        }
      }
    }
  }

  @media (width >= 720px) {
    .product-gallery--grid:not(.product-gallery--left) {
      .product-gallery__scroll-button {
        display: none;
      }

      .product-gallery__navigation {
        .swiper-wrapper {
          flex-wrap: wrap;
        }

        .swiper-slide {
          height: auto;
        }
      }
    }
  }

  /* Photoswipe overrides */

  @keyframes shimmer-background {
    from {
      background-color: var(--color-background-8);
    }

    to {
      background-color: var(--color-background-4);
    }
  }

  .pswp {
    --duration--small-600: 200ms;
    --duration--small-400: 150ms;
    --duration--large-400: 1050ms;
    --ease-in-out--normal: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in-out--strong: cubic-bezier(0.6, 0.05, 0.01, 0.99);

    span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      outline: none;
      opacity: 0.6;
    }

    .pswp__bg {
      background: var(--color-background);
      transition: opacity var(--duration--small-600) var(--ease-in-out--strong);
    }

    .pswp__img--placeholder {
      background-color: unset;
      animation: shimmer-background var(--duration--large-400) var(--ease-in-out--strong) infinite;
      animation-fill-mode: forwards;
      animation-direction: alternate;
    }

    .pswp__top-bar {
      background: transparent;
      opacity: 1;
    }

    .pswp__button--close {
      width: 48px;
      height: 48px;
      margin: calc(var(--size-6-5) + 2px);
      color: var(--color-black);
      background: var(--color-white);
      border-radius: 100%;
      box-shadow:
        0 0 0 1px rgb(127 127 127 / 3%),
        0 2px 5px rgb(127 127 127 / 30%);
      opacity: 0;
      transition:
        transform var(--duration--small-400) var(--ease-in-out--normal),
        opacity var(--duration--small-400) var(--ease-in-out--normal),
        box-shadow var(--duration--small-400) var(--ease-in-out--normal);

      &:hover {
        box-shadow:
          0 0 0 1px rgb(127 127 127 / 4%),
          0 3px 10px rgb(127 127 127 / 40%);
        transform: scale(1.125);

        span {
          opacity: 0.8;
          transition: opacity var(--duration--small-400) var(--ease-in-out--normal);
        }
      }
    }

    .product-zoom--thumbnails {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: var(--size-1) var(--size-2);
      margin: var(--size-2) 0;
      background: var(--color-background);
      opacity: 0;
      transition: opacity var(--duration--small-600) var(--ease-in-out--normal);
    }

    .product-gallery__scroll-button {
      top: 0;
      padding: 0 var(--size-2);
    }

    .product-zoom--thumb-scroller {
      padding-top: 2px;
      padding-bottom: 2px;
      overflow: auto;
      white-space: nowrap;
      scroll-behavior: smooth;
    }

    &.pswp--animated-in {
      .product-zoom--thumbnails,
      .pswp__button--close {
        opacity: 1;
      }
    }

    .product-gallery--media-thumbnail {
      display: inline-block;
    }
  }

  .product-gallery--left {
    margin-top: -5px;

    .product-gallery__viewer {
      margin-top: 5px;
    }
  }

  .product-gallery:not(.product-gallery--left) {
    width: calc(100% + 10px);
    margin-right: -5px;
    margin-left: -5px;

    .product-gallery__viewer {
      width: calc(100% - 10px) !important;
    }
  }

  @keyframes drift-fade-zoom-in {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes drift-fade-zoom-out {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  @keyframes drift-fade-in {
    0% {
      opacity: 0;
      transform: scale(1);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes drift-fade-out {
    0% {
      opacity: 1;
      transform: scale(1);
    }

    100% {
      opacity: 0;
      transform: scale(1);
    }
  }

  @keyframes drift-loader-rotate {
    0% {
      transform: translate(-50%, -50%) rotate(0);
    }

    50% {
      transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  .drift-zoom-pane {
    z-index: 3;
    background: var(--color-white);
    box-shadow:
      0 1px 5px rgb(127 127 127 / 2%),
      0 5px 18px rgb(127 127 127 / 20%);
    transform: translate3d(0, 0, 0);
  }

  .product-gallery__zoom-container .drift-zoom-pane {
    left: var(--size-6-5);
    width: 550px;
    height: 550px;
  }

  @media (width <= 1200px) {
    .product-gallery__zoom-container .layout--two-col .drift-zoom-pane {
      width: 450px;
      height: 450px;
    }
  }

  .drift-zoom-pane img {
    top: 0;
    left: 0;
  }

  .drift-zoom-pane.drift-opening {
    animation: drift-fade-zoom-in 200ms cubic-bezier(0.6, 0.05, 0.01, 0.99);
  }

  .product-gallery--image .drift-zoom-pane.drift-opening {
    animation: drift-fade-in 200ms cubic-bezier(0.6, 0.05, 0.01, 0.99);
  }

  .drift-zoom-pane.drift-closing {
    animation: drift-fade-zoom-out 100ms cubic-bezier(0.4, 0, 1, 1);
  }

  .product-gallery--image .drift-zoom-pane.drift-closing {
    animation: drift-fade-out 100ms cubic-bezier(0.4, 0, 1, 1);
  }

  .drift-zoom-pane.drift-inline {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 75px;
    box-shadow: 0 6px 18px rgb(0 0 0 / 30%);
  }

  .drift-zoom-pane-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    animation: drift-loader-rotate 0.6s infinite linear;
  }

  .drift-loading .drift-zoom-pane-loader {
    display: block;
  }

  .drift-zoom-pane-loader::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    font-size: 0;
    content: url('data:image/svg+xml;utf8, <svg width="50" height="50" viewBox="0 0 77 77" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M38.5 76.5C17.513 76.5 0.5 59.487 0.5 38.5C0.5 17.513 17.513 0.5 38.5 0.5C59.487 0.5 76.5 17.513 76.5 38.5C76.5 59.487 59.487 76.5 38.5 76.5ZM38.5 73.5C57.83 73.5 73.5 57.83 73.5 38.5C73.5 19.17 57.83 3.5 38.5 3.5C19.17 3.5 3.5 19.17 3.5 38.5C3.5 57.83 19.17 73.5 38.5 73.5Z" fill="%23liquid-object("color_text_encoded")" fill-opacity="0.16"/><path opacity="0.9" d="M38.5 75C58.658 75 75 58.658 75 38.5" stroke="%23liquid-object("color_text_encoded")" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: translate(-50%, -50%);
  }

  .drift-bounding-box {
    z-index: 1;
    background: rgb(255 255 255 / 25%);
    box-shadow: 0 0 0 1px rgb(0 0 0 / 40%) inset;
  }
/*! Flickity v2.2.0
  https://flickity.metafizzy.co
  ---------------------------------------------- */
  .flickity-enabled {
    position: relative;
  }
  .flickity-enabled:focus {
    outline: 0;
  }
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, 0.75);
    border: none;
    color: #333;
  }
  .flickity-button:hover {
    background: #fff;
    cursor: pointer;
  }
  .flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f;
  }
  .flickity-button:active {
    opacity: 0.6;
  }
  .flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    pointer-events: none;
  }
  .flickity-button-icon {
    fill: currentColor;
  }
  .flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .flickity-prev-next-button.previous {
    left: 10px;
  }
  .flickity-prev-next-button.next {
    right: 10px;
  }
  .flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
  }
  .flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
  }
  .flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
  }
  .flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
  }
  .flickity-rtl .flickity-page-dots {
    direction: rtl;
  }
  .flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
  }
  .flickity-page-dots .dot.is-selected {
    opacity: 1;
  }
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

  @font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal;
  }
  :root {
    --swiper-theme-color: #007aff;
  }
  :host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
  }
  .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
  }
  .swiper-vertical > .swiper-wrapper {
    flex-direction: column;
  }
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
  }
  .swiper-android .swiper-slide,
  .swiper-ios .swiper-slide,
  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
  }
  .swiper-horizontal {
    touch-action: pan-y;
  }
  .swiper-vertical {
    touch-action: pan-x;
  }
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
  }
  .swiper-slide-invisible-blank {
    visibility: hidden;
  }
  .swiper-autoheight,
  .swiper-autoheight .swiper-slide {
    height: auto;
  }
  .swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
  }
  .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
  }
  .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
  }
  .swiper-3d {
    perspective: 1200px;
  }
  .swiper-3d .swiper-cube-shadow,
  .swiper-3d .swiper-slide {
    transform-style: preserve-3d;
  }
  .swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
  .swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  .swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory;
  }
  .swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory;
  }
  .swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none;
  }
  .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
  }
  .swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999;
  }
  .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
  }
  .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
  }
  .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
  }
  .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
  }
  .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
  }
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
  }
  .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
  .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
  .swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
  }
  .swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
  }
  @keyframes swiper-preloader-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }
  .swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
  .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
  .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
  :root {
    --swiper-navigation-size: 44px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
  }
  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-button-next.swiper-button-hidden,
  .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled .swiper-button-next,
  .swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
  }
  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
  }
  .swiper-rtl .swiper-button-next svg,
  .swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg);
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }
  .swiper-button-lock {
    display: none;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }
  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {
    content: 'prev';
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    content: 'next';
  }
  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > .swiper-pagination,
  .swiper-pagination.swiper-pagination-disabled {
    display: none !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
  }
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  .swiper-pagination-bullet:only-child {
    display: none !important;
  }
  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }
  .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
  }
  .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition:
      0.2s transform,
      0.2s top;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition:
      0.2s transform,
      0.2s left;
  }
  .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition:
      0.2s transform,
      0.2s right;
  }
  .swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
  }
  .swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > .swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-vertical,
  .swiper-vertical > .swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-lock {
    display: none;
  }
  .swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  }
  .swiper-scrollbar-disabled > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-scrollbar.swiper-scrollbar-vertical,
  .swiper-vertical > .swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
  .swiper-scrollbar-lock {
    display: none;
  }
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > canvas,
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
  }
  .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  .swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
  }
  .swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
  }
  .swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
  }
  .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
  .swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper.swiper-cube {
    overflow: visible;
  }
  .swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
  .swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-next,
  .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
  }
  .swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
  }
  .swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper.swiper-flip {
    overflow: visible;
  }
  .swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }
  .swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-flip .swiper-slide-active,
  .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
  .swiper.swiper-cards {
    overflow: visible;
  }
  .swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
  }
{# IDENTISCH zum Original – unverändert kopiert #}
  /* --- ganzer @keyframes/@media/CSS Block aus deinem Original hier steht unverändert --- */
  @keyframes slide-fade-y {
    0% { opacity: 0; transform: translateY(var(--slide-fade-translate-y, 30px)); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes countdown { from { stroke-dashoffset: 22px; } to { stroke-dashoffset: 0; } }
  .slideshow { --autoplay-interval: 8s; --slide-text-color:#fff; --slide-fade-translate-y:30px; position:relative; box-sizing:border-box; display:flex; justify-content:center; width:100%; margin-top: var(--size-16); }
  .slideshow--flex-spacing.slideshow { margin-top:0; }
  .slideshow-slide__content-desktop a, .slideshow-slide__content-mobile a { color: var(--color-links); text-decoration:none; position:relative; cursor:pointer; transition: color .1s linear; }
  .slideshow-slide__content-desktop a:hover, .slideshow-slide__content-mobile a:hover, .slideshow-slide__content-desktop a:focus, .slideshow-slide__content-mobile a:focus { color: var(--color-link-hover); }
  [data-scroll-class]{opacity:0; animation-delay:.2s;}
  .slideshow__wrapper{display:flex;overflow:hidden;}
  .slideshow--single-slide .slideshow__wrapper{width:100%;overflow:hidden;position:relative;}
  .slideshow-slide{position:relative;flex-shrink:0;width:100%;}
  .swiper-wrapper{transition-timing-function:cubic-bezier(.25,.46,.45,.94)!important;will-change:transform;}
  .slide-element{opacity:0;}
  .slide--active .slide-element{--slide-fade-translate-y:30px;opacity:1;animation:slide-fade-y .75s cubic-bezier(.4,0,.2,1) both paused;animation-delay:calc(100ms * var(--slide-element-index, 0));}
  .slideshow--text-animation-none .slide-element{opacity:1!important;animation:none!important;}
  .slideshow--text-animation-fadeIn .slide-element{--slide-fade-translate-y:0px;}
  .slideshow--text-animation-fadeInUp .slide-element{--slide-fade-translate-y:30px;}
  .slideshow--text-animation-fadeInDown .slide-element{--slide-fade-translate-y:-30px;}
  .slide{opacity:1;}
  .slideshow--animate .slide-element, .slide--active .slide-element{animation-play-state:running;}
  .shopify-section:first-child .slideshow{margin-top:0;}
  .slideshow--width-content{max-width:1400px;padding-right:var(--size-1-5);padding-left:var(--size-1-5);margin-right:auto;margin-left:auto;}
  .slideshow--width-standard{width:95%;max-width:1200px;margin-right:auto;margin-left:auto;}
  .slideshow-slide__image-wrapper{position:relative;width:100%;overflow:hidden;}
  .slideshow-slide__content-background-link{color:var(--slide-text-color);text-decoration:none;}
  .slideshow-slide__background-link:focus::before{position:absolute;inset:0;z-index:10;pointer-events:none;content:'';border:2px solid var(--slide-text-color,#fff);}
  .slideshow-slide__content{position:absolute;top:50%;left:50%;z-index:2;width:80%;padding:var(--size-4);color:var(--slide-text-color);text-align:center;transform:translate(-50%,-50%);transition:none!important;}
  .slideshow-slide__content--mobile-left{text-align:left;}
  .slideshow-slide__content--mobile-center{text-align:center;}
  .slideshow-slide__content--mobile-right{text-align:right;}
  .slideshow-slide__image{display:block;width:100%;height:100%;object-fit:cover;}
  .slideshow-slide__overlay{position:absolute;inset:0;}
  .slideshow--content-hidden .slideshow-slide__content{display:none!important;visibility:hidden!important;opacity:0!important;}
  .slideshow-slide__content-desktop{display:none;}
  .slideshow-slide__content-mobile{display:block;}
  .slideshow-slide__heading{margin:0;font-family:var(--heading-font-family);font-size:calc(var(--heading-font-scale,1)*var(--text-size-6-5));font-style:var(--heading-font-style);font-weight:var(--heading-font-weight);line-height:var(--line-height-md);text-transform:var(--heading-font-capitalization,initial);letter-spacing:var(--heading-letter-spacing,initial);word-wrap:break-word;}
  .slideshow-slide__subheading{margin-top:var(--size-3);margin-bottom:0;font-family:var(--subheading-font-family);font-size:var(--text-size-4);line-height:var(--line-height-lg);word-wrap:break-word;}
  .slideshow-slide__preheading{margin:0 0 var(--size-2-5);font-family:var(--subheading-font-family);font-size:var(--text-size-4);line-height:var(--line-height-lg);word-wrap:break-word;}
  .slideshow-slide__button{display:inline-block;margin-top:var(--size-5);margin-bottom:0;padding:var(--size-2-5) var(--size-4);font-family:var(--button-font-family);font-size:var(--body-md-font-size);font-weight:var(--font-weight-700);text-align:center;text-decoration:none;text-transform:var(--button-font-capitalization,initial);letter-spacing:var(--button-letter-spacing,initial);cursor:pointer;border-radius:var(--radius-xs);transition:all .2s ease;}
  .slideshow-slide__button + .slideshow-slide__button{margin-left:var(--size-1-5);}
  .slideshow-slide__button:hover,.slideshow-slide__button:focus{outline:none;}
  .slideshow-slide__button:focus,.slideshow-slide__button:focus:hover{box-shadow:0 0 0 2px var(--color-secondary),0 0 0 5px rgb(17 153 255 / 40%),0 3px 8px var(--color-border-softer);}
  .slideshow-slide__button:not(.disabled):hover{box-shadow:0 3px 8px var(--color-border-softer);}
  .slideshow-slide__button--primary{color:var(--color-button-text);background-color:var(--color-button-background);border:1px solid var(--color-button-background);}
  .slideshow-slide__button--primary:active{background:var(--color-button-background-focus);border:1px solid var(--color-button-background-focus);}
  .slideshow-slide__button--primary.disabled,.slideshow-slide__button--primary:disabled{color:var(--color-button-text);cursor:default;background-color:var(--color-button-disable);border:1px solid var(--color-button-disable);}
  .slideshow-slide__button--primary:not(.disabled):hover{background:var(--color-button-background-hover);border:1px solid var(--color-button-background-hover);}
  .slideshow-slide__button--secondary{color:var(--color-button-secondary-text);background-color:var(--color-button-secondary-background);border:1px solid var(--color-button-secondary-border);}
  .slideshow-slide__button--secondary:active{background-color:var(--color-button-secondary-background-focus);border-color:var(--color-button-secondary-border);}
  .slideshow-slide__button--secondary.disabled,.slideshow-slide__button--secondary:disabled{color:rgb(255 255 255 / 50%);cursor:default;background-color:transparent;border:1px solid rgb(255 255 255 / 30%);}
  .slideshow-slide__button--secondary:not(.disabled):hover{background:var(--color-button-secondary-background-hover);border:1px solid var(--color-button-secondary-border-hover);}
  .slideshow-slide__button-wrapper{display:flex;flex-direction:row;flex-wrap:wrap;gap:12px;align-items:center;width:100%;}
  .slideshow-slide__button-wrapper .slideshow-slide__button{flex:1 1 0;}
  .slideshow-slide__button--button--primary,.slideshow-slide__button--button--secondary,.slideshow-slide__button--button--link-style{display:inline-flex;align-items:center;justify-content:center;font-weight:var(--button-font-weight);letter-spacing:var(--button-letter-spacing);text-transform:var(--button-font-capitalization);font-style:var(--button-font-style);box-sizing:border-box;margin:var(--size-2) 0 0 0 !important;}
  .slideshow-slide__button--button--primary{font-size:var(--button-primary-font-size)!important;line-height:var(--button-primary-line-height);border-radius:var(--button-primary-border-radius);height:auto;max-width:100%;white-space:normal;overflow-wrap:normal;transition:all var(--button-transition-speed) ease-in-out;padding:calc(.375em - 1px) 1em!important;color:var(--button-primary-text-color);background-color:var(--button-primary-bg-color);border:1px solid var(--button-primary-border-color);}
  .slideshow-slide__button--button--primary:hover,.slideshow-slide__button--button--primary:focus{color:var(--button-primary-text-color-highlight);background-color:var(--button-primary-bg-color-highlight);border:1px solid var(--button-primary-border-color-highlight);}
  .slideshow-slide__button--button--secondary{font-size:var(--button-secondary-font-size)!important;line-height:var(--button-secondary-line-height);border-radius:var(--button-secondary-border-radius);height:auto;max-width:100%;white-space:normal;transition:all var(--button-transition-speed) ease-in-out;padding:calc(.375em - 1px) 1em!important;color:var(--button-secondary-text-color);background-color:var(--button-secondary-bg-color);border:1px solid var(--button-secondary-border-color);}
  .slideshow-slide__button--button--secondary:hover,.slideshow-slide__button--button--secondary:focus{color:var(--button-secondary-text-color-highlight);background-color:var(--button-secondary-bg-color-highlight);border:1px solid var(--button-secondary-border-color-highlight);}
  .slideshow-slide__button--button--link-style{border:none;border-bottom:var(--button-link-underline-thickness) var(--button-link-underline-style);border-radius:0;font-size:var(--button-link-style-font-size)!important;line-height:var(--button-link-style-line-height);padding:0!important;height:auto;max-width:100%;white-space:normal;background:transparent;transition:all var(--button-transition-speed) linear;text-align:center;color:var(--button-link-text-color);border-bottom-color:var(--button-link-text-color);}
  .slideshow-slide__button--button--link-style:hover,.slideshow-slide__button--button--link-style:focus{color:var(--button-link-text-color-highlight);border-bottom-color:var(--button-link-text-color-highlight)!important;background:transparent;box-shadow:none!important;}
  @media screen and (max-width: 480px){.slideshow-slide__button-wrapper{flex-direction:column;width:100%;gap:10px}.slideshow-slide__button-wrapper .slideshow-slide__button{width:100%}}
  .slideshow--grab-cursor .slideshow-slide{cursor:grab}
  .slideshow--grab-cursor .slideshow-slide:active{cursor:grabbing}
  .slideshow--grab-cursor .slideshow-slide__content-background-link{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;text-decoration:none;display:block}
  .slideshow--grab-cursor .slideshow-slide__button,.slideshow--grab-cursor .slideshow-slide__content a:not(.slideshow-slide__content-background-link),.slideshow--grab-cursor .slideshow-slide__content button{position:relative;z-index:10;pointer-events:auto}
  .slideshow--grab-cursor .slideshow-slide__preheading a,.slideshow--grab-cursor .slideshow-slide__heading a,.slideshow--grab-cursor .slideshow-slide__subheading a{position:relative;z-index:10;pointer-events:auto}
  .slideshow-pagination{position:absolute;display:flex;justify-content:center;padding:0!important;list-style:none;opacity:0}
  .slideshow--pagination-color .slideshow-pagination__button{background-color:var(--pagination-color)!important}
  .slideshow-pagination__dot{margin:0}
  .slideshow-pagination__button{display:inline-block;width:7px;height:7px;padding:0;margin:0 7.5px;cursor:pointer;outline:none;background-color:var(--slide-text-color,#fff)!important;border:none;border-radius:50%;opacity:.25;transition:transform 300ms cubic-bezier(.4,0,.2,1),opacity 300ms cubic-bezier(.4,0,.2,1)}
  .slideshow-pagination__button:focus-visible{outline:2px solid var(--slide-text-color,#fff);outline-offset:2px}
  .slideshow-pagination__button[data-selected='true'],.swiper-pagination-bullet-active{opacity:1;transform:scale(1.25)}
  .slideshow .swiper-button-prev,.slideshow .swiper-button-next{position:absolute;top:50%;width:40px;height:40px;padding:5px;margin-top:0;color:var(--slide-text-color);cursor:pointer;background-color:transparent}
  .slideshow .swiper-button-prev{left:35px}
  .slideshow .swiper-button-next{right:35px}
  .slideshow .swiper-button-prev:disabled,.slideshow .swiper-button-next:disabled{cursor:default;opacity:.25}
  .slideshow .swiper-button-prev::after,.slideshow .swiper-button-next::after{content:''}
  .slideshow--arrow-style-normal .swiper-button-prev{opacity:0;transform:translate(-10px,-50%)}
  .slideshow--arrow-style-normal .swiper-button-next{opacity:0;transform:translate(10px,-50%)}
  .slideshow--arrow-style-normal .swiper-button-prev::before,.slideshow--arrow-style-normal .swiper-button-next::before{position:absolute;top:50%;left:50%;display:inline-block;width:22px;height:22px;content:'';border-color:var(--slide-text-color);border-style:solid;border-width:2px 2px 0 0;transition:transform .2s ease}
  .slideshow--arrow-style-normal .swiper-button-prev::before{transform:translate(-30%,-50%) rotate(-135deg)}
  .slideshow--arrow-style-normal .swiper-button-next::before{transform:translate(-70%,-50%) rotate(45deg)}
  .slideshow--arrow-style-normal .swiper-button-prev:hover::before{transform:translate(-30%,-50%) rotate(-135deg) scale(1.2)}
  .slideshow--arrow-style-normal .swiper-button-next:hover::before{transform:translate(-70%,-50%) rotate(45deg) scale(1.2)}
  .slideshow--arrow-style-circle .swiper-button-prev,.slideshow--arrow-style-circle .swiper-button-next{top:auto;bottom:25px;z-index:100;width:44px;height:44px;pointer-events:auto;background:hsla(0,0%,100%,.75);border-radius:50%;opacity:1;transition:background-color .3s ease-in-out}
  .slideshow--arrow-style-circle .swiper-button-prev{left:35px;transform:translateY(0)}
  .slideshow--arrow-style-circle .swiper-button-next{right:35px;transform:translateY(0)}
  .slideshow--arrow-style-circle .swiper-button-prev svg,.slideshow--arrow-style-circle .swiper-button-next svg{position:absolute;top:50%;left:50%;width:24px;height:24px;transform:translate(-50%,-50%)}
  .slideshow--arrow-style-circle .swiper-button-prev svg .arrow,.slideshow--arrow-style-circle .swiper-button-next svg .arrow{fill:#333}
  .slideshow--arrow-style-circle .swiper-button-prev:hover,.slideshow--arrow-style-circle .swiper-button-next:hover{background-color:#fff}
  .slideshow--arrow-style-circle .slideshow-pagination{pointer-events:none}
  .slideshow--arrow-style-circle .slideshow-pagination__button{pointer-events:auto}
  .slideshow--animate.slideshow--arrow-style-normal .swiper-button-prev,.slideshow--animate.slideshow--arrow-style-normal .swiper-button-next,.slideshow--animate .slideshow-pagination{opacity:1;transform:translate(0,-50%);transition:opacity .6s cubic-bezier(.4,0,.2,1),transform .6s cubic-bezier(.4,0,.2,1);transition-delay:.4s}
  .slideshow .visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;border:0;clip:rect(1px,1px,1px,1px)}
  .circle-timer{position:absolute;top:50%;left:50%;width:14px;height:14px;transform:translate(-50%,-50%)}
  .circle-timer__svg{display:block;width:14px;height:14px;transform:rotateZ(270deg)}
  .circle-timer__background{opacity:.4;fill:none;stroke:var(--slide-text-color);stroke-width:2px;stroke-linecap:round;stroke-dasharray:22px}
  .circle-timer__countdown{fill:none;stroke:var(--slide-text-color);stroke-width:2px;stroke-linecap:round;stroke-dasharray:22px;animation:countdown var(--autoplay-interval) linear infinite}
  [data-autoplay='true'] .slideshow-pagination__button{background-color:var(--slide-text-color,#fff);opacity:.25}
  [data-autoplay='false'] .circle-timer{display:none!important}
  [data-autoplay-active='false'] .circle-timer,[data-autoplay-active='false'] .circle-timer__svg,[data-autoplay-active='false'] .circle-timer__background,[data-autoplay-active='false'] .circle-timer__countdown{display:none!important}
  .slideshow--timer-disabled .circle-timer{display:none!important}
  .slideshow-pagination__button:not([data-selected='true']) .circle-timer,.slideshow-pagination__button:not(.swiper-pagination-bullet-active) .circle-timer{display:none!important}
  [data-autoplay='true'][data-autoplay-active='true'] .slideshow-pagination__button[data-selected='true'],[data-autoplay='true'][data-autoplay-active='true'] .swiper-pagination-bullet-active{background-color:transparent!important;opacity:1}
  [data-autoplay='true'][data-autoplay-active='false'] .slideshow-pagination__button[data-selected='true'],[data-autoplay='true'][data-autoplay-active='false'] .swiper-pagination-bullet-active{background-color:var(--slide-text-color,#fff);opacity:1}
  .slideshow--timer-disabled[data-autoplay='true'][data-autoplay-active='true'] .slideshow-pagination__button[data-selected='true'],.slideshow--timer-disabled[data-autoplay='true'][data-autoplay-active='true'] .swiper-pagination-bullet-active{background-color:var(--pagination-color,#fff)!important;opacity:1}
  [data-autoplay='true'][data-hover='true'] .circle-timer__countdown{animation-play-state:paused!important}
  .slideshow--height-fit-screen.slideshow--section:first-child .slideshow-slide__image-wrapper{height:calc(100vh - var(--header-height,0px))}
video-media {
    --default-aspect-ratio: 16 / 9;

    display: block;
    position: relative;
    height: 100%;
    aspect-ratio: var(--aspect-ratio, var(--default-aspect-ratio));
  }

  video-media > :is(video, iframe, img, svg) {
    border: 0;
    width: 100%;
    height: 100%;
    transition:
      opacity 0.2s ease-in-out,
      visibility 0.2s ease-in-out;
  }

  video-media > img,
  video-media > svg,
  video-media > video:not(:fullscreen) {
    object-fit: cover;
    object-position: center;
  }

  .element-video[data-background='true'] > video-media,
  .element-video[data-background='true'] > .element-placeholder {
    position: absolute;
    height: 100%;
    width: 100%;
  }

  video-media:not([loaded]) > :is(video, iframe),
  video-media[loaded] > img,
  video-media[loaded] > svg {
    visibility: hidden;
    opacity: 0;
  }
@keyframes slide-fade-y {
    0% {
      opacity: 0;
      transform: translateY(var(--slide-fade-translate-y, 30px));
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes countdown {
    from {
      stroke-dashoffset: 22px;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  .slideshow {
    --autoplay-interval: 8s;
    --slide-text-color: #fff;
    --slide-fade-translate-y: 30px;

    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--size-16);
  }

  .slideshow--flex-spacing.slideshow {
    margin-top: 0;
  }

  .slideshow-slide__content-desktop a,
  .slideshow-slide__content-mobile a {
    color: var(--color-links);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: color 0.1s linear;
  }

  .slideshow-slide__content-desktop a:hover,
  .slideshow-slide__content-mobile a:hover,
  .slideshow-slide__content-desktop a:focus,
  .slideshow-slide__content-mobile a:focus {
    color: var(--color-link-hover);
  }

  [data-scroll-class] {
    opacity: 0;
    animation-delay: 0.2s;
  }

  .slideshow__wrapper {
    display: flex;
    overflow: hidden;
  }

  .slideshow--single-slide .slideshow__wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slideshow-slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
  }

  .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    will-change: transform;
  }

  .slide-element {
    opacity: 0;
  }

  /* Slide element animation */
  .slide--active .slide-element {
    --slide-fade-translate-y: 30px;

    opacity: 1;
    animation: slide-fade-y 0.75s cubic-bezier(0.4, 0, 0.2, 1) both paused;
    animation-delay: calc(100ms * var(--slide-element-index, 0));
  }

  .slideshow--text-animation-none .slide-element {
    opacity: 1 !important;
    animation: none !important;
  }

  /* stylelint-disable selector-class-pattern */
  .slideshow--text-animation-fadeIn .slide-element {
    --slide-fade-translate-y: 0px;
  }

  .slideshow--text-animation-fadeInUp .slide-element {
    --slide-fade-translate-y: 30px;
  }

  .slideshow--text-animation-fadeInDown .slide-element {
    --slide-fade-translate-y: -30px;
  }
  /* stylelint-enable selector-class-pattern */

  .slide {
    opacity: 1;
  }

  /* Slide animation playback control */
  .slideshow--animate .slide-element {
    animation-play-state: running;
  }

  .slide--active .slide-element {
    animation-play-state: running;
  }

  .shopify-section:first-child .slideshow {
    margin-top: 0;
  }

  .slideshow--width-content {
    max-width: 1400px;
    padding-right: var(--size-1-5);
    padding-left: var(--size-1-5);
    margin-right: auto;
    margin-left: auto;
  }

  .slideshow--width-standard {
    width: 95%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }

  .slideshow-slide__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .slideshow-slide__content-background-link {
    color: var(--slide-text-color);
    text-decoration: none;
  }

  .slideshow-slide__background-link:focus::before {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    content: '';
    border: 2px solid var(--slide-text-color, #fff);
  }

  .slideshow-slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 80%;
    padding: var(--size-4);
    color: var(--slide-text-color);
    text-align: center;
    transform: translate(-50%, -50%);
    transition: none !important;
  }

  .slideshow-slide__content--mobile-left {
    text-align: left;
  }

  .slideshow-slide__content--mobile-center {
    text-align: center;
  }

  .slideshow-slide__content--mobile-right {
    text-align: right;
  }

  .slideshow-slide__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slideshow-slide__overlay {
    position: absolute;
    inset: 0;
  }

  .slideshow--content-hidden .slideshow-slide__content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .slideshow-slide__content-desktop {
    display: none;
  }

  .slideshow-slide__content-mobile {
    display: block;
  }

  .slideshow-slide__heading {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--heading-font-family);
    font-size: calc(var(--heading-font-scale, 1) * var(--text-size-6-5));
    font-style: var(--heading-font-style);
    font-weight: var(--heading-font-weight);
    line-height: var(--line-height-md);
    text-transform: var(--heading-font-capitalization, initial);
    letter-spacing: var(--heading-letter-spacing, initial);
    word-wrap: break-word;
  }

  .slideshow-slide__subheading {
    margin-top: var(--size-3);
    margin-bottom: 0;
    font-family: var(--subheading-font-family);
    font-size: var(--text-size-4);
    line-height: var(--line-height-lg);
    word-wrap: break-word;
  }

  .slideshow-slide__preheading {
    margin-top: 0;
    margin-bottom: var(--size-2-5);
    font-family: var(--subheading-font-family);
    font-size: var(--text-size-4);
    line-height: var(--line-height-lg);
    word-wrap: break-word;
  }

  /* Base button styles */
  .slideshow-slide__button {
    display: inline-block;
    margin-top: var(--size-5);
    margin-bottom: 0;
    padding: var(--size-2-5) var(--size-4);
    font-family: var(--button-font-family);
    font-size: var(--body-md-font-size); /* 720px - 1024px */
    font-weight: var(--font-weight-700);
    text-align: center;
    text-decoration: none;
    text-transform: var(--button-font-capitalization, initial);
    letter-spacing: var(--button-letter-spacing, initial);
    cursor: pointer;
    border-radius: var(--radius-xs);
    transition: all 0.2s ease;
  }

  .slideshow-slide__button + .slideshow-slide__button {
    margin-left: var(--size-1-5);
  }

  .slideshow-slide__button:hover,
  .slideshow-slide__button:focus {
    outline: none;
  }

  .slideshow-slide__button:focus,
  .slideshow-slide__button:focus:hover {
    box-shadow:
      0 0 0 2px var(--color-secondary),
      0 0 0 5px rgb(17 153 255 / 40%),
      0 3px 8px var(--color-border-softer);
  }

  .slideshow-slide__button:not(.disabled):hover {
    box-shadow: 0 3px 8px var(--color-border-softer);
  }

  .slideshow-slide__button--primary {
    color: var(--color-button-text);
    background-color: var(--color-button-background);
    border: 1px solid var(--color-button-background);
  }

  .slideshow-slide__button--primary:active {
    background: var(--color-button-background-focus);
    border: 1px solid var(--color-button-background-focus);
  }

  .slideshow-slide__button--primary.disabled,
  .slideshow-slide__button--primary:disabled {
    color: var(--color-button-text);
    cursor: default;
    background-color: var(--color-button-disable);
    border: 1px solid var(--color-button-disable);
  }

  .slideshow-slide__button--primary:not(.disabled):hover {
    background: var(--color-button-background-hover);
    border: 1px solid var(--color-button-background-hover);
  }

  .slideshow-slide__button--secondary {
    color: var(--color-button-secondary-text);
    background-color: var(--color-button-secondary-background);
    border: 1px solid var(--color-button-secondary-border);
  }

  .slideshow-slide__button--secondary:active {
    background-color: var(--color-button-secondary-background-focus);
    border-color: var(--color-button-secondary-border);
  }

  .slideshow-slide__button--secondary.disabled,
  .slideshow-slide__button--secondary:disabled {
    color: rgb(255 255 255 / 50%);
    cursor: default;
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 30%);
  }

  .slideshow-slide__button--secondary:not(.disabled):hover {
    background: var(--color-button-secondary-background-hover);
    border: 1px solid var(--color-button-secondary-border-hover);
  }

  /* stylelint-disable */
  .slideshow-slide__button-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    width: 100%;
  }

  .slideshow-slide__button-wrapper .slideshow-slide__button {
    flex: 1 1 0;
  }

  .slideshow-slide__button--button--primary,
  .slideshow-slide__button--button--secondary,
  .slideshow-slide__button--button--link-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--button-font-weight);
    letter-spacing: var(--button-letter-spacing);
    text-transform: var(--button-font-capitalization);
    font-style: var(--button-font-style);
    box-sizing: border-box;
    margin: var(--size-2) 0 0 0 !important;
  }

  .slideshow-slide__button--button--primary {
    font-size: var(--button-primary-font-size) !important;
    line-height: var(--button-primary-line-height);
    border-radius: var(--button-primary-border-radius);
    height: auto;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    transition: all var(--button-transition-speed) ease-in-out;
    padding: calc(0.375em - 1px) 1em !important;
    color: var(--button-primary-text-color);
    background-color: var(--button-primary-bg-color);
    border: 1px solid var(--button-primary-border-color);
  }

  .slideshow-slide__button--button--primary:hover,
  .slideshow-slide__button--button--primary:focus {
    color: var(--button-primary-text-color-highlight);
    background-color: var(--button-primary-bg-color-highlight);
    border: 1px solid var(--button-primary-border-color-highlight);
  }

  .slideshow-slide__button--button--secondary {
    font-size: var(--button-secondary-font-size) !important;
    line-height: var(--button-secondary-line-height);
    border-radius: var(--button-secondary-border-radius);
    height: auto;
    max-width: 100%;
    white-space: normal;
    transition: all var(--button-transition-speed) ease-in-out;
    padding: calc(0.375em - 1px) 1em !important;
    color: var(--button-secondary-text-color);
    background-color: var(--button-secondary-bg-color);
    border: 1px solid var(--button-secondary-border-color);
  }

  .slideshow-slide__button--button--secondary:hover,
  .slideshow-slide__button--button--secondary:focus {
    color: var(--button-secondary-text-color-highlight);
    background-color: var(--button-secondary-bg-color-highlight);
    border: 1px solid var(--button-secondary-border-color-highlight);
  }

  .slideshow-slide__button--button--link-style {
    border: none;
    border-bottom: var(--button-link-underline-thickness) var(--button-link-underline-style);
    border-radius: 0;
    font-size: var(--button-link-style-font-size) !important;
    line-height: var(--button-link-style-line-height);
    padding: 0 !important;
    height: auto;
    max-width: 100%;
    white-space: normal;
    background: transparent;
    transition: all var(--button-transition-speed) linear;
    text-align: center;
    color: var(--button-link-text-color);
    border-bottom-color: var(--button-link-text-color);
  }

  .slideshow-slide__button--button--link-style:hover,
  .slideshow-slide__button--button--link-style:focus {
    color: var(--button-link-text-color-highlight);
    border-bottom-color: var(--button-link-text-color-highlight) !important;
    background: transparent;
    box-shadow: none !important;
  }

  @media screen and (max-width: 480px) {
    .slideshow-slide__button-wrapper {
      flex-direction: column;
      width: 100%;
      gap: 10px;
    }

    .slideshow-slide__button-wrapper .slideshow-slide__button {
      width: 100%;
    }
  }
  /* stylelint-enable selector-class-pattern */

  /* Styling for when the grab cursor is enabled */
  .slideshow--grab-cursor .slideshow-slide {
    cursor: grab;
  }

  .slideshow--grab-cursor .slideshow-slide:active {
    cursor: grabbing;
  }

  .slideshow--grab-cursor .slideshow-slide__content-background-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
    display: block;
  }

  .slideshow--grab-cursor .slideshow-slide__button,
  .slideshow--grab-cursor .slideshow-slide__content a:not(.slideshow-slide__content-background-link),
  .slideshow--grab-cursor .slideshow-slide__content button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }

  .slideshow--grab-cursor .slideshow-slide__preheading a,
  .slideshow--grab-cursor .slideshow-slide__heading a,
  .slideshow--grab-cursor .slideshow-slide__subheading a {
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }

  /* Pagination styles */
  .slideshow-pagination {
    position: absolute;
    display: flex;
    justify-content: center;
    padding: 0 !important;
    list-style: none;
    opacity: 0;
  }

  .slideshow--pagination-color .slideshow-pagination__button {
    background-color: var(--pagination-color) !important;
  }

  .slideshow-pagination__dot {
    margin: 0;
  }

  .slideshow-pagination__button {
    display: inline-block;
    width: 7px;
    height: 7px;
    padding: 0;
    margin: 0 7.5px;
    cursor: pointer;
    outline: none;
    background-color: var(--slide-text-color, #fff) !important;
    border: none;
    border-radius: 50%;
    opacity: 0.25;
    transition:
      transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
      opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slideshow-pagination__button:focus-visible {
    outline: 2px solid var(--slide-text-color, #fff);
    outline-offset: 2px;
  }

  .slideshow-pagination__button[data-selected='true'],
  .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.25);
  }

  /* Base navigation arrow styles for all types */
  .slideshow .swiper-button-prev,
  .slideshow .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 5px;
    margin-top: 0;
    color: var(--slide-text-color);
    cursor: pointer;
    background-color: transparent;
  }

  .slideshow .swiper-button-prev {
    right: auto;
    left: 35px;
  }

  .slideshow .swiper-button-next {
    right: 35px;
    left: auto;
  }

  .slideshow .swiper-button-prev:disabled,
  .slideshow .swiper-button-next:disabled {
    cursor: default;
    opacity: 0.25;
  }

  .slideshow .swiper-button-prev::after,
  .slideshow .swiper-button-next::after {
    content: '';
  }

  /* Normal arrow style */
  .slideshow--arrow-style-normal .swiper-button-prev {
    opacity: 0;
    transform: translate(-10px, -50%);
  }

  .slideshow--arrow-style-normal .swiper-button-next {
    opacity: 0;
    transform: translate(10px, -50%);
  }

  .slideshow--arrow-style-normal .swiper-button-prev::before,
  .slideshow--arrow-style-normal .swiper-button-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 22px;
    height: 22px;
    content: '';
    border-color: var(--slide-text-color);
    border-style: solid;
    border-width: 2px 2px 0 0;
    transition: transform 0.2s ease;
  }

  .slideshow--arrow-style-normal .swiper-button-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
  }

  .slideshow--arrow-style-normal .swiper-button-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
  }

  .slideshow--arrow-style-normal .swiper-button-prev:hover::before {
    transform: translate(-30%, -50%) rotate(-135deg) scale(1.2);
  }

  .slideshow--arrow-style-normal .swiper-button-next:hover::before {
    transform: translate(-70%, -50%) rotate(45deg) scale(1.2);
  }

  /* Circle arrow style */
  .slideshow--arrow-style-circle .swiper-button-prev,
  .slideshow--arrow-style-circle .swiper-button-next {
    top: auto;
    bottom: 25px;
    z-index: 100;
    width: 44px;
    height: 44px;
    pointer-events: auto;
    background: hsla(0, 0%, 100%, 0.75);
    border-radius: 50%;
    opacity: 1;
    transition: background-color 0.3s ease-in-out;
  }

  .slideshow--arrow-style-circle .swiper-button-prev {
    left: 35px;
    transform: translateY(0);
  }

  .slideshow--arrow-style-circle .swiper-button-next {
    right: 35px;
    transform: translateY(0);
  }

  .slideshow--arrow-style-circle .swiper-button-prev svg,
  .slideshow--arrow-style-circle .swiper-button-next svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
  }

  .slideshow--arrow-style-circle .swiper-button-prev svg .arrow,
  .slideshow--arrow-style-circle .swiper-button-next svg .arrow {
    fill: #333;
  }

  .slideshow--arrow-style-circle .swiper-button-prev:hover,
  .slideshow--arrow-style-circle .swiper-button-next:hover {
    background-color: #fff;
  }

  .slideshow--arrow-style-circle .slideshow-pagination {
    pointer-events: none;
  }

  .slideshow--arrow-style-circle .slideshow-pagination__button {
    pointer-events: auto;
  }

  /* Animation only for normal style */
  .slideshow--animate.slideshow--arrow-style-normal .swiper-button-prev,
  .slideshow--animate.slideshow--arrow-style-normal .swiper-button-next,
  .slideshow--animate .slideshow-pagination {
    opacity: 1;
    transform: translate(0, -50%);
    transition:
      opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
  }

  .slideshow .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
  }

  .circle-timer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
  }

  .circle-timer__svg {
    display: block;
    width: 14px;
    height: 14px;
    transform: rotateZ(270deg);
  }

  .circle-timer__background {
    opacity: 0.4;
    fill: none;
    stroke: var(--slide-text-color);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-dasharray: 22px; /* Circumference of the circle */
  }

  .circle-timer__countdown {
    fill: none;
    stroke: var(--slide-text-color);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-dasharray: 22px; /* Circumference of the circle */
    animation: countdown var(--autoplay-interval) linear infinite;
  }

  /* Styles related to autoplay. */
  [data-autoplay='true'] .slideshow-pagination__button {
    background-color: var(--slide-text-color, #fff);
    opacity: 0.25;
  }

  /* Hide the timer when autoplay is disabled. */
  [data-autoplay='false'] .circle-timer {
    display: none !important;
  }

  /* When autoplay is paused. */
  [data-autoplay-active='false'] .circle-timer,
  [data-autoplay-active='false'] .circle-timer__svg,
  [data-autoplay-active='false'] .circle-timer__background,
  [data-autoplay-active='false'] .circle-timer__countdown {
    display: none !important;
  }

  /* Support for themes that don't have the timer animation. */
  .slideshow--timer-disabled .circle-timer {
    display: none !important;
  }

  /* Hide the timer for inactive dots. */
  .slideshow-pagination__button:not([data-selected='true']) .circle-timer,
  .slideshow-pagination__button:not(.swiper-pagination-bullet-active) .circle-timer {
    display: none !important;
  }

  /* Dot style when autoplay is active. */
  [data-autoplay='true'][data-autoplay-active='true'] .slideshow-pagination__button[data-selected='true'],
  [data-autoplay='true'][data-autoplay-active='true'] .swiper-pagination-bullet-active {
    background-color: transparent !important;
    opacity: 1;
  }

  /* Dot style when autoplay is paused */
  [data-autoplay='true'][data-autoplay-active='false'] .slideshow-pagination__button[data-selected='true'],
  [data-autoplay='true'][data-autoplay-active='false'] .swiper-pagination-bullet-active {
    background-color: var(--slide-text-color, #fff);
    opacity: 1;
  }

  /* Support for themes that don't have the timer animation. */
  .slideshow--timer-disabled[data-autoplay='true'][data-autoplay-active='true']
    .slideshow-pagination__button[data-selected='true'],
  .slideshow--timer-disabled[data-autoplay='true'][data-autoplay-active='true'] .swiper-pagination-bullet-active {
    background-color: var(--pagination-color, #fff) !important;
    opacity: 1;
  }

  /* Pause animation on hover */
  [data-autoplay='true'][data-hover='true'] .circle-timer__countdown {
    animation-play-state: paused !important;
  }

  /* Fit screen height */

  /* Desktop with first-child */
  .slideshow--height-fit-screen.slideshow--section:first-child .slideshow-slide__image-wrapper {
    height: calc(100vh - var(--header-height, 0px));
  }
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

  /*
  Document
  ========
  */

  /**
  Use a better box model (opinionated).
  */

  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }

  /**
  1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
  2. Correct the line height in all browsers.
  3. Prevent adjustments of font size after orientation changes in iOS.
  4. Use a more readable tab size (opinionated).
  */

  html {
    font-family:
      system-ui,
      'Segoe UI',
      Roboto,
      Helvetica,
      Arial,
      sans-serif,
      'Apple Color Emoji',
      'Segoe UI Emoji'; /* 1 */
    line-height: 1.15; /* 2 */
    -webkit-text-size-adjust: 100%; /* 3 */
    tab-size: 4; /* 4 */
  }

  /*
  Sections
  ========
  */

  /**
  Remove the margin in all browsers.
  */

  body {
    margin: 0;
  }

  /*
  Text-level semantics
  ====================
  */

  /**
  Add the correct font weight in Chrome and Safari.
  */

  b,
  strong {
    font-weight: bolder;
  }

  /**
  1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
  2. Correct the odd 'em' font sizing in all browsers.
  */

  code,
  kbd,
  samp,
  pre {
    font-family:
      ui-monospace,
      SFMono-Regular,
      Consolas,
      'Liberation Mono',
      Menlo,
      monospace; /* 1 */
    font-size: 1em; /* 2 */
  }

  /**
  Add the correct font size in all browsers.
  */

  small {
    font-size: 80%;
  }

  /**
  Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
  */

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sub {
    bottom: -0.25em;
  }

  sup {
    top: -0.5em;
  }

  /*
  Tabular data
  ============
  */

  /**
  Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
  */

  table {
    border-color: currentcolor;
  }

  /*
  Forms
  =====
  */

  /**
  1. Change the font styles in all browsers.
  2. Remove the margin in Firefox and Safari.
  */

  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }

  /**
  Correct the inability to style clickable types in iOS and Safari.
  */

  button,
  [type='button'],
  [type='reset'],
  [type='submit'] {
    -webkit-appearance: button;
  }

  /**
  Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
  */

  legend {
    padding: 0;
  }

  /**
  Add the correct vertical alignment in Chrome and Firefox.
  */

  progress {
    vertical-align: baseline;
  }

  /**
  Correct the cursor style of increment and decrement buttons in Safari.
  */

  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }

  /**
  1. Correct the odd appearance in Chrome and Safari.
  2. Correct the outline style in Safari.
  */

  [type='search'] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }

  /**
  Remove the inner padding in Chrome and Safari on macOS.
  */

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  /**
  1. Correct the inability to style clickable types in iOS and Safari.
  2. Change font properties to 'inherit' in Safari.
  */

  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }

  /*
  Interactive
  ===========
  */

  /*
  Add the correct display in Chrome and Safari.
  */

  summary {
    display: list-item;
  }