.ecom-account-menu {
  position: relative;
}
.ecom-account-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  border: 1px solid #dfe3ff;
  border-radius: 8px;
  background: #f5f6ff;
  color: #4338ca;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}
.ecom-account-trigger:hover,
.ecom-account-trigger:focus-visible {
  border-color: #a5b4fc;
  background: #eef2ff;
}
.ecom-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  background: #6366f1;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ecom-account-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}
.ecom-account-dropdown a,
.ecom-account-dropdown button {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: 13px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.ecom-account-dropdown a:hover,
.ecom-account-dropdown button:hover {
  background: #f1f5f9;
  color: #4338ca;
}
.ecom-account-dropdown form {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #e2e8f0;
}
.ecom-account-dropdown .ecom-account-logout button {
  background: #fff1f2;
  color: #dc2626;
  font-weight: 700;
}
.ecom-account-dropdown .ecom-account-logout button:hover,
.ecom-account-dropdown .ecom-account-logout button:focus-visible {
  background: #fee2e2;
  color: #b91c1c;
}
