


    /* product description end here  */

  /* for swiper slider  */
  
  
  .mySwiper2 .swiper-slide {
    padding: 10px 40px 40px 40px;
  }
  
  .productSwiper .swiper-slide, .mySwiper2 .swiper-slide {
    text-align: center;
    background: var(--bg-color-1);
    display: flex;
    justify-content: center;
    align-items: center;
  
    background-size: cover;
    background-position: center;
  }
  
  .mySwiper2 {
    width: 80%;
    margin-bottom: 10px;
  }
  
  .productSwiper {
    width: 80%;
    /* height: 70%; */
    box-sizing: border-box;
    padding: 10px 0;
  }
  
  .productSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
  }
  
  .mySwiper2 .swiper-slide img{
    display: block;
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 10/9;
    object-fit: cover;
  }
  
  .productSwiper .swiper-slide img{
    display: block;
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 10/8;
    object-fit: cover;
  }
  
  .productSwiper .swiper-slide-thumb-active {
    opacity: 1;
  }
  
  
  /* --swiper-navigation-color: #000;
  --swiper-pagination-color: #000; */
  
  .swiper-button-next:after,
  .swiper-button-prev:after{
    font-size: 15px !important;
    color: var(--text-secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #f4f4f4;
    background-color: #ffffffe1;
   }
   .swiper-button-next{
  
   }
  
    /* for swiper slider  */

    
  .single-product-title h2{
    font-size: 30px;
    color: var(--heading-color-2);
    margin-bottom: 1rem;

  }

  .single-product-desc{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }

  .single-product-desc p{
    margin: 0;
    text-transform: capitalize;
    font-size: 15px; 
    font-weight: 500;
    color: var(--text-secondary-color);
  }
  .single-product-desc .stock{
    color: var(--theme-color);
    border: 1px solid #ddd;
    padding: 3px 5px ;

  }

  .single-product-desc .price-box{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }

  .single-product-desc .price-box .disc-price{
    font-size: 20px;
    color: var(--theme-color);
    font-weight: 500;
  }
  .single-product-desc .price-box .disc-price i{
    font-size: 20px;
  }

  .single-product-desc .size{
    margin: 0;
    text-transform: uppercase;
  }

  .product-btn .quick-buy{
    border: 0;
    background-color: var(--theme-color);
    padding: 6px 12px;
    border-radius: 5px;
  }
  .product-btn .whatsapp{
    border: 0;
    background-color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 5px;
  }

  .product-btn button{
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    
  }
  .product-btn button a{
    color: #ffffff;
    
  }


  /* product description end here  */


  
 /* trending products start here  */
 .recent-product-main hr:last-child{
  display: none;
 }

 .trending-product-box{
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  padding: 10px;


 }
 .trending-product-box:hover .trending-img img{
  scale: 1.15;
 }

 .trending-desc h5{
  color: var(--text-secondary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
 }
 
 .trending-desc h6{
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 600;
 }
 .trending-desc h6 del{
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
 }

 .trending-hr::after{
  content: "";
  height: 2px;
  width: 190px;
  background-color: var(--theme-color);
  display: block;
  margin: 10px auto 0 auto;
 }
 .trending-img{
  width: 100px;
  height: 100px;
  overflow: hidden;
 }
 .trending-img img{
  width: 100%;
  height: 100%;
  transition: all .5s ease;
  scale: 1;
 }
 /* trending products end here  */


/* product details start here  */


/* product details start here  */



  @media screen and (max-width:576px) {
    .mySwiper2 {
      width: 100%;
    }

    .mySwiper2 .swiper-slide {
      padding: 10px 30px 30px 30px;
    }
    
    .productSwiper {
      width: 100%;
    }

  }