/* Header styles */
.header {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

.header a {
    color: #fff;
    text-decoration: none;
}

.header img {
    height: 32px;
    display: block;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-link img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b6b;
}

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

.menu img {
    height: 48px;
    width: auto;
}

.menu a i {
    font-size: 32px;
}

.menu .cart-link {
    margin-left: auto;
}

.cart-disabled {
    opacity: 0.5;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.user-logged {
    display: flex;
    align-items: center;
}
