/* SCOPED CUSTOM STYLING ONLY FOR THE PRODUCT CARD */
.custom-product-card {
  background-color: #fff;
  padding: 20px;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 20px auto;
}

.custom-product-card .product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.custom-product-card .product-title {
  font-size: 1.5rem;
  margin: 15px 0 10px;
}

.custom-product-card .product-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.custom-product-card .product-button {
  padding: 10px 20px;
  background-color: #1e88e5;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-product-card .product-button:hover {
  background-color: #1565c0;
}


.navbar-brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 700; /* Bold */
      color: black;
      font-size: 24px;
      text-decoration: none;
    }