/** Shopify CDN: Minification failed

Line 16:21 Expected identifier but found whitespace
Line 16:23 Unexpected "{"
Line 16:32 Expected ":"
Line 17:10 Expected identifier but found whitespace
Line 17:12 Unexpected "{"
Line 17:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.single-marquee-container {
    overflow: hidden;
    background-color: {{ section.settings.background_color }};
    color: {{ section.settings.text_color }};
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
  }

  .single-marquee-track {
    display: inline-flex;
    animation: scroll-marquee linear infinite;
  }

  .single-marquee-track span {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 500;
  }

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

  .single-marquee-container:hover .single-marquee-track {
    animation-play-state: paused;
  }
.hero-carousel-container {
    position: relative;
    width: 100%;
  }
  .hero-carousel-wrapper {
    overflow-x: scroll;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hero-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .hero-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
  }
  .hero-slide picture, .hero-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .hero-cta {
    position: absolute;
    z-index: 2;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .cta-top-left { top: 10%; left: 5%; transform: none; }
  .cta-top-center { top: 10%; left: 50%; transform: translateX(-50%); }
  .cta-top-right { top: 10%; right: 5%; transform: none; }
  .cta-center-left { top: 50%; left: 5%; transform: translateY(-50%); }
  .cta-center-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .cta-center-right { top: 50%; right: 5%; transform: translateY(-50%); }
  .cta-bottom-left { bottom: 10%; left: 5%; transform: none; }
  .cta-bottom-center { bottom: 10%; left: 50%; transform: translateX(-50%); }
  .cta-bottom-right { bottom: 10%; right: 5%; transform: none; }
  .hero-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
  }
  .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease;
  }
  .hero-dot.active {
    background: #ffffff;
  }