body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header,
main,
footer {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
}

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

nav ul li {
    margin-right: 1rem;
}

section {
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f4f4f4;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: inherit;
    text-decoration: none;
}

.shop-icon {
    fill: #000000;
    transition: fill 0.3s ease;
}

.shop-icon:hover {
    fill: #3498db;
}