body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}

.navbar {
    background: linear-gradient(90deg, #8e24aa, #d81b60);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.login-box {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
}

button {
    padding: 10px 15px;
    background: #8e24aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #6a1b9a;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    margin: 15px;
    padding: 15px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

<<<<<<< HEAD:frontend/style.css
.filter {
    text-align: center;
    margin: 20px;
}
=======
button {
    background: purple;
    color: white;
    border: none;
    padding: 6px;
    margin: 5px;
    border-radius: 5px;
}
#login {
    background: white;
    padding: 20px;
    width: 250px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
}
>>>>>>> 47946c6cbe59f22aaa2ed17e8e27e3e8081dfcb4:style.css
