/** 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 5 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>
<style>
  /* Force white background on all parent containers */
  .shopify-section,
  .shopify-section > *,
  .page-width,
  .section,
  .section-header {
    background-color: #ffffff !important;
    background: #ffffff !important;
  }
  
  .custom-banner-section {
    text-align: center;
    padding: 15px !important;
    margin: 0 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    overflow: visible !important;
    line-height: 0;
    min-height: 100px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .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;
    background-color: transparent !important;
  }
  
  .custom-banner-link {
    display: block;
    text-decoration: none;
    background-color: transparent !important;
  }
  
  .custom-banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #ffffff !important;
  }
  
  /* Desktop-specific styling with minimal margin and curved borders */
  .custom-banner-image.desktop-only {
    margin: 5px 20px !important;
    border-radius: 25px;
    width: calc(100% - 40px);
    background-color: #ffffff !important;
  }
  
  /* Mobile image with minimal margin and curved borders */
  .custom-banner-image.mobile-only {
    margin: 2px 8px !important;
    border-radius: 15px;
    width: calc(100% - 16px);
    background-color: #ffffff !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;
    }
    
    .custom-banner-section {
      padding: 10px !important;
    }
  }
  
  /* Aggressive white background overrides */
  body .shopify-section .custom-banner-section,
  .shopify-section .custom-banner-section,
  .custom-banner-section,
  [class*="banner"] .custom-banner-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
    padding: 15px !important;
    margin: 0 !important;
  }
  
  /* Force white background on theme elements */
  .main-content,
  .page-container,
  .site-wrap,
  .wrapper {
    background-color: #ffffff !important;
  }
</style>