/*Scarousel common style start*/
.section__scarousel-head {
  padding-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.section__scarousel-head-center {
  padding-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

  .section__scarousel-head .title,
  .section__scarousel-head-center .title {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: normal;
    color: #444;
  }

  .section__scarousel-head .section-link {
    display: inline-block;
    border: 0;
    background-color: #4ab2f1;
    padding: 10px 20px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 15px;
  }

    .section__scarousel-head .section-link:hover {
      background-color: #248ece;
    }

.section__scarousel-grid .section__scarousel-container {
  position: relative;
  min-height: 200px;
}

.section__scarousel-grid .scarousel-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (min-width: 576px){
  .section__scarousel-head {
    
    flex-direction: row;
  }
    .section__scarousel-head .section-link {
     
      margin-top: 0;
    }
}
/*Scarousel common style end*/


/*Category Container style start*/
.category-container {
  animation: fadeIn 1s;
}

.category-slider .category-slider__image img {
  width: 100%;
  height: 100%;
}

.category-slider .category-name {
  font-weight: normal;
  font-size: 18px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.category-slider .splide__arrow {
  background: #4ab2f1;
  opacity: 1;
}

  .category-slider .splide__arrow svg {
    fill: white;
  }

.category-slider .splide__pagination {
  bottom: -20px;
  gap: 3px;
  
}

.category-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  opacity: 1;
}

  .category-slider .splide__pagination__page.is-active {
    background: #4ab2f1;
  }

/*Category Container style end*/



/*product Container style start*/
.product-container {
  animation: fadeIn 1s;
}

.product-slider .splide__arrow {
  background: #4ab2f1;
  opacity: 1;
}

  .product-slider .splide__arrow svg {
    fill: white;
  }

.product-slider .splide__pagination {
  bottom: 0;
  gap: 3px;
  
}

.product-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  opacity: 1;
}

  .product-slider .splide__pagination__page.is-active {
    background: #4ab2f1;
  }

.section__scarousel-grid .product-slider .item-box {
  width: 100%;
  margin: 0 .5% 30px;
}


  /*Product Container style end*/



  /*Manufacturer Container style start*/

  .manufacturer-container {
    animation: fadeIn 1s;
  }

    .manufacturer-container .manufacturer-item .picture {
      margin-bottom: 10px;
      border: 1px solid #ddd;
    }

    .manufacturer-container .item-grid {
      display: flex;
    }

    .manufacturer-container .picture img {
      width: 100%;
    }

  .manufacturer-slider .splide__arrow {
    background: #4ab2f1;
    opacity: 1;
  }

    .manufacturer-slider .splide__arrow svg {
      fill: white;
    }

  .manufacturer-slider .splide__pagination {
    bottom: 0;
    gap: 3px;
  }

  .manufacturer-slider .splide__pagination__page {
    width: 6px;
    height: 6px;
    opacity: 1;
  }

    .manufacturer-slider .splide__pagination__page.is-active {
      background: #4ab2f1;
    }

  /*Manufacturer Container style end*/

/*vendor Container style start*/

.vendor-container {
  animation: fadeIn 1s;
}

  .vendor-container .vendor-item .picture {
    margin-bottom: 10px;
    border: 1px solid #ddd;
  }

  .vendor-container .item-grid {
    display: flex;
  }

  .vendor-container .picture img {
    width: 100%;
  }

.vendor-slider .splide__arrow {
  background: #4ab2f1;
  opacity: 1;
}

  .vendor-slider .splide__arrow svg {
    fill: white;
  }

.vendor-slider .splide__pagination {
  bottom: 0;
  gap: 3px;
}

.vendor-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  opacity: 1;
}

  .vendor-slider .splide__pagination__page.is-active {
    background: #4ab2f1;
  }

/*vendor Container style end*/

/*product review Container style start*/

.section__scarousel-grid .carousel-review-box {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-height: 800px;
  margin-bottom: 30px;
  text-align: center;
}

.section__scarousel-grid .carousel-review-box__rating {
  padding: 10px 0;
  color: #f4a261;
}

  .section__scarousel-grid .carousel-review-box__rating .rating {
    display: inline-block;
    background: url('../images/rating1.png') repeat-x;
    width: 100px;
    height: 20px;
    background-size: 20px;
  }

    .section__scarousel-grid .carousel-review-box__rating .rating div {
      background: url('../images/rating2.png') repeat-x;
      height: 20px;
      background-size: 20px;
    }

.section__scarousel-grid .carousel-review-box__title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin: 0 0 10px 0;
}


.carousel-review-box__review-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em;
  height: 65px;
}

.carousel-review-box__author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-direction: column;
}

.carousel-review-box__author-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 0 5px 0;
}

.carousel-review-box__author-info {
  font-size: 12px;
  color: #888;
}

.carousel-review-box__author-info__name {
  font-weight: 500;
  color: #333;
}

.carousel-review-box__product {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.carousel-review-box__product-image img {
  width: 50px;
  height: 50px;
  margin: 0 0 5px 0;
}

.carousel-review-box__product-info {
  font-size: 12px;
}

.carousel-review-box__product-info__name {
  color: #333;
  margin-bottom: 5px;
}


.carousel-review-box__product-info__price .old-price {
  color: #aaa;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 16px;
}

.carousel-review-box__product-info__price .actual-price {
  margin: 0 5px 0 0;
  font-size: 16px;
  color: #f4a261;
  font-weight: 600;
}

.carousel-review-box__product-info__pric .tax-shipping-info a {
  color: #4ab2f1;
}

  .carousel-review-box__product-info__pric .tax-shipping-info a:hover,
  .carousel-review-box__product-info__pric .tax-shipping-info a:focus {
    text-decoration: underline;
  }


.product-review-container {
  animation: fadeIn 1s;
}

.product-review-slider .splide__arrow {
  background: #4ab2f1;
  opacity: 1;
}

  .product-review-slider .splide__arrow svg {
    fill: white;
  }

.product-review-slider .splide__pagination {
  bottom: 0;
  gap: 3px;
}

.product-review-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  opacity: 1;
  background: #ccc;
}

  .product-review-slider .splide__pagination__page.is-active {
    background: #4ab2f1;
  }

@media only screen and (min-width: 576px) {
  .section__scarousel-grid .carousel-review-box {
    text-align: left;
  }

  .carousel-review-box__author {
    flex-direction: row;
  }
  .carousel-review-box__product {
    flex-direction: row;
  }

  .carousel-review-box__author-image img {
    margin: 0 10px 0 0;
  }
  .carousel-review-box__product-image img {
    margin: 0 10px 0 0;
  }
}
/*Product review Container style end*/



  /*Animation fadein style start*/
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /*Animation fadein style end*/
