body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header{
    background-color: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    top: 0px;
    width:100%
}
nav{
margin-left: 60px;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;

}

nav ul li {
    margin-right: 10px;
    
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.logo img{
    height: 40px;
}

.search-bar{
    margin-right: 50px;
    }

.search-bar input {
        padding: 5px;
    }

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    margin-left: 0px;
}
.row2{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.product {
    border: 1px solid #ddd;
    padding: 10px;
    width: 200px;
    text-align: center;
}

.product img {
    max-width: 100%;
}

.product-status{
    color: #d9534f;
    font-weight: bold;
}

.product-title {
    font-weight: bold;
}

.product-type, .product-colors, .product-price{
    color: #888;
    margin: 5px;

}

main{
    display: flex;
    padding: 20px;
}