*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease-in-out;
  }
   
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #181C14   ;
    color: #fff;
    padding-top: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2); 
  }
  
 #feachers{
  margin-right: 60%;
 }
  
  .sidebar h4 {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    cursor: pointer;
    letter-spacing: 1px;
  }
  
  .sidebarIMG {
    display: block;
    margin: 20px auto;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 50%;
    border: 3px solid #697565; 
  } 
  
  #profile-name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-style: italic;
    font-weight: 600; 
  }

#main-content {
  background-color: #f4f6f8;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: calc(100% - 250px);
  position: absolute;
  right: 0;
}
 
.main-product {
  background-color: #ffffff1d; 
  border-radius: 10px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;  
  text-align: center; 
  margin: 10px;  
  width: 350px; 
  display: inline-block;  
   
}
 
.main-product:hover {
  transform: translateY(-5px);  
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}
 
.main-product img {
  width: 100%; 
  height: 200px;  
 border-radius: 10px; 
  object-fit: cover;  
  transition: transform 0.3s ease;  
  margin-bottom: 15px; 
}
 
.main-product:hover img {
  transform: scale(1.05);  
}
 
.main-product h3 {
  font-size: 18px;  
  font-weight: bold;  
  color: #181C14; 
  margin-top: 10px; 
  margin-bottom: 5px;  
}

.main-product:hover h3 {
  color: #697565; 
}

.main-product p:first-of-type {
  font-size: 16px; 
  font-weight: bold;  
  color: #181C14;  
  margin: 8px 0; 
}
 
.main-product p:last-of-type {
  font-size: 16px;  
  color: #666;  
  margin-bottom: 10px;  
}
 
@media (max-width: 768px) {
  .main-product {
      width: 100%;  
      margin-bottom: 20px; 
  }
}


#feachers {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin: 20px 0 20px 270px; 
  padding: 10px;
  width: 80%;
  background-color: #f4f6f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
}
 
#feachers input[type="text"] {
  width: 300px;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #ccc;
  transition: border 0.3s ease;
}

#feachers input[type="text"]:focus {
  outline: none;
  border-color: #697565;
}
 
#feachers #searchBtn {
  padding: 8px 20px;
  background-color: #697565;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#feachers #search-btn:hover {
  background-color: #697565c1;
}

#sort{
  padding: 10px 20px;
  background-color: #697565;
  color: #fff;
  outline: none;
  border-radius:5px ;
}

#filter {
  position: relative;
  left: 20%;
  padding: 10px 20px;
  background-color: #697565;
  color: #fff;
  outline: none;
  border-radius:5px ;
}
#filter-btns, #sort-btns {
  display: flex;
  gap: 10px;
}

#feachers .btn {
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 5px;
  background-color: #697565;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#feachers .btn:hover {
  background-color: #697565c1;
  transform: translateY(-3px); 
}
 
@media (max-width: 768px) {
  #feachers {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #feachers input[type="text"] {
    width: 100%;
  }

  #filter-btns, #sort-btns {
    flex-wrap: wrap;
    gap: 5px;
  }
}
