/** Shopify CDN: Minification failed

Line 28:22 Unexpected "{"
Line 28:31 Expected ":"

**/

  :root {
    --slider-max-width: 1200px;
    --slider-padding: 0 10px;
    --slide-margin-right: 15px;
    --image-max-width: 100%;
    --image-max-height: auto;
    --slide-heading-font-size: 1.5rem;
    --slide-subheading-font-size: 1rem;
    --slide-caption-font-size: 0.9rem;
    --slide-heading-color: #333;
    --slide-subheading-color: #666;
    --slide-caption-color: #999;
    --pagination-bullet-color: #ccc;
    --pagination-bullet-active-color: #3BB2D0;
    --button-background-color: #3BB2D0;
    --button-color: #fff;
    --button-size: 50px;
    --button-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

#custom-image-slider-{{ section.id }} .pagination-and-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 10;
}


  .slider-custom-swiper {
    max-width: var(--slider-max-width);
    margin: 0 auto;
    padding: var(--slider-padding);
    position: relative;
    overflow: hidden;
  }

  .slider-custom-swiper .swiper-wrapper {
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }

  .slider-custom-swiper .swiper-slide {
    flex-shrink: 0;
    width: calc(100% / 4);
    max-width: var(--image-max-width);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-right: var(--slide-margin-right);
    box-sizing: border-box;
  }

  .slider-custom-swiper .image-container {
    width: 100%;
    max-width: var(--image-max-width);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .slider-custom-swiper .image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to give it a "button" effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth animation for click effect */
  }

  .slider-custom-swiper .caption-container {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 10px;
    text-align: center;
  }

  .slider-custom-swiper .slide-heading {
    font-size: var(--slide-heading-font-size);
    color: var(--slide-heading-color);
    font-weight: bold;
    margin-bottom: 5px;
  }

  .slider-custom-swiper .slide-subheading {
    font-size: var(--slide-subheading-font-size);
    color: var(--slide-subheading-color);
    margin-bottom: 10px;
  }

  .slider-custom-swiper .slide-caption {
    font-size: var(--slide-caption-font-size);
    color: var(--slide-caption-color);
  }

  .pagination-and-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px; /* Adjust as needed for spacing */
    gap: 15px; /* Space between arrows and pagination */
    position: relative;
    z-index: 10; /* Ensure that this container is above other elements */
    padding-left: 50px;  /* Adjust as needed to provide more space for arrows on either side */
    padding-right: 50px; /* Adjust as needed to provide more space for arrows on either side */
    margin-bottom: 50px;
    margin-top: 20px;
  }

  .swiper-pagination {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 12;
  }

  .swiper-pagination-bullet {
    background: var(--pagination-bullet-color);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.6;
    transition: background 0.3s ease, opacity 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    background: var(--pagination-bullet-active-color) !important;
    opacity: 1;
  }

  .swiper-pagination-bullet:hover {
    background: var(--pagination-bullet-active-color);
    opacity: 1;
  }

  .swiper-button-prev,
  .swiper-button-next {
    background-color: var(--button-background-color);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 11; /* Ensure the arrows are on top of the slides */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to give it a "button" effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth animation for click effect */
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold;
    color: var(--button-color);
  }

  .swiper-button-prev:active,
  .swiper-button-next:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 991px) {
    .swiper-button-prev,
    .swiper-button-next {
      width: 40px;
      height: 40px;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
  }

