/** Shopify CDN: Minification failed

Line 302:19 Expected identifier but found whitespace
Line 302:21 Unexpected "{"
Line 302:30 Expected ":"
Line 303:9 Expected identifier but found whitespace
Line 303:11 Unexpected "{"
Line 303:20 Expected ":"
Line 303:49 Expected ":"
Line 315:12 Expected identifier but found whitespace
Line 315:29 Unexpected "{"
Line 315:38 Expected ":"
... and 12 more hidden warnings

**/


/* CSS from section stylesheet tags */
@font-face {
  font-family: 'Spot Light';
  src: url('{{ "Spotlight.woff2" | asset_url }}') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.infinite-hero-carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  overflow: hidden;
  margin: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.infinite-hero-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0.2,0.2,1);
  will-change: transform;
  user-select: none;
  cursor: grab;
  height: 100vh;
  min-height: 400px;
  padding: 0;
}
.infinite-hero-slide {
  min-width: 100vw;
  max-width: 100vw;
  margin: 0;
  background: none;
  border-radius: 24px;
  box-shadow: none;
  position: relative;
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  transition: none;
  opacity: 1;
  z-index: 2;
  overflow: hidden;
}
.infinite-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-bg, none) center/cover no-repeat;
  transition: transform 0.8s cubic-bezier(0.4,0.2,0.2,1);
  will-change: transform;
  transform: scale(1);
}
.infinite-hero-slide.center::before {
  animation: hero-bg-zoom 1.2s cubic-bezier(0.4,0.2,0.2,1);
  transform: scale(1.06);
}
@keyframes hero-bg-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
.infinite-hero-slide-content {
  width: 100%;
  padding: 0 2vw 2vw 2vw;
  background: linear-gradient(0deg, rgba(0,0,0,0.45) 60%, transparent 100%);
  border-radius: 0 0 0 0;
  position: relative;
  z-index: 2;
}
.infinite-hero-slide-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.infinite-hero-slide-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  max-width: 60%;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(40px);
  /* No transition here */
  font-family: 'Spot Light', Arial, sans-serif !important;
}

@media (min-width: 900px) {
  .infinite-hero-slide-heading {
    font-size: 68px;
  }
}

.infinite-hero-slide.center .infinite-hero-slide-heading {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

.infinite-hero-slide.center .infinite-hero-slide-heading.animate-pop {
  opacity: 1;
  transform: translateY(0);
  animation: hero-heading-pop 0.6s cubic-bezier(0.4,0.2,0.2,1) 0s both;
}
@keyframes hero-heading-pop {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.infinite-hero-divider {
  width: 100vw;
  max-width: 100vw;
  height: 2px;
  background: #e5e5e5;
  margin: 2vw 0 0 0;
  border-radius: 1px;
}
.infinite-hero-slide-inner-divider {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 1vw 0 1vw 0;
  border-radius: 2px;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.12);
  opacity: 0.95;
  border: none;
}
.infinite-hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  margin: 1.5vw 0 0 0;
}
.infinite-hero-arrow {
  background: none;
  border: none;
  border-radius: 0;
  width: 64px;
  height: 64px;
  font-size: 2.5rem;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
  color: #fff;
}

.infinite-hero-arrow:hover {
  background: none;
  color: #fff;
}
.infinite-hero-pagination {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.infinite-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e5e5;
  transition: background 0.2s;
  display: inline-block;
}
.infinite-hero-dot.active {
  background: #222;
}
.infinite-hero-dot.dot-black {
  background: #000 !important;
}
.infinite-hero-slide-content {
  position: relative;
  z-index: 2;
}
.infinite-hero-controls.inside-slide {
  position: static;
  margin-top: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}
.infinite-hero-controls.inside-slide > * {
  pointer-events: auto;
}
.infinite-hero-pagination {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}
.infinite-hero-arrow {
  flex: 0 0 auto;
}

/* Responsive styles */
@media (min-width: 900px) {
  .infinite-hero-track {
    padding: 0 10vw;
  }
  .infinite-hero-slide {
    min-width: 80vw;
    max-width: 80vw;
    margin: 0 20px;
    height: 100vh;
  }
}
@media (max-width: 899px) {
  .infinite-hero-carousel {
    height: 60vh;
    min-height: unset;
    max-height: 60vh;
  }
  .infinite-hero-track {
    padding: 0;
    height: 100%;
  }
  .infinite-hero-slide {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    height: 100%;
    min-height: unset;
    margin-left: 20px;
    margin-right: 20px;
  }
  .infinite-hero-slide-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .infinite-hero-slide-inner-divider {
    display: none;
  }
  .infinite-hero-pagination {
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 0;
  }
  .infinite-hero-arrow {
    display: none !important;
  }
  .infinite-hero-slide-heading {
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-bottom: 0;
    font-weight: 300;
  }
  .infinite-hero-slide-content {
    padding: 16px 12px 24px 12px;
  }
  .infinite-hero-controls.inside-slide {
    margin-left: 10px;
  }
  .infinite-hero-dot {
    width: 8px;
    height: 8px;
  }
}
.parallax-horizontal-section {
  overflow: hidden;
  background-color: {{ section.settings.background_color }};
  height: {{ section.settings.section_height }}px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 0;
  width: 100%;
}

.parallax-horizontal-track {
  display: flex;
  align-items: center;
  will-change: transform;
  animation: marquee-scroll {{ section.settings.animation_speed }}s linear infinite;
  transform: translateX(0);
  --animation-speed: {{ section.settings.animation_speed }}s;
  --mobile-animation-speed: {{ section.settings.mobile_animation_speed }}s;
}

.parallax-horizontal-span {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 3rem;
  font-size: 80px !important;
  font-weight: bold;
  flex-shrink: 0;
  color: {{ section.settings.text_color }};
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Override for this section: use full opacity for foreground color if using CSS variable */
.parallax-horizontal-section .parallax-horizontal-span {
  color: rgba(var(--color-foreground), 1) !important;
}

.parallax-horizontal-span .text {
  position: relative;
  z-index: 2;
}

.wiggle-svg {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 25%;
  margin-bottom: 0.3em;
  z-index: 1;
  pointer-events: none;
}

.oval-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.wiggle-svg path, .oval-svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 1.2s forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile optimizations */
@media screen and (max-width: 749px) {
  .parallax-horizontal-span {
    font-size: 48px !important;
    margin: 0 2rem;
  }
  
  .parallax-horizontal-track {
    animation-duration: var(--mobile-animation-speed);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .parallax-horizontal-track {
    animation: none;
  }
  
  .wiggle-svg path, .oval-svg path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .parallax-horizontal-track {
    animation-duration: var(--mobile-animation-speed);
  }
}

/* Separator SVG styling */
.separator-svg {
  display: inline-flex;
  align-items: center;
  margin: 0 0.75rem;
  flex-shrink: 0;
}

.separator-svg svg {
  width: 24px;
  height: 24px;
}

.separator-svg .a {
  stroke: currentColor;
  fill: none;
}