body {
  font-family: Arial, sans-serif;
  background-color: #cce7ff;
  margin: 0;
  padding: 0;
}

header {
  background-color: #e1edee;
  padding: 20px;
  text-align: center;
}

.search-bar {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.search-bar input {
  padding: 10px;
  width: 50%;
  border-top-left-radius: 15px;
  border: 1px solid #ccc;
  border-bottom-left-radius: 15px;
  height: 4vh;
}

.search-bar button {
  padding: 10px 15px;
  background-color: #cce7ff;
  color: white;
  border: none;
  cursor: pointer;
}

.filters {
  padding: 20px;
  background-color: #e1edee; /* Light background to match header */
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  margin-right: 5%;
  margin-top: 20px;
  font-family: Arial, sans-serif;
}

.filters h2 {
  font-size: 24px;
  color: #0047ab; /* Dark blue to highlight titles */
  margin-bottom: 20px;
}

.filters label {
  font-weight: bold;
  color: #333;
}

.filters input,
.filters select {
  width: 100%;
  padding: 8px;
  margin: 8px 0 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  color: #0047ab;
}

.filters input:focus,
.filters select:focus {
  outline: none;
  border-color: #0047ab; /* Focus color to match theme */
}

.filters select {
  cursor: pointer;
}

.filters button {
  width: 100%;
  padding: 10px;
  background-color: #0047ab;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filters button:hover {
  background-color: #003580;
}

.product-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.product-card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 250px;
  margin-bottom: 20px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  margin: 10px 0;
}

.product-card p {
  margin: 5px 0;
  color: #0047ab;
  font-weight: bold;
}

.product-card .price {
  font-size: 18px;
  color: #333;
}

.product-card .discount {
  text-decoration: line-through;
  color: red;
}
