@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --main-color: green;
    --second-color: #666;
}
::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    background-color: #fff;
}
::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
    cursor: pointer;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
i{
    font-size: 20px;
}
button{
    padding:  10px;
    width: 140px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    color: #222;
    transition: 0.3s;
    outline: none;
    cursor: pointer;
}
button:hover{
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: #fff;
}
body{
    font-family: "Poppins", sans-serif;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width:768px){
    .container{
        width: 750px;
    }
}
@media (min-width:992px){
    .container{
        width: 970px;
    }
}
@media (min-width:1200px){
    .container{
        width: 1170px;
    }
}
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.171);
    background-color: #fff;
    z-index: 6;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
}
.header .logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .logo > i{
    color: var(--main-color);
    font-size: 20px;
}
.header .links-container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
@media (max-width: 991px){
    .header .links-container{
        justify-content: flex-end;
    }
}
.header .links-container .links{
    display: flex;
    gap: 25px;
}
@media (max-width: 767px) {
    .header .links-container .links{
        width: 200px;
    }
}
.header .links-container .links li a{
    display: block;
    color: var(--second-color);
    font-weight: 500;
    transition: 0.3s;
}
.header .links-container .links li a:hover{
    color: var(--main-color);
}
.header .links-container .bars {
    display: none;
}
@media (max-width: 991px) {
    .header .links-container .bars{
        display: block;
        text-align: left;
    }
    .header .links{
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 70px;
        padding: 20px;
        width: 300px;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        opacity: 0;
        pointer-events: none;
        transform: translateX(60px);
        transition: 0.4s ease;
    }
    .header .open{
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
}
.header .icons{
    display: flex;
    gap: 10px;
}
.header .icons > li {
    position: relative;
}
.header .icons > li > i,
.header .links-container .bars i{
    background-color: #eee;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.header .icons > li > i:hover,
.header .links-container .bars i:hover{
    background-color: var(--main-color);
    color: #fff;
}
.header .icons > li:first-child{
    margin-left: 10px;
}
.header .icons > li:first-child .form > input{
    position: relative;
    border: none;
    outline: none;
    width: 500px;
    padding: 10px;
}
@media (max-width: 767px){
    .header .icons > li:first-child .form > input{
        width: 230px;
    }
}
.header .icons > li:first-child .form > input::placeholder{
    color: var(--second-color);
}
.header .icons > li:first-child .form > i{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.header .icons > li:nth-child(2) > .shop{
    padding: 20px;
    border-radius: 10px;
}
@media (max-width: 767px){
    .header .icons > li:nth-child(2) > .shop{
        padding: 10px;
    }
}
.header .icons > li:nth-child(2) .shop .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 15px;
    position: relative;
    white-space: nowrap;
}
.header .icons > li:nth-child(2) .shop .box .product img{
    width: 60px;
}
.header .icons > li:nth-child(2) .shop .box .details h4{
    margin-bottom: 10px;
    text-align: left;
}
.header .icons > li:nth-child(2) .shop .box .details p{
    color: var(--second-color);
}
.header .icons > li:nth-child(2) .shop .box .delete i{
    transition: 0.3s;
    cursor: pointer;
}
.header .icons > li:nth-child(2) .shop .box .delete i:hover{
    color: red;
}
.header .icons > li:nth-child(2) .shop .total{
    text-align: center;
    font-size: 22px;
    margin: 15px 0;
}
.header .icons > li:nth-child(2) button{
    width: 100%;
    padding: 5px ;
    border: 2px solid #000;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.header .icons > li:nth-child(2) button:hover{
    color: #fff;
    background-color: red;
}
.header .icons > li:last-child > .login{
    width: 320px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.header .icons > li:last-child .login .form h2{
    margin-bottom: 15px;
}
.header .icons > li:last-child .login .form input{
    width: 100%;
    padding: 10px;
    background-color: #eee;
    border: none;
    outline: none;
    margin-bottom: 15px;
    border-radius: 6px;
}
.header .icons > li:last-child .login .form span{
    display: block;
    color: var(--second-color);
    font-size: 14px;
    margin-bottom: 15px;
}
.header .icons > li:last-child .login .form span > a{
    text-decoration: underline;
    color: var(--main-color);
    font-weight: bold;
}
.header .icons > li:last-child .login .form .log{
    width: 150px;
    padding: 10px 15px;
    border: 2px solid #000;
    border-radius: 6px;
    color: #000;
    background-color: #fff;
    transition: 0.3s;
    cursor: pointer;
}
.header .icons > li:last-child .login .form .log:hover{
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.header .icons > li > .form,
.header .icons > li > .shop,
.header .icons > li > .login {
    position: absolute;
    top: 70px;
    right: 0;
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    transition: 0.4s ease;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 1000;
}
@media (max-width: 360px) {
    .header .icons > li:first-child,
    .header .icons > li:nth-child(2),
    .header .icons > li:last-child{
        display: none;
}
}
.header .icons> li > .apeer {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.landing{
    width: 100%;
    min-height: 465px;
    height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-top: 60px;
    position: relative;
    z-index: 5;
}
@media (max-width: 767px) {
    .landing{
        padding-top: 30px;
    }
}
.landing .info{
    display: flex;
    align-items: center;
    padding-top: 30px;
}
.landing .vegetables{
    display: none;
}
@media (min-width: 992px) {
    .landing .vegetables{
        display: block;
        position: relative;
        left: -40px;
        width: 25%;
    }
}
.landing .vegetables img{
    width: 420px;
    max-width: 100%;
}
.landing .info .content{
    text-align: center;
    width: 60%;
    position: relative;
    top: -20px;
    width: 50%;
}
@media (max-width: 992px){
    .landing .info .content{
        width: 100%;
        padding: 0 10px;
        top: 20px;
    }
}
.landing .info .content h2{
    font-size: 32px;
    line-height: 1.3;
}
.landing .info .content h2 span{
    color: var(--main-color);
}
.landing .info .content p{
    color: var(--second-color);
    line-height: 1.7;
    font-size: 18px;
    text-transform: capitalize;
    margin: 20px 0 25px;
}
.landing .fruits{
    display: none;
}
@media (min-width: 992px) {
    .landing .fruits{
        display: block;
        width: 25%;
        text-align: right;
    }
}
.landing .fruits img{
    width: 320px;
    max-width: 100%;
}
.special-heading{
    text-align: center;
    color: #000;
    padding: 30px 0;
    font-size: 35px;
}
.special-heading > span{
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 40px;
    position: relative;
}
.special-heading > span::after,
.special-heading > span::before{
    content: "";
    position: absolute;
    border-width: 30px;
    border-style: solid;
    top: 50%;
    transform: translateY(-50%);
}
.special-heading > span::after{
    border-color: transparent #eee transparent transparent;
    right: 0;
}
.special-heading > span::before{
    border-color: transparent transparent transparent #eee;
    left: 0;
}
.features{
    background-color: #eee;
    padding-bottom: 40px;
}
.features .content-info{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 30px;
}
.features .content-info .box img{
    width: 200px;
    max-width: 100%;
}
.features .content-info .box{
    background-color: #fff;
    padding: 10px ;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.features .content-info .box:hover{
    box-shadow: 0px 0px 10px 10px var(--main-color);
}
.features .content-info .box .info{
    padding: 0 5px;
    border: 2px solid #cccccc8c;
    height: 100%;
}
.features .content-info .box h3{
    font-size: 25px;
    color: #000000ce;
}
.features .content-info .box p{
    margin: 15px 0;
    line-height: 1.7;
    color: var(--second-color);
    min-height: 120px;
}
.features .content-info .box button{
    margin: 5px 0 20px;
}
.products{
    background-color: #eee;
    padding-bottom: 40px;
}
.slider {
    cursor: pointer;
    overflow: hidden; 
    position: relative;
}
@media (min-width: 992px){
    .slider{
        padding: 20px;
        margin: -20px;
    }
}
.products .content-info {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease; 
    flex-wrap: nowrap; 
}
.products .content-info .box {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;
    flex: 0 0 calc((100% - 60px) / 3);
    flex-shrink: 0;
    cursor: pointer;
}
@media (max-width: 991px) {
    .products .content-info .box{
        flex: 0 0 calc((100% - 30px) / 2);
    }
}
@media (max-width: 767px) {
    .products .content-info .box {
        flex: 0 0 100%; 
    }
}
.products .content-info .box:hover {
    box-shadow: 0px 0px 10px 10px var(--main-color);
}
.products .content-info .box .info{
    padding: 10px 0;
    border: 2px solid #cccccc8c;
    height: 100%;
}
.products .content-info .box .info img{
    width: 150px;
    max-width: 100%;
}
.products .content-info .box .info h3{
    font-size: 25px;
    color: #000000ce;
}
.products .content-info .box .info p{
    margin: 15px 0;
    font-size: 18px;
    color: var(--second-color);
}
.products .content-info .box .info .stars > i{
    color: #f37900;
}
.products .content-info .box .info button{
    margin: 15px 0 20px;
}
.products .slider .iconsMove > i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;           
    color: var(--main-color);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.products .slider .iconsMove > i:hover {
    transform: translateY(-50%) scale(1.2);
    color: #000;             
}
.products .slider .iconsMove > .prev{
    left: 0;
    width: fit-content;
}
.products .slider .iconsMove > .next{
    right: 0;
    width: fit-content;
}
.categories{
    background-color: #eee;
    padding-bottom: 40px;
}
.categories .categore-info{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 15px;
}
.categories .categore-info .box{
    background-color: #fff;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}
.categories .categore-info .box:hover {
    box-shadow: 0px 0px 10px 10px var(--main-color);
}
.categories .categore-info .box .info{
    padding: 10px 0;
    border: 2px solid #cccccc8c;
    height: 100%;
}
.categories .categore-info .box img{
    width: 150px;
    max-width: 100%;
}
.categories .categore-info .box .info h3{
    margin-top: 10px;
    font-size: 25px;
    color: #000000ce;
}
.categories .categore-info .box .info p{
    margin: 15px 0;
    font-size: 18px;
    color: var(--second-color);
}
.categories .categore-info .box .info button{
    margin: 15px 0 20px;
}
.review{
    background-color: #eee;
    padding-bottom: 40px;
}
.review .review-info{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}
.review .review-info .box{
    background-color: #fff;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}
.review .review-info .box:hover {
    box-shadow: 0px 0px 10px 10px var(--main-color);
}
.review .review-info .box .info{
    padding: 10px 5px;
    border: 2px solid #cccccc8c;
    height: 100%;
}
.review .review-info .box img{
    width: 100px;
    max-width: 100%;
    border-radius: 50%;
    margin-top: 10px;
}
.review .review-info .box .info p{
    margin: 15px 0;
    font-size: 18px;
    color: var(--second-color);
    line-height: 1.6;
    min-height: 170px;
}
.review .review-info .box .info h3{
    font-size: 27px;
    color: #000000ce;
}
.review .review-info .box .info .stars{
    margin: 15px 0;
}
.review .review-info .box .info .stars i{
    color: #f37900;
}
.blogs{
    background-color: #eee;
    padding-bottom: 40px;
}
.blogs .blog-info{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}
.blogs .blog-info .box{
    background-color: #fff;
    padding: 0 0 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.466);
}
.blogs .blog-info .box img{
    width: 100%;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
}
.blogs .blog-info .box .information{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    margin: 0 15px;
    border-bottom: 1px solid #ccc;
}
.blogs .blog-info .box .information > div > i{
    color: var(--main-color);
    margin-right: 5px;
}
.blogs .blog-info .box .information > div > span{
    color: var(--second-color);
    font-size: 14px;
}
.blogs .blog-info .box .info-box{
    text-align: left;
    margin: 0 15px;
    padding: 15px 0;
}
.blogs .blog-info .box .info-box h3{
    font-size: 25px;
    line-height: 1.6;
    color: #000000ce;
}
.blogs .blog-info .box .info-box p{
    margin: 10px 0;
    font-size: 18px;
    color: var(--second-color);
    line-height: 1.6;
}
.footer{
    background-color: #fff;
    padding-bottom: 40px;
    padding-top: 40px;
}
.footer .news{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 15px;
    border-bottom: 2px solid #ccc;
}
.footer .news .groco .logo{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}
.footer .news .groco .logo i{
    color: var(--main-color);
}
.footer .news .groco p{
    color: var(--second-color);
    line-height: 1.6;
}
.footer .news .groco .social{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.footer .news .groco .social i{
    background-color: #eee;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.footer .news .groco .social i:hover{
    background-color: var(--main-color);
    color: #fff;
}
.footer .news .contact h2{
    margin-bottom: 30px;
}
.footer .news .contact ul li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.footer .news .contact ul li i{
    color: var(--main-color);
    width: 25px;
}
.footer .news .contact ul li a{
    margin-left: 5px;
    color: var(--second-color);
    transition: 0.3s;
}
.footer .news .contact ul li a:hover{
    margin-left: 10px;
}
.footer .news .links h2{
    margin-bottom: 30px;
}
.footer .news .links ul li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.footer .news .links ul li i{
    color: var(--main-color);
    width: 25px;
}
.footer .news .links ul li a{
    margin-left: 5px;
    color: var(--second-color);
    transition: 0.3s;
}
.footer .news .links ul li a:hover{
    margin-left: 10px;
}
.footer .news .newsletter h2{
    margin-bottom: 30px;
}
.footer .news .newsletter p{
    color: var(--second-color);
    font-weight: 600;
}
.footer .news .newsletter .form input[type='email']{
    padding: 10px;
    margin: 15px 0;
    background-color: #eee;
    border: none;
    outline: none;
    border-radius: 6px;
}
.footer .news .newsletter .pay{
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.footer .news .newsletter .pay img{
    width: 50px;
    max-width: 100%;
    cursor: pointer;
}
.footer .container .created{
    text-align: center;
    margin-top: 25px;
    font-size: 25px;
}
.footer .container .created > span{
    color: var(--main-color);
}