.product-slider-container {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  margin: 0 5px;
  max-width: 150px;
  /* Reduce width */
}

.product-image {
  max-width: 100%;
  text-align: center;
  /* border-radius: 10px; */
  /* height: 120px;  */
}

.product-card h3 {
  font-size: 16px;
  /* Reduce font size */
  font-weight: bold;
  margin-top: 10px;
}

.product-unit {
  font-size: 14px;
  /* Reduce font size */
  color: gray;
}

.product-price {
  font-size: 18px;
  /* Reduce font size */
  color: black;
  margin: 10px 0;
}

.quantity-add {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.quantity {
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

.add-button {
  background-color: black;
  color: white;
  border: none;
  padding: 5px 15px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.add-button:hover {
  background-color: darkgray;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.subscribe-button {
  background-color: #e1a95f;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.subscribe-button:hover {
  background-color: #d18b45;
}

.subscribe-button:active {
  background-color: #d18b45 !important;
}