/** Shopify CDN: Minification failed

Line 161:8 Expected identifier but found whitespace
Line 161:10 Unexpected "{"
Line 161:19 Expected ":"
Line 224:13 Expected identifier but found whitespace
Line 224:15 Unexpected "{"
Line 224:24 Expected ":"
Line 229:8 Expected identifier but found whitespace
Line 229:10 Unexpected "{"
Line 229:19 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Mobile pagination dots styling for teams slider */
@media (max-width: 768px) {
  .slick_teams .slick-dots {
    bottom: -10px;
    text-align: center;
  }
 
      .slick_teams ul.slick-dots li button:before {
        background: #000;
        border: 1px solid #110b04;
    }
  
  .slick_teams ul.slick-dots li.slick-active button {
     
    border: 2px solid #c17523;
}
  
  .slick_teams .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  
  .slick_teams .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #c17523;
    text-indent: -9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .slick_teams .slick-dots li.slick-active button {
    background-color: #c17523;
  }
  
  .slick_teams .slick-dots li button:hover {
    background-color: #666;
  }
  
  /* Add spacing after slider to accommodate dots */
  .teams {
    padding-bottom: 60px;
  }
}
.features-container {
  padding: 60px 0;
  text-align: center;
}

.features-main-heading {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
}

.features-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  /* max-width: 1200px; */
}

.features-grid {
  text-align: center;
}

.features-grid .features-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 990px) {
  .features-flex .features-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid .features-wrapper {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (min-width: 750px) and (max-width: 990px) {
  .features-grid .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 991px) {
  .features-flex .feature-item {
    flex: 1 1 0;
  }
  
  .features-grid .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.category-slider-section {
  padding: 40px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: {{ section.settings.title_color }};
}

.category-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-media-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 15px;
  position: relative;
}

.category-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zoom-effect:hover .category-image {
  transform: scale(1.1);
}

.category-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.category-media:hover .category-video {
  opacity: 1;
}

.category-media:hover .category-image {
  opacity: 0;
}

.category-title {
  text-align: {{ section.settings.text_alignment }};
  margin-top: 8px;
}

.category-title a {
  color: {{ section.settings.category_title_color }};
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.category-title a:hover {
  opacity: 0.7;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
  
  .category-title a {
    font-size: 12px;
  }
}