.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-details {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-details .price-container {
  display: flex;
  align-items: center;
}

.product-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eaecf0;
}

.product-details .dogpack-btn-primary {
  width: 100%;
  color: #fff !important;
  height: 50px;
}

.product-details .dogpack-btn-primary .cart-icon {
  width: 20px;
  height: 20px;
}

.product-details .add-to-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-control {
  width: 100%;
  position: relative;
}

.decrease-btn{
  position: absolute;
  z-index: 99;
  color: #fff;
  font-size: 50px;
  top: 23px;
  line-height: 0px;
  left: 14px;
}

.increase-btn{
  position: absolute;
  z-index: 99;
  color: #fff;
  font-size: 50px;
  top: 23px;
  line-height: 0px;
  right: 14px;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  margin-right: 8px;
}

.product-old-price {
  font-size: 14px;
  text-decoration: line-through;
}

.sale-badge,
.new-badge {
  position: absolute;
  top: 12px;
  right: 28px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 16px;
  z-index: 1;
}

.sale-badge {
  background-color: #ff5c5c;
  color: white;
}

.new-badge {
  background-color: #5cba47;
  color: white;
}