/* Product card */

.oc-product-card {
  margin: 0 0 22px;
  background: #fff;
}

.oc-product-card__image {
  overflow: hidden;
  border-radius: 3px;
}

.oc-product-card__image img {
  display: block;
  width: 100%;
  /* aspect-ratio: 1.04 / 1; */
  aspect-ratio: 335 / 324;
  object-fit: cover;
}

.oc-product-card__caption {
  display: table;
  width: 100%;
  padding: 7px 0 8px;
}

.oc-product-card__title,
.oc-product-card__price {
  display: table-cell;
  margin: 0;
  vertical-align: top;
}

.oc-product-card__title {
  font-size: 15px;
  font-weight: 400;
}

.oc-product-card__title a {
  color: #173913;
}

.oc-product-card__price {
  color: #3B741E;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.oc-product-card__cart {
  width: 100%;
  height: 39px;
  border: 1px solid #d5e2d2;
  border-radius: 3px;
  background: #fff;
  color: #3B741E;
  font-size: 16px;
  font-weight: 700;
}

.oc-product-card__cart:hover,
.oc-product-card__cart:focus {
  border-color: #3B741E;
  color: #3B741E;
}
