/** Shopify CDN: Minification failed

Line 19:1 Expected identifier but found "{"
Line 19:2 Unexpected "{"
Line 19:13 Expected ":"
Line 31:3 Expected identifier but found "{"
Line 31:4 Unexpected "{"
Line 31:15 Expected ":"
Line 35:3 Expected identifier but found "{"
Line 35:4 Unexpected "{"
Line 35:15 Expected ":"
Line 39:3 Expected identifier but found "{"
... and 62 more hidden warnings

**/


/* CSS from section stylesheet tags */
.{{ unique_id }}.ba_main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
    padding: 0 5rem;
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
  }

  .{{ unique_id }}.ba_main.no-content {
    justify-content: center;
  }

  .{{ unique_id }} .before_after {
    flex: 1 1 50%;
    min-width: 0;
  }
  .{{ unique_id }} .before_after-content {
    flex: 1 1 50%;
    min-width: 0;
  }

  /* This is the new rule to fix text overflow */
  .{{ unique_id }} .before_after-paragraph {
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .{{ unique_id }}.ba_main.no-content .before_after {
    flex-grow: 0;
    flex-basis: 50%;
  }

  .{{ unique_id }} img {
    display: block;
    max-width: 100%;
  }

  .{{ unique_id }} .container {
    display: grid;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    --position: 50%;
  }

  .{{ unique_id }} .image-container {
    max-width: 1200px;
    grid-area: 1 / 1;
  }

  .{{ unique_id }} .before_img, .{{ unique_id }} .after_img {
    grid-area: 1 / 1;
  }

  .{{ unique_id }} .before_badge {
    z-index: 99;
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    border-radius: 5px;
    color: #000;
  }

  .{{ unique_id }} .after_badge {
    z-index: 99;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    padding: 0 5px;
    border-radius: 5px;
    color: #000;
  }

  .{{ unique_id }} .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    max-height: 500px;
  }

  .{{ unique_id }} .image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
  }

  /* This rule is now more specific to ensure it works */
  .{{ unique_id }} .before_img.grayscale-effect .image-before {
    filter: grayscale(100%) !important;
  }

  .{{ unique_id }} .ba-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }

  .{{ unique_id }} .ba-slider:focus-visible ~ .ba-slider-button {
    outline: 5px solid black;
    outline-offset: 3px;
  }

  .{{ unique_id }} .ba-slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
  }

  .{{ unique_id }} .ba-slider-button {
    position: absolute;
    background-color: #fff !important;
    color: black;
    padding: .5rem;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
  }

  @media only screen and (max-width: 768px) {
    .{{ unique_id }}.ba_main {
      flex-direction: column;
      padding: 0 20px;
    }
    .{{ unique_id }} .before_after,
    .{{ unique_id }} .before_after-content {
      width: 100%;
      flex-basis: auto;
    }
    .{{ unique_id }}.ba_main.no-content .before_after {
      flex-basis: auto;
      width: 100%;
      max-width: 100%;
    }
  }
/* Swiper container & slide settings */
.swiper {
  width: 100%;
  height: 100vh;
  max-height: 650px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* Apply specific dimensions only for desktop screens (larger than 768px) */
@media (min-width: 769px) {
  .swiper {
    max-width: 1300px; /* Set the maximum width to 800px for desktop */
    height: 650px;    /* Set the height to 600px for desktop */
    max-height: none; /* Override the default max-height for desktop */
    margin: 0 auto;   /* Center the slider on the page for desktop */
  }
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 5s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.swiper-slide-active img {
  transform: scale(1);
}

/* Gradient overlay on each slide */
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  
 background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 100%
  )
}

  
  /* Banner Content */
.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 80px;
  color: #fff;
  z-index: 2;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.3, 0.1, 0.3, 1);
}

.swiper-slide-active .banner-content {
  transform: translateY(0);
  opacity: 1;
}

/* Headings */
.banner-content h2 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.3, 0.1, 0.3, 1) 0.3s;
  color: #fff;
}

.swiper-slide-active .banner-content h2 {
  transform: translateX(0);
  opacity: 1;
}

/* Paragraph Text */
.banner-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.3, 0.1, 0.3, 1) 0.5s;
  color: #fff;
}

.swiper-slide-active .banner-content p {
  transform: translateX(0);
  opacity: 1;
}

/* Banner Button */
.banner-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: rgba(255, 87, 34, 0.9);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
  /* Use a longer transition delay for button */
  transition: all 0.8s cubic-bezier(0.3, 0.1, 0.3, 1) 0.7s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.swiper-slide-active .banner-button {
  transform: translateY(0);
  opacity: 1;
}

.banner-button:hover {
  background-color: rgba(255, 87, 34, 1);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.banner-button:active {
  transform: translateY(0);
}

.banner-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.banner-button:hover::after {
  transform: translateX(100%) skewX(-15deg);
}

/* Mobile & Desktop Image Visibility */
.banner-img-desktop {
  display: block;
}
.banner-img-mobile {
  display: none;
}

/* Pagination container adjustments so dots are visible */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  z-index: 20;
}

/* Default Swiper Pagination Bullets */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #ff5722;
  transform: scale(1.3);
}

/* Navigation Buttons (Default classes) */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-content {
    padding: 30px;
  }
  
  .banner-content h2 {
    font-size: 3.5rem;
  }
  
  .banner-content p {
    font-size: 1.3rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Hide desktop image, show mobile image */
  .banner-img-desktop {
    display: none;
  }
  .banner-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;  /* Ensure mobile image stays behind content */
  }
  
  .banner-content h2 {
    font-size: 2.5rem;
  }
  
  .banner-button {
    padding: 12px 25px;
  }
}