.header {
    text-align: center;
    padding: 40px 20px 20px;
}

.logo {
    height: 200px;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 32px;
    font-weight: bold;
}

.navbar {
    background: #111;
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
}

.nav-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-left a,
.nav-right a {
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-right a.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #888;
    font-size: 14px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    object-fit: contain;
    vertical-align: middle;
}

.footer-logo:hover {
    opacity: 0.6;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}