*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}
body {
background-color:#f8f8f8 ;
color: #333;
padding:10px;
}
.top-header {
  font-family: Arial, sans-serif;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  gap: 30px;
padding: 25px 40px;
  justify-content: flexstart;
 background-color: white;
 box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.logo {
  font-size: 36px;
  font-weight: bold;
  color: #1e1e1e;
}
.logo span {
  color: #84c225;
}
.location {
  font-size: 25px;
  color: #333;
  line-height: 1.2;
  margin-left:0;
}
.location span {
  font-size: 12px;
  color: #777;
}
.search-bar {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  padding: 14px 18px;
  border-radius: 8px;
  width: 300px;
  flex: 1;
  margin: 0 30px;
  max-width: 600 px;
}
.search-icon{
    width: 25px;
    height: 35px;
    margin-right: 10px;
}
.search-bar i {
  margin-right: 8px;
  color: rgb(125, 118, 118);
}
.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 16px;
  margin-left: 8px;
}
.login {
  font-size: 20px;
  color: #444;
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
}
.yellow-strip {
  height: 8px;
  background-color: rgba(193, 192, 192, 0.816);
}
.categories{
    display:flex;
    justify-content: space-between;
    padding: 15px 10px;
    background-color:white;
   overflow-x:auto;
}
.categories div {
text-align: center;
margin:0 8px;
min-width: 60px;
color: black;

}
.categories img {
    width: 70px;
    margin-bottom: 5px;
}
.paan-banner {
  position: relative;
  width: 100%;
  height: 250px;
  background-color: #fbe9e7;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.paan-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}
.banner-content {
  position: absolute;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.banner-content button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #ffdc5e;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.poster-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

.poster-card {
 flex: 1 1 300px;
 max-width: 23%;
   width: 400px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.poster-card:hover{
    transform: translate(-5px);
}
.poster-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 12px;
}
.poster-card button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

.poster-card.blue { background-color: #1976d2; }
.poster-card.lightblue { background-color: #00bcd4; }
.poster-card.yellow { background-color: #ffb300; }

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 30px 20px;
  padding: 30px 40px;
  background-color: #fff;
  
}
.category-row{
    display:flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px 20px;
    background-color: #fff;
}

.category-card {
    text-align: center;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-6px);
}
.category-card img {
    display: block;
    margin: 0 auto;
  width: 100%;
  height: 250px;
  max-width: 300px;
  border-radius: 10px;
  background-color: #f7f7f7;
  object-fit: contain;
}
.category-card p {
  font-size: 15px;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-section {
  padding: 30px 20px;
  background-color: #fff;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 20px;
  color: #222;
}
.section-header a {
  font-size: 25px;
  color: green;
  text-decoration: none;
}
.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  background-color: #fafafa;
}
.product-card img {
  width:100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 8px;
}
.product-name {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  margin: 5px 0;
}
.delivery-time,
.product-weight,
.product-price {
  font-size: 18px;
  color: #545454;
  margin: 2px 0;
}

.add-btn {
  margin-top: 6px;
  background-color: #fff;
  border: 1px solid green;
  color: green;
  padding: 5px 12px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-btn:hover {
  background-color: green;
  color: #fff;
}
.banner img {
width: 100%;
display:block;
margin:10px 0;
}
.offers {
    background-color: white;
    padding:20px;
}
.offers h2 {
    margin-bottom: 15px;
    font-size: 20px;
}
.card {
display: inline-block;
width:48%;
margin:1%;
background: #fafafa;
padding: 10px;
border:1px solid#ddd;
text-align: center;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.card img {
    width: 80px;
    margin-bottom: 10px;
}
.footer {
  background-color: #333;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: white;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px 10px;
}

.footer-column h4 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: bold;
}
.footer-column h4 span {
  font-weight: normal;
  font-size: 20px;
  margin-left: 10px;
  color: #f0f808;
  cursor: pointer;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-size: 18px;
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-column ul li:hover {
  text-decoration: underline;
}

.categories-list {
  columns: 3;
  column-gap: 40px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.footer-apps p{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight:bold ;
}

.footer-apps img {
  height: 40px;
  margin-right: 20px;
}
.footer-note {
  font-size: 16px;
  margin-top: 10px;
  color:white;
  text-align: center;
}
