
body{
  font-family:Poppins;
  margin:0;
  background:#fffbe6;
}

/* SEARCH */
.search-box{
  display:flex;
  justify-content:center;
  margin:20px;
}
.search-box input{
  width:300px;
  padding:10px;
  border-radius:20px;
  border:1px solid #ccc;
}

/* CATEGORY */
.categories{
  text-align:center;
  margin:20px;
}
.categories a{
  margin:5px;
  padding:8px 15px;
  background:#1f2a30;
  color:white;
  border-radius:20px;
  text-decoration:none;
}
.categories a:hover{
  background:#f9e79f;
  color:black;
}

/* GRID */
.products{
  padding:20px;
  text-align:center;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.product{
  background:white;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  cursor:pointer;
}

.product img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.product h2{
  background:#f9e79f;
  margin:0;
  padding:10px;
}
.product p{
  padding:10px;
}