/** Shopify CDN: Minification failed

Line 21:0 Unexpected "<"
Line 26:21 Expected identifier but found whitespace
Line 26:23 Unexpected "{"
Line 26:32 Expected ":"
Line 38:10 Expected identifier but found whitespace
Line 38:12 Unexpected "{"
Line 38:21 Expected ":"
Line 52:4 Unexpected "{"
Line 52:5 Expected identifier but found "%"
Line 55:4 Unexpected "{"
... and 32 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:carousel-banner (INDEX:4) */
<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>
/* END_SECTION:carousel-banner */

/* START_SECTION:responsive-banner (INDEX:83) */
<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>
/* END_SECTION:responsive-banner */