.glass-header-wrapper {
    position: sticky;
    top: 20px;
    z-index: 9999;
    padding: 0 20px;
    margin-bottom: 20px;
}

.glass-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #000;
}

.gh-logo {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    font-family: sans-serif;
}

.gh-nav {
    display: flex;
}

.gh-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gh-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.gh-menu a:hover {
    opacity: 0.6;
}

.gh-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.gh-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gh-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gh-menu {
        display: none; /* simple hide for mobile in this mockup */
    }
    .glass-header-container {
        padding: 12px 20px;
    }
}