/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111;
} 
/* HEADER */

.header{
    position: sticky;
    top:0;
    background:#ffffff;
    padding:15px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:999;
}

.logo{
    font-size:24px;
    font-weight:bold;
    color:#1a1a1a;
    text-align:center;
    margin-bottom:15px;
}

.search-box input{

    width:100%;

    padding:14px 18px;

    border:2px solid #dbeafe;

    border-radius:50px;

    font-size:16px;

    outline:none;

}

.search-box input:focus{

    border-color:#3b82f6;

}
/* CATEGORY NAV */

.category-nav{

display:flex;

gap:12px;

overflow-x:auto;

padding:15px;

scrollbar-width:none;

}

.category-nav::-webkit-scrollbar{

display:none;

}

.category-nav a{

text-decoration:none;

background:#eef6ff;

color:#1877f2;

padding:12px 18px;

border-radius:30px;

font-weight:600;

white-space:nowrap;

transition:.3s;

border:1px solid #d9eaff;

}

.category-nav a:hover{

background:#1877f2;

color:#fff;

}
/* HERO */

.hero{

margin:20px;

padding:40px 25px;

border-radius:25px;

background:linear-gradient(135deg,#2D9CFF,#7EC8FF);

color:white;

text-align:center;

}

.hero h1{

font-size:32px;

margin-bottom:15px;

}

.hero p{

font-size:17px;

line-height:1.6;

margin-bottom:25px;

}

.shop-btn{

display:inline-block;

padding:15px 35px;

background:white;

color:#1877f2;

text-decoration:none;

border-radius:50px;

font-weight:bold;

transition:.3s;

}

.shop-btn:hover{

transform:scale(1.05);

}
/* FEATURED PRODUCTS */

.featured{

padding:25px 15px;

}

.featured h2{

font-size:28px;

margin-bottom:20px;

}

.products{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}

.card{

background:#fff;

border-radius:18px;

padding:15px;

box-shadow:0 5px 18px rgba(0,0,0,.08);

text-align:center;

transition:.3s;

}

.card:hover{

transform:translateY(-6px);

}

.card img{

width:100%;

aspect-ratio:1/1;

object-fit:cover;

border-radius:14px;

background:#f3f3f3;

}

.card h3{

margin:15px 0 8px;

font-size:20px;

}

.price{

font-size:22px;

font-weight:bold;

color:#1877f2;

margin-bottom:15px;

}

.view-btn{

display:inline-block;

padding:12px 25px;

background:#1877f2;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:600;

}
/* HOME BUTTON */

.home-btn{

display:inline-flex;

align-items:center;

gap:8px;

margin:20px 20px 10px;

padding:12px 22px;

background:#1877f2;

color:#fff;

text-decoration:none;

border-radius:50px;

font-size:16px;

font-weight:600;

box-shadow:0 4px 12px rgba(24,119,242,.25);

transition:.3s;

}

.home-btn:hover{

background:#0d6efd;

transform:translateY(-2px);

}