/* ══ UserMenu.css — Аватар і випадне меню користувача в шапці.
   Правити тут; сторінка підключає чанк через site_css() у шаблоні. ══ */

.nav-user-btn { display:flex; align-items:center; gap:10px; background:none;
                border:0; color:#414141; font:inherit; font-size:16px;
                font-weight:400; cursor:pointer; }
.nav-user-btn svg { width:14px; height:14px; }
.nav-ava { width:30px; height:30px; border-radius:50%; object-fit:cover; }
.nav-ava-txt { background:#C08BA6; color:#fff; display:inline-flex;
               align-items:center; justify-content:center; font-weight:700; }
.user-menu { position:absolute; top:calc(100% + 14px); right:0; width:230px;
             background:#fff; border-radius:10px; box-shadow:0 10px 40px rgba(0,0,0,.18);
             z-index:230; overflow:hidden; padding:6px 0; }
.user-menu a { display:flex; align-items:center; gap:12px; padding:12px 18px;
               color:var(--ink); font-size:14px; text-decoration:none; }
.user-menu a:hover { background:#F6F6F6; }
.user-menu svg { width:19px; height:19px; color:#676767; }
