.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#product_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background-color: #f9f9fb;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Main_div {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.Main_div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.Main_div h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.Main_div img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.Main_div h3 + h3 {
  font-size: 20px;
  color: #e91e63;
  margin: 10px 0;
  font-weight: bold;
}

.Main_div p {
  font-size: 18px;
  margin-top: 10px;
  color: #3f3c38;
}

.sortingsearching,
.lowtohigh,
.filter-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

#searchInput {
  padding: 10px 15px;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  transition: box-shadow 0.3s;
}

#searchInput:focus {
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button:active {
  transform: scale(0.98);
}

select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background-color: #fff;
  transition: border-color 0.3s;
  cursor: pointer;
}

select:focus {
  border-color: #007bff;
}

option:hover {
  background-color: #007bff;
  color: white;
}
