*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}
header{
    /* position: fixed; */
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.headerLeft{
    display: flex;
    align-items: center;
}
.logo{
    padding: 26px 22px;
    border-right: 1px solid #ccc;
}
.headerAddress{
    /* padding: 20px 46px; */
    padding: 20px;
}
.headerAddress h3{
    /* font-weight: 800; */
    font-size: 17px;
    margin-bottom: 5px;
}
.headerAddress p{
    font-weight: 50;
    font-size: 14px;
}
.searchBox{
    flex-grow:1;
    background-color: #f8f8f8;
    display: flex;
    border-radius: 15px;
    border:1px solid #f4f4f4;
}
.searchBox button{
    padding: 15px;
    border: none;
    background-color: transparent;
}
.searchBox input{
    flex-grow: 1;
    border: none;
    background-color: transparent;
}
.searchBox input:focus{
    outline: none;
}
.headerBtn{
    display: flex;
    gap:40px;
    margin-right: 40px;
}
.headerBtn lgn{
    font-size: 17px;
}
.headerBtn button{
    font-size: 15px;
    padding: 15px;
    background-color: transparent;
    border: none;
}

.headerBtn button:last-child{
    color: white;
    border-radius: 5px;
    font-weight: bold;
    background-color:#e0e0e0;
}
.bannerSection{
    margin:0px auto;
    max-width: 1280px;
}
.bannerSection img{
    width: 100%;
}
.orderBanner{
    display: flex;
    max-width: 1280px;
    margin: auto;
}
.orderBannerItems{
    flex-basis: 27%;
    margin: 1%;
}
.orderBannerItems img{
    width: 100%;
}
.categorySection{
  max-width: 1280px;
  flex-wrap: wrap;
  display: flex;
  margin: auto;
}
.categoryItems{
    flex-basis: 10%;
}
.categoryItems img{
    width:100%;
}
.headingRow h2{
    font-size: 22px;
    padding-bottom:  5px;
}
.headingRow a{
    color: #328839;
    font-size: 18px;
    margin-left: 93%;
}
.productSection{
    max-width: 1280px;
    margin: auto;
    padding: 30px 0px 0px 0px;
}
.productRow{
    width: 100%;
    margin: 30px 0px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.productItems{
    flex-basis: 15%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}
.productImg{
    text-align: center;
    padding: 15px;
}
.productImg p{
    background-color: #f8f8f8;
    display: flex;
    width: 60px;
    gap: 5px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-align: left;
}

.productContent{
    padding: 15px;
    padding-top: 0px;
}
.productContent h3{
    margin-bottom: 15px;
    font-size: 14px;
}
.productContent p{
    font-size: 14px;
    color:#848080;
}

.btn-price-outer{
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content:space-between;
}
.btn-price-outer button{
    border: 1px solid #328839;
    padding: 5px 15px;
    border-radius: 10px;
    background-color: #f7fff9;
}

footer{
    padding: 80px 0px 0px 0px;
}

.footer-mid{
    max-width: 1280px;
    margin: auto;
}

.footer-mid-row1{
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    gap:40px;
}

.footer-mid-row1-left{
    flex-basis: 30%;
}
.footer-mid-row1-left h3{
     margin-bottom: 20px;
}
.useFulLinks{
    display: flex;
}
.useFulLinks ul{
    flex-basis: 33%;
    list-style: none;
}
.useFulLinks ul li a{
    font-size: 14px;
    display: block;
    color: rgb(102, 102, 102);
    margin-bottom: 15px;
}
.footer-mid-row1-right{
    flex-basis: 70%;
}
.CategoriesHeadingRow{
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
    align-items: center;
}
/* .FooterLinks_List li{
    flex-basis: 30%;
} */
.footer-mid-row3 p{
   padding: 20px 0px;
   font-size: 14px;
   line-height: 20px;
   color: rgb(102, 102, 102);;
}

.footer-mid-row2{
    background-color: #fcfcfc;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0px;
}
.footer-mid-row2 p{
     color: rgb(102, 102, 102);
    flex-basis: 40%;
    font-size: 14px;
    text-align: center;
}
.appIcon{
    color: rgb(102, 102, 102);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-basis: 30%;
}

.sociallinks{
    display: flex;
    gap: 25px;
    margin-left: -38px;
}

.sociallinks i{
    width:40px;
    color: white;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
}