/** Shopify CDN: Minification failed

Line 25:11 Expected identifier but found whitespace
Line 25:13 Unexpected "{"
Line 25:22 Expected ":"
Line 25:50 Expected ":"
Line 30:30 Expected identifier but found whitespace
Line 30:32 Unexpected "{"
Line 30:41 Expected ":"
Line 30:70 Expected ":"

**/


/* CSS from section stylesheet tags */
.banner-carousel-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  .banner-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: {{ section.settings.height_mobile }}px;
    margin: 0;
    padding: 0;
  }
  @media (min-width: 750px) {
    .banner-carousel { height: {{ section.settings.height_desktop }}px; }
  }
  .banner-carousel__slides { display: flex; width: 100%; height: 100%; transition: transform .6s ease; }
  .banner-carousel__slide { min-width: 100%; height: 100%; position: relative; }
  .banner-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .banner-carousel__content {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; color: #fff;
    padding: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,.4);
  }
  .banner-carousel__content h2 { font-size: clamp(1.5rem,4vw,2.5rem); margin: 0 0 .4rem; }
  .banner-carousel__content p { font-size: clamp(.9rem,2.5vw,1.2rem); margin: 0 0 .8rem; }
  .banner-carousel__btn {
    background: rgba(255,255,255,.9); color: #000; padding: .6rem 1.2rem;
    border-radius: 999px; font-weight: 600; text-decoration: none; transition: background .3s;
  }
  .banner-carousel__btn:hover { background: #fff; }
  .banner-carousel__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.4); color: #fff; border: none; width: 44px; height: 44px;
    border-radius: 50%; cursor: pointer; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center; z-index: 10;
  }
  .banner-carousel__nav--prev { left: 1rem; }
  .banner-carousel__nav--next { right: 1rem; }
  .banner-carousel__dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .5rem; z-index: 10;
  }
  .banner-carousel__dot {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5);
    cursor: pointer; transition: background .3s;
  }
  .banner-carousel__dot.active { background: #fff; }