/** Shopify CDN: Minification failed

Line 119:2 Unexpected "}"

**/
/* Banner Marquee Section */
.banner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-marquee__container {
  position: relative;
  width: 100%;
}

/* Background Image */
.banner-marquee__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.5rem;
}

@media screen and (min-width: 750px) {
  .banner-marquee__image-wrapper {
    aspect-ratio: 1440 / 550;
    border-radius: 2rem;
  }
}

.banner-marquee__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-marquee__placeholder {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-marquee__placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG Overlay */
.banner-marquee__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-marquee__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Path background - ribbon/band behind text */
.banner-marquee__path-bg {
  fill: none;
  stroke: var(--marquee-text-bg-color);
  stroke-width: 80px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Text foreground */
.banner-marquee__text {
  font-family: var(--font-heading-family), sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
  fill: var(--marquee-text-color);
}

@media screen and (max-width: 749px) {
  .banner-marquee__path-bg {
    stroke-width: 118px;
  }

  .banner-marquee__text {
    font-size: 40px;
  }
}



@media screen and (min-width: 990px) and (max-width: 1199px) {
  .banner-marquee__path-bg {
    stroke-width: 60px;
  }

  .banner-marquee__text {
    font-size: 26px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .banner-marquee__svg animate {
    animation-play-state: paused;
  }
}
  }
}