/** Shopify CDN: Minification failed

Line 19:0 Unexpected "#"
Line 19:2 Unexpected "{"
Line 19:11 Expected ":"
Line 19:18 Unexpected "{"
Line 23:0 Unexpected "#"
Line 23:2 Unexpected "{"
Line 23:11 Expected ":"
Line 25:13 Expected identifier but found whitespace
Line 25:15 Unexpected "{"
Line 25:24 Expected ":"
... and 65 more hidden warnings

**/


/* CSS from section stylesheet tags */
#{{ section.id }} {
  overflow: hidden;
}
  
#{{ section.id }} .swiper {
  width: 100%;
  margin-top: {{ section.settings.margin_top }}px;
  margin-bottom: {{ section.settings.margin_bottom }}px;
  overflow: hidden;
  position: relative;
}

#{{ section.id }} .swiper-wrapper {
  display: flex;
}

#{{ section.id }} .swiper-slide {
  position: relative;
  text-align: center;
  height: 100%;
  flex-shrink: 0;
}

#{{ section.id }} .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

#{{ section.id }} .slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffffbf;
  padding: 30px 20px;
  border-radius: 10px;
  color: white;
  width: 100%;
  max-width: 90%;
}

#{{ section.id }} .slide-overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

#{{ section.id }} .slide-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #000;
}

#{{ section.id }} .slide-overlay .btn {
  background-color: #F5F1E0;
  color: #5D473A;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

#{{ section.id }} .swiper-button-next::after {
font-size: 50px;
  font-weight: normal;
  line-height: 1;
  color: black;
  display: flex;
  align-items: center;
  margin-top: -8px;
  margin-left: 5px;
}
#{{ section.id }} .swiper-button-prev::after {
font-size: 50px;
  font-weight: normal;
  line-height: 1;
  color: black;
  display: flex;
  align-items: center;
  margin-top: -8px;
  margin-left: 0px;
}  

#{{ section.id }} .swiper-button-prev::after {
  content: '\2039'; /* Unicode for ‹ */
}

#{{ section.id }} .swiper-button-next::after {
  content: '\203A'; /* Unicode for › */
}

#{{ section.id }} .swiper-button-prev {
  background-color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
 #{{ section.id }} .swiper-button-next {
  background-color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
} 

#{{ section.id }} .swiper-button-prev:hover,
#{{ section.id }} .swiper-button-next:hover {
  background-color: #f1f1f1;
}

#{{ section.id }} .swiper-button-prev {
  left: 12px;
}

#{{ section.id }} .swiper-button-next {
  right: 12px;
}

@media (max-width: 767px) {
  #{{ section.id }} .swiper-slide img {
    height: 300px;
  }

  #{{ section.id }} .slide-overlay h2 {
    font-size: 22px;
  }

  #{{ section.id }} .slide-overlay p {
    font-size: 16px;
  }
}