/* ==========================================================================
   Header — Floating white rounded bar
   ========================================================================== */
.watje-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--w-space-md) var(--w-space-lg);
}

.watje-header__bar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: var(--w-radius-full);
    padding: 10px 12px 10px 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Logo */
.watje-header__logo {
    flex-shrink: 0;
}

.watje-header__wordmark {
    font-family: var(--w-font-headline);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--w-black);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Navigation — centered */
.watje-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

.watje-nav__list {
    display: flex;
    gap: var(--w-space-2xl);
    list-style: none;
}

.watje-nav__list li a {
    font-family: var(--w-font-headline);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--w-on-surface);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.watje-nav__list li a:hover {
    color: var(--w-yellow-dark);
}

/* Actions — right side */
.watje-header__actions {
    display: flex;
    align-items: center;
    gap: var(--w-space-sm);
    flex-shrink: 0;
}

.watje-header__login {
    font-family: var(--w-font-headline);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--w-on-surface);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 12px;
    transition: color 0.2s;
}

.watje-header__login:hover {
    color: var(--w-yellow-dark);
}

.watje-header__cart,
.watje-header__cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--w-black);
    color: white;
    transition: background 0.2s;
}

.watje-header__cart:hover {
    background: #333;
}

.watje-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--w-yellow);
    color: var(--w-black);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watje-header__cart {
    position: relative;
}

/* Hamburger */
.watje-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.watje-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--w-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.watje-header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.watje-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.watje-header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.watje-nav.is-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.watje-nav.is-open .watje-nav__list {
    flex-direction: column;
    align-items: center;
    gap: var(--w-space-2xl);
}

.watje-nav.is-open .watje-nav__list li a {
    font-size: 1.5rem;
}

/* Desktop */
@media (min-width: 768px) {
    .watje-nav {
        display: flex;
    }

    .watje-header__hamburger {
        display: none;
    }
}
