body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f9fa;
}
.navbar-brand {
  font-weight: bold;
  color: #e83e8c;
}
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("./images/homebanner.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 0;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
h2.section-title {
  margin: 20px 0px;
}
.product-card {
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: scale(1.03);
}
.product-card .card-body {
  flex-grow: 1;
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.wholesale-cta {
  background-color: #e83e8c;
  color: white;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.btn-bloom{
  background-color:#e83e8c;
  color: white;
  padding: 10px;
  text-align: center;
  margin: 10px 0;
  transition: 0.3s all ease;
  border: none;
}

.btn-bloom:hover{
  background-color: #f02d88;
}

.footer {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
}