/* ── Profile avatar & dropdown ─────────────────────────────────────────────── */
.nav-profile { position: relative; flex-shrink: 0; }

.nav-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #b8893a, #e6c46a);
  color: white; font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 2px solid rgba(201,168,76,0.35);
  transition: box-shadow 0.2s; user-select: none;
  flex-shrink: 0;
}
.nav-avatar:hover { box-shadow: 0 0 0 3px rgba(201,168,76,0.28); }

.nav-login-btn {
  background: linear-gradient(135deg, #b8893a, #e6c46a);
  color: white; border: none; border-radius: 18px;
  padding: 6px 15px; font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: opacity 0.2s;
  flex-shrink: 0; min-width: max-content;
}
.nav-login-btn:hover { opacity: 0.85; }

.profile-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--card, #fff);
  border: 1px solid var(--border, #e8e0d0);
  border-radius: 12px; padding: 0; min-width: 215px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 3000; display: none; overflow: hidden;
}
.profile-dropdown.open { display: block; }

.profile-dd-header {
  padding: 14px 16px 11px;
  border-bottom: 1px solid var(--border, #e8e0d0);
  background: var(--bg2, #f7f3ec);
}
.profile-dd-email {
  font-size: 12px; color: var(--text3, #888);
  word-break: break-all; margin-bottom: 5px;
}
.profile-dd-plan {
  display: inline-block; padding: 2px 9px;
  border-radius: 10px; font-size: 10px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.06em;
}
.plan-badge-free { background: var(--bg3, #eee); color: var(--text2, #666); }
.plan-badge-pro  { background: linear-gradient(135deg, #b8893a, #e6c46a); color: white; }

.profile-dd-item {
  display: block; width: 100%; text-align: left;
  padding: 10px 16px; font-size: 13px;
  color: var(--text, #1a1a2e); text-decoration: none;
  border: none; background: none; cursor: pointer;
  font-family: inherit; transition: background 0.14s;
  box-sizing: border-box;
}
.profile-dd-item:hover {
  background: var(--bg2, #f7f3ec);
  color: var(--gold-dark, #b8893a);
}
.profile-dd-logout {
  color: #e05555 !important;
  border-top: 1px solid var(--border, #e8e0d0);
  margin-top: 2px;
}
.profile-dd-logout:hover { background: rgba(224,85,85,0.07) !important; }
