.gg-header {
    background: var(--gg-primary);
    height: var(--gg-header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gg-header-inner {
    max-width: var(--gg-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gg-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.gg-logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.gg-logo-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.gg-logo-text {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gg-logo-strapline {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.gg-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gg-nav a {
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.gg-nav-link {
    cursor: grab;
}

.gg-nav-ghost {
    opacity: 0.4;
}

.gg-nav-chosen {
    cursor: grabbing;
}

.gg-nav a:hover,
.gg-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.gg-nav-cta {
    background: var(--gg-accent) !important;
    color: #fff !important;
    margin-left: 8px;
}

.gg-nav-cta:hover {
    background: var(--gg-accent-hover) !important;
}

/* Mobile menu */
.gg-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.gg-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .gg-logo-strapline {
        display: none;
    }

    .gg-menu-toggle {
        display: block;
    }

    .gg-nav {
        display: none;
        position: absolute;
        top: var(--gg-header-height);
        left: 0;
        right: 0;
        background: var(--gg-primary);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .gg-nav.open {
        display: flex;
    }

    .gg-nav a {
        display: block;
        padding: 12px 14px;
    }
}

/* When WP admin bar is showing */
.admin-bar .gg-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .gg-header {
        top: 46px;
    }
}
