/*================================================================================================
	Our Product Area
==================================================================================================*/
.product-card.style3 {
  background: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 40px;
}
.product-card.style3:hover {
  box-shadow: 0px 24px 48px rgba(26, 26, 46, 0.08);
}
.product-card.style3 .product-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0px;
}
.product-card.style3 .product-card-content {
  padding: 16px 12px;
  text-align: center;
}
.product-card.style3 .product-card-title {
  font-size: 18px;
  font-weight: 600 !important;
  margin: 0;
}
.product-card.style3 .product-card-price {
  font-size: 16px;
  font-weight: 500 !important;
  margin-bottom: 8px;
}
.product-card.style3 .product-card-main-price {
  color: var(--primary-color);
}
.product-card.style3 .product-card-discount {
  color: #999a9a;
  margin-right: 8px;
}
.product-card.style3 .ISPTemplateV1-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.product-card.style3 .ISPTemplateV1-btn {
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 500;
  display: inline-block;
  margin-right: 18px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  border-radius: 0px;
}
.product-card.style3 .product-card-btn .ISPTemplateV1-btn {
  padding: 5px 24px;
  line-height: 30px;
}
.product-card.style3 .product-card-btn .ISPTemplateV1-btn i {
  font-size: 16px;
  margin-left: 8px;
}

.product-card.style3 .product-card-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s ease;
}
.product-card.style3:hover .product-card-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}
.product-card.style3 .product-card-content-top {
  transition: all 0.4s ease;
  transform: translateY(50%);
}
.product-card.style3:hover .product-card-content-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
}
.product-card.style3 .product-card-img {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card.style3 .product-card-price-off {
  position: absolute;
  top: 12px;
  right: 12px;
  background:  var(--primary-color);
  padding: 6px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 120%;
  z-index: 3;
}
.product-card.style3 .product-card-price-off.none {
  display: none;
}
.product-card.style3:hover .product-card-img img {
  transform: scale(1.1);
}
.product-card.style3 .product-section-bottom {
  text-align: center;
  margin-top: 56px;
}
.product-card.style3 .product-section-bottom .ISPTemplateV1-btn i {
  margin: 0;
  margin-right: 8px;
  font-size: 15px;
  position: relative;
  top: 2px;
}
#offcanvasRight2 {
  display: block !important;
}

/*================================================================================================
	End Our Product Area
==================================================================================================*/
