*{
    margin:0;
    padding:0;
    box-sizing:border-box; 
    font-family:sans-serif;
}
header{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:20px;
    border-top:1px  solid #ccc;
    border-bottom:1px  solid #ccc;
}
.headerLeft{
    display:flex;
    align-items:center;
}
.logo{
    padding:37px 30px;
    border:1px solid #ccc
}
.headerAddress{
    padding:20px 30px;
}
.headerAddress h3{
    font-size:18px;
    margin-bottom:5px;
}
.headerAddress p{
    font-size:13px;
}
.searchBox{
    flex-grow:1;
    background-color:#F8F8F8;
    display:flex;
    border:1px solid #d4d4d4ee;
    border-radius:15px;
}
.searchBox button{
    padding:12px;
    border:none;
    background:transparent;
}
.searchBox input{
    flex-grow:1;
    border:none;
    background:transparent;
}
.searchBox input:focus{
    outline:none;
}
.headerBtn{
    display:flex;
    margin-right:20px;
    padding:15px;
}
.headerBtn button{
    font-size:16px;
    padding:15px;
    margin:15px;
    background:transparent;
    border:none;
}
.headerBtn button:last-child{
    background-color:#0C831F;
    font-weight:bold;
    color:white;
    border-radius:10px;
}
.bannerSection{
    margin:auto;
    max-width:1280px;
}
.bannerSection img{
    width:100%;
}
.orderBanner{
    display:flex;
    max-width:1280px;
    margin:auto;
}
.orderBannerItems{
    flex-basis:33.33%;
}
.orderBannerItems img{
    padding:10px;
    width:100%;
}
.Categories{
    display:flex;
    flex-wrap:wrap;
    max-width:1280px;
    margin:auto;
}
.productitem {
    flex-basis:10%;
}
.productitem img{
    width:100%;
}

/* productSection start */

.productSection{
    max-width:1280px;
    margin:auto;
}
.headingRow{
    display:flex;
    justify-content:space-between;
}
.headingRow h2{
    font-size:20px;
}
.headingRow a{
    font-size:18px;
    color:rgb(23, 67, 23);
}
.productRow{
    display:flex;
    width:100%;
    padding:10px;
    flex-wrap:wrap;
    gap:4px;
    
}
.productRow .productItems{
    flex-basis:16%;
    border:1px solid #ccc;
    border-radius:12px;
    box-shadow:0px 0px 10px 2px #FCFCFC;
}
.productImg{
    text-align:center;
    padding:15px;
}
.productContent{
    padding:10px;
    padding-top:0px;
}
.productContent h3{
    font-size:13px;
    margin-bottom:10px;
}
.productContent p{
    font-size:12px;
    color:#ada4a4;
}
.btn-price{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:10px;
}
.btn-price p{
    color:#322c2c;
    border:bolder;
    font-size:15px;
}
.btn-price button{
    background:#F7FFF9;
    padding:5px 15px;
    border:1px solid #45922D;
    border-radius:12px;
}
footer{
    width:100%;
    padding:50px 0 0 0;
}
.footer-mid{
    max-width:1280px;
    margin:auto;
}
.footer-mid-row1{
    width:100%;
    display:flex;
}
.footer-mid-row1-left{
    flex-basis:30%;
    padding:10px;
}
.usefullLink{
    display:flex;
}
.footer-mid-row1-left h3{
    margin-bottom:20px;
}
.usefullLink ul{
    flex-basis:33%;
    list-style:none;

}
.usefullLink ul li{
    padding:5px;
    
}
.usefullLink ul li a{
    font-size:15px;
    text-decoration:none;
    display:block;
    color:#878282;
    margin-bottom:10px;
    
}
.footer-mid-row1-right{
    flex-basis:70%;
    margin-top:14px;
}
.footer-mid-row1-right h3{
    margin-bottom:20px;
}
.footer-mid-row3 p{
    color:#878282;
    padding:20px;
    font-size:14px;
    line-height:20px;
}
.footer-mid-row2{
    width:100%;
    display:flex;
    align-items:center;
    padding:20px;
}
.footer-mid-row2 p{
    flex-basis:40%;
    text-align:center;
    font-size:15px;
}
.footer-mid-row3{
    background-color:#FCFCFC;
    width:100%;
    padding:20px 0px; 
}

.download{
    display:flex;
    flex-basis:40%;
    align-items:center;
    gap:10px;
}
.socialLink{
    display:flex;
    gap:20px;
}
.socialLink i{
    display:flex;
    align-items:center;
    justify-content:center;
    background:black;
    color:white;
    height:40px;
    border-radius:50%;
    flex-grow:1;
    font-size:30px;
}