/*============================================================================================
	Start Product Card CSS 
==============================================================================================*/
.product-area {
  background: linear-gradient(0deg, #f7faff, #f7faff),
    linear-gradient(90deg, #f7faff 0%, rgba(247, 250, 255, 0) 100%);
}
.product-page {
  padding: 40px 0px 120px !important;
}
.product-card.style2 {
  margin-top: 32px;
  box-shadow: 0px 2px 4px rgba(8, 32, 50, 0.12);
  border-radius: 8px;
  background: var(--white-color);
  transition: all 0.4s ease;
}
.product-card.style2:hover {
  box-shadow: 0px 24px 72px rgba(8, 32, 50, 0.12);
}
.product-card.style2 .product-card-img {
  position: relative;
}
.product-card.style2 .product-card-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}
.product-card.style2 .product-discount-badge {
  background: var(--accent-color);
  color: var(--white-color);
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  border-radius: 16px;
  padding: 6px 12px;
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 16px;
}

.product-card.style2 .product-info{
	margin: 0;
}

.product-card.style2 .product-card-content {
  padding: 20px;
}
.product-card.style2 .product-card-title a{
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 8px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card.style2:hover .product-card-title a{
  color: var(--primary-color);
}
.product-card.style2 .product-card-price {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  font-size: 18px;
  line-height: 160%;
}

.product-card.style2 .product-card-price .product-card-main-price{
  margin-left: 6px;
}


.product-card.style2 .product-card-btns {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
}
.product-card.style2 .product-card-btns .theme-btn {
  background: var(--accent-color);
  padding: 12px 20px;
  color: var(--white-color) !important;
  border-radius: 4px;
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
  font-size: 15px;
  text-wrap: nowrap;
  margin-right: 0px;
  width: auto;
  text-align: center;
  line-height: 100% inherit !important;
padding: 6px 16px;
}


.product-card.style2 .product-card-btns .theme-btn:hover{
  background: var(--secondary-color);
}

.product-card.style2 .product-card-btns .theme-btn.transparent-btn {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color) !important;
}
.product-card.style2 .product-card-btns .theme-btn.transparent-btn:hover {
  background: var(--accent-color);
  color: var(--white-color) !important;
}


.product-card.style2 .product-card-header-btn:hover{
  background: var(--primary-color);
  color: var(--white-color) !important;
}
.product-card.style2 .product-card-header-btn{
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  border-radius: 4px;
  height: 50px;
  padding: 12px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  text-wrap: nowrap;
  margin-left: 0 auto;
}


@media only screen and (max-width: 767px) {
   .product-page {
    padding: 40px 0px 56px !important;
  }
  .product-card.style2 .product-card-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-card.style2 .product-card-img img {
    height: 180px;
    object-fit: contain;
  }
  .product-card.style2 .product-card-title {
    font-size: 16px;
  }

  .product-card.style2 .product-card-btns {
    justify-content: left;
  }
  .product-card.style2 .section-head-btn.product-card-head {
    justify-content: center;
  }

		.product-card.style2 .product-card-price{
			font-size: 18px !important;
		}
}

/*============================================================================================
    End Product Area
==============================================================================================*/
