/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}



html{
    scroll-behavior:smooth;
}



body{

    background:#f7f8fc;
    color:#222;

}



a{

    text-decoration:none;
    color:inherit;

}



img{

    width:100%;
    display:block;

}



button{

    cursor:pointer;
    border:none;
    font-family:inherit;

}





/* ================= HEADER ================= */


header{

    width:100%;
    height:80px;
    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 6%;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    position:sticky;
    top:0;
    z-index:999;

}



.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}
.logo img{
    width:180px;
    height:70px;
    display:block;
    object-fit:contain;
}


@media(max-width:768px){
    .logo img{
        height:60px;
        width:190px;
    }
}




nav ul{

    display:flex;
    gap:35px;
    list-style:none;

}





nav ul li a{

    font-size:15px;
    font-weight:500;
    color:#222;
    transition:.3s;

}




nav ul li a:hover{

    color:#0066cc;

}







.header-icons{

    display:flex;
    align-items:center;
    gap:20px;

}







.header-icons i{

    font-size:20px;

}






#cart-count{

    background:#0066cc;

    color:white;

    width:20px;
    height:20px;

    border-radius:50%;

    font-size:12px;

    display:inline-flex;

    justify-content:center;
    align-items:center;

    position:absolute;

    margin-top:-18px;

}








.whatsapp-btn{

    background:#25D366;

    color:white;

    padding:12px 22px;

    border-radius:30px;

    font-weight:600;

}







.login-btn{

    background:#0066cc;

    color:white;

    padding:12px 25px;

    border-radius:30px;

}









/* ================= HERO SECTION ================= */



.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:70px 7%;
    background:white;
    min-height:550px;
}







.hero-left{
    width:50%;
    max-width:600px;
}






.offer{


    display:inline-block;

    background:#e8f2ff;

    color:#0066cc;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;


}






.hero-left h1{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    margin:25px 0;
}





.hero-left p{


    font-size:18px;

    color:#666;

    line-height:1.7;

    margin-bottom:30px;


}

.hero-buttons .btn-primary{
    background:#0066cc;
    color:white;
}

.hero-buttons .btn-secondary{
    background:white;
    color:#0066cc;
    border:2px solid #0066cc;
}

.hero-buttons .btn-whatsapp{
    background:#25D366;
    color:white;
}





.hero-buttons a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 24px;
    border-radius:30px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
}


.hero-buttons button{


    background:#0066cc;

    color:white;

    padding:15px 35px;

    border-radius:30px;

    font-size:16px;

    font-weight:600;


}







.hero-buttons .outline{


    background:white;

    color:#0066cc;

    border:2px solid #0066cc;


}






.hero-right{
    width:45%;
    display:flex;
    justify-content:flex-end;
}




.hero-right img{
    width:100%;
    max-width:520px;
    height:350px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}






/* ================= HERO STATS ================= */

.hero-stats{
    display:flex;
    gap:45px;
    margin-top:40px;
}

.hero-stats h3{
    color:#0066cc;
    font-size:30px;
    margin:0 0 5px;
}

.hero-stats p{
    color:#666;
    font-size:14px;
    margin:0;
}








/* ================= TOP FEATURES ================= */



.top-features{


    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:50px 7%;


}






.top-features div{


    background:white;

    padding:30px;

    text-align:center;

    border-radius:18px;

    transition:.3s;


}






.top-features div:hover{


    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.1);


}






.top-features i{


    font-size:35px;

    color:#0066cc;

    margin-bottom:15px;


}





.top-features h3{


    margin-bottom:10px;


}






.top-features p{


    color:#777;

    font-size:14px;


}
/* ================= SEARCH SECTION ================= */

.search-section{

    position:relative;
    z-index:100;

    padding:60px 7%;
    background:#f7f8fc;

    text-align:center;

}


.search-section h2{
    font-size:32px;
    margin-bottom:10px;
    color:#222;
    font-weight:800;
}


.search-section p{
    color:#666;
    margin-bottom:30px;
    font-size:16px;
}


.search-box{

    max-width:700px;
    margin:auto;

    display:flex;
    align-items:center;

    background:white;

    padding:8px;

    border-radius:50px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    position:relative;
    z-index:200;

}



.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:15px 20px;

    font-size:16px;

    border-radius:40px;

    position:relative;

    z-index:300;

}



.search-box button{

    display:flex;
    align-items:center;
    gap:8px;

    border:none;

    background:#0066cc;

    color:white;

    padding:15px 30px;

    border-radius:40px;

    font-weight:600;

    cursor:pointer;

    position:relative;
    z-index:300;

}



.search-box button:hover{

    background:#004999;

}



