.Sheared_Product_card {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  border: 1px solid #3a3a3a;
}

.Sheared_Product_card .img_content_holder {
  /* position: relative; */
}

.Sheared_Product_card .img_content_holder .img_holder {
  /* border-radius: 8px; */
  /* border: 1px solid #adb5bd; */
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
}

.Sheared_Product_card .img_content_holder .img_holder .Product_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px 8px 0px 0px;
  transition: all 0.3s ease-in-out;
}

.Sheared_Product_card:hover .img_content_holder .img_holder .Product_img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.Sheared_Product_card .img_content_holder .overlay_holder {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.Sheared_Product_card:hover .img_content_holder .overlay_holder {
  transition: all 0.3s ease-in-out;
  opacity: 0.45;
}

.Sheared_Product_card .img_content_holder .icon_holder {
  position: absolute;
  top: 45%;
  left: 0px;
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.Sheared_Product_card:hover .img_content_holder .icon_holder {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.Sheared_Product_card .img_content_holder .icon_holder .feature_icon {
  font-size: 22px;
  color: #7c0000;
  margin: 0px 10px;
  cursor: pointer;
}

.Sheared_Product_card .text_holder {
  /* background: #f6eedc 0% 0% no-repeat padding-box; */
  /* position: absolute; */
  bottom: 0px;
  left: 0px;
  width: 100%;
  border-radius: 0px 0px 8px 8px;
  padding: 10px;
}

.Sheared_Product_card .text_holder p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;

}

@media (min-width: 0px) and (max-width: 575px) {
  .Sheared_Product_card .text_holder p {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
  }
}


@media (min-width: 576px) and (max-width: 1399px) {
  .Sheared_Product_card .text_holder p {
    font-size: 14px;
  }
}