/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 60:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:horizons-threejs (INDEX:27) */
<style>
  html, body {
    overflow-x: hidden;
  }
  .horizons-threejs-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    background: black;
    color: white;
  }

  .horizons-threejs-section canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .horizons-threejs-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .horizons-threejs-overlay h1 {
    font-size: 5rem;
    margin: 0;
    animation: fadeIn 2s ease-out;
  }

  .horizons-threejs-overlay p {
    font-size: 1.5rem;
    animation: fadeIn 3s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
</style>
/* END_SECTION:horizons-threejs */

/* START_SECTION:kisstoy-video-band (INDEX:47) */
.kisstoy-video-band {
    position: relative;
    min-height: var(--kt-video-height-desktop);
    overflow: hidden;
    background: #3f3269;
    color: #ffffff;
    isolation: isolate;
  }

  .kisstoy-video-band__media,
  .kisstoy-video-band__veil {
    position: absolute;
    inset: 0;
  }

  .kisstoy-video-band__media {
    z-index: 0;
    background: #3f3269;
  }

  .kisstoy-video-band__poster,
  .kisstoy-video-band__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .kisstoy-video-band__poster {
    position: absolute;
    inset: 0;
  }

  .kisstoy-video-band__video {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .kisstoy-video-band__veil {
    z-index: 1;
    background:
      linear-gradient(
        90deg,
        rgba(38, 30, 60, 1) 0%,
        rgba(38, 30, 60, .82) 54%,
        rgba(38, 30, 60, .18) 100%
      );
    pointer-events: none;
  }

  .kisstoy-video-band__inner {
    position: relative;
    z-index: 2;
    min-height: var(--kt-video-height-desktop);
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .kisstoy-video-band__content {
    width: min(100%, var(--kt-video-content-width));
  }

  .kisstoy-video-band__content--center {
    margin-inline: auto;
    text-align: center;
  }

  .kisstoy-video-band__content--right {
    margin-left: auto;
    text-align: right;
  }

  .kisstoy-video-band__eyebrow {
    margin: 0 0 1.2rem;
    color: #e9a94d;
    font-family: var(--font-body-family);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .28rem;
    text-transform: uppercase;
  }

  .kisstoy-video-band__heading {
    max-width: 46rem;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading-family);
    font-size: clamp(3.4rem, 4.2vw, 5.6rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.04rem;
  }

  .kisstoy-video-band__content--center .kisstoy-video-band__heading,
  .kisstoy-video-band__content--right .kisstoy-video-band__heading {
    margin-inline: auto;
  }

  .kisstoy-video-band__content--right .kisstoy-video-band__heading {
    margin-right: 0;
  }

  .kisstoy-video-band__text {
    max-width: 42rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, .82);
    font-size: 1.45rem;
    line-height: 1.75;
  }

  .kisstoy-video-band__text p {
    margin: 0;
    color: inherit;
  }

  .kisstoy-video-band__content--center .kisstoy-video-band__text {
    margin-inline: auto;
  }

  .kisstoy-video-band__content--right .kisstoy-video-band__text {
    margin-left: auto;
  }

  @media screen and (max-width: 749px) {
    .kisstoy-video-band,
    .kisstoy-video-band__inner {
      min-height: var(--kt-video-height-mobile);
    }

    .kisstoy-video-band__veil {
      background: linear-gradient(
        90deg,
        rgba(38, 30, 60, .72) 0%,
        rgba(38, 30, 60, .46) 70%,
        rgba(38, 30, 60, .20) 100%
      );
    }

    .kisstoy-video-band__inner {
      align-items: flex-end;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .kisstoy-video-band__content,
    .kisstoy-video-band__content--right,
    .kisstoy-video-band__content--center {
      width: 100%;
      margin: 0;
      text-align: left;
    }

    .kisstoy-video-band__heading,
    .kisstoy-video-band__content--center .kisstoy-video-band__heading,
    .kisstoy-video-band__content--right .kisstoy-video-band__heading {
      max-width: 34rem;
      margin: 0;
      font-size: clamp(3.2rem, 10vw, 4.4rem);
    }

    .kisstoy-video-band__text,
    .kisstoy-video-band__content--center .kisstoy-video-band__text,
    .kisstoy-video-band__content--right .kisstoy-video-band__text {
      max-width: 34rem;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .kisstoy-video-band__video {
      display: none;
    }
  }
/* END_SECTION:kisstoy-video-band */