
/* === Profile dropdown fix === */
.diamond-nav-user{position:relative}
.profile-dropdown{position:relative}
.profile-toggle{border:0;cursor:pointer;font-family:inherit}
.profile-toggle i{margin-left:auto;color:#ffe8a3;font-style:normal;font-weight:1000}
.profile-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:230px;
  display:none;
  padding:10px;
  border-radius:18px;
  border:1px solid rgba(212,175,55,.30);
  background:linear-gradient(145deg,rgba(18,18,24,.98),rgba(5,5,6,.99));
  box-shadow:0 22px 80px rgba(0,0,0,.62);
  z-index:10050;
}
.profile-menu.open{display:grid;gap:4px}
.profile-menu a{
  display:flex;
  align-items:center;
  gap:8px;
  padding:11px 12px;
  color:#fff5d6;
  text-decoration:none;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
}
.profile-menu a:hover{
  background:rgba(212,175,55,.12);
  color:#ffe8a3;
}
.profile-menu hr{
  width:100%;
  border:0;
  border-top:1px solid rgba(255,255,255,.08);
  margin:6px 0;
}
@media(max-width:520px){
  body.nav-open .diamond-nav-user{
    align-items:stretch!important;
    display:flex!important;
  }
  .profile-dropdown{width:100%}
  .profile-toggle{width:100%!important}
  .profile-menu{
    position:static!important;
    margin-top:8px!important;
    width:100%!important;
    min-width:0!important;
    box-shadow:none!important;
  }
}
