/* Hair Extensions Wigs */
.hair-product-image {
  max-width: 193px;
  max-height: 193px;
  background-color: #D9D9D9;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto 10px;
}
.hair-product-image img  {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hair-product-block {
  text-align: center;
  margin-bottom: 20px;
}
.hair-product-content h2 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #17242A;
  margin-bottom: 0;
}
.hair-product-block:hover h2 {
  color: #F59635;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .hair-product-image {
    max-width: 180px;
    max-height: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .hair-product-content h2 {
    font-size: 12px;
    line-height: 16px;
  }
  .hair-product-image {
    max-width: 160px;
    max-height: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .hair-product-image {
    max-width: 140px;
    max-height: 140px;
  }
 
}
@media only screen and (max-width: 575px) {
  .hair-product-image {
    max-width: 120px;
    max-height: 120px;
  }
}
@media only screen and (max-width: 480px) {
  .hair-product-image {
    max-width: 80px;
    max-height: 80px;
  }
}



