.vq-menu-wrap {
    position: absolute;
    bottom: 0;
    right: 5rem;
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 30;
    font-family: var(--font-body, sans-serif);
}

.vq-menu-wrap.vq-inline {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-left: 0.25rem;
}

.vq-inline .vq-gear-btn {
    padding: 0.3rem 0.55rem;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
}

.vq-inline .vq-menu {
    bottom: calc(100% + 0.5rem);
    top: auto;
    right: 0;
}

.vq-gear-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.vq-gear-btn:hover {
    background: rgba(201, 169, 97, 0.85);
    border-color: var(--color-gold, #C9A961);
}

.vq-gear-btn .vq-current {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.vq-menu {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    right: 0;
    min-width: 160px;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vq-menu[hidden] { display: none; }

.vq-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.15s ease, color 0.15s ease;
    font-family: inherit;
}

.vq-item:hover { background: rgba(255, 255, 255, 0.08); color: white; }

.vq-item.vq-active {
    color: var(--color-gold, #C9A961);
    background: rgba(201, 169, 97, 0.12);
    font-weight: 600;
}

.vq-item.vq-active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    color: var(--color-gold, #C9A961);
}

.vq-item .vq-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}
