/** Shopify CDN: Minification failed

Line 136:16 Expected identifier but found whitespace
Line 136:18 Unexpected "{"
Line 136:27 Expected ":"
Line 136:64 Expected ":"
Line 139:16 Expected identifier but found whitespace
Line 139:18 Unexpected "{"
Line 139:27 Expected ":"
Line 139:72 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Slick slider CDN */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css');

  .featured-collection-slider {
    margin: 30px 0;
  }
  .featured-collection-slider__title {
    margin-bottom: 20px;
  }
  .featured-collection-slider__products {
    /* Slick styles handle layout */
  }
  .featured-collection-slider__product-card {
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    margin: 0 10px;
  }
  .featured-collection-slider__product-card:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .featured-collection-slider__product-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
  }

  /* Image height variants */
  .image-height-small img {
    height: 150px;
    object-fit: cover;
    width: 100%;
  }
  .image-height-medium img {
    height: 250px;
    object-fit: cover;
    width: 100%;
  }
  .image-height-large img {
    height: 350px;
    object-fit: cover;
    width: 100%;
  }

  .featured-collection-slider__product-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
  }
  .featured-collection-slider__product-title a {
    color: inherit;
    text-decoration: none;
  }
  .featured-collection-slider__product-title a:hover {
    text-decoration: underline;
  }
  .featured-collection-slider__product-price {
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .featured-collection-slider__add-to-cart-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  .featured-collection-slider__add-to-cart-btn:hover {
    filter: brightness(0.85);
  }

  /* Custom arrow styles */
  .featured-collection-slider__products .slick-prev,
  .featured-collection-slider__products .slick-next {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    z-index: 2;
    transition: background-color 0.3s ease;
    opacity: 0.8;
  }

  .featured-collection-slider__products .slick-prev:hover,
  .featured-collection-slider__products .slick-next:hover {
    opacity: 1;
  }

  .featured-collection-slider__products .slick-prev:before,
  .featured-collection-slider__products .slick-next:before {
    color: white; /* arrow icon color */
    font-size: 20px;
    line-height: 35px;
  }

  .featured-collection-slider__products .slick-prev {
    left: 10px;
  }

  .featured-collection-slider__products .slick-next {
    right: 10px;
  }
  .featured-collection-slider__products .slick-prev:before, 
  .featured-collection-slider__products .slick-next:before{
    line-height: 38px;
  }
  .slick-list{
    padding: 20px 0;
  }

  /* Responsive font sizes for mobile */
  @media screen and (max-width: 480px) {
    .featured-collection-slider__title {
      font-size: {{ section.settings.title_font_size_mobile }}px !important;
    }
    .featured-collection-slider__product-title {
      font-size: {{ section.settings.product_title_font_size_mobile }}px !important;
    }
  }
.logo-slider-section {
  position: relative;
  overflow: hidden;
}
.logo-slider-wrapper {
  overflow: hidden;
}
.logo-slider-track {
  display: flex;
  width: max-content;
  animation: scroll-left linear infinite;
}
.logo-slider-section:hover .logo-slider-track {
  animation-play-state: paused;
}
.logo-slider-item {
  /* flex: 0 0 16.66%;  */
  /* 6 logos on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider-item img {
  max-height: 100px;
  /* width: auto; */
  width: 220px;
  padding: 20px;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .logo-slider-item {
    flex: 0 0 25%; /* 4 logos on tablet */
  }
}
@media screen and (max-width: 767px) {
  .logo-slider-title {
    font-size: var(--mobile-title-size);
  }
  .logo-slider-item {
    flex: 0 0 33.33%; /* 3 logos on mobile */
  }
}