/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 37:21 Expected identifier but found whitespace
Line 37:23 Unexpected "{"
Line 37:32 Expected ":"
Line 38:12 Expected identifier but found whitespace
Line 38:14 Unexpected "{"
Line 38:23 Expected ":"
Line 70:0 Unexpected "<"
Line 76:21 Expected identifier but found whitespace
Line 76:23 Unexpected "{"
... and 51 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
  .image-banner-with-link {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }
  .image-banner-with-link img {
    width: 100%;
    height: auto;
    display: block;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: {{ section.settings.overlay_color }};
    opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
    z-index: 1;
  }
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
  }
  .banner-heading {
    font-size: 2.5rem;
    margin: 0;
  }
  .banner-subheading {
    font-size: 1.5rem;
    margin: 10px 0 0;
  }
  /* Mobile */
  @media (max-width: 767px) {
  .desktop-banner {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .mobile-banner {
    display: none !important;
  }
}

</style>
<style>
  .carousel-banner-section {
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    background-color: {{ section.settings.background_color | default: "#fff9dd" }};
    overflow: hidden;
    line-height: 0;
    position: relative;
  }

  .carousel-banner-heading {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0 !important;
    padding-top: 2px;
    color: {{ section.settings.text_color }};
    line-height: 1.2;
  }

  .carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .carousel-slides-wrapper {
    position: relative;
    width: 100%;
    {% if section.settings.image_size == 'adapt' %}
      height: 0;
      /* padding-bottom set dynamically via inline style based on first image aspect ratio */
    {% elsif section.settings.image_size == 'small' %}
      height: 400px;
    {% elsif section.settings.image_size == 'medium' %}
      height: 600px;
    {% elsif section.settings.image_size == 'large' %}
      height: 800px;
    {% elsif section.settings.image_size == 'banner' %}
      height: 0;
      padding-bottom: 41.67%; /* Banner aspect ratio (1920:800) */
    {% endif %}
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
  }

  .carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .carousel-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0 !important;
    padding: 0 !important;
  }

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  /* Navigation controls */
  .carousel-prev,
  .carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
  }

  .carousel-next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .carousel-prev:hover,
  .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }

  /* Dots */
  .carousel-dots-container {
    text-align: center;
    padding: 15px 0;
    background-color: {{ section.settings.background_color | default: "#fff9dd" }};
  }

  .carousel-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background-color: #00412D;
    width: 30px;
    border-radius: 6px;
  }

  .carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }

  @media (max-width: 768px) {
    .carousel-slides-wrapper {
      {% if section.settings.image_size == 'adapt' %}
        height: 0;
        /* padding-bottom set dynamically via inline style based on first mobile image aspect ratio */
      {% elsif section.settings.image_size == 'small' %}
        height: 300px;
      {% elsif section.settings.image_size == 'medium' %}
        height: 450px;
      {% elsif section.settings.image_size == 'large' %}
        height: 600px;
      {% elsif section.settings.image_size == 'banner' %}
        height: 0;
        padding-bottom: 133.33%; /* Taller aspect ratio for mobile (750:1000) */
      {% endif %}
    }

    .desktop-only {
      display: none !important;
    }

    .mobile-only {
      display: block !important;
    }

    .carousel-banner-heading {
      font-size: 2.5rem;
      font-weight: bold;
      padding-top: 25px;
    }

    .carousel-prev,
    .carousel-next {
      padding: 10px;
      font-size: 1.2rem;
    }
  }

  /* Override any Shopify theme defaults */
  .shopify-section .carousel-banner-section {
    padding: 0 !important;
    margin: 0 !important;
  }

  .section-header,
  .page-width,
  .section,
  .shopify-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
</style>
<style>
  .image-banner-with-link {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }
  .image-banner-with-link img {
    width: 100%;
    height: auto;
    display: block;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: {{ section.settings.overlay_color }};
    opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
    z-index: 1;
  }
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
  }
  .banner-heading {
    font-size: 2.5rem;
    margin: 0;
  }
  .banner-subheading {
    font-size: 1.5rem;
    margin: 10px 0 0;
  }

  /* Mobile */
  @media (max-width: 767px) {
    .banner-heading {
      font-size: 2rem;
    }
    .banner-subheading {
      font-size: 1.25rem;
    }
    .hidden-mobile {
      display: none;
    }
  }

  /* Tablet */
  @media (min-width: 768px) and (max-width: 1024px) {
    .hidden-tablet {
      display: none;
    }
  }

  /* Desktop */
  @media (min-width: 1025px) {
    .hidden-desktop {
      display: none;
    }
  }
</style>
<style>
  .infinite-image-scroll {
    padding: 20px;
    text-align: center;
  }
  .section-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .scroll-container {
    display: flex;
    overflow: hidden;
    gap: 15px;
    padding-bottom: 20px;
  }
  .scroll-wrapper {
    display: flex;
    gap: 15px;
    animation: scroll {{ section.settings.scroll_speed | times: 10 }}s linear infinite;
  }
  .scroll-item {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .scroll-item:hover {
    transform: scale(1.05);
  }
  .scroll-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .scroll-item img:last-child {
    margin-bottom: 0;
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @media (max-width: 767px) {
    .scroll-container {
      overflow-x: auto;
    }
    .scroll-wrapper {
      animation: none;
    }
    .hidden-mobile {
      display: none;
    }
  }
</style>
<style>
  .custom-banner-section {
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    background-color: {{ section.settings.background_color }};
    overflow: hidden;
    line-height: 0;
  }
  
  .custom-banner-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0 !important;
    padding-top: 20px;
    color: {{ section.settings.text_color }};
    line-height: 1.2;
  }
  
  .custom-banner-link {
    display: block;
    text-decoration: none;
  }
  
  .custom-banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  @media (max-width: 767px) {
    .desktop-only {
      display: none !important;
    }
    
    .mobile-only {
      display: block !important;
    }
    
    .custom-banner-heading {
      font-size: 1.8rem;
      padding-top: 15px;
    }
  }
  
  /* Override any Shopify theme defaults */
  .shopify-section .custom-banner-section {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .section-header,
  .page-width,
  .section,
  .shopify-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
</style>