body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

.logo {
    width: 70px;
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.category-nav {
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 20px;
}

.category-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.category-nav a:hover {
    text-decoration: underline;
}

section {
    padding: 30px;
}

h2 {
    text-align: center;
    color: #333;
}

.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.product {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 10px 0;
}
