/** Shopify CDN: Minification failed

Line 57:10 Unexpected "{"
Line 57:19 Expected ":"
Line 125:12 Unexpected "{"
Line 125:21 Expected ":"
Line 130:20 Unexpected "{"
Line 130:29 Expected ":"
Line 131:20 Unexpected "{"
Line 131:29 Expected ":"

**/


/* CSS from section stylesheet tags */
.featured-products {
  padding: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

@media screen and (max-width: 749px) {
  .section-title {
    margin-bottom: 2rem;
  }
}

.slider {
  position: relative;
  flex-wrap: inherit;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0 -1.5rem;
}

.slider--mobile {
  margin: 0 -1rem;
}

.slider__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  padding: 0 1.5rem;
}

@media screen and (max-width: 749px) {
  .slider__slide {
    padding: 0 1rem;
  }
}
.section-{{ section.id }}-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__media {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero__content {
  color: rgb(var(--color-foreground));
}

.hero__heading {
  margin: 0 0 1.5rem;
  font-size: calc(var(--font-heading-scale) * 3.2rem);
}

.hero__text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 749px) {
  .hero__media {
    height: 400px;
  }
  
  .hero__heading {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
  
  .hero__text {
    font-size: 1.4rem;
  }
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .section-{{ section.id }}-padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  #shopify-section-{{ section.id }} + .section,
  #shopify-section-{{ section.id }} + .shopify-section {
    margin-top: 0;
  }

  .section-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .custom-video-section-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow-x: hidden;
  }

  .custom-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    z-index: 1;
  }

  .custom-video {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    z-index: 1;
  }

  .custom-video__container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    z-index: 1;
  }

  .custom-video__background {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .custom-video__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .custom-hero__buttons-container {
    --parent-button-color: var(--color-button);
    --parent-button-text-color: var(--color-button-text);
    --parent-foreground-color: var(--color-foreground);
    width: 100%;
    max-width: var(--cta-width);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .custom-hero__buttons-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-color);
    opacity: var(--bg-opacity);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
  }

  .custom-hero__buttons-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .custom-hero__cta-text {
    color: rgb(var(--parent-foreground-color));
    text-shadow: none;
    width: 100%;
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .custom-hero__cta-text.text-sm {
    font-size: 1.4rem;
  }

  .custom-hero__cta-text.text-md {
    font-size: 1.75rem;
  }

  .custom-hero__cta-text.text-lg {
    font-size: 2rem;
  }

  .custom-hero__cta-text.text-xl {
    font-size: 2.5rem;
  }

  .custom-hero__cta-text.text-custom {
    font-size: var(--cta-text-size);
  }

  .custom-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    word-break: break-word;
  }

  .custom-hero__buttons.buttons-left {
    justify-content: flex-start;
  }

  .custom-hero__buttons.buttons-center {
    justify-content: center;
  }

  .custom-hero__buttons.buttons-right {
    justify-content: flex-end;
  }

  .custom-hero__buttons--multiple {
    width: 100%;
  }

  .button {
    width: auto;
    min-width: 0;
    text-align: center;
    white-space: normal;
    height: auto;
    min-height: 3rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    border-radius: var(--buttons-radius);
    transition: all 0.3s ease;
  }

  .button--primary {
    background-color: rgb(var(--parent-button-color));
    color: rgb(var(--parent-button-text-color));
    border: none;
  }

  .button--primary:hover {
    background-color: rgba(var(--parent-button-color), 0.8);
    color: rgb(var(--parent-button-text-color));
  }

  .button--secondary {
    background-color: transparent;
    color: rgb(var(--parent-button-color));
    border: 0.2rem solid currentColor;
  }

  .button--secondary:hover {
    background-color: rgb(var(--parent-button-color));
    color: rgb(var(--parent-button-text-color));
    border-color: rgb(var(--parent-button-color));
  }

  .text-left .custom-hero__cta-text,
  .text-left .custom-hero__buttons {
    text-align: left;
  }

  .text-center .custom-hero__cta-text,
  .text-center .custom-hero__buttons {
    text-align: center;
  }

  .text-right .custom-hero__cta-text,
  .text-right .custom-hero__buttons {
    text-align: right;
  }

  .text-left .custom-hero__buttons-wrapper {
    align-items: flex-start;
  }

  .text-center .custom-hero__buttons-wrapper {
    align-items: center;
  }

  .text-right .custom-hero__buttons-wrapper {
    align-items: flex-end;
  }

  @media screen and (max-width: 749px) {
    .section-wrapper,
    .custom-video-section-wrapper,
    .custom-video-wrapper,
    .custom-video,
    .custom-video__container {
      overflow: hidden !important;
      max-width: 100% !important;
      width: 100% !important;
    }
    .custom-hero__buttons-container {
      position: absolute !important;
      left: 0 !important;
      right: 0 !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      margin: 0 auto !important;
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box;
      overflow: hidden !important;
      padding: 0 1.5rem;
      z-index: 3 !important;
    }
    .custom-video__container {
      position: relative !important;
      width: 100% !important;
      height: 100% !important;
      z-index: 1 !important;
    }
    .custom-video__background {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      z-index: 1 !important;
    }
    .custom-video__overlay {
      z-index: 2 !important;
    }
    .custom-hero__cta-text.text-sm {
      font-size: 1.25rem;
    }
    .custom-hero__cta-text.text-md {
      font-size: 1.5rem;
    }
    .custom-hero__cta-text.text-lg {
      font-size: 1.75rem;
    }
    .custom-hero__cta-text.text-xl {
      font-size: 2rem;
    }
    .custom-hero__cta-text.text-custom {
      font-size: calc(var(--cta-text-size) * 0.8);
    }
    .custom-hero__buttons-wrapper {
      gap: 1.25rem;
    }
    .button {
      padding: 0.75rem 1.25rem;
      font-size: 0.95rem;
      min-height: 2.75rem;
    }
  }

  @media screen and (max-width: 480px) {
    .custom-hero__buttons-container {
      max-width: 100vw !important;
      width: 100vw !important;
      padding: 0 1rem;
      margin: 0 auto !important;
      left: 0 !important;
      right: 0 !important;
      transform: none !important;
      box-sizing: border-box;
      overflow-x: hidden !important;
    }
    .custom-hero__cta-text.text-sm {
      font-size: 1.2rem;
    }
    .custom-hero__cta-text.text-md {
      font-size: 1.35rem;
    }
    .custom-hero__cta-text.text-lg {
      font-size: 1.5rem;
    }
    .custom-hero__cta-text.text-xl {
      font-size: 1.75rem;
    }
    .custom-hero__cta-text.text-custom {
      font-size: calc(var(--cta-text-size) * 0.7);
    }
    .custom-hero__buttons-wrapper {
      gap: 1rem;
    }
    .button {
      padding: 0.625rem 1rem;
      font-size: 0.9rem;
      min-height: 2.5rem;
    }
  }

  main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .video-pause-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    margin: 20px;
  }

  .video-pause-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .video-pause-button svg {
    width: 20px;
    height: 20px;
    color: white;
  }

  .video-pause-button .play-icon {
    display: none;
  }

  .video-pause-button.paused .pause-icon {
    display: none;
  }

  .video-pause-button.paused .play-icon {
    display: block;
  }

  @media screen and (max-width: 749px) {
    .video-pause-button {
      bottom: 30px;
      right: 30px;
      width: 36px;
      height: 36px;
      margin: 15px;
    }
    .video-pause-button svg {
      width: 18px;
      height: 18px;
    }
  }

  .custom-video__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
  }

  .custom-video__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .custom-video__slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .custom-video__slide-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .custom-video__slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 80%;
    padding: 2rem;
  }

  .custom-video__slide-content.top-left {
    top: 5%;
    left: 5%;
    transform: none;
  }
  .custom-video__slide-content.top-center {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
  .custom-video__slide-content.top-right {
    top: 5%;
    right: 5%;
    transform: none;
  }
  .custom-video__slide-content.middle-left {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }
  .custom-video__slide-content.middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-video__slide-content.middle-right {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
  }
  .custom-video__slide-content.bottom-left {
    bottom: 5%;
    left: 5%;
    transform: none;
  }
  .custom-video__slide-content.bottom-center {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
  .custom-video__slide-content.bottom-right {
    bottom: 5%;
    right: 5%;
    transform: none;
  }

  .custom-video__slide-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .custom-video__slide-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .custom-video__slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 100%;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
  }

  .custom-video__slider-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s ease;
  }

  .custom-video__slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .custom-video__slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
  }

  .custom-video__slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .custom-video__slider-dot.active {
    background: #fff;
  }

  @media screen and (max-width: 749px) {
    .custom-video__slide-heading {
      font-size: 2rem;
    }
    .custom-video__slide-text {
      font-size: 1rem;
    }
    .custom-video__slider-button {
      width: 40px;
      height: 40px;
    }
    .custom-video__slider-nav {
      padding: 0 1rem;
    }
  }

  .buttons-left .custom-hero__buttons-wrapper {
    align-items: flex-start;
  }

  .buttons-center .custom-hero__buttons-wrapper {
    align-items: center;
  }

  .buttons-right .custom-hero__buttons-wrapper {
    align-items: flex-end;
  }

  .header-wrapper {
    z-index: 5 !important;
  }

  .custom-hero__buttons-container {
    z-index: 2 !important;
  }

  .custom-video-section-wrapper,
  .custom-video-wrapper,
  .custom-video,
  .custom-video__container,
  .custom-video__slider {
    z-index: 1 !important;
  }

  .header--transparent {
    background: transparent !important;
    box-shadow: none !important;
  }

  .header--transparent .header__inline-menu {
    background: transparent !important;
  }

  .header--transparent .header__search {
    background: transparent !important;
  }

  .header--transparent .header__icons {
    background: transparent !important;
  }