*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fb;
}

/* Navbar */

.navbar{
    background:#dff3ff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.logo h2{
    color:#0066cc;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.navbar a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:0.3s;
}

.navbar a:hover{
    color:#0066cc;
}

/* Search Section */

.search-section{
    padding:20px;
}

.search-box{
    max-width:900px;
    margin:auto;
    display:flex;
    background:#fff;
    border-radius:50px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:16px 20px;
    font-size:16px;
}

.search-box button{
    border:none;
    background:#0d6efd;
    color:white;
    padding:0 25px;
    cursor:pointer;
}

/* Filter Section */

.filter-section{
    display:flex;
    justify-content:center;
    gap:15px;
    padding-bottom:20px;
}

.filter-btn{
    background:white;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    transition:0.3s;
}

.filter-btn:hover{
    transform:translateY(-2px);
}

/* Product Grid */

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:20px 40px 50px;
}

.product-card{
    background:white;
    border-radius:16px;
    padding:15px;
    position:relative;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.product-card img{
    width:100%;
    border-radius:12px;
}

.wishlist{
    position:absolute;
    top:15px;
    right:15px;
    background:white;
    width:35px;
    height:35px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
    cursor:pointer;
}

.wishlist i{
    color:#ff4d6d;
}

.product-card h3{
    margin-top:15px;
    font-size:18px;
    color:#333;
}

.rating{
    color:#16a34a;
    margin:8px 0;
    font-size:15px;
}

.price{
    font-size:22px;
    font-weight:bold;
    color:#111;
}

.price span{
    font-size:15px;
    color:#777;
    text-decoration:line-through;
    margin-left:8px;
}

.offer{
    color:#0d6efd;
    margin-top:8px;
    font-size:14px;
    font-weight:600;
}

/* Footer */

footer{
    background:#dff3ff;
    padding:30px 20px;
    text-align:center;
    margin-top:30px;
}

.footer-content h3{
    color:#0066cc;
    margin-bottom:10px;
}

.footer-content p{
    color:#444;
    margin:5px 0;
}

/* Responsive */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .products{
        padding:20px;
    }
}