.custom-card {
  height: 100%;
  min-height: 355px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
  border-radius: 3px;
}

.custom-card__header {
  height: 163px;
  position: relative;
}
.custom-card__header img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 103% 0, 103% 87%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.custom-card__header .custom-tag,
.custom-tag {
  position: absolute;
  bottom: 0;
  right: 15px;
  background-color: #f3a712;
  color: #ffffff;
  padding: 5px 10px;
  max-width: 125px;
  min-width: 110px;
  text-align: center;
  text-transform: uppercase;
}
.custom-card__header .item-type {
  position: absolute;
  top: 13px;
  left: 13px;
  background-color: #f2857d;
  color: #ffffff;
  padding: 2px 10px;
  max-width: 125px;
  text-align: center;
  border-radius: 15px;
  font-size: 12px;
}
.custom-card__header .favourite {
  position: absolute;
  top: 13px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 20px;
  width: 35px;
  height: 35px;
}
.custom-card__header .favourite i {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.custom-card__body {
  padding: 10px;
}
.custom-card__body .product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  color: #333333;
}
.custom-card__body .author-name img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
}
.custom-card__body .author-name a {
  font-size: 14px;
  color: #847b7d;
}
.custom-card__body .author-name a:hover {
  color: #007bff;
}
.custom-card__body .author-name {
  font-size: 14px;
  color: #847b7d;
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.custom-card__body .details-info .price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  color: #333333;
}
.custom-card__body .details-info .star-container {
  margin-bottom: 0;
}
.custom-card__body .details-info .star-container .star {
  color: #f9b234;
  font-size: 20px;
}
.custom-card__body .details-info .star-container .total-votes {
  font-size: 14px;
  color: #847b7d;
}
.custom-card__body .details-info .sells-count {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  color: #847b7d;
}
.custom-card__body .details-info .icons-container {
  display: flex;
}
.custom-card__body .details-info .icons-container .icon-holder {
  border: 1px solid #cccccc;
  padding: 3px 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
}
.custom-card__body .details-info .icons-container .icon-holder:hover {
  border: 1px solid #ee6055;
}
.custom-card__body .details-info .icons-container .icon-holder:hover i {
  color: #ee6055;
}
.custom-card__body .details-info .icons-container .icon-holder i {
  color: #cccccc;
}

.custom-card__footer {
  width: 100%;
  background-color: #ee6055;
  color: #ffffff;
  padding: 5px;
  cursor: pointer;
  text-align: center;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.custom-card__footer:hover {
  color: #fff;
}