.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 16px 0;
    background: rgba(248, 243, 237, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(159, 130, 109, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    box-shadow: var(--shadow);
    font-size: 1.7rem;
    color: var(--primary);
}

.brand-copy strong {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #63493c;
    line-height: 1;
}

.brand-copy em {
    display: block;
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: var(--primary);
    margin-top: 6px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(255,255,255,0.7);
    color: var(--primary-dark);
    box-shadow: 0 8px 22px rgba(117, 89, 70, 0.08);
}

.header-account {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-account__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #a64a56;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.header-account__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(166, 74, 86, 0.22);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.7);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #6d5548;
    margin: 5px auto;
}

/* Kunden-Kachelmenü rechts */
.customer-float-menu {
    position: fixed;
    top: 130px;
    right: 22px;
    z-index: 120;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.customer-float-menu__item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(170, 140, 124, 0.16);
    box-shadow: 0 14px 28px rgba(93, 66, 51, 0.10);
    text-decoration: none;
    color: #6a4738;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    backdrop-filter: blur(6px);
}

.customer-float-menu__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(93, 66, 51, 0.14);
}

.customer-float-menu__item.is-active {
    background: #a64a56;
    color: #fff;
}

.customer-float-menu__icon {
    font-size: 1.05rem;
    line-height: 1;
    flex: 0 0 auto;
}

.customer-float-menu__label {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 1199px) {
    .customer-float-menu {
        right: 16px;
        width: 205px;
    }
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: rgba(255,255,255,0.92);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-link {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .header-right {
        gap: 0.75rem;
    }

    .header-account__button {
        min-height: 38px;
        padding: 0 0.9rem;
        font-size: 0.88rem;
    }

    .customer-float-menu {
        top: auto;
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
        flex-direction: row;
        gap: 0.6rem;
    }

    .customer-float-menu__item {
        flex: 1 1 0;
        justify-content: center;
        padding: 0.85rem 0.7rem;
    }

    .customer-float-menu__label {
        font-size: 0.82rem;
    }

    .site-shell main {
        padding-bottom: 110px;
    }
}