/*
 * Homepage product recommendation enhancement.
 * Deliberately scoped so the rest of the site keeps its original presentation.
 */
.home-products-section {
  --product-ink: #172033;
  --product-muted: #748094;
  --product-line: #e7eaf0;
  --product-soft: #f5f7fa;
  --product-accent: #f5b700;
  --product-red: #e33b36;
}

.home-products-section .product_head {
  margin: 0;
  padding: 74px 15px 28px;
}

.home-products-section .product_head h2 {
  margin: 0;
  color: var(--product-ink);
  font-family: inherit;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  text-align: center;
}

.home-products-section .product_head h2:after {
  display: none;
}

.home-products-section .product_head p {
  margin: 8px 0 0;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.home-products-section .product_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  padding: 0 0 44px;
}

.home-products-section .product_list:before,
.home-products-section .product_list:after,
.home-products-section .bxslider2:before,
.home-products-section .bxslider2:after {
  display: none;
}

.home-products-section .product_list .bxslider2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.home-products-section .product_img {
  margin: 0 0 24px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-products-section .product_img:hover {
  transform: none;
  box-shadow: none;
}

.home-products-section .product_img > a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 18px;
  background: var(--product-soft);
  box-shadow: 0 10px 30px rgba(23, 32, 51, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-products-section .product_img > a:after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--product-accent);
  color: var(--product-ink);
  content: "\2197";
  font-size: 19px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.home-products-section .product_img > a:hover {
  border-color: #dfe3e9;
  box-shadow: 0 14px 40px rgba(23, 32, 51, .08);
  transform: translateY(-5px);
}

.home-products-section .product_img > a:hover:after {
  opacity: 1;
  transform: translateY(0);
}

.home-products-section .product_img img,
.home-products-section .product_img .img-thumbnail {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--product-soft);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-products-section .product_title {
  height: auto;
  min-height: 54px;
  margin: 0;
  padding: 16px 8px 0;
  text-align: left;
}

.home-products-section .product_title a {
  color: var(--product-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.home-products-section .product_title a:hover {
  color: var(--product-red);
}

@media screen and (max-width: 767px) {
  .home-products-section .product_head {
    padding: 48px 15px 22px;
  }

  .home-products-section .product_head h2 {
    font-size: 28px;
  }

  .home-products-section .product_list {
    margin-right: -8px;
    margin-left: -8px;
    padding-bottom: 24px;
  }

  .home-products-section .product_img {
    padding-right: 8px;
    padding-left: 8px;
  }

  .home-products-section .product_img > a {
    border-radius: 13px;
  }

  .home-products-section .product_title {
    min-height: 50px;
    padding: 11px 2px 0;
  }

  .home-products-section .product_title a {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .home-products-section .product_img {
    width: 50%;
  }

  .home-products-section .product_img > a:after {
    display: none;
  }
}
