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

.product-single-card {
  margin-top: 40px;
  background: var(--white-color);
}
.product-single-card {
  margin-top: 40px;
  background: var(--white-color);
  padding: 32px 24px;
  box-shadow: 0px 4px 8px rgba(6, 40, 61, 0.12);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.product-single-card:hover {
  transform: scale(1.01);
  box-shadow: 0px 24px 72px rgba(6, 40, 61, 0.12);
}
.product-card-info {
  margin-top: 20px;
}
.product-card-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.product-card-price .off-price {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--paragraph-color);
  font-weight: 600;
  opacity: 0.4;
  margin-left: 6px;
}
.product-card-btn {
  margin-top: 18px;
}
.product-card-cont-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}
.product-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}
.product-card-price {
  display: flex;
  align-items: center;
}

.product-card-btn .btn {
  padding: 14px 24px;
}
/*================================================================================================
	End Our Product Area
==================================================================================================*/
