/* ================= 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{
    height:60px;
    width:170px;
    display:block;
}


@media(max-width:768px){
    .logo img{
    height:70px;
}
}








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:50px;

    padding:80px 7%;

    background:white;


}







.hero-left{

    width:50%;

}







.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:55px;

    line-height:1.2;

    font-weight:800;

    margin:25px 0;


}






.hero-left p{


    font-size:18px;

    color:#666;

    line-height:1.7;

    margin-bottom:30px;


}







.hero-buttons{


    display:flex;

    gap:20px;


}






.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%;


}






.hero-right img{


    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;


}





.hero-stats p{


    color:#666;

    font-size:14px;


}









/* ================= 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;

}


.search-section p{

    color:#666;
    margin-bottom:30px;

}



.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:700;

}



.section-title p{

    color:#666;

    margin-top:10px;

}








/* ================= CATEGORIES ================= */


.categories{


    padding:70px 7%;

    background:white;


}






.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:.3s;

    text-align:center;


}







.category-card:hover{


    transform:translateY(-8px);


}






.category-card img{


    height:220px;

    object-fit:cover;


}






.category-card h3{


    margin:20px 0 10px;

    font-size:20px;


}






.category-card p{


    color:#666;

    font-size:14px;

    padding:0 15px;

    min-height:45px;


}







.category-card button{


    margin-top:20px;

    background:#0066cc;

    color:white;

    padding:12px 30px;

    border-radius:30px;

    font-weight:600;


}








/* ================= 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:.3s;


}







.product-card:hover{


    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);


}






.product-card img{


    height:230px;

    object-fit:cover;

    border-radius:15px;


}







.sale{


    position:absolute;

    top:15px;

    left:15px;

    background:#ff4d4d;

    color:white;

    padding:6px 15px;

    border-radius:20px;

    font-size:12px;

    font-weight:600;


}







.product-card h3{


    margin-top:18px;

    font-size:20px;


}






.rating{


    color:#ffb400;

    margin:10px 0;


}






.product-card h4{


    font-size:22px;

    color:#0066cc;


}






.product-card h4 span{


    font-size:14px;

    color:#777;


}






.product-card p{


    color:#666;

    font-size:14px;

    margin:10px 0 20px;


}








.product-buttons{


    display:flex;

    gap:10px;


}






.product-buttons button{


    flex:1;

    padding:12px;

    border-radius:25px;

    background:#0066cc;

    color:white;

    font-size:14px;

    font-weight:600;


}






.product-buttons button:hover{


    background:#004999;


}
/* ================= BULK ORDER ================= */


.bulk-order{

    background:#0066cc;

    color:white;

    text-align:center;

    padding:70px 7%;

}



.bulk-order h2{

    font-size:38px;

    margin-bottom:15px;

}



.bulk-order p{

    font-size:17px;

    margin-bottom:30px;

}



.bulk-order button{

    background:white;

    color:#0066cc;

    padding:15px 35px;

    border-radius:30px;

    font-weight:600;

}







/* ================= 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:30px;

    background:#f7f8fc;

    border-radius:18px;

    transition:.3s;

}



.why-card:hover{

    transform:translateY(-8px);

}



.why-card i{

    font-size:35px;

    color:#0066cc;

    margin-bottom:15px;

}



.why-card h3{

    margin-bottom:10px;

}



.why-card p{

    color:#666;

    font-size:14px;

}







/* ================= 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);

}



.review-card img{

    width:80px;

    height:80px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    margin-bottom:15px;

}



.review-card h3{

    margin-bottom:10px;

}



.stars{

    color:#ffb400;

    margin-bottom:15px;

}



.review-card p{

    color:#666;

    font-size:14px;

}








/* ================= 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:repeat(4,1fr);

    gap:30px;

}



.footer-grid h2,

.footer-grid h3{

    margin-bottom:20px;

}



.footer-grid p,

.footer-grid li{

    color:#ccc;

    font-size:14px;

    line-height:1.8;

}



.footer-grid ul{

    list-style:none;

}



.social{

    display:flex;

    gap:15px;

}

.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:0.3s;
}

.social-icons a:hover{
    background:#00aaff;
    transform:translateY(-3px);
}





.copyright{

    text-align:center;

    border-top:1px solid #333;

    margin-top:40px;

    padding-top:20px;

}








/* ================= 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;

}







/* ================= BACK TO TOP ================= */


#topBtn{

    position:fixed;

    right:25px;

    bottom:100px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:#0066cc;

    color:white;

    display:none;

}








/* ================= 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;

}



}