.product-gallery-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0px 50px;
}

.product-gallery-container .title b{
    color: #349ba4;
    font-weight: 700;
}

.gallery{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .product-img{
    width: 300px;
    margin: 10px;
}
.gallery .product-img img{
    width: 100%;
    height: 225px;
    border-radius: 7px;
    transition: all 0.2s ease-in-out;
}

.gallery .product-img img:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.bullet-list {
  list-style-type: disc; 
  padding-left: 1.5rem;  
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  background-color: #000;
  color: #ccc;
}

.bullet-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;      
}

.slider-container{
    background-color: #000;
    flex-direction: column;
    color: #fff;
}

.slider-thumbnail{
    z-index: 1;
}