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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.products {
    padding: 30px;
    text-align: center;
}

.products h2 {
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product {
    width: 200px;
    border: 1px solid #ccc;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;
}

.product img {
    width: 100%;
    height: 60%;
}

.product h3 {
    font-size: 18px;
    margin: 10px 0 5px;
}

.rating {
    color: #f39c12;
    margin: 0;
}

.price {
    color: #444;
    font-weight: bold;
}
