 /* ── Global Page Background ── */
    *, *::before, *::after {
        box-sizing: border-box;
    }

    html, body {
        background: #FFFFFF;
        color: #3D2B1F;
        margin: 0;
        padding: 0;
        min-height: 100vh;
    }

    /* ── Reset & Variables ── */
    .header {
        --h-accent: #D08FA8;
        --h-accent-hover: #B5708A;
        --h-gold: #D08FA8;
        --h-bg: #FFFFFF;
        --h-text: #3D2B1F;
        --h-text-muted: #8B7355;
        --h-transition: 0.3s ease;

        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--h-bg);
        width: 100%;
    }

    /* ── Nav Container ── */
    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        height: 72px;
        position: relative;
    }

    /* ── Logo ── */
    .header__logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__logo-img {
        height: 55px;
        width: auto;
        display: block;
    }

    .header__brand {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--h-text);
        letter-spacing: -0.02em;
    }

    .header__brand-accent {
        color: var(--h-red);
    }

    /* ── Menu ── */
    .header__menu {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .header__link {
        position: relative;
        color: var(--h-text-muted);
        text-decoration: none;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color var(--h-transition);
        padding: 0.25rem 0;
    }

    .header__link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--h-accent);
        border-radius: 2px;
        transition: width var(--h-transition);
    }

    .header__link:hover,
    .header__link--active {
        color: var(--h-text);
    }

    .header__link:hover::after,
    .header__link--active::after {
        width: 100%;
    }

    /* ── CTA Button ── */
    .header__auth-wrapper {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-left: 2.5rem;
    }

    .header__link--login {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    .header__link--account {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .header__arrow-icon {
        color: var(--h-gold);
        transition: color var(--h-transition), transform var(--h-transition);
    }

    .header__link--login:hover .header__arrow-icon {
        color: var(--h-accent);
        transform: translate(2px, -2px);
    }

    .header__profile-icon {
        color: var(--h-gold);
        transition: color var(--h-transition);
    }

    .header__link--account:hover .header__profile-icon {
        color: var(--h-accent);
    }

    /* ── Info Dropdown ("Mehr erfahren") ── */
    .header__info-dropdown-wrapper {
        position: relative;
    }

    .header__info-toggle {
        background: none;
        border: none;
        cursor: pointer;
        font: inherit;
        padding: 0.25rem 0;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .header__info-toggle::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--h-accent);
        border-radius: 2px;
        transition: width var(--h-transition);
    }

    .header__info-toggle:hover::after,
    .header__info-dropdown-wrapper.active .header__info-toggle::after {
        width: calc(100% - 1.5rem);
    }

    .header__info-dropdown-menu {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        min-width: 240px;
        background: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--h-transition);
        z-index: 1000;
        overflow: hidden;
    }

    .header__info-dropdown-wrapper.active .header__info-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* ── Account Dropdown ── */
    .header__account-dropdown {
        position: relative;
    }

    .header__account-toggle {
        background: none;
        border: none;
        cursor: pointer;
        font: inherit;
        padding: 0.25rem 0;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .header__dropdown-arrow {
        color: var(--h-gold);
        transition: transform var(--h-transition), color var(--h-transition);
    }

    .header__account-dropdown.active .header__dropdown-arrow,
    .header__info-dropdown-wrapper.active .header__dropdown-arrow {
        transform: rotate(180deg);
        color: var(--h-accent);
    }

    .header__dropdown-menu {
        position: absolute;
        top: calc(100% + 1rem);
        right: 0;
        min-width: 220px;
        background: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--h-transition);
        z-index: 1000;
        overflow: hidden;
    }

    .header__account-dropdown.active .header__dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1.25rem;
        color: var(--h-text);
        text-decoration: none;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        font-weight: 500;
        transition: all 0.2s ease;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header__dropdown-item:last-child {
        border-bottom: none;
    }

    .header__dropdown-item svg {
        color: var(--h-text-muted);
        transition: color 0.2s ease;
        flex-shrink: 0;
    }

    .header__dropdown-item:hover {
        background: rgba(208, 143, 168, 0.05);
        color: var(--h-accent);
    }

    .header__dropdown-item:hover svg {
        color: var(--h-accent);
    }

    .header__dropdown-item--logout {
        color: #DC3545;
    }

    .header__dropdown-item--logout svg {
        color: #DC3545;
    }

    .header__dropdown-item--logout:hover {
        background: rgba(220, 53, 69, 0.05);
        color: #C82333;
    }

    .header__dropdown-item--logout:hover svg {
        color: #C82333;
    }

    /* ── Actions (Cart + Hamburger) ── */
    .header__actions {
        display: none;
    }

    /* ── Cart ── */
    .header__cart-item {
        margin-left: 1rem;
    }

    .header__cart {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        text-decoration: none;
        transition: transform var(--h-transition);
    }

    .header__cart:hover {
        transform: scale(1.1);
    }

    .header__cart-icon {
        color: var(--h-text-muted);
        transition: color var(--h-transition);
    }

    .header__cart:hover .header__cart-icon {
        color: var(--h-accent);
    }

    .header__cart-count {
        position: absolute;
        top: 0;
        right: 0;
        background: var(--h-accent);
        color: #FFFFFF;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 0 0.25rem;
    }

    .header__cart--mobile {
        display: none;
    }

    /* ── Overlay ── */
    .header__overlay {
        display: none;
    }

    /* ── Hamburger ── */
    .header__hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1002;
    }

    .header__hamburger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--h-text);
        border-radius: 2px;
        transition: transform var(--h-transition), opacity var(--h-transition);
    }

    .header__hamburger:hover .header__hamburger-line {
        background: var(--h-accent);
    }

    .header__hamburger--open .header__hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__hamburger--open .header__hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .header__hamburger--open .header__hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .header__nav {
            padding: 0 1rem;
            height: 64px;
        }

        .header__actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .header__cart--mobile {
            display: flex;
        }

        .header__cart-item--desktop {
            display: none;
        }

        .header__hamburger {
            display: flex;
        }

        .header__menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 75vw;
            max-width: 300px;
            height: 100vh;
            height: 100dvh;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            padding: 5rem 1.5rem 2rem;
            margin: 0;
            background: #FFFFFF;
            border-left: 1px solid rgba(208, 143, 168, 0.2);
            transform: translateX(100%);
            transition: transform var(--h-transition);
            z-index: 1001;
            overflow-y: auto;
        }

        .header__menu--open {
            transform: translateX(0);
        }

        .header__overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(61, 43, 31, 0.35);
            z-index: 999;
        }

        .header__overlay--visible {
            display: block;
        }

        .header__menu li {
            list-style: none;
        }

        .header__link {
            display: block;
            padding: 0.85rem 0;
            font-size: 1rem;
            border-bottom: 1px solid rgba(61, 43, 31, 0.08);
        }

        .header__link::after {
            display: none;
        }

        .header__auth-wrapper {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            margin-left: 0;
            margin-top: 1.5rem;
        }

        .header__auth-wrapper .header__link {
            border-bottom: 1px solid rgba(61, 43, 31, 0.08);
        }

        .header__link--login {
            gap: 0.4rem;
        }

        .header__link--account {
            gap: 0.5rem;
        }

        .header__info-dropdown-wrapper {
            width: 100%;
        }

        .header__info-toggle {
            width: 100%;
            justify-content: flex-start;
            text-align: left;
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(61, 43, 31, 0.08);
        }

        .header__info-toggle::after {
            display: none;
        }

        .header__info-dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border-radius: 0;
            margin-top: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .header__info-dropdown-wrapper.active .header__info-dropdown-menu {
            max-height: 400px;
        }

        .header__account-dropdown {
            width: 100%;
        }

        .header__account-toggle {
            width: 100%;
            justify-content: space-between;
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(61, 43, 31, 0.08);
        }

        .header__dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border-radius: 0;
            margin-top: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .header__account-dropdown.active .header__dropdown-menu {
            max-height: 300px;
        }

        .header__dropdown-item {
            padding: 0.75rem 0 0.75rem 1.5rem;
            font-size: 0.9375rem;
        }
    }

    @media (max-width: 480px) {
        .header__brand {
            font-size: 1.3rem;
        }

        .header__logo-img {
            height: 36px;
        }

        .header__menu {
            width: 100vw;
            max-width: 100%;
        }
    }