/** Shopify CDN: Minification failed

Line 227:49 Expected identifier but found whitespace
Line 227:50 Unexpected "0px"

**/
/* START_SECTION:large-video-banner (INDEX:51) */
/* ========================================
   Large Video Banner Section
   ======================================== */

.large-video-banner {
  position: relative;
  overflow: hidden;
}

.large-video-banner__container {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

/* ========================================
   LEFT SIDE: Content (Sticky)
   ======================================== */

.large-video-banner__content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.large-video-banner__content-inner {
  max-width: 100%;
  width: 100%;
  text-align: left;
}

.large-video-banner__heading {
  margin: 0 0 2rem 0;
  line-height: 1.2;
  font-weight: 600;
}

.large-video-banner__description {
  line-height: 1.6;
}

.large-video-banner__description p {
  margin: 0 0 1.6rem 0;
}

.large-video-banner__description p:last-child {
  margin-bottom: 0;
}

/* ========================================
   RIGHT SIDE: Video Wrapper
   ======================================== */

.large-video-banner__media-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.large-video-banner__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.large-video-banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop video visible by default */
.large-video-banner__media--desktop {
  display: block;
  flex: 1;
}

/* Mobile video hidden by default */
.large-video-banner__media--mobile {
  display: none;
}

/* ========================================
   RESPONSIVE: Mobile (below 750px)
   ======================================== */

@media screen and (max-width: 749px) {
  .large-video-banner__container {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .large-video-banner__content {
    width: 100% !important;
    padding: 3rem 2rem;
  }

  .large-video-banner__content-inner {
    position: static;
    transform: none;
  }

  .large-video-banner__media-wrapper {
    flex: 1 1 auto;
  }

  /* Hide desktop video, show mobile */
  .large-video-banner__media--desktop {
    display: none;
  }

  .large-video-banner__media--mobile {
    display: block;
  }
}
/* END_SECTION:large-video-banner */
/* START_SECTION:marquee (INDEX:63) */
/* ============================================
   MARQUEE SECTION - Smooth Infinite Loop
   ============================================ */

.marquee-section {
  background-color: var(--marquee-bg, #F8F9F4);
  overflow: hidden;
  width: 100%;
}

.marquee-section--border-top {
  border-top: 1px solid var(--marquee-border-color, #e5e5e5);
}

.marquee-section--border-bottom {
  border-bottom: 1px solid var(--marquee-border-color, #e5e5e5);
}

.marquee-wrapper {
  padding-top: var(--marquee-padding-top, 16px);
  padding-bottom: var(--marquee-padding-bottom, 16px);
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-speed, 25s) linear infinite;
  animation-direction: var(--marquee-direction, normal);
  will-change: transform;
}

.marquee-track--pause:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--marquee-gap, 56px);
  padding-right: var(--marquee-gap, 56px);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============================================
   ICONS - SVG & IMAGE
   ============================================ */

.marquee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--marquee-icon-width, 24px);
  height: var(--marquee-icon-height, 24px);
  color: var(--marquee-icon-color, #1a1a1a);
}

/* SVG Icons */
.marquee-icon--svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Force SVG to inherit theme color */
.marquee-icon--svg svg [stroke="currentColor"],
.marquee-icon--svg svg [fill="currentColor"],
.marquee-icon--svg svg {
  color: inherit;
}

/* Image Icons */
.marquee-icon--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Auto height when set to 0 */
.marquee-section:has(style:--marquee-icon-height: 0px) .marquee-icon--image img {
  height: auto;
}

/* ============================================
   TEXT
   ============================================ */

.marquee-text {
  font-size: var(--marquee-font-size, 14px);
  font-weight: var(--marquee-font-weight, 400);
  letter-spacing: var(--marquee-letter-spacing, 0.02em);
  color: var(--marquee-text, #1a1a1a);
  white-space: nowrap;
}

/* ============================================
   KEYFRAME ANIMATION
   ============================================ */

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 749px) {
  .marquee-content {
    gap: calc(var(--marquee-gap, 56px) * 0.75);
    padding-right: calc(var(--marquee-gap, 56px) * 0.75);
  }
  
  .marquee-text {
    font-size: calc(var(--marquee-font-size, 14px) * 0.9);
  }
  
  .marquee-icon {
    width: calc(var(--marquee-icon-width, 24px) * 0.85);
    height: calc(var(--marquee-icon-height, 24px) * 0.85);
  }
}

/* ============================================
   REDUCED MOTION (Accessibility)
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .marquee-track::-webkit-scrollbar {
    display: none;
  }
}
/* END_SECTION:marquee */
