/** Shopify CDN: Minification failed

Line 73:0 Unexpected "}"

**/
/* Main viewport container for the slider */
.slick-list {
  overflow: hidden; /* Ensures only visible slides are shown */
  position: relative;
  display: block;
}

/* Track that holds all slides */
.slick-track {
  display: flex !important; /* Align slides horizontally */
}

/* Individual Slide */
.slick-slide {
  display: inline-block;
  text-align: center;
  overflow: hidden;
}

/* Image Container */
.sliders-image-item {
  height: auto; 
  display: flex; /* Enable flexbox for alignment */
  justify-content: center; /* Center image horizontally */
  align-items: center;  /* Center image vertically */
  overflow: hidden; /* Prevent content overflow */
  padding: 6px; /* Optional spacing inside the container */
box-sizing: border-box;
flex: 1 0 auto;
  background-color: #fff; /* Prevent transparent gaps from showing */
}

/* Images */
.sliders-image-item img {
  max-width: 100%; /* Scale image to fit container width */
  height: 100%; /* Maintain aspect ratio */
  object-fit: contain; /* Adjust image to fit within the container without cropping */
  display: block; /* Avoid inline spacing issues */
  margin: auto; /* Optional, ensures proper alignment */
}


/* Navigation Arrows */
.slick-prev,
.slick-next {
  display: block !important; /* Ensure arrows are visible */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  color: #fff; /* White arrow color */
  border: none;
  border-radius: 50%; /* Round arrows */
  text-align: center;
  line-height: 40px; /* Center the arrow icon */
  cursor: pointer;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}
}

/* Dots Navigation */
.slick-dots {
  display: flex !important; /* Ensure dots are visible */
  justify-content: center;
  margin-top: 10px;
}

.slick-dots li {
  margin: 0 5px; /* Spacing between dots */
}

.slick-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}


/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .slick-list {
    padding: 0 10px; /* Reduce padding for smaller screens */
  }

  .sliders-image-item {
    max-width: 100%; /* Allow full-width images */
    height: 200px; /* Reduce height for smaller screens */
  }

  .slick-prev,
  .slick-next {
    width: 30px; /* Smaller arrows */
    height: 30px;
    line-height: 30px;
  }
}
