
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

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

body{
  font-family:'Hind Siliguri', Arial, sans-serif;
  background:#ffffff;
  color:#111;
  padding-bottom:85px;
}

a{
  text-decoration:none;
}

.topbar{
  background:#111;
  color:#fff;
  padding:7px 5%;
  text-align:center;
  font-size:14px;
}

.header{
  background:#ffe600;
  padding:10px 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.logo img{
  width:170px;
  height:60px;
  object-fit:contain;
  display:block;
}

.search{
  display:flex;
  width:420px;
  max-width:100%;
}

.search input{
  width:100%;
  height:42px;
  padding:0 14px;
  border:2px solid #e60000;
  border-right:0;
  border-radius:8px 0 0 8px;
  outline:none;
  font-size:15px;
}

.search button{
  width:58px;
  border:0;
  background:#e60000;
  color:#fff;
  border-radius:0 8px 8px 0;
  font-weight:700;
  cursor:pointer;
}

.menu{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}

.menu a{
  color:#000;
  font-weight:700;
  font-size:15px;
  padding:8px 12px;
  border-radius:8px;
}

.menu a:hover,
.menu a.active{
  background:#e60000;
  color:#fff;
}

.hero img{
  width:100%;
  display:block;
}

.page-title{
  background:#fff8c4;
  padding:40px 5%;
  text-align:center;
}

.page-title h1{
  font-size:34px;
}

.page-title span{
  color:#e60000;
}

.section{
  padding:45px 5%;
}

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h2{
  font-size:32px;
}

.section-title span{
  color:#e60000;
}

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.product-card{
  border:1px solid #eee;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  background:#fff;
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  background:#f5f5f5;
  padding:15px;
}

.product-info{
  padding:18px;
  text-align:center;
}

.product-info h3{
  font-size:20px;
  margin-bottom:6px;
}

.rating{
  color:#ffbf00;
  margin:8px 0;
}

.price{
  color:#e60000;
  font-size:22px;
  font-weight:700;
  margin:8px 0 14px;
}

.btn{
  display:inline-block;
  background:#25D366;
  color:#fff;
  padding:10px 18px;
  border-radius:30px;
  font-weight:700;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.feature-box{
  background:#fff8c4;
  padding:24px 15px;
  text-align:center;
  border-radius:14px;
}

.footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:28px 5%;
}

.footer h2{
  color:#ffe600;
  margin-bottom:8px;
}

.footer p{
  margin:6px 0;
  font-size:14px;
}

.order-bar{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  background:#111;
  color:#fff;
  padding:10px 5%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  z-index:999;
}

.order-bar input{
  width:450px;
  max-width:100%;
  height:42px;
  border:0;
  border-radius:8px;
  padding:0 12px;
  outline:none;
}

.order-bar button{
  height:42px;
  border:0;
  border-radius:8px;
  padding:0 16px;
  background:#e60000;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:1000px){
  .products{
    grid-template-columns:repeat(2,1fr);
  }
  .features{
    grid-template-columns:repeat(2,1fr);
  }
  .header{
    justify-content:center;
  }
}

@media(max-width:600px){
  body{
    padding-bottom:145px;
  }

  .logo img{
    width:140px;
    height:50px;
  }

  .search{
    order:3;
    width:100%;
  }

  .menu a{
    font-size:14px;
    padding:7px 9px;
  }

  .products{
    grid-template-columns:1fr;
  }

  .features{
    grid-template-columns:1fr;
  }

  .page-title h1{
    font-size:27px;
  }

  .order-bar{
    flex-direction:column;
  }

  .order-bar input,
  .order-bar button{
    width:100%;
  }
}