/* Mobile Responsive */

@media(max-width:600px){

.search-box{

    flex-direction:column;
    background:transparent;
    box-shadow:none;

}


.search-box input{

    width:100%;
    background:white;
    margin-bottom:10px;

}


.search-box button{

    width:100%;
    justify-content:center;

}

}








/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
    font-weight:800;
    color:#222;
    margin:0;
}

.section-title p{
    color:#666;
    margin-top:10px;
    font-size:16px;
    line-height:1.6;
}





/* ================= CATEGORIES ================= */

.categories{
    padding:70px 7%;
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    padding-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
    text-align:center;
    border:1px solid #eee;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.category-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.category-card h3{
    margin:20px 0 10px;
    font-size:20px;
    font-weight:700;
    color:#222;
}

.category-card p{
    color:#666;
    font-size:14px;
    padding:0 15px;
    min-height:45px;
    line-height:1.5;
}

.category-card button{
    margin-top:20px;
    background:#0066cc;
    color:white;
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.category-card button:hover{
    background:#004999;
}

@media(max-width:900px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .categories{
        padding:50px 5%;
    }

    .category-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .category-card img{
        height:210px;
    }

}
/* ================= PRODUCTS SECTION ================= */

.products{
padding:70px 7%;
background:#f7f8fc;
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.product-card{
background:white;
border-radius:18px;
padding:20px;
position:relative;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:all .3s ease;
border:1px solid #eee;

/* IMPORTANT */
display:flex;
flex-direction:column;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.product-card img{
width:100%;
height:230px;
object-fit:cover;
border-radius:15px;
display:block;
}

.sale{
position:absolute;
top:15px;
left:15px;
background:#ff4d4d;
color:white;
padding:6px 15px;
border-radius:20px;
font-size:12px;
font-weight:600;
z-index:2;
}

.product-card h3{
margin:18px 0 8px;
font-size:20px;
color:#222;
}

.rating{
color:#ffb400;
margin:10px 0;
font-size:14px;
}

.product-card h4{
font-size:22px;
color:#0066cc;
margin:8px 0;
}

.product-card h4 span{
font-size:14px;
color:#777;
font-weight:400;
}

.product-card p{
color:#666;
font-size:14px;
margin:10px 0 20px;
line-height:1.5;
}
/* ================= PRODUCTS SECTION ================= */

.products{
padding:70px 7%;
background:#f7f8fc;
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.product-card{
background:white;
border-radius:18px;
padding:20px;
position:relative;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:all .3s ease;
border:1px solid #eee;

display:flex;
flex-direction:column;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.product-card img{
width:100%;
height:230px;
object-fit:cover;
border-radius:15px;
display:block;
}

.sale{
position:absolute;
top:15px;
left:15px;
background:#ff4d4d;
color:white;
padding:6px 15px;
border-radius:20px;
font-size:12px;
font-weight:600;
z-index:2;
}

.product-card h3{
margin:18px 0 8px;
font-size:20px;
color:#222;
}

.rating{
color:#ffb400;
margin:10px 0;
font-size:14px;
}

.product-card h4{
font-size:22px;
color:#0066cc;
margin:8px 0;
}

.product-card h4 span{
font-size:14px;
color:#777;
font-weight:400;
}

.product-card p{
color:#666;
font-size:14px;
margin:10px 0 20px;
line-height:1.5;
}


/* ================= BUTTONS ================= */

.product-buttons{
display:flex;
gap:12px;
margin-top:auto;
padding-top:18px;
width:100%;
}

.product-buttons a,
.product-buttons button{
height:60px;
border-radius:14px;
font-size:16px;
font-weight:700;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
text-decoration:none;
box-sizing:border-box;
white-space:nowrap;
transition:all .25s ease;
}

.product-buttons .view-btn{
flex:1;
background:white;
color:#0066cc;
border:2px solid #0066cc;
}

.product-buttons .cart-btn{
flex:1.25;
background:#0066cc;
color:white;
border:2px solid #0066cc;
}

.product-buttons .view-btn:hover{
background:#0066cc;
color:white;
transform:translateY(-2px);
}

.product-buttons .cart-btn:hover{
background:#0052a3;
border-color:#0052a3;
transform:translateY(-2px);
}


/* ================= TABLET ================= */

@media(max-width:900px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* ================= MOBILE ================= */

@media(max-width:600px){

.products{
padding:50px 5%;
}

.product-grid{
grid-template-columns:1fr;
gap:20px;
}

.product-card img{
height:220px;
}

.product-buttons{
gap:8px;
}

.product-buttons a,
.product-buttons button{
height:52px;
font-size:14px;
}

}

/* ================= BULK ORDER ================= */

.bulk-order{
    background:#0066cc;
    color:white;
    text-align:center;
    padding:70px 7%;
    border-radius:25px;
    margin:30px 7%;
}

.bulk-order h2{
    font-size:38px;
    margin:0 0 15px;
    font-weight:800;
}

.bulk-order p{
    font-size:17px;
    margin:0 auto 30px;
    max-width:750px;
    line-height:1.6;
    color:#eaf3ff;
}

.bulk-order a{
    text-decoration:none;
}

.bulk-order button{
    background:white;
    color:#0066cc;
    padding:15px 35px;
    border-radius:30px;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.bulk-order button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}




/* ================= WHY CHOOSE ================= */

.why-choose{
    padding:70px 7%;
    background:white;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    text-align:center;
    padding:35px 25px;
    background:#f7f8fc;
    border-radius:18px;
    transition:all .3s ease;
    border:1px solid #eee;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.why-card i{
    font-size:38px;
    color:#0066cc;
    margin-bottom:18px;
}

.why-card h3{
    margin:0 0 10px;
    font-size:20px;
    color:#222;
}

.why-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin:0;
}


/* ================= WHY CHOOSE MOBILE ================= */

@media(max-width:900px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .why-choose{
        padding:50px 5%;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .why-card{
        padding:30px 20px;
    }

}


/* ================= CUSTOMER REVIEWS ================= */

.reviews{
    padding:70px 7%;
    background:#f7f8fc;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #eee;
    transition:all .3s ease;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.review-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 15px;
    display:block;
    border:3px solid #e8f2ff;
}

.review-card h3{
    margin:0 0 10px;
    font-size:19px;
    color:#222;
}

.stars{
    color:#ffb400;
    margin-bottom:15px;
    font-size:16px;
}

.review-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin:0;
}


/* ================= REVIEWS MOBILE ================= */

@media(max-width:768px){

    .reviews{
        padding:50px 5%;
    }

    .review-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

}



/* ================= CONTACT ================= */


.contact{

    padding:70px 7%;

    background:white;

}



.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}



.contact-info{

    padding:30px;

}



.contact-info h3{

    font-size:25px;

    margin-bottom:25px;

}



.contact-info p{

    margin:20px 0;

    color:#555;

}



.contact-info i{

    color:#0066cc;

    margin-right:10px;

}





.contact-form form{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.contact-form input,

.contact-form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

}



.contact-form textarea{

    height:130px;

}



.contact-form button{

    background:#0066cc;

    color:white;

    padding:15px;

    border-radius:30px;

    font-weight:600;

}






/* ================= FOOTER ================= */

footer{
    background:#111;
    color:white;
    padding:60px 7% 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-grid h2,
.footer-grid h3{
    margin-bottom:20px;
    color:white;
}

.footer-grid p,
.footer-grid li{
    color:#ccc;
    font-size:14px;
    line-height:1.8;
}

.footer-grid ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-grid li{
    margin-bottom:6px;
}

.footer-grid a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-grid a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    background:#0066cc;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#0088ee;
    transform:translateY(-3px);
}

.copyright{
    text-align:center;
    border-top:1px solid #333;
    margin-top:40px;
    padding-top:20px;
}

.copyright p{
    margin:0;
    color:#aaa;
    font-size:13px;
}





/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}


/* ================= BACK TO TOP ================= */

#topBtn{
    position:fixed;
    right:25px;
    bottom:100px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:#0066cc;
    color:white;
    display:none;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    z-index:998;
    box-shadow:0 6px 15px rgba(0,0,0,.2);
}



/* ================= MOBILE RESPONSIVE ================= */


@media(max-width:992px){


header{

    padding:0 3%;

}



nav{

    display:none;

}



.hero{

    flex-direction:column;

}



.hero-left,

.hero-right{

    width:100%;

}



.hero-left h1{

    font-size:40px;

}



.top-features,

.category-grid,

.product-grid,

.why-grid{

    grid-template-columns:repeat(2,1fr);

}



.review-grid{

    grid-template-columns:1fr;

}



.contact-grid{

    grid-template-columns:1fr;

}



.footer-grid{

    grid-template-columns:repeat(2,1fr);

}



}



@media(max-width:600px){


.header-icons .whatsapp-btn,

.login-btn{

    display:none;

}



.hero-left h1{

    font-size:32px;

}



.hero-stats{

    flex-direction:column;

    gap:15px;

}



.top-features,

.category-grid,

.product-grid,

.why-grid,

.footer-grid{

    grid-template-columns:1fr;

}



.search-box{

    flex-direction:column;

    border-radius:15px;

}



.search-box button{

    margin-top:10px;

}



}