   .share  .social-icons a {
  width: 20px;
  height: 20px; 
  text-align: left;
  display: inline-block; 
  transition: all 0.5s; 
  margin: 0px 5px 0px 5px; 
}
  .share .social-icon-facebook {     
  background-image: url(assets/images/facebook.png);
  background-size: 100%;
  }
  .share  .social-icon-linkedin {     
  background-image: url(assets/images/linkedin.png);
  background-size: 100%;
  }
  
  .share .social-icons a:hover {
  background-color: purple;
}

 .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; 
}

.product {
  flex-basis: 30%;
  margin-bottom: 20px; 
}

.product img {
    max-width: 100%;

}
.page-number {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 10px;
  background-color: #ccc;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
}

.page-number.active {
  background-color: #000;
  color: #fff;
}
  
.link-box {
        display: inline-block; 
        background-color: purple;
        padding: 2px 5px;   
        border-radius: 5px;   
        text-align: center;  
        margin: 2px;          
    }
.link-box a {
        text-decoration: none; 
        color: white;         
    }

.link-box, .cart {
        display: inline-block; 
        background-color: purple;
        padding: 2px 5px;    
        border-radius: 5px;  
        text-align: center;    
        margin: 2px;           
    }

.link-box a, .cart a {
        text-decoration: none; /* Remove underline from the link */
        color: white;         
    }
#textquantity{
        width: 100px;       
    }
.feedback {
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    flex-direction: row;   
    margin-top: 5px;
}

.feedback_photo img {
    width: 150px;
    height: 200px;
    border-radius: 50%;
}

.feedback_detail {
    max-width: 400px;
    margin: 0 auto;
    display: flex;    
    text-align: center;
    align-items: center;
    flex-direction: column;
}
.feedback_content, h5 {
    margin-top: 10px;   
}
.boldtext{
    font-weight: bold;   
}
@media only screen and (max-width: 992px) {
.feedback_photo img {
        width: 60%;
        height: auto;
        margin-left: 0;
        border-radius: 50%;
    }

.feedback_detail {
        max-width: 300px;
        margin: 0 auto;
        display: flex;    
        text-align: center;
        align-items: center;
        flex-direction: column;
    }

.feedback {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-left: 0;
    }
@media only screen and (max-width: 768px) {
.feedback_photo img {
        width: 40%;
        height: auto;
        margin-left: 0;
        border-radius: 50%;
    }

.feedback_detail {
        max-width: 220px;
        margin: 0 auto;
        display: flex;    
        text-align: center;
        align-items: center;
        flex-direction: column;
    }

.feedback {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-left: 0;
    }