/* .product { display: flex; flex-wrap: wrap; } */

/* .product-image {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #000;
  text-align: center;
} */

.prod-img-width {
   max-width: 600px;
  /* width: 80%;  */
}
/* .product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  } */

/* .product-details {
  padding: 0 0 0 20px;
} */

.price {
  font-size: 1.4em;
  color: #25d366;
   }

.button {display: inline-block;
   padding: 10px 20px;
   background: #27ae60;
   color: #fff;
   border: none;
   cursor: pointer;
    }

.button:hover {
  background: #219150;
   }

/* .section {
  margin-top: 40px;
   } */

/* .section h2 {
  border-bottom:
  2px solid #eee;
  padding-bottom: 10px;
  } */

.review, .related-product {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px;
  background: #fafafa;
  }

.review-list, .related-products-list {
  display: flex;
  flex-wrap: wrap;
  }

.review {flex: 1 1 300px;
  margin: 10px;
  }

.related-product {flex: 1 1 200px;
   margin: 10px;
   text-align: center;
  }

.productpageaddremove{
    cursor:pointer;
    padding:8px;
    background-color:#39a8af;
}

.product-specs{
    color:#191919;
    /* background-color:white;     */
}

/* .product-specs h3{
    padding:14px 24px !important;
    font-size:2.0rem;
    border-radius:12px;
    vertical-align: top;
} */

/*.headingicon {
   font-size: 2.5rem;
  vertical-align: middle;
   line-height: 1;   
}*/

/* .headingicontext{
    position: relative;
    top: -20px;
} */

/* .product-specs p
{
    margin-left:12px;
} */

/* .product-details ul li {
  position: relative;
  padding-left: 30px; 
} */

/* .product-details ul li::before {
  content: "●"; 
  font-size: 20px; 
  color: #4661AB; 
  position: absolute;
  left: 0;
  top: 2px;
} */

.product-details ul {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  list-style: none !important; /* Remove default bullets */
  padding-left: 20px; /* Space for custom bullets */
}

.product-details ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-details ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid white;
  border-radius: 50%;
  background-color: transparent;
}

