<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 33:11 Expected identifier but found whitespace
Line 33:13 Unexpected "{"
Line 33:22 Expected ":"
Line 33:50 Expected ":"

**/


/* CSS from section stylesheet tags */
@media screen and (min-width: 750px) {
  .mobile-banner-section {
    display: none !important;
  }
}
@media screen and (max-width: 749px) {
  .mobile-banner-section {
    display: block;
    background-color: #f8f8f8;
    text-align: center;
    padding: 16px;
  }

  .mobile-banner-section img {
    max-width: 100%;
    height: auto;
  }
}
.rotating-banner {
    position: relative;
    overflow: hidden;
    height: {{ section.settings.banner_height }}vh;
  }

  .rotating-banner .slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
  }

  .rotating-banner .slide.is-active {
    display: block;
  }

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

  .banner-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    text-shadow: 0 0 10px black;
  }

  .banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: background 0.2s;
  }
  .banner-arrow:hover {
    background: rgba(0,0,0,0.7);
  }
  .banner-arrow--prev {
    left: 16px;
  }
  .banner-arrow--next {
    right: 16px;
  }

  @media (max-width: 749px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    .banner-arrow { width: 38px; height: 38px; font-size: 1.5rem; }
  }

  @media (min-width: 750px) {
    .desktop-only { display: block; }
    .mobile-only { display: none; }
  }</pre></body></html>