body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
}

/* NAVBAR */
.navbar{
  background:white;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
  color:#ff4d4d;
}

/* HERO */
.hero{
  text-align:center;
  padding:40px;
  background:linear-gradient(135deg,#ff4d4d,#ff7a7a);
  color:white;
}

.search-box{
  margin-top:15px;
}

.search-box input{
  padding:12px;
  width:250px;
  border-radius:10px;
  border:none;
}

.search-box button{
  padding:12px;
  background:black;
  color:white;
  border:none;
  border-radius:10px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:20px;
}

/* CARD */
.card{
  background:white;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.content{
  padding:10px;
}

.price{
  color:#ff4d4d;
  font-weight:bold;
}

/* BUTTON */
button{
  padding:8px;
  margin-top:5px;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

/* CHAT */
.chatbot{
  position:fixed;
  bottom:20px;
  right:20px;
}

#chatBox{
  display:none;
  background:white;
  padding:10px;
  width:200px;
  border-radius:10px;
}
.footer{
  text-align:center;
  padding:15px;
  background:#111;
  color:white;
}
.card{
  background:white;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  transition:0.3s;
}
.login-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.login-box{
  background:white;
  padding:25px;
  border-radius:12px;
  text-align:center;
  width:300px;
}
.profile-container{
  position:relative;
  cursor:pointer;
  font-size:20px;
}

.profile-menu{
  display:none;
  position:absolute;
  right:0;
  top:30px;
  background:white;
  padding:10px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  width:150px;
}

.profile-menu p{
  margin:5px 0;
  font-weight:bold;
}

.profile-menu button{
  width:100%;
  padding:6px;
  border:none;
  background:#ff4d4d;
  color:white;
  border-radius:6px;
}
.login-box input{
  width:90%;
  padding:10px;
  margin:8px 0;
  border-radius:8px;
  border:1px solid #ccc;
}

.login-box button{
  width:95%;
  padding:10px;
  margin-top:8px;
  border:none;
  border-radius:8px;
  background:#ff4d4d;
  color:white;
}

.guest{
  background:#333;
}
.profile-container{
  position:relative;
  cursor:pointer;
  font-size:20px;
}

.profile-menu{
  display:none;
  position:absolute;
  right:0;
  top:30px;
  background:white;
  padding:10px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  width:150px;
}

.profile-menu p{
  margin:5px 0;
  font-weight:bold;
}

.profile-menu button{
  width:100%;
  padding:6px;
  border:none;
  background:#ff4d4d;
  color:white;
  border-radius:6px;
}
