.product-item {
  padding: 10px;
}

.product-item .product-container {
  text-align: left;
  background-color: #ffffff;
  border: 2.4px dashed var(--bs-secondary);
  border-radius: 16px;
  box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.08);
  padding: 25px;
}

.product-item h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 25px;
  font-weight: 900;
}

.product-item h2 a {
  text-decoration: none;
  color: #4e4e4e;
}

.product-item p.product-description {
  margin-top: 20px;
  color: #5d5d5d;
  line-height: 1.45;
  white-space: normal;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product-item button {
  border-radius: 30px;
  background: var(--color-orange);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
  border: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 13px;
  padding: 8px 8px;
}

.product-item button:active {
  background: var(--color-orange);
  color: #fff;
  border: 0;
}

.product-item button:focus {
  background: var(--color-orange);
  outline: none;
  color: #fff;
}

.product-item button:hover {
  background: var(--color-orange);
  color: #fff;
}

.product-item button:focus:active {
  background: #87bae1;
  outline: none;
  color: #fff;
}

.product-item .product-price {
  color: #4e4e4e;
  font-weight: bold;
  font-size: 20px;
  padding-top: 5px;
  text-align: right;
}

