/*============================================================================================
	Start Product Card CSS 
==============================================================================================*/
.product-card.style1 {
  border-radius: 16px;
  border: 1px solid #e2eaf9;
  background: #fff;
  margin: 2px 0px;
}
.product-card.style1 .product-img {
  border-radius: 16px 16px 0px 0px;
  overflow: hidden;
  display: block;
}
.product-card.style1:hover .product-img img {
  transform: scale(1.04);
}
.product-card.style1 .product-img img {
  width: 100%;
  border-radius: 16px 16px 0px 0px;
}
.product-card.style1 .product-content {
  padding: 24px;
}
.product-card.style1 .product-content p {
  margin: 0;
}
.product-card.style1 .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.product-card.style1 .product-label {
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.product-card.style1 .product-label.new {
  background: #dbeafe;
  color: #1e40af;
}
.product-card.style1 .product-label.discount {
  background: #dcfce7;
  color: #166534;
}
.product-card.style1 .product-label {
  background: #f3e8ff;
  color: #6b21a8;
}
.product-card.style1 .product-title {
  color: var(--title-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 8px;
}
.product-card.style1 .product-title:hover {
  color: var(--primary-color);
}
.product-card.style1 .product-info {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.product-card.style1 .product-price {
  display: flex;
  align-items: center;
  margin: 0;
}
.product-card.style1 .product-price span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.product-card.style1 .product-price del {
  color: #6b7280;
}
.product-card.style1 .product-btn .theme-btn {
  padding: 4px 20px;
  height: 40px;
}
.product-card.style1 .product-meta .stock {
  color: #6b7280;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media only screen and (max-width: 767px) {
  .product-card.style1 .product-price {
    flex-wrap: wrap;
  }
  .product-card.style1 .product-info {
    margin-top: 12px;
    flex-wrap: wrap;
  }
  .product-card.style1 .product-btn {
    margin-top: 12px;
  }
  .product-card.style1 .product-title {
    font-size: 18px;
    line-height: 130%;
  }
}
/*============================================================================================
    End Product Card CSS 
==============================================================================================*/
