.product-card {
  width: 100%;
  max-width: 296px;
  border-radius: 32px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  background: #fff;
}
@media (max-width:400px) {
	.product-card {
		 max-width: 100%;
	border-radius: 23px;
	}
}
@media (min-width:600px) and (max-width:720px) {
	.product-card {
		 max-width: 100%;
	border-radius: 23px;
	}
}
@media (min-width:400px) and (max-width:600px) {
	.product-card {
		border-radius: 28px;
	}
}
.product-card .product-image {
  width: 100%;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
.product-card .product-image .count-left-show {
  padding: 0 12px;
  height: 24px;
  border-radius: 30px;
  background: #d0d8ff;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
}
.product-card .product-image .count-left-show span {
  font-size: 12px;
  color: #1a1a1a;
  font-weight: 400;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card .product-image:hover img {
  transform: scale(1.2);
}
.content-wrapper {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-wrapper .cat-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.content-wrapper .cat-price .cat {
  font-size: 14px;
  font-weight: 400;
  color: #007c29;
}
.content-wrapper .cat-price .price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.content-wrapper .product-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .color-options {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.product-card .color-options h4 {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.product-card .f-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
