/** Shopify CDN: Minification failed

Line 67:13 Expected identifier but found whitespace
Line 67:15 Unexpected "{"
Line 67:23 Expected ":"

**/

button#feature-arive-2 {
    border-right: 1px solid;
    border-left: 1px solid;
    padding: 0 30px;
}
.featured_collection_slider .card__content {
  display: none;
}
.featured_collection_slider {
  overflow: hidden;
}
.featured_collection_slider .slider_col {
  width: 100%;
}

.featured_collection_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.featured_collection_slider .swiper-button-disabled {
  background: transparent !important;
  opacity: 1;
}
.featured_collection_slider .swiper-button-next,
.featured_collection_slider .swiper-button-prev {
  padding: 7px;
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
}
.featured_collection_slider .arrow svg path {
  stroke: black !important;
  fill: none !important;
  stroke-width: 2 !important;
}
.featured_collection_slider .swiper-button-next::after,
.featured_collection_slider .swiper-button-prev::after {
  content: unset;
}
.featured_collection_slider svg.cart_btn_svg {
  width: 70px;
  height: 70px;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
}
.featured_collection_slider .slider_inner {
  position: relative;
}

.featured_collection_slider .cart_btn {
  width: max-content;
  height: max-content;
  padding: 18px;
  border-radius: 50%;
  background: {{section.settings.bg_color}};
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -50px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  cursor: pointer;
}

@media (max-width:767px){
    .featured_collection_slider .swiper-slide-active .cart_btn {
  display: flex !important;
}
  .featured_collection_slider .swiper {
      padding: 0 60px 30px;
          .swiper-wrapper {
               .swiper-slide { 
                transition:.4s all ease;
                
                &.swiper-slide-prev {
                  transform: scale(.8);
                  transform-origin:right center;
                }
                &.swiper-slide-next {
                   transform: scale(.8);
                  transform-origin:left center;
                }
                
              }
            }
      
  }
}
@media (min-width:768px) {
  .featured_collection_slider .swiper-slide-active + .swiper-slide+.swiper-slide .cart_btn {
    display: flex !important;
  }

.featured_collection_slider .swiper {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 32px;

  .swiper-wrapper {
      align-items: center;
      height: 520px;

      .swiper-slide {
        height: 400px;
        transition: height 0.8s ease, width 0.8s ease;
        width: calc(16% - 10px) !important;
        margin-right: 10px;

        img {
          transition: 0.8s all ease;
          transform: scale(0.9);
        }
      }

    .swiper-slide-active + .swiper-slide,
    .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
        height: 460px;
      }

    .swiper-slide-active + .swiper-slide + .swiper-slide {
        width: calc(36% - 10px) !important;
        height: 520px;

        img {
          transform: scale(1);
        }
      }
    }
  }
}


.featured_collection_slider .title_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
.featured_collection_slider .collection_btn {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  background: unset;
  border: unset;
  line-height: 120%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
}
.featured_collection_slider .collection_btn strong {
  font-size: 32px;
}
.featured_collection_slider .collection_btn.active {
  opacity: 1;
}
.featured_collection_slider .collection_btn:last-child::after {
  display:none;
}
.featured_collection_slider .border_bottom{
  height: 2px;
  width: 50%;
  margin: 80px auto 0;
  background-color: #fff;
  display: block;
}
@media (max-width: 991px){
  .featured_collection_slider .collection_btn strong {
    font-size: 20px;
    line-height:25px;
  }
  .featured_collection_slider .collection_btn {
    font-size: 12px;
    line-height:18px;
    margin:5px;
  }

  .featured_collection_slider svg.cart_btn_svg {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
  .featured_collection_slider .cart_btn {
    padding: 10px;
    bottom: -35px;
  }
  .featured_collection_slider .title_inner {
    flex-direction: row;
    gap: 5px;
    align-items: baseline;
  }
  .featured_collection_slider .collection_btn{
    width: 100%;
    text-align: left;
  }
  .featured_collection_slider .border_bottom {
    width: 60%;
    margin: 50px auto 0;
  }
}
@media (max-width: 767px){
  .featured_collection_slider .swiper-slide{
    height: 250px;
  }
}
@media (max-width: 450px) {
  .featured_collection_slider .border_bottom {
      width: 75%;
      margin: 35px auto 0;
  }
}