

.header-unified .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    position: relative;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
    white-space: nowrap;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header-unified nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.header-unified nav ul li:not(.last-nav-item):not(.auth-buttons-parent)::after {
    content: '|';
    margin: 0 25px;
    color: rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
}

.header-unified nav ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--header-text-color);
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    padding: 4px 0;
}

.header-unified nav ul li a:hover {
    background: var(--header-accent);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--header-text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--header-accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}

@media (max-width: 1024px) {
    .header-unified nav ul li::after { display: none; }
    .header-unified nav ul { gap: 12px; }
}
