/** Shopify CDN: Minification failed

Line 247:12 Unexpected "{"
Line 247:21 Expected ":"
Line 247:28 Unexpected "{"
Line 248:21 Expected identifier but found whitespace
Line 248:23 Unexpected "{"
Line 248:32 Expected ":"
Line 289:14 Unexpected "{"
Line 289:23 Expected ":"
Line 289:30 Unexpected "{"

**/
.cst-tab-content .cst-product-card {
      opacity: 0;
      transform: scale(.97) translateY(3%);
      transform-origin: center;
      animation-delay: inherit;
      border-radius: 8px;
      padding: 10px;
  }
  .cst-tab-content.active .cst-product-card {
      animation-duration: .65s;
      animation-timing-function: cubic-bezier(0,0,.3,1);
      animation-delay: inherit;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-name: product_card_animation;
  }

  @keyframes product_card_animation {
    0% {
      opacity: 0.1;
      transform: scale(0.8) translateY(3%);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .cst-banner-img {
    animation: fade-in .5s ease-in forwards;
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .cst-banner-img.hidden {
    animation: fade-out .5s ease-in forwards;
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }


  .cst-banner-img.mobile-banner {
    display: block;
  }

  /* On desktop: Hide mobile banners */
  @media (min-width: 768px) {
    .cst-banner-img.mobile-banner {
      display: none !important;
    }
  }

  /* On mobile: Hide desktop banners */
  @media (max-width: 767px) {
    .cst-banner-img:not(.mobile-banner) {
      display: none !important;
    }
  }

  .cst-container {
    aspect-ratio: 16 / 7.7;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    max-height: 780px;
    position: relative;
  }
  
  .cst-banner {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 2880 / 1534;
}
  
  .cst-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .cst-banner-img.hidden {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  
.cst-content {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
  
  .cst-banner-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
  
.cst-tabs {
  margin-bottom: 3rem;
  padding: 0 8rem;
}
  
  .section-header-container {
    text-align: right;
  }
  
  .filters-container {
    display: inline-flex;
    gap: 8px;
    background-color: rgba(141, 167, 189, 0.45);
    padding: 8px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
  }
  
  .cst-tab-btn {
      font-size: 32px;
      padding: 13px 45px;
      background: transparent;
      color: #000;
      border: none;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s, color 0.3s;
  }
  
  .cst-tab-btn.active {
    background: #FFFFFF;
    color: #000000;
  }
  
  .cst-tab-content {
    display: none;
  }
  
  .cst-tab-content.active {
    display: block;
  }
  
  /* Swiper Styles */
  .cst-products {
    position: relative;
    width: 100%;
  }
.img-wrap {
    padding-top: 150%;
    position: relative;
}
.cst-product-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}  
.img-wrap button.primary {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  width: 44px;
  height: 44px;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}  
.img-wrap button.primary:hover {
  background-color: #000000;
  border-radius: 100px;
}
.cst-product-info {
  padding: 10px 0 0;
}
  
  .swiper-button-next,
  .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
    color: #333;
    font-weight: bold;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }
  
  .swiper-button-prev {
    left: 0;
  }
  
  .swiper-button-next {
    right: 0;
  }
  .cst-section .swiper-slide {
  width:auto;
}

  #section-{{ section.id }} {
    background-color: {{ section.settings.bg_color }};
  }

  @media (min-width: 999px) and (max-width: 1199px) {
    .cst-container {
      aspect-ratio: 16 / 8.5;
    }
    .cst-tabs {
      padding: 0 3.2rem;
    }  
    .cst-tab-btn {
      font-size: 20px;
      padding: 8px 15px;
    }
    
  }

  @media (min-width: 768px) and (max-width: 989px) {
    .cst-container {
        aspect-ratio: 16 / 12;
    }
    .cst-tabs {
      padding: 0 3.2rem;
    }  
    .cst-tab-btn {
      font-size: 14px;
      padding: 8px 15px;
    }
  
  
  }


  @media (min-width: 901px) and (max-width: 998px) {
    .cst-container {
        aspect-ratio: 18 / 9;
    }
  
  }

  @media(max-width: 767px) {
    #section-{{ section.id }} {
      aspect-ratio: 720 / 1420;
    }
    .cst-tabs {
      padding: 0 1.5rem;
    }
    .section-header-container {
      text-align: center;
    }

    .cst-container {
      aspect-ratio: 720 / 1420;
      max-height: unset;
    }
    
    .filters-container {
      padding: 7px;
      border-radius: 8px;
    }

    body .swiper div[role=button].swiper-button-next {
      right: 15px;
    }
    
    body .swiper div[role=button].swiper-button-prev {
      left: 15px;
    }

    .cst-content {
      top: unset;
      bottom: 0;
    }

    .cst-tab-btn {
      font-size: 14px;
      padding: 8px 15px;
    }
    
    .cst-products {
      padding: 0 0 0 30px;
    }
    
    .cst-tab-content {
      height: auto;
    }
    
    .cst-tab-content.active {
      display: block;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
      width: 40px;
      height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px;
    }
  }