/* Home product sections +++ */

.oc-home-products {
  padding: 48px 0 56px;
  background: #fff;
}

.oc-home-products__title {
  margin: 0 0 50px;
  color: #173913;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* Bootstrap 3 row converted to flex */
.oc-home-products__grid {
  display: flex;
  flex-wrap: wrap;
}

.oc-home-products__grid:before,
.oc-home-products__grid:after {
  display: none;
}

.oc-home-products__grid > [class*="col-"] {
  display: flex;
  margin-bottom: 22px;
}

.oc-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  background: #fff;
}

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

.oc-product-card__image a {
  display: block;
}

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

.oc-product-card__caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0 8px;
}

.oc-product-card__title {
  min-width: 0;
  margin: 0;
  color: #173913;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

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

.oc-product-card__title a:hover,
.oc-product-card__title a:focus {
  color: #3B741E;
  text-decoration: none;
}

.oc-product-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
  margin: 0;
  color: #3B741E;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.oc-product-card__price .price-new {
  color: #3B741E;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.oc-product-card__price .price-old {
  position: relative;
  display: inline-block;
  margin-bottom: 2px;
  color: #8da08b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.oc-product-card__price .price-old:after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #eb5f79;
  transform: rotate(-8deg);
}

.oc-product-card__actions {
  margin-top: auto;
}

.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;
  box-shadow: none;
}

.oc-product-card__cart:hover,
.oc-product-card__cart:focus,
.oc-product-card__cart:active,
.oc-product-card__cart:active:focus {
  border-color: #3B741E;
  background: #fff;
  color: #3B741E;
  box-shadow: none;
  outline: none;
}

.oc-home-products__more {
  margin-top: 4px;
  text-align: center;
}

.oc-home-products__more-btn {
  min-width: 195px;
  padding: 12px 20px;
  border: 0;
  border-radius: 3px;
  background: #3B741E;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

.oc-home-products__more-btn:hover,
.oc-home-products__more-btn:focus,
.oc-home-products__more-btn:active,
.oc-home-products__more-btn:active:focus {
  background: #2f5f18;
  color: #fff;
  box-shadow: none;
  outline: none;
}

@media (max-width: 767px) {
  .oc-home-products {
    padding: 38px 0 44px;
  }

  .oc-home-products__title {
    margin-bottom: 28px;
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .oc-home-products__grid > [class*="col-"] {
    width: 100%;
  }

  .oc-product-card__caption {
    gap: 12px;
  }
}

/* Home product sections --- */