/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 24:21 Expected identifier but found whitespace
Line 24:23 Unexpected "{"
Line 24:32 Expected ":"
Line 36:10 Expected identifier but found whitespace
Line 36:12 Unexpected "{"
Line 36:21 Expected ":"
Line 111:21 Expected identifier but found whitespace
Line 111:23 Unexpected "{"
Line 111:32 Expected ":"
... and 1 more hidden warnings

**/


/* CSS from section stylesheet tags */
<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;
  }
  
  .carousel-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
  }
  
  .carousel-link {
    display: block;
    text-decoration: none;
  }
  
  .carousel-image {
    width: 100%;
    height: auto;
    display: block;
    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: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .carousel-dot.active,
  .carousel-dot:hover {
    background-color: #717171;
  }
  
  @media (max-width: 767px) {
    .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>