body {
  margin: 0;
  font-family: Arial;
  background: #f4f6fb;
}

.container {
  display: flex;
}

/* Sidebar */
.sidebar {
  width: 70px;
  height: 100vh;
  background: white;
  padding-top: 20px;
  text-align: center;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.logo {
  background: #6c63ff;
  color: white;
  padding: 10px;
  border-radius: 10px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

i:hover{
    color:#6c63ff;
    
}

.sidebar li {
  margin: 20px 0;
  font-size: 18px;
  cursor: pointer; 
}

/* Main */
.main {
  flex: 1;
  padding: 20px;
}

#search {
  width: 300px;
  padding: 10px;
  margin: 20px 0;
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product h3 {
  margin: 10px 0;
}

/* This is for the contact section of the page */
.contact{
  background: whitesmoke;
  font-family: sans-serif;
  border-radius: 10%;
  padding: 7px;
  text-align: left;
  position: fixed;
  display: inline-flexbox;
  

}

.message{
  text-align: center;
  color: #6c63ff;
  font-family: fantasy;
}

.linkc{
  text-decoration: none;
  color: black;
}
.linkc:hover{
  color: #6c63ff;
}

.it{
  color: #6c63ff;
  font-size: 17px;
}

.product-img {
  width: 300%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

