body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.top-bar {

    justify-content: center;
    background: aqua;

}

.logo {
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 35%;
    width: 300px;
}

.social img{

    margin: 0px 0px;
   width: 30px;
}

   /* Navigation Bar */
        nav {
            background: #222;
            padding: 3px 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
        }

        nav ul li {
            margin: 0 3px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            line-height: 35px;
            padding: 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: #333;
            background-color: aqua;
        }

        /* Hide menu on mobile */
        .menu-icon {
            display: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            padding: 10px;
            position: absolute;
            top: 10px;
            right: 15px;
            z-index: 1000;
        }

       /* Mobile Menu */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        background: #222;
        width: 200px;
        border-radius: 5px;
        text-align: center;
        box-shadow: 2px 2px 8px rgba(1, 1, 1, 1);

    }

    nav ul li {
        margin: 0;
        padding: 0;
        width: 100%; /* Full width */
    }

    nav ul li a {
        display: block;
        width: 85%; /* Full width */
        padding: 15px;
                    transition: all 0.3s ease;

    }

    /* Full-width hover effect */
    nav ul li:hover {
        background-color: aqua;
                    transition: all 0.4s ease;


    }

    .menu-icon {
        display: block;
        font-size: 24px;
        
        cursor: pointer;
        padding: 10px;
        position: absolute;
        top: 10px;
        right: 15px;
        z-index: 1000;
    }

    .show-menu {
        display: flex;
    }
}
 .login-container {
           
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            margin: 50px auto 20px auto;
        }
        input {
            width:95%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
          background-color: #333;
            color: aliceblue;
            border: none;
            padding: 10px;
            width: 100%;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
             color: #333;
    background-color: aqua;
    transition: ease 0.3s ;
                        border-radius: 5px;

        }
        .error {
            color: red;
            margin: 10px 0;
        }

.featured {
    text-align: center;
    padding: 10px;
    background: white;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product {
    width: 100px;
    background: #fff;
    padding: 10px;
    border-radius:10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 70px;
    height: 70px;
}



footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: white;
}
footer img{
    max-width: 25%;
    width: 150px;
    text-align: center;
    padding: 10px;
   
}